Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.36.1 #4

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 15, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/hashicorp/terraform-plugin-sdk/v2 v2.20.0 -> v2.36.1 age adoption passing confidence

Release Notes

hashicorp/terraform-plugin-sdk (github.com/hashicorp/terraform-plugin-sdk/v2)

v2.36.1

Compare Source

NOTES:

  • Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#​1375)

BUG FIXES:

  • helper/schema: Fixed bug that allowed write-only attributes within set nested blocks. Any attribute within a set nested block with WriteOnly set to true will now trigger an error message. (#​1427)

v2.36.0

Compare Source

NOTES:

  • Write-only attribute support is in technical preview and offered without compatibility promises until Terraform 1.11 is generally available. (#​1375)

FEATURES:

  • helper/schema: Added WriteOnly schema behavior for managed resource schemas to indicate a write-only attribute. Write-only attribute values are not saved to the Terraform plan or state artifacts. (#​1375)
  • helper/validation: Added PreferWriteOnlyAttribute() validator that warns practitioners when a write-only version of a configured attribute is available. (#​1375)
  • schema/resource: Added ValidateRawResourceConfigFuncs field which allows resources to define validation logic during the ValidateResourceTypeConfig RPC. (#​1375)

v2.35.0

Compare Source

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#​1373)
  • helper/schema: While this Go module will not receive support for ephemeral resource types, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1390)

v2.34.0

Compare Source

NOTES:

  • all: The v2.33.0 release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#​1318)
  • This release contains support for deferred actions, which is an experimental feature only available in prerelease builds of Terraform 1.9 and later. This functionality is subject to change and is not protected by version compatibility guarantees. (#​1335)

FEATURES:

  • helper/schema: Added (Provider).ConfigureProvider function for configuring providers that support additional features, such as deferred actions. (#​1335)
  • helper/schema: Added (Resource).ResourceBehavior to allow additional control over deferred action behavior during plan modification. (#​1335)

v2.33.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#​1316)

v2.32.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1307)

v2.31.0

Compare Source

NOTES:

  • helper/schema: While this Go module will not receive support for provider-defined functions, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#​1288)

v2.30.0

Compare Source

NOTES:

  • meta: The SDKVersion variable, SDKPrerelease variable, and SDKVersionString() function have been deprecated. Use the Go standard library runtime/debug package build information instead. (#​1257)

BUG FIXES:

  • meta: Fixed version in SDKVersion variable and SDKVersionString() function (#​1257)
  • helper/schema: Ensured (ResourceData).GetRawConfig() data is populated for Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)
  • helper/schema: Ensured (ResourceData).GetOkExists() second result is true when configuration contains zero-value data in Provider.ConfigureFunc and Provider.ConfigureContextFunc (#​1270)

v2.29.0

Compare Source

NOTES:

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 (#​1234)

ENHANCEMENTS:

  • helper/validation: Added AllDiag and AnyDiag, which are SchemaValidateDiagFunc variants of All and Any (#​1155)
  • helper/validation: Added quoting in StringInSlice error diagnostic output to prevent confusion with values that contain spaces (#​464)

v2.28.0

Compare Source

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. (#​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 (#​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 (#​1227)

v2.27.0

Compare Source

NOTES:

  • helper/schema: Consumers directly referencing the Resource type Schema field should switch to the SchemaMap method to ensure new SchemaFunc field data is properly retrieved (#​1217)

ENHANCEMENTS:

  • all: Improved SDK logging performance when messages would be skipped due to configured logging level (#​1202)
  • helper/schema: Added Resource type SchemaFunc field and SchemaMap method, which can reduce resident memory usage with large schemas (#​1217)

v2.26.1

Compare Source

BUG FIXES:

  • helper/resource: Prevented build errors with type aliasing added in v2.26.0 (#​1176)

v2.26.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.19 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1163)
  • helper/resource: Deprecated PrefixedUniqueId() and UniqueId(). Use the helper/id package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)
  • helper/resource: Deprecated RetryContext(), StateChangeConf, and associated *Error types. Use the helper/retry package instead. These deprecations are to assist in migrating to terraform-plugin-testing (#​1167)

ENHANCEMENTS:

  • helper/id: New helper/id package added. resource.PrefixedUniqueId() and resource.UniqueId() are deprecated, helper/id should be used instead. helper/resource now contains aliases to the migrated code (#​1167)
  • helper/retry: New helper/retry package added. resource.RetryContext(), resource.StateChangeConf, and associated *Error types are deprecated, helper/retry should be used instead. `helper/resource now contains aliases to the migrated code (#​1167)

v2.25.0

Compare Source

BUG FIXES:

  • helper/schema: Allow diagnostic messages with incorrect UTF-8 encoding to pass through with the invalid sequences replaced with the Unicode Replacement Character. This avoids returning the unhelpful message "string field contains invalid UTF-8" in that case. (#​1111)
  • helper/schema: Prevented unexpected difference for timeouts on first plan after import (#​1146)

v2.24.1

Compare Source

BUG FIXES:

  • helper/resource: Fixed TestStep type ImportStateCheck field so that it only matches against resources following a change in behaviour in Terraform 1.3 that imports both resources and data sources into state (#​1089)
  • helper/resource: Prevented go-plugin goroutine leak per Terraform command (#​1095)
  • helper/resource: Prevented goroutine leak per Terraform command when testing terraform-plugin-sdk based providers via Providers or ProviderFactories (#​1091)
  • helper/resource: Prevented provider configuration already given error when TestStep type Config field already contained provider configuration block (#​1092)

v2.24.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added TestStep type RefreshState field, which enables a step that refreshes state without an explicit apply or configuration changes (#​1070)

BUG FIXES:

  • helper/resource: Fixed TestStep type ImportStateVerify field so that it only matches against resources following a change in behaviour in Terraform 1.3 that imports both resources and their dependent data sources (#​1077)

v2.23.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Added Terraform configuration to TRACE logging (#​1059)
  • helper/resource: Added terraform plan output to TRACE logging (#​1058)

BUG FIXES:

  • helper/resource: Prevented Inconsistent dependency lock file errors when using ExternalProviders outside the hashicorp namespace (#​1057)

v2.22.0

Compare Source

ENHANCEMENTS:

  • helper/resource: Add ImportStatePersist to optionally persist state generated during import (#​1052)

BUG FIXES:

  • helper/schema: Delayed deprecated attribute warnings for unknown values, which may be null (#​1047)
  • helper/schema: Included path information in list size diagnostics for cases where Terraform does not include the configuration source (#​826)

v2.21.0

Compare Source

NOTES:

  • This Go module has been updated to Go 1.18 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#​1027)

BUG FIXES:

  • helper/resource: Fixed TestStep type Taint field usage to properly recreate resources (#​1031)
  • helper/schema: Ensured RawConfig, RawPlan, and RawState are correctly copied during planning with recreation (#​1024)

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.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from f8972f3 to ad6794c Compare September 8, 2022 18:00
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.21.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.22.0 Sep 8, 2022
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from ad6794c to bf29967 Compare September 15, 2022 17:08
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.22.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.23.0 Sep 15, 2022
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from bf29967 to ab721fa Compare November 20, 2022 09:58
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.23.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.24.1 Nov 20, 2022
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.24.1 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.25.0 Mar 16, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from ab721fa to 52b926f Compare March 16, 2023 07:23
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.25.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.26.1 Apr 3, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 52b926f to 41301e9 Compare April 3, 2023 16:15
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.26.1 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.27.0 Jun 28, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 41301e9 to 7bf6c5b Compare June 28, 2023 23:51
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 7bf6c5b to 6e99ab9 Compare August 26, 2023 05:59
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.27.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.28.0 Aug 26, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 6e99ab9 to 5738cce Compare September 7, 2023 17:48
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.28.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.29.0 Sep 7, 2023
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.29.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.30.0 Nov 10, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 5738cce to 2bda278 Compare November 10, 2023 05:46
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 2bda278 to 87e626f Compare December 15, 2023 17:45
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.30.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.31.0 Dec 15, 2023
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 87e626f to d60bf08 Compare January 30, 2024 05:41
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.31.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.32.0 Jan 30, 2024
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.32.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.33.0 Feb 24, 2024
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from d60bf08 to 8c285dd Compare February 24, 2024 11:26
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 8c285dd to a388e3c Compare April 14, 2024 14:53
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from a388e3c to 22cce30 Compare May 10, 2024 11:50
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.33.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.34.0 May 22, 2024
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 22cce30 to 25862a5 Compare May 22, 2024 23:56
Copy link
Contributor Author

renovate bot commented Jun 4, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 27 additional dependencies were updated
  • The go directive was updated for compatibility reasons

Details:

Package Change
go 1.18 -> 1.24.0
github.com/Masterminds/semver/v3 v3.1.1 -> v3.2.0
github.com/Masterminds/sprig/v3 v3.2.2 -> v3.2.3
github.com/fatih/color v1.13.0 -> v1.16.0
github.com/golang/protobuf v1.5.2 -> v1.5.4
github.com/google/go-cmp v0.5.8 -> v0.6.0
github.com/google/uuid v1.3.0 -> v1.6.0
github.com/hashicorp/go-hclog v1.2.1 -> v1.6.3
github.com/hashicorp/go-plugin v1.4.4 -> v1.6.2
github.com/hashicorp/go-version v1.6.0 -> v1.7.0
github.com/hashicorp/hc-install v0.4.0 -> v0.9.1
github.com/hashicorp/hcl/v2 v2.13.0 -> v2.23.0
github.com/hashicorp/terraform-exec v0.17.2 -> v0.22.0
github.com/hashicorp/terraform-json v0.14.0 -> v0.24.0
github.com/hashicorp/terraform-plugin-go v0.12.0 -> v0.26.0
github.com/hashicorp/terraform-plugin-log v0.7.0 -> v0.9.0
github.com/hashicorp/terraform-registry-address v0.0.0-20220623143253-7d51757b572c -> v0.2.4
github.com/hashicorp/terraform-svchost v0.0.0-20200729002733-f050f53b9734 -> v0.1.1
github.com/hashicorp/yamux v0.0.0-20181012175058-2f1d1f20f75d -> v0.1.1
github.com/huandu/xstrings v1.3.2 -> v1.3.3
github.com/imdario/mergo v0.3.13 -> v0.3.15
github.com/mattn/go-colorable v0.1.12 -> v0.1.13
github.com/mattn/go-isatty v0.0.14 -> v0.0.20
github.com/zclconf/go-cty v1.10.0 -> v1.16.2
golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d -> v0.33.0
golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2 -> v0.34.0
google.golang.org/grpc v1.48.0 -> v1.69.4
google.golang.org/protobuf v1.28.0 -> v1.36.3

@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 25862a5 to 7a28fb1 Compare June 4, 2024 20:31
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 7a28fb1 to dc9cb14 Compare July 15, 2024 02:37
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from dc9cb14 to 3c3080a Compare September 12, 2024 23:24
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 3c3080a to 7a040d7 Compare November 1, 2024 08:21
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.34.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Nov 1, 2024
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 7a040d7 to 295db70 Compare November 18, 2024 05:52
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from 295db70 to a883a8d Compare December 22, 2024 23:40
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.35.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.36.0 Feb 4, 2025
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from a883a8d to e4dfb6f Compare February 4, 2025 20:07
@renovate renovate bot changed the title Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.36.0 Update module github.com/hashicorp/terraform-plugin-sdk/v2 to v2.36.1 Feb 21, 2025
@renovate renovate bot force-pushed the renovate/github.heygears.com-hashicorp-terraform-plugin-sdk-v2-2.x branch from e4dfb6f to 4fa8443 Compare February 21, 2025 00:10
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants