Skip to content

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Oct 13, 2025

Bumps the gomod-updates group with 6 updates in the / directory:

Package From To
github.com/go-openapi/errors 0.22.1 0.22.3
github.com/go-openapi/runtime 0.28.0 0.29.0
github.com/go-openapi/swag 0.23.1 0.25.1
github.com/hashicorp/terraform-plugin-framework 1.15.0 1.16.1
github.com/hashicorp/terraform-plugin-framework-validators 0.18.0 0.19.0
github.com/hashicorp/terraform-plugin-testing 1.13.1 1.13.3

Updates github.com/go-openapi/errors from 0.22.1 to 0.22.3

Commits
  • 429e45b updated linting rules
  • caa9e61 fix go vet issue (go1.24+)
  • 63e8809 chore: upgraded go-openapi to go 1.24
  • cc310ac Bump actions/setup-go from 5 to 6 in the development-dependencies group
  • 923e6bf Bump github.com/stretchr/testify in the development-dependencies group
  • d115017 Bump actions/checkout from 4 to 5 in the development-dependencies group
  • d9e8d85 ci: fixed auto-merge
  • b38cc86 chore(lint): updated linters, relinted code
  • 9fc682f Bump golangci/golangci-lint-action in the development-dependencies group
  • fad5875 ci: updated config for golangci-lint v2
  • See full diff in compare view

Updates github.com/go-openapi/runtime from 0.28.0 to 0.29.0

Commits
  • 53e5561 chore(deps): updated dependencies & relint
  • 7e6d12c build(deps): bump the go-openapi-dependencies group with 4 updates
  • f39677b chore(deps): deprecated dependency to opentracing
  • 476a4c4 chore: migrated calls to go-openapi/swag to the new API
  • 8de32b0 fixed the nil check
  • c364773 Update context.go
  • 0628cdf chore(go): upgraded to g1.24
  • 6912bd1 build(deps): bump actions/setup-go in the development-dependencies group
  • 341eefa build(deps): bump github.com/stretchr/testify
  • 0e2f309 build(deps): bump github.com/go-openapi/errors
  • Additional commits viewable in compare view

Updates github.com/go-openapi/strfmt from 0.23.0 to 0.24.0

Commits
  • 900913b chore(deps): updated dependencies & relinted
  • e9d6155 build(deps): bump golang.org/x/net in the golang-org-dependencies group
  • 65743c4 build(deps): bump actions/setup-go in the development-dependencies group
  • c21fe94 build(deps): bump github.com/stretchr/testify
  • 2ac5723 fix(duration): accepts fractional values for duration (#170)
  • aae2676 build(deps): bump actions/checkout in the development-dependencies group
  • d24e69d build(deps): bump github.com/go-openapi/errors
  • 1613dfc fix(lint): fixed false positives in tests (testifylint)
  • 25d4e0a chore(lint): update linter config, relinted code
  • 430601d Bump golang.org/x/net in the golang-org-dependencies group
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag from 0.23.1 to 0.25.1

Commits
  • e8de8a1 prepared release v0.25.1
  • ccad3e7 fix(typo): fixed typo on the benchmark diagram image
  • 4e3f4ae fix(jsonutils): fixed data race with lexer
  • a7a1158 prepared release v0.25.0
  • 2e28a5a perf(jsonutils): fixed Adapter's interface to reduce its overhead
  • 959dfdd Added benchmarks to measure how the new adapters play out
  • c3abe4a chore(deps): removed direct dependencies to gopkg.in/yaml.v3
  • effdcb9 chore: improved mono-repo management
  • f344ab5 Remove dependency to mailru/easyjson by default
  • 6da37dd build(deps): bump the development-dependencies group across 2 directories wit...
  • Additional commits viewable in compare view

Updates github.com/go-openapi/validate from 0.24.0 to 0.25.0

Commits
  • e1fe694 chore(deps): updated dependencies & relinted (#213)
  • 5b01476 chore(deps): bump the go-openapi-dependencies group with 4 updates
  • 320b3ad Svace static analyzer fix (#208)
  • a83e96e chore(deps): bump actions/setup-go in the development-dependencies group
  • 5806528 chore: adopted swag v0.24.0 modules
  • d7c0e6d chore(deps): bump github.com/stretchr/testify
  • efe4be9 chore(deps): bump actions/checkout in the development-dependencies group
  • e34a8d9 chore(deps): bump github.com/go-openapi/errors
  • bced55e chore(deps): bump github.com/go-openapi/jsonpointer
  • 066d634 chore(lint): upadate linting
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-framework from 1.15.0 to 1.16.1

Release notes

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

v1.16.1

BUG FIXES:

  • all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (#1229)
  • all: Added an additional validation check to ensure the resource identity object is not null. (#1193)

v1.16.0

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1217)
  • Support for the new action{} block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1181)
  • action: This release contains a new interface (action.Action) and packages for implementing action types, available in Terraform 1.14+. An action in Terraform can be defined by providers to model side-effects that practitioners can reference in their configurations via the lifecycle.action_trigger block. (#1181)
  • List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1150)
  • list: This release contains a new interface (list.ListResource) and packages for implementing list resource types, available in Terraform 1.14+. A list resource in Terraform can be defined by providers to list remote resources within a given scope. (#1150)

FEATURES:

  • action: New package for implementing actions. (#1181)
  • action/schema: New package for implementing action schemas. (#1183)
  • types: Exported a previously internal function, TerraformTypeToFrameworkType, which converts tftypes.Type to a known framework type. (#1200)
  • list: New package for implementing list resources. (#1150)
  • all: Update Framework to handle new ListResource RPCs. (#1157)

ENHANCEMENTS:

  • provider: Added ProviderWithActions interface for implementing actions. (#1181)
  • provider: Added ActionData to ConfigureResponse, to pass provider-defined data to action.Action implementations. (#1185)
  • provider: Added ListResourceData to ConfigureResponse, to pass provider-defined data to list.ListResource implementations. (#1202)
  • tfsdk: Allow SetAtPath to be called with a tftypes.Value. (#1198)
  • tfsdk: Allow SetAttribute to be called with a tftypes.Value. (#1205)
  • list: Add the ListResourceWithRawV5Schemas and ListResourceWithRawV6Schemas interfaces to support list implementation on non-framework resources. (#1198)

v1.16.0-beta.1

FEATURES:

  • actions: Initial package implementation and new Actions RPC support (#1181)

ENHANCEMENTS:

  • list: add limit field to ListResult (#1182)
  • list: add primitives, list and map types to schema (#1177)
  • actions: add schema interface and unlinked schema (#1183)
  • actions: add standard validation methods and interfaces for ValidateActionConfig RPCs (#1188)
  • actions: add attributes and nested blocks to schema package (#1186)

BUG FIXES:

  • list: call Configure in ListResource RPC and remove the ListResource call in ValidateListResourceConfig (#1192)

v1.16.0-alpha.1

... (truncated)

Changelog

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

1.16.1 (September 29, 2025)

BUG FIXES:

  • all: Prevent identity change validation from raising an error when prior identity is empty (all attributes are null) (#1229)
  • all: Added an additional validation check to ensure the resource identity object is not null. (#1193)

1.16.0 (September 17, 2025)

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1217)
  • Support for the new action{} block is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1181)
  • action: This release contains a new interface (action.Action) and packages for implementing action types, available in Terraform 1.14+. An action in Terraform can be defined by providers to model side-effects that practitioners can reference in their configurations via the lifecycle.action_trigger block. (#1181)
  • List support is in technical preview and offered without compatibility promises until Terraform 1.14 is generally available. (#1150)
  • list: This release contains a new interface (list.ListResource) and packages for implementing list resource types, available in Terraform 1.14+. A list resource in Terraform can be defined by providers to list remote resources within a given scope. (#1150)

FEATURES:

  • action: New package for implementing actions. (#1181)
  • action/schema: New package for implementing action schemas. (#1183)
  • types: Exported a previously internal function, TerraformTypeToFrameworkType, which converts tftypes.Type to a known framework type. (#1200)
  • list: New package for implementing list resources. (#1150)
  • all: Update Framework to handle new ListResource RPCs. (#1157)

ENHANCEMENTS:

  • provider: Added ProviderWithActions interface for implementing actions. (#1181)
  • provider: Added ActionData to ConfigureResponse, to pass provider-defined data to action.Action implementations. (#1185)
  • provider: Added ListResourceData to ConfigureResponse, to pass provider-defined data to list.ListResource implementations. (#1202)
  • tfsdk: Allow SetAtPath to be called with a tftypes.Value. (#1198)
  • tfsdk: Allow SetAttribute to be called with a tftypes.Value. (#1205)
  • list: Add the ListResourceWithRawV5Schemas and ListResourceWithRawV6Schemas interfaces to support list implementation on non-framework resources. (#1198)

1.16.0-beta.1 (July 31, 2025)

FEATURES:

  • actions: Initial package implementation and new Actions RPC support (#1181)

ENHANCEMENTS:

  • list: add limit field to ListResult (#1182)
  • list: add primitives, list and map types to schema (#1177)
  • actions: add schema interface and unlinked schema (#1183)
  • actions: add standard validation methods and interfaces for ValidateActionConfig RPCs (#1188)
  • actions: add attributes and nested blocks to schema package (#1186)

BUG FIXES:

... (truncated)

Commits

Updates github.com/hashicorp/terraform-plugin-framework-validators from 0.18.0 to 0.19.0

Release notes

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

v0.19.0

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#307)

FEATURES:

  • actionvalidator: Introduce new package with declarative validators for action configurations (#302)
  • listresourcevalidator: Introduce new package with declarative validators for list resource configurations (#298)
Changelog

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

0.19.0 (October 07, 2025)

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#307)

FEATURES:

  • actionvalidator: Introduce new package with declarative validators for action configurations (#302)
  • listresourcevalidator: Introduce new package with declarative validators for list resource configurations (#298)
Commits
  • 25a1378 Update changelog
  • 3f083ca build(deps): bump the terraform-plugin group with 2 updates (#305)
  • af35c54 update go version to 1.24.0 (#307)
  • 8e55d8c build(deps): bump the github-actions group with 2 updates (#304)
  • ca7df0b build(deps): bump the github-actions group with 2 updates (#303)
  • 639f59d actionvalidator: Add package for common action configuration validators (#302)
  • 073371e [CI] Update lock workflow file
  • 23783f1 build(deps): bump the terraform-plugin group with 2 updates (#301)
  • d81de64 build(deps): bump github.com/hashicorp/terraform-plugin-framework (#300)
  • ee3a2f9 build(deps): bump golang.org/x/oauth2 from 0.8.0 to 0.27.0 in /tools (#299)
  • Additional commits viewable in compare view

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

Release notes

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

v0.29.0

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#556)
  • tfprotov5+tfprotov6: An upcoming release will require the ActionServer implementation as part of ProviderServer. (#534)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (#534)
  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (#525)

ENHANCEMENTS:

  • tftypes: tftypes.Value.IsFullyNull() allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)

v0.29.0-beta.1

NOTES:

  • Updates the ValidateListResourceConfig RPC to validate include_resource as well as limit (#538)

FEATURES:

  • tfprotov5+tfprotov6: Add action validation RPC (#539)

ENHANCEMENTS:

  • tftypes: tftypes.Value.IsFullyNull() allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)

BUG FIXES:

  • Fix proto field numbering for GetProviderSchema (#539)

v0.29.0-alpha.1

NOTES:

  • This alpha pre-release contains the protocol definitions and Go type definitions for list resources, which are a new type of resource. (#512)
  • A ProviderServerWithListResource can be used with the terraform query subcommand in Terraform 1.13.0-alpha20250708 and later to search unmanaged infrastructure. (#512)
  • The list resource protocol definitions are considered experimental and may change up until general availability. (#512)
  • tfprotov5+tfprotov6: An upcoming release will require the ValidateListResourceConfig and ListResource implementations as part of ProviderServer. (#514)
Changelog

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

0.29.0 (September 17, 2025)

NOTES:

  • all: This Go module has been updated to Go 1.24 per the Go support policy. It is recommended to review the Go 1.24 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#556)
  • tfprotov5+tfprotov6: An upcoming release will require the ActionServer implementation as part of ProviderServer. (#534)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new action type. (#534)
  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new list type (#525)

ENHANCEMENTS:

  • tftypes: tftypes.Value.IsFullyNull() allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)

0.29.0-beta.1 (July 31, 2025)

NOTES:

  • Updates the ValidateListResourceConfig RPC to validate include_resource as well as limit (#538)

FEATURES:

  • tfprotov5+tfprotov6: Add action validation RPC (#539)

ENHANCEMENTS:

  • tftypes: tftypes.Value.IsFullyNull() allows SDKs to determine when a value is null or consists of only null elements and attributes. (#541)

BUG FIXES:

  • Fix proto field numbering for GetProviderSchema (#539)

0.29.0-alpha.1 (July 08, 2025)

NOTES:

  • This alpha pre-release contains the protocol definitions and Go type definitions for list resources, which are a new type of resource. (#512)
  • A ProviderServerWithListResource can be used with the terraform query subcommand in Terraform 1.13.0-alpha20250708 and later to search unmanaged infrastructure. (#512)
  • The list resource protocol definitions are considered experimental and may change up until general availability. (#512)
  • tfprotov5+tfprotov6: An upcoming release will require the ValidateListResourceConfig and ListResource implementations as part of ProviderServer. (#514)
Commits
  • a361c9b Update changelog
  • 9c9e494 add changelog for list (#561)
  • 2cd3335 add action changelogs (#560)
  • c3810b1 Simplify actions to one schema type (#559)
  • 0d697e5 build(deps): Bump google.golang.org/protobuf from 1.36.8 to 1.36.9 (#557)
  • ef1c33e build(deps): Bump google.golang.org/grpc from 1.75.0 to 1.75.1 (#558)
  • 45d8122 build(deps): Bump github.com/hashicorp/go-plugin from 1.6.3 to 1.7.0 (#555)
  • d021075 build(deps): Bump the github-actions group with 2 updates (#556)
  • 4c19f06 Update action proto v5/v6 definitions to match TF core (#554)
  • f90fa5d build(deps): Bump github.com/hashicorp/terraform-registry-address (#553)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-testing from 1.13.1 to 1.13.3

Release notes

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

v1.13.3

NOTES:

  • Adds an opt-in compatibility flag for config mode tests to unlock upgrade from v1.5.1 to latest for specific providers. (#496)

v1.13.2

BUG FIXES:

  • helper/resource: Updated ImportBlockWith* import state modes to use the ExpectNonEmpty field to allow non-empty import plans to pass successfully. (#518)
  • helper/resource: Fixed bug with import state mode where prior test config is not used for ConfigFile or ConfigDirectory (#516)
Changelog

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

1.13.3 (August 15, 2025)

NOTES:

  • Adds an opt-in compatibility flag for config mode tests to unlock upgrade from v1.5.1 to latest for specific providers. (#496)

1.13.2 (June 11, 2025)

BUG FIXES:

  • helper/resource: Updated ImportBlockWith* import state modes to use the ExpectNonEmpty field to allow non-empty import plans to pass successfully. (#518)
  • helper/resource: Fixed bug with import state mode where prior test config is not used for ConfigFile or ConfigDirectory (#516)
Commits
  • 1c1031c Update changelog
  • c569860 helper/resource: compatibility refresh after config mode test step (#496) (#538)
  • 1911214 Update changelog
  • 2d87e3d importstate: Fixed bug where prior test config is not used for ConfigFile o...
  • baee5c6 importstate: Use ExpectNonEmptyPlan field to ignore no-op assertion for imp...
  • 40e7749 build(deps): Bump github.com/cloudflare/circl from 1.6.0 to 1.6.1 (#524)
  • e0e40e8 build(deps): Bump github.com/cloudflare/circl in /tools (#523)
  • a15aaaf build(deps): Bump golang.org/x/crypto from 0.38.0 to 0.39.0 (#521)
  • 4333746 build(deps): Bump github.com/cli/go-gh/v2 in /tools (#517)
  • f93511e build(deps): Bump github.com/hashicorp/terraform-plugin-go (#515)
  • Additional commits viewable 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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

…updates

Bumps the gomod-updates group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/go-openapi/errors](https://github.com/go-openapi/errors) | `0.22.1` | `0.22.3` |
| [github.com/go-openapi/runtime](https://github.com/go-openapi/runtime) | `0.28.0` | `0.29.0` |
| [github.com/go-openapi/swag](https://github.com/go-openapi/swag) | `0.23.1` | `0.25.1` |
| [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) | `1.15.0` | `1.16.1` |
| [github.com/hashicorp/terraform-plugin-framework-validators](https://github.com/hashicorp/terraform-plugin-framework-validators) | `0.18.0` | `0.19.0` |
| [github.com/hashicorp/terraform-plugin-testing](https://github.com/hashicorp/terraform-plugin-testing) | `1.13.1` | `1.13.3` |



Updates `github.com/go-openapi/errors` from 0.22.1 to 0.22.3
- [Commits](go-openapi/errors@v0.22.1...v0.22.3)

Updates `github.com/go-openapi/runtime` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/go-openapi/runtime/releases)
- [Commits](go-openapi/runtime@v0.28.0...v0.29.0)

Updates `github.com/go-openapi/strfmt` from 0.23.0 to 0.24.0
- [Commits](go-openapi/strfmt@v0.23.0...v0.24.0)

Updates `github.com/go-openapi/swag` from 0.23.1 to 0.25.1
- [Commits](go-openapi/swag@v0.23.1...v0.25.1)

Updates `github.com/go-openapi/validate` from 0.24.0 to 0.25.0
- [Commits](go-openapi/validate@v0.24.0...v0.25.0)

Updates `github.com/hashicorp/terraform-plugin-framework` from 1.15.0 to 1.16.1
- [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.15.0...v1.16.1)

Updates `github.com/hashicorp/terraform-plugin-framework-validators` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-framework-validators/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-framework-validators/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-framework-validators@v0.18.0...v0.19.0)

Updates `github.com/hashicorp/terraform-plugin-go` from 0.28.0 to 0.29.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.28.0...v0.29.0)

Updates `github.com/hashicorp/terraform-plugin-testing` from 1.13.1 to 1.13.3
- [Release notes](https://github.com/hashicorp/terraform-plugin-testing/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-testing/blob/v1.13.3/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-testing@v1.13.1...v1.13.3)

---
updated-dependencies:
- dependency-name: github.com/go-openapi/errors
  dependency-version: 0.22.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-updates
- dependency-name: github.com/go-openapi/runtime
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/go-openapi/strfmt
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.25.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/go-openapi/validate
  dependency-version: 0.25.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/hashicorp/terraform-plugin-framework
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/hashicorp/terraform-plugin-framework-validators
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/hashicorp/terraform-plugin-go
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-updates
- dependency-name: github.com/hashicorp/terraform-plugin-testing
  dependency-version: 1.13.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-updates
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github
Copy link
Author

dependabot bot commented on behalf of github Oct 13, 2025

Labels

The following labels could not be found: dependencies, patch. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants