Skip to content

Commit 20c0242

Browse files
authored
Merge branch 'main' into gcp-debug
2 parents e6cadf4 + cfa8e34 commit 20c0242

31 files changed

+834
-115
lines changed

.changes/1.13.2.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## 1.13.2 (June 11, 2025)
2+
3+
BUG FIXES:
4+
5+
* helper/resource: Updated `ImportBlockWith*` import state modes to use the `ExpectNonEmpty` field to allow non-empty import plans to pass successfully. ([#518](https://github.com/hashicorp/terraform-plugin-testing/issues/518))
6+
* helper/resource: Fixed bug with import state mode where prior test config is not used for `ConfigFile` or `ConfigDirectory` ([#516](https://github.com/hashicorp/terraform-plugin-testing/issues/516))
7+

.github/dependabot.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,23 @@ updates:
77
directory: "/"
88
schedule:
99
interval: "daily"
10+
groups:
11+
# Group all terraform-plugin-(go|sdk|framework|testing) dependencies together
12+
"terraform-plugin":
13+
patterns:
14+
- "github.com/hashicorp/terraform-plugin-*"
1015
- package-ecosystem: "gomod"
1116
directory: "/tools"
1217
schedule:
1318
interval: "daily"
1419
- package-ecosystem: "github-actions"
1520
directory: "/"
21+
groups:
22+
"github-actions":
23+
patterns:
24+
- "*" # Group all GitHub Actions dependencies together
1625
schedule:
17-
interval: "daily"
26+
interval: "weekly"
27+
day: "monday"
28+
time: "09:00"
29+
timezone: "Etc/UTC"

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## 1.13.2 (June 11, 2025)
2+
3+
BUG FIXES:
4+
5+
* helper/resource: Updated `ImportBlockWith*` import state modes to use the `ExpectNonEmpty` field to allow non-empty import plans to pass successfully. ([#518](https://github.com/hashicorp/terraform-plugin-testing/issues/518))
6+
* helper/resource: Fixed bug with import state mode where prior test config is not used for `ConfigFile` or `ConfigDirectory` ([#516](https://github.com/hashicorp/terraform-plugin-testing/issues/516))
7+
18
## 1.13.1 (May 21, 2025)
29

310
BUG FIXES:

go.mod

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ require (
1111
github.com/hashicorp/go-uuid v1.0.3
1212
github.com/hashicorp/go-version v1.7.0
1313
github.com/hashicorp/hc-install v0.9.2
14-
github.com/hashicorp/hcl/v2 v2.23.0
14+
github.com/hashicorp/hcl/v2 v2.24.0
1515
github.com/hashicorp/logutils v1.0.0
16-
github.com/hashicorp/terraform-exec v0.23.0
17-
github.com/hashicorp/terraform-json v0.25.0
18-
github.com/hashicorp/terraform-plugin-go v0.27.0
16+
github.com/hashicorp/terraform-exec v0.23.1-0.20250717072919-061a850a52d2
17+
github.com/hashicorp/terraform-json v0.26.0
18+
github.com/hashicorp/terraform-plugin-go v0.29.0-beta.1
1919
github.com/hashicorp/terraform-plugin-log v0.9.0
2020
github.com/hashicorp/terraform-plugin-sdk/v2 v2.37.0
2121
github.com/mitchellh/go-testing-interface v1.14.1
22-
github.com/zclconf/go-cty v1.16.2
23-
golang.org/x/crypto v0.38.0
22+
github.com/zclconf/go-cty v1.16.3
23+
golang.org/x/crypto v0.41.0
2424
)
2525

2626
require (
2727
github.com/ProtonMail/go-crypto v1.1.6 // indirect
2828
github.com/agext/levenshtein v1.2.2 // indirect
2929
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
30-
github.com/cloudflare/circl v1.6.0 // indirect
30+
github.com/cloudflare/circl v1.6.1 // indirect
3131
github.com/fatih/color v1.16.0 // indirect
3232
github.com/golang/protobuf v1.5.4 // indirect
3333
github.com/hashicorp/errwrap v1.0.0 // indirect
@@ -36,27 +36,27 @@ require (
3636
github.com/hashicorp/go-multierror v1.1.1 // indirect
3737
github.com/hashicorp/go-plugin v1.6.3 // indirect
3838
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect
39-
github.com/hashicorp/terraform-registry-address v0.2.5 // indirect
39+
github.com/hashicorp/terraform-registry-address v0.3.0 // indirect
4040
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
4141
github.com/hashicorp/yamux v0.1.1 // indirect
4242
github.com/mattn/go-colorable v0.1.13 // indirect
4343
github.com/mattn/go-isatty v0.0.20 // indirect
4444
github.com/mitchellh/copystructure v1.2.0 // indirect
45-
github.com/mitchellh/go-wordwrap v1.0.0 // indirect
45+
github.com/mitchellh/go-wordwrap v1.0.1 // indirect
4646
github.com/mitchellh/mapstructure v1.5.0 // indirect
4747
github.com/mitchellh/reflectwalk v1.0.2 // indirect
4848
github.com/oklog/run v1.0.0 // indirect
4949
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
5050
github.com/vmihailenco/msgpack/v5 v5.4.1 // indirect
5151
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
52-
golang.org/x/mod v0.24.0 // indirect
53-
golang.org/x/net v0.39.0 // indirect
54-
golang.org/x/sync v0.14.0 // indirect
55-
golang.org/x/sys v0.33.0 // indirect
56-
golang.org/x/text v0.25.0 // indirect
57-
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect
52+
golang.org/x/mod v0.26.0 // indirect
53+
golang.org/x/net v0.42.0 // indirect
54+
golang.org/x/sync v0.16.0 // indirect
55+
golang.org/x/sys v0.35.0 // indirect
56+
golang.org/x/text v0.28.0 // indirect
57+
golang.org/x/tools v0.35.0 // indirect
5858
google.golang.org/appengine v1.6.8 // indirect
59-
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a // indirect
60-
google.golang.org/grpc v1.72.1 // indirect
59+
google.golang.org/genproto/googleapis/rpc v0.0.0-20250528174236-200df99c418a // indirect
60+
google.golang.org/grpc v1.74.2 // indirect
6161
google.golang.org/protobuf v1.36.6 // indirect
6262
)

0 commit comments

Comments
 (0)