Skip to content

Commit cdc2685

Browse files
Renovate Bottechknowlogick
Renovate Bot
authored and
techknowlogick
committed
fix(deps): update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.29.0 (#17)
This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) | require | minor | `v2.27.0` -> `v2.29.0` | --- ### Release Notes <details> <summary>hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)</summary> ### [`v2.29.0`](https://github.com/hashicorp/terraform-plugin-sdk/releases/tag/v2.29.0) [Compare Source](hashicorp/terraform-plugin-sdk@v2.28.0...v2.29.0) NOTES: - all: This Go module has been updated to Go 1.20 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.20 release notes](https://go.dev/doc/go1.20) before upgrading. Any consumers building on earlier Go versions may experience errors. ([#&#8203;1245](hashicorp/terraform-plugin-sdk#1245)) FEATURES: - helper/schema: Upgrade to protocol version 5.4, which can significantly reduce memory usage with Terraform 1.6 and later when a configuration includes multiple instances of the same provider ([#&#8203;1234](hashicorp/terraform-plugin-sdk#1234)) ENHANCEMENTS: - helper/validation: Added `AllDiag` and `AnyDiag`, which are `SchemaValidateDiagFunc` variants of `All` and `Any` ([#&#8203;1155](hashicorp/terraform-plugin-sdk#1155)) - helper/validation: Added quoting in `StringInSlice` error diagnostic output to prevent confusion with values that contain spaces ([#&#8203;464](hashicorp/terraform-plugin-sdk#464)) ### [`v2.28.0`](https://github.com/hashicorp/terraform-plugin-sdk/releases/tag/v2.28.0) [Compare Source](hashicorp/terraform-plugin-sdk@v2.27.0...v2.28.0) NOTES: - helper/schema: The `Resource` type `EnableApplyLegacyTypeSystemErrors` and `EnablePlanLegacyTypeSystemErrors` fields can be enabled to more easily discover resource data consistency errors which Terraform would normally demote to warning logs. Before enabling the flag in a production release for a resource, the resource should be exhaustively acceptance tested as there may be unrecoverable error situations for practitioners. It is recommended to first enable and test in environments where it is easy to clean up resources, potentially outside of Terraform. ([#&#8203;1227](hashicorp/terraform-plugin-sdk#1227)) ENHANCEMENTS: - helper/schema: Added `Resource` type `EnableLegacyTypeSystemApplyErrors` field, which will prevent Terraform from demoting data consistency errors to warning logs during `ApplyResourceChange` (`Create`, `Update`, and `Delete`) operations with the resource ([#&#8203;1227](hashicorp/terraform-plugin-sdk#1227)) - helper/schema: Added `Resource` type `EnableLegacyTypeSystemPlanErrors` field, which can be used to prevent Terraform from demoting data consistency errors to warning logs during `PlanResourceChange` operations with the resource ([#&#8203;1227](hashicorp/terraform-plugin-sdk#1227)) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi43OS4xIiwidXBkYXRlZEluVmVyIjoiMzYuNzkuMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==--> Reviewed-on: https://gitea.com/gitea/terraform-provider-gitea/pulls/17 Co-authored-by: Renovate Bot <[email protected]> Co-committed-by: Renovate Bot <[email protected]>
1 parent 2c1b4fd commit cdc2685

File tree

2 files changed

+88
-18
lines changed

2 files changed

+88
-18
lines changed

go.mod

+20-18
Original file line numberDiff line numberDiff line change
@@ -6,16 +6,17 @@ require (
66
code.gitea.io/sdk/gitea v0.16.0
77
github.com/hashicorp/terraform-plugin-docs v0.16.0
88
github.com/hashicorp/terraform-plugin-log v0.9.0
9-
github.com/hashicorp/terraform-plugin-sdk/v2 v2.27.0
9+
github.com/hashicorp/terraform-plugin-sdk/v2 v2.29.0
1010
)
1111

1212
require (
1313
github.com/Masterminds/goutils v1.1.1 // indirect
1414
github.com/Masterminds/semver/v3 v3.1.1 // indirect
1515
github.com/Masterminds/sprig/v3 v3.2.2 // indirect
16-
github.com/ProtonMail/go-crypto v0.0.0-20230217124315-7d5c6f04bbb8 // indirect
16+
github.com/ProtonMail/go-crypto v0.0.0-20230717121422-5aa5874ade95 // indirect
1717
github.com/agext/levenshtein v1.2.2 // indirect
1818
github.com/apparentlymart/go-textseg/v13 v13.0.0 // indirect
19+
github.com/apparentlymart/go-textseg/v15 v15.0.0 // indirect
1920
github.com/armon/go-radix v1.0.0 // indirect
2021
github.com/bgentry/speakeasy v0.1.0 // indirect
2122
github.com/cloudflare/circl v1.3.3 // indirect
@@ -31,20 +32,20 @@ require (
3132
github.com/hashicorp/go-cty v1.4.1-0.20200414143053-d3edf31b6320 // indirect
3233
github.com/hashicorp/go-hclog v1.5.0 // indirect
3334
github.com/hashicorp/go-multierror v1.1.1 // indirect
34-
github.com/hashicorp/go-plugin v1.4.10 // indirect
35+
github.com/hashicorp/go-plugin v1.5.1 // indirect
3536
github.com/hashicorp/go-uuid v1.0.3 // indirect
3637
github.com/hashicorp/go-version v1.6.0 // indirect
37-
github.com/hashicorp/hc-install v0.5.2 // indirect
38-
github.com/hashicorp/hcl/v2 v2.17.0 // indirect
38+
github.com/hashicorp/hc-install v0.6.0 // indirect
39+
github.com/hashicorp/hcl/v2 v2.18.0 // indirect
3940
github.com/hashicorp/logutils v1.0.0 // indirect
40-
github.com/hashicorp/terraform-exec v0.18.1 // indirect
41+
github.com/hashicorp/terraform-exec v0.19.0 // indirect
4142
github.com/hashicorp/terraform-json v0.17.1 // indirect
42-
github.com/hashicorp/terraform-plugin-go v0.16.0 // indirect
43-
github.com/hashicorp/terraform-registry-address v0.2.1 // indirect
43+
github.com/hashicorp/terraform-plugin-go v0.19.0 // indirect
44+
github.com/hashicorp/terraform-registry-address v0.2.2 // indirect
4445
github.com/hashicorp/terraform-svchost v0.1.1 // indirect
4546
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d // indirect
4647
github.com/huandu/xstrings v1.3.2 // indirect
47-
github.com/imdario/mergo v0.3.13 // indirect
48+
github.com/imdario/mergo v0.3.15 // indirect
4849
github.com/mattn/go-colorable v0.1.13 // indirect
4950
github.com/mattn/go-isatty v0.0.16 // indirect
5051
github.com/mitchellh/cli v1.1.5 // indirect
@@ -61,15 +62,16 @@ require (
6162
github.com/vmihailenco/msgpack v4.0.4+incompatible // indirect
6263
github.com/vmihailenco/msgpack/v5 v5.3.5 // indirect
6364
github.com/vmihailenco/tagparser/v2 v2.0.0 // indirect
64-
github.com/zclconf/go-cty v1.13.2 // indirect
65-
golang.org/x/crypto v0.10.0 // indirect
65+
github.com/zclconf/go-cty v1.14.0 // indirect
66+
golang.org/x/crypto v0.13.0 // indirect
6667
golang.org/x/exp v0.0.0-20230626212559-97b1e661b5df // indirect
67-
golang.org/x/mod v0.11.0 // indirect
68-
golang.org/x/net v0.11.0 // indirect
69-
golang.org/x/sys v0.9.0 // indirect
70-
golang.org/x/text v0.11.0 // indirect
68+
golang.org/x/mod v0.12.0 // indirect
69+
golang.org/x/net v0.13.0 // indirect
70+
golang.org/x/sys v0.12.0 // indirect
71+
golang.org/x/text v0.13.0 // indirect
7172
google.golang.org/appengine v1.6.7 // indirect
72-
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
73-
google.golang.org/grpc v1.56.0 // indirect
74-
google.golang.org/protobuf v1.30.0 // indirect
73+
google.golang.org/genproto v0.0.0-20230526161137-0005af68ea54 // indirect
74+
google.golang.org/genproto/googleapis/rpc v0.0.0-20230525234030-28d5490b6b19 // indirect
75+
google.golang.org/grpc v1.57.0 // indirect
76+
google.golang.org/protobuf v1.31.0 // indirect
7577
)

0 commit comments

Comments
 (0)