Skip to content

Commit 87fc097

Browse files
committed
Openstack Plugin Release Version 1.1.4 and lint fix
1 parent 167485c commit 87fc097

5 files changed

Lines changed: 100 additions & 76 deletions

File tree

.go-version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
1.21.13
1+
1.25.11
22

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 1.1.4 (June 17, 2026)
2+
3+
* fix: add an optional wait before creating the image to improve reliability in image creation workflows.
4+
* fix: use `openstack` as the HCP metadata provider name (instead of the default prefixed provider value).
5+
* chore: add the HCP Ready flag to web metadata.
6+
* chore: update copyright and license headers across the codebase for compliance.
7+
* chore: bump `github.com/hashicorp/packer-plugin-sdk` from `0.6.4` to `0.6.7`.
8+
19
## 1.0.0 (June 14, 2021)
210

311
* Update packer-plugin-sdk to version 0.2.3. [GH-29]

go.mod

Lines changed: 21 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,26 @@
11
module github.com/hashicorp/packer-plugin-openstack
22

3-
go 1.24.0
3+
go 1.25.11
44

55
require (
6-
github.com/google/uuid v1.4.0
6+
github.com/google/uuid v1.6.0
77
github.com/gophercloud/gophercloud v0.12.0
88
github.com/gophercloud/utils v0.0.0-20200508015959-b0167b94122c
99
github.com/hashicorp/go-cleanhttp v0.5.2
1010
github.com/hashicorp/hcl/v2 v2.24.0
1111
github.com/hashicorp/packer-plugin-sdk v0.6.7
1212
github.com/mitchellh/mapstructure v1.5.0
1313
github.com/zclconf/go-cty v1.16.3
14-
golang.org/x/crypto v0.46.0
14+
golang.org/x/crypto v0.52.0
1515
gopkg.in/yaml.v2 v2.4.0 // indirect
1616
)
1717

1818
require (
1919
cloud.google.com/go v0.110.8 // indirect
20-
cloud.google.com/go/compute v1.23.1 // indirect
21-
cloud.google.com/go/compute/metadata v0.2.3 // indirect
20+
cloud.google.com/go/compute/metadata v0.9.0 // indirect
2221
cloud.google.com/go/iam v1.1.3 // indirect
2322
cloud.google.com/go/storage v1.35.1 // indirect
24-
github.com/Azure/go-ntlmssp v0.0.0-20221128193559-754e69321358 // indirect
23+
github.com/Azure/go-ntlmssp v0.1.1 // indirect
2524
github.com/ChrisTrenkamp/goxpath v0.0.0-20210404020558-97928f7e12b6 // indirect
2625
github.com/Microsoft/go-winio v0.6.2 // indirect
2726
github.com/agext/levenshtein v1.2.3 // indirect
@@ -49,12 +48,12 @@ require (
4948
github.com/cenkalti/backoff/v3 v3.2.2 // indirect
5049
github.com/dylanmei/iso8601 v0.1.0 // indirect
5150
github.com/fatih/color v1.16.0 // indirect
52-
github.com/go-jose/go-jose/v4 v4.0.5 // indirect
53-
github.com/go-logr/logr v1.4.1 // indirect
51+
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
52+
github.com/go-logr/logr v1.4.3 // indirect
5453
github.com/gofrs/flock v0.8.1 // indirect
5554
github.com/gofrs/uuid v4.4.0+incompatible // indirect
5655
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
57-
github.com/golang/protobuf v1.5.3 // indirect
56+
github.com/golang/protobuf v1.5.4 // indirect
5857
github.com/google/s2a-go v0.1.7 // indirect
5958
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect
6059
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
@@ -105,28 +104,27 @@ require (
105104
github.com/ryanuber/go-glob v1.0.0 // indirect
106105
github.com/tidwall/transform v0.0.0-20201103190739-32f242e2dbde // indirect
107106
github.com/ugorji/go/codec v1.2.6 // indirect
108-
github.com/ulikunitz/xz v0.5.10 // indirect
107+
github.com/ulikunitz/xz v0.5.15 // indirect
109108
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
110109
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
111110
go.opencensus.io v0.24.0 // indirect
112111
golang.org/x/exp v0.0.0-20230321023759-10a507213a29 // indirect
113-
golang.org/x/mod v0.30.0 // indirect
114-
golang.org/x/net v0.47.0 // indirect
115-
golang.org/x/oauth2 v0.13.0 // indirect
116-
golang.org/x/sync v0.19.0 // indirect
117-
golang.org/x/sys v0.39.0 // indirect
118-
golang.org/x/term v0.38.0 // indirect
119-
golang.org/x/text v0.32.0 // indirect
112+
golang.org/x/mod v0.35.0 // indirect
113+
golang.org/x/net v0.55.0 // indirect
114+
golang.org/x/oauth2 v0.34.0 // indirect
115+
golang.org/x/sync v0.20.0 // indirect
116+
golang.org/x/sys v0.45.0 // indirect
117+
golang.org/x/term v0.43.0 // indirect
118+
golang.org/x/text v0.37.0 // indirect
120119
golang.org/x/time v0.11.0 // indirect
121-
golang.org/x/tools v0.39.0 // indirect
120+
golang.org/x/tools v0.44.0 // indirect
122121
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
123122
google.golang.org/api v0.150.0 // indirect
124-
google.golang.org/appengine v1.6.7 // indirect
125123
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b // indirect
126-
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b // indirect
127-
google.golang.org/genproto/googleapis/rpc v0.0.0-20231030173426-d783a09b4405 // indirect
128-
google.golang.org/grpc v1.59.0 // indirect
129-
google.golang.org/protobuf v1.33.0 // indirect
124+
google.golang.org/genproto/googleapis/api v0.0.0-20251202230838-ff82c1b0f217 // indirect
125+
google.golang.org/genproto/googleapis/rpc v0.0.0-20251202230838-ff82c1b0f217 // indirect
126+
google.golang.org/grpc v1.79.3 // indirect
127+
google.golang.org/protobuf v1.36.10 // indirect
130128
)
131129

132130
replace github.com/zclconf/go-cty => github.com/nywilken/go-cty v1.13.3 // added by packer-sdc fix as noted in github.com/hashicorp/packer-plugin-sdk/issues/187

0 commit comments

Comments
 (0)