Skip to content

chore(deps): bump the go group with 7 updates#642

Closed
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/go_modules/go-3b4c89e685
Closed

chore(deps): bump the go group with 7 updates#642
dependabot[bot] wants to merge 2 commits intomainfrom
dependabot/go_modules/go-3b4c89e685

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Apr 2, 2026

Bumps the go group with 7 updates:

Package From To
github.com/hashicorp/terraform-plugin-framework 1.17.0 1.19.0
github.com/hashicorp/terraform-plugin-go 0.29.0 0.31.0
github.com/hashicorp/terraform-plugin-mux 0.21.0 0.23.0
github.com/hashicorp/terraform-plugin-sdk/v2 2.38.1 2.40.0
github.com/labd/commercetools-go-sdk 1.8.0 1.9.0
golang.org/x/oauth2 0.34.0 0.36.0
golang.org/x/text 0.32.0 0.34.0

Updates github.com/hashicorp/terraform-plugin-framework from 1.17.0 to 1.19.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-framework's releases.

v1.19.0

NOTES:

  • This release moves the resource configuration generation logic for the -generate-config-out flag from Terraform Core to the Framework for Terraform v1.14.0 and above. There should be no functionality changes for resource configuration generation in this release. (#1281)
  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#1287)

v1.18.0

NOTES:

  • State store support is considered experimental and offered without compatibility promises until support for state_store in Terraform core is generally available. (#1259)

FEATURES:

  • framework: Add support for deprecation messages on attributes and blocks in the configuration schema (#1276)
  • statestore: New package for implementing state stores (#1259)
  • statestore/schema: New package for implementing state store schemas (#1259)

ENHANCEMENTS:

  • types/basetypes: Added Length() method for the ListValue type. (#1067)
  • types/basetypes: Added Length() method for the MapValue type. (#1067)
  • types/basetypes: Added Length() method for the SetValue type. (#1067)
  • types/basetypes: Added Length() method for the TupleValue type. (#1067)
  • provider: Added ProviderWithStateStores interface for implementing state stores (#1259)
  • provider: Added StateStoreData to ConfigureResponse, to pass provider-defined data to (statestore.StateStore).Initialize methods (#1262)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.

1.19.0 (March 10, 2026)

NOTES:

  • This release moves the resource configuration generation logic for the -generate-config-out flag from Terraform Core to the Framework for Terraform v1.14.0 and above. There should be no functionality changes for resource configuration generation in this release. (#1281)
  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#1287)

1.18.0 (February 27, 2026)

NOTES:

  • State store support is considered experimental and offered without compatibility promises until support for state_store in Terraform core is generally available. (#1259)

FEATURES:

  • framework: Add support for deprecation messages on attributes and blocks in the configuration schema (#1276)
  • statestore: New package for implementing state stores (#1259)
  • statestore/schema: New package for implementing state store schemas (#1259)

ENHANCEMENTS:

  • types/basetypes: Added Length() method for the ListValue type. (#1067)
  • types/basetypes: Added Length() method for the MapValue type. (#1067)
  • types/basetypes: Added Length() method for the SetValue type. (#1067)
  • types/basetypes: Added Length() method for the TupleValue type. (#1067)
  • provider: Added ProviderWithStateStores interface for implementing state stores (#1259)
  • provider: Added StateStoreData to ConfigureResponse, to pass provider-defined data to (statestore.StateStore).Initialize methods (#1262)
Commits
  • c7ac25e Update changelog
  • 2ee75aa Implement GenerateResourceConfig RPC and existing Terraform default logic ...
  • 6f149ef [Chore] Upgrade Go version to 1.25 (#1287)
  • e69c6b3 build(deps): Bump github.com/hashicorp/copywrite in /tools (#1285)
  • c957640 build(deps): Bump github.com/cloudflare/circl in /tools (#1283)
  • c271e91 Update changelog
  • ed8d66c feat: add deprecation messages for attributes and blocks in configschema (#1276)
  • 60c74cf build(deps): Bump github.com/hashicorp/terraform-plugin-go (#1280)
  • 7b6eb10 Add Validate for StateStore (#1272)
  • 9bd8a09 statestore: Add experimental notes + changelog (#1277)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-go from 0.29.0 to 0.31.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-go's releases.

v0.31.0

BREAKING CHANGES:

  • tfprotov5+tfprotov6: The GenerateResourceConfig RPC call is now required in ResourceServer. (#607)

NOTES:

  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#612)
  • all: To prevent compilation errors, ensure your Go module is updated to at least terraform-plugin-framework@v1.19.0, terraform-plugin-mux@v0.23.0, terraform-plugin-sdk/v2@v2.40.0, and terraform-plugin-testing@v1.15.0 before upgrading this dependency. (#607)

v0.30.0

NOTES:

  • tfprotov6: An upcoming release will require the StateStoreServer implementation as part of ProviderServer. (#594)
  • The state store protocol definitions are considered experimental and may change up until general availability in Terraform core. (#563)

FEATURES:

  • tfprotov6: Upgraded protocol v6 and added types to support the new state store type. (#563)
  • tfprotov5/tfprotov6: Added DeprecationMessage field to SchemaAttribute and SchemaNestedAttribute (#600)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-go's changelog.

0.31.0 (March 10, 2026)

BREAKING CHANGES:

  • tfprotov5+tfprotov6: The GenerateResourceConfig RPC call is now required in ResourceServer. (#607)

NOTES:

  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#612)
  • all: To prevent compilation errors, ensure your Go module is updated to at least terraform-plugin-framework@v1.19.0, terraform-plugin-mux@v0.23.0, terraform-plugin-sdk/v2@v2.40.0, and terraform-plugin-testing@v1.15.0 before upgrading this dependency. (#607)

0.30.0 (February 24, 2026)

NOTES:

  • tfprotov6: An upcoming release will require the StateStoreServer implementation as part of ProviderServer. (#594)
  • The state store protocol definitions are considered experimental and may change up until general availability in Terraform core. (#563)

FEATURES:

  • tfprotov6: Upgraded protocol v6 and added types to support the new state store type. (#563)
  • tfprotov5/tfprotov6: Added DeprecationMessage field to SchemaAttribute and SchemaNestedAttribute (#600)
Commits
  • 09a1181 Update changelog
  • b931e74 Add changelog for v0.31.0 release (#614)
  • a6437c6 build(deps): Bump the github-actions group across 1 directory with 4 updates ...
  • 623c376 build(deps): Bump google.golang.org/grpc from 1.79.1 to 1.79.2 (#613)
  • 578d45a [Chore] Upgrade Go version to 1.25 (#612)
  • f856c03 build(deps): Bump github.com/hashicorp/copywrite in /tools (#611)
  • 6ee7909 Implement GenerateResourceConfig RPC in tfprotov6 (#607)
  • 40439b0 build(deps): Bump github.com/cloudflare/circl in /tools (#608)
  • 2d27555 build(deps): Bump go.opentelemetry.io/otel/sdk in /tools (#609)
  • e48445a Add GenerateResourceConfig RPC to Protocol v5 (#578)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-mux from 0.21.0 to 0.23.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-mux's releases.

v0.23.0

NOTES:

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

FEATURES:

  • all: Upgraded protocols and added types to support GenerateResourceConfig RPC. (#350)

v0.22.0

FEATURES:

  • tf6muxserver: Upgraded mux server implementation to support state store types. (#345)
  • Added support for attribute and block level deprecation messages via the DeprecationMessage field in protocol version conversion between tfprotov5 and tfprotov6 (#346)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-mux's changelog.

0.23.0 (March 10, 2026)

NOTES:

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

FEATURES:

  • all: Upgraded protocols and added types to support GenerateResourceConfig RPC. (#350)

0.22.0 (February 27, 2026)

FEATURES:

  • tf6muxserver: Upgraded mux server implementation to support state store types. (#345)
  • Added support for attribute and block level deprecation messages via the DeprecationMessage field in protocol version conversion between tfprotov5 and tfprotov6 (#346)
Commits
  • 41c9df9 Update changelog
  • 93c5ace Implement GenerateResourceConfig RPC (#350)
  • 33c57a0 [Chore] Upgrade Go version to 1.25 (#355)
  • 850096d build(deps): bump github.com/hashicorp/copywrite in /tools (#354)
  • 5865090 build(deps): bump github.com/cloudflare/circl in /tools (#351)
  • 181325c Update changelog
  • 9bbea46 add support for attribute level deprecation messages (#346)
  • 72c576a build(deps): bump github.com/hashicorp/terraform-plugin-go (#349)
  • 83949b0 statestore: Add state store RPC support for muxing (v6 only) (#345)
  • 05a5b33 build(deps): bump github.com/hashicorp/copywrite in /tools (#347)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-sdk/v2 from 2.38.1 to 2.40.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's releases.

v2.40.0

NOTES:

  • This release moves the resource configuration generation logic for the -generate-config-out flag from Terraform Core to the SDKv2 for Terraform v1.14.0 and above. There should be no functionality changes for resource configuration generation in this release. (#1559)
  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#1564)

v2.39.0

ENHANCEMENTS:

  • helper/schema: Added support for deprecation messages on attributes and blocks, which are now populated from the Schema's Deprecated field and passed through to the protocol layer (#1553)

v2.38.2

BUG FIXES:

  • all: Prevent "Missing Resource Identity" error if the resource returned any errors during apply. (#1541)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's changelog.

2.40.0 (March 10, 2026)

NOTES:

  • This release moves the resource configuration generation logic for the -generate-config-out flag from Terraform Core to the SDKv2 for Terraform v1.14.0 and above. There should be no functionality changes for resource configuration generation in this release. (#1559)
  • This Go module has been updated to Go 1.25 per the Go support policy. Any consumers building on earlier Go versions may experience errors. (#1564)

2.39.0 (February 27, 2026)

ENHANCEMENTS:

  • helper/schema: Added support for deprecation messages on attributes and blocks, which are now populated from the Schema's Deprecated field and passed through to the protocol layer (#1553)

2.38.2 (February 02, 2026)

BUG FIXES:

  • all: Prevent "Missing Resource Identity" error if the resource returned any errors during apply. (#1541)
Commits
  • dde4384 Update changelog
  • 9136f3a Update meta package SDKVersion
  • 86877a0 Implement GenerateResourceConfig RPC and existing Terraform default logic (#...
  • 3643171 [Chore] Upgrade Go version to 1.25 (#1564)
  • 9c60d2f build(deps): bump github.com/hashicorp/copywrite in /tools (#1563)
  • 328ad99 build(deps): bump github.com/cloudflare/circl in /tools (#1561)
  • ff0698e build(deps): bump the github-actions group across 1 directory with 4 updates ...
  • f661d42 Update changelog
  • 19ef5a4 Update meta package SDKVersion
  • 9a14d44 feat: add deprecation messages for attributes and blocks in configschema (#1553)
  • Additional commits viewable in compare view

Updates github.com/labd/commercetools-go-sdk from 1.8.0 to 1.9.0

Changelog

Sourced from github.com/labd/commercetools-go-sdk's changelog.

v1.9.0 - 2026-03-10

Added

  • Update with latest RAML specification

Dependency

  • chore(deps): bump the github-actions group across 1 directory with 5 updates
Commits
  • 42ee18b Merge pull request #139 from labd/release/v1.9.0
  • b53b921 Release v1.9.0
  • 5d22e4e Changed changelog type
  • 394bb79 Merge pull request #136 from labd/feature/update-with-specs
  • 9fa5888 Updated generator version, regenerated sdk
  • 3072eb6 feat: update with latest api reference
  • 39470c4 Merge pull request #134 from labd/dependabot/github_actions/github-actions-f5...
  • 3ea47ac Merge pull request #131 from labd/dependabot/go_modules/go-09b862220b
  • 469160c chore(deps): add changelog for dependabot updates
  • 29dc6a9 chore(deps): bump the github-actions group across 1 directory with 5 updates
  • Additional commits viewable in compare view

Updates golang.org/x/oauth2 from 0.34.0 to 0.36.0

Commits
  • 4d954e6 all: upgrade go directive to at least 1.25.0 [generated]
  • 89ff2e1 google: add safer credentials JSON loading options.
  • See full diff in compare view

Updates golang.org/x/text from 0.32.0 to 0.34.0

Commits
  • 817fba9 go.mod: update golang.org/x dependencies
  • 3264de9 all: clean up old Go hacks
  • 74af298 all: fix tags in remaining Unicode tables
  • 117e03b all: delete old Unicode tables
  • 9463ea4 all: update to Unicode 17
  • 7278b25 internal/export/idna: update for post-Unicode 10 idna changes
  • f964ad8 internal/export/idna: delete old code
  • 678d34e unicode/norm: preserve QC Maybe bit in packed forminfo
  • 536231a go.mod: update golang.org/x dependencies
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the go group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) | `1.17.0` | `1.19.0` |
| [github.com/hashicorp/terraform-plugin-go](https://github.com/hashicorp/terraform-plugin-go) | `0.29.0` | `0.31.0` |
| [github.com/hashicorp/terraform-plugin-mux](https://github.com/hashicorp/terraform-plugin-mux) | `0.21.0` | `0.23.0` |
| [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) | `2.38.1` | `2.40.0` |
| [github.com/labd/commercetools-go-sdk](https://github.com/labd/commercetools-go-sdk) | `1.8.0` | `1.9.0` |
| [golang.org/x/oauth2](https://github.com/golang/oauth2) | `0.34.0` | `0.36.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.32.0` | `0.34.0` |


Updates `github.com/hashicorp/terraform-plugin-framework` from 1.17.0 to 1.19.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-framework@v1.17.0...v1.19.0)

Updates `github.com/hashicorp/terraform-plugin-go` from 0.29.0 to 0.31.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-go/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-go@v0.29.0...v0.31.0)

Updates `github.com/hashicorp/terraform-plugin-mux` from 0.21.0 to 0.23.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-mux/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-mux/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-mux@v0.21.0...v0.23.0)

Updates `github.com/hashicorp/terraform-plugin-sdk/v2` from 2.38.1 to 2.40.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-sdk/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-sdk@v2.38.1...v2.40.0)

Updates `github.com/labd/commercetools-go-sdk` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/labd/commercetools-go-sdk/releases)
- [Changelog](https://github.com/labd/commercetools-go-sdk/blob/main/CHANGELOG.md)
- [Commits](labd/commercetools-go-sdk@v1.8.0...v1.9.0)

Updates `golang.org/x/oauth2` from 0.34.0 to 0.36.0
- [Commits](golang/oauth2@v0.34.0...v0.36.0)

Updates `golang.org/x/text` from 0.32.0 to 0.34.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.32.0...v0.34.0)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/terraform-plugin-framework
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-go
  dependency-version: 0.31.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-mux
  dependency-version: 0.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2
  dependency-version: 2.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/labd/commercetools-go-sdk
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/oauth2
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: golang.org/x/text
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 2, 2026
@dependabot dependabot bot requested a review from a team as a code owner April 2, 2026 00:42
@dependabot dependabot bot requested a review from demeyerthom April 2, 2026 00:42
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 2, 2026
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Apr 3, 2026

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Apr 3, 2026
@dependabot dependabot bot deleted the dependabot/go_modules/go-3b4c89e685 branch April 3, 2026 11:31
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants