devopsarr / terraform-provider-radarr

Terraform Radarr provider
https://registry.terraform.io/providers/devopsarr/radarr
Mozilla Public License 2.0
11 stars 0 forks source link

chore(deps): update terraform-framework #245

Closed renovate[bot] closed 6 months ago

renovate[bot] commented 8 months ago

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/hashicorp/terraform-plugin-docs v0.16.0 -> v0.18.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-framework v1.5.0 -> v1.6.1 age adoption passing confidence
github.com/hashicorp/terraform-plugin-go v0.20.0 -> v0.22.0 age adoption passing confidence
github.com/hashicorp/terraform-plugin-testing v1.6.0 -> v1.7.0 age adoption passing confidence

Release Notes

hashicorp/terraform-plugin-docs (github.com/hashicorp/terraform-plugin-docs) ### [`v0.18.0`](https://togithub.com/hashicorp/terraform-plugin-docs/releases/tag/v0.18.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-docs/compare/v0.17.0...v0.18.0) FEATURES: - generate: Add support for Provider-defined Function documentation ([#​328](https://togithub.com/hashicorp/terraform-plugin-docs/issues/328)) - migrate: Add support for Provider-defined Function documentation ([#​328](https://togithub.com/hashicorp/terraform-plugin-docs/issues/328)) ENHANCEMENTS: - validate: Add `functions` to list of allowed template and rendered website subdirectories ([#​328](https://togithub.com/hashicorp/terraform-plugin-docs/issues/328)) ### [`v0.17.0`](https://togithub.com/hashicorp/terraform-plugin-docs/releases/tag/v0.17.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-docs/compare/v0.16.0...v0.17.0) BREAKING CHANGES: - generate: templates using `printf` with either `codefile` or `tffile` to render code examples in markdown will need to switch to using those functions directly. For example, switch the following template code: `{{printf "{{codefile \"shell\" %q}}" .ImportFile}}` to `{{codefile "shell" .ImportFile}}` ([#​300](https://togithub.com/hashicorp/terraform-plugin-docs/issues/300)) FEATURES: - migrate: Added new `migrate` subcommand that migrates existing provider docs using the rendered website source directories (`website/docs/` or `/docs/`) to a `terraform-plugin-docs`-supported templates directory. ([#​314](https://togithub.com/hashicorp/terraform-plugin-docs/issues/314)) ENHANCEMENTS: - generate: Add `provider-schema` flag to pass in a file path to a provider schema JSON file, allowing the command to skip building the provider and calling Terraform CLI ([#​299](https://togithub.com/hashicorp/terraform-plugin-docs/issues/299)) BUG FIXES: - generate: fix `no such file or directory` error when running `generate` with no existing rendered website directory. ([#​296](https://togithub.com/hashicorp/terraform-plugin-docs/issues/296)) - generate: fix incorrect rendering of example and import files for providers with no docs templates or with generic fallback templates. ([#​300](https://togithub.com/hashicorp/terraform-plugin-docs/issues/300))
hashicorp/terraform-plugin-framework (github.com/hashicorp/terraform-plugin-framework) ### [`v1.6.1`](https://togithub.com/hashicorp/terraform-plugin-framework/releases/tag/v1.6.1) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-framework/compare/v1.6.0...v1.6.1) NOTES: - all: The `v1.6.0` release updated this Go module to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers building on earlier Go versions may experience errors ([#​937](https://togithub.com/hashicorp/terraform-plugin-framework/issues/937)) BUG FIXES: - resource/schema: Ensured invalid attribute default value errors are raised ([#​930](https://togithub.com/hashicorp/terraform-plugin-framework/issues/930)) - function: Added implementation validation to `function.Definition` to ensure all parameter names (including the variadic parameter) are unique. ([#​926](https://togithub.com/hashicorp/terraform-plugin-framework/issues/926)) - function: Updated the default parameter name to include the position of the parameter (i.e. `param1`, `param2`, etc.). Variadic parameters will default to `varparam`. ([#​926](https://togithub.com/hashicorp/terraform-plugin-framework/issues/926)) ### [`v1.6.0`](https://togithub.com/hashicorp/terraform-plugin-framework/releases/tag/v1.6.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-framework/compare/v1.5.0...v1.6.0) BREAKING CHANGES: - function: Changed the framework type for variadic parameters to `types.TupleType`, where each element is the same element type. Provider-defined functions using a `types.List` for retrieving variadic argument data will need to update their code to use `types.Tuple`. ([#​923](https://togithub.com/hashicorp/terraform-plugin-framework/issues/923)) - function: Altered the `RunResponse` type, replacing `Diagnostics` with `FuncError` ([#​925](https://togithub.com/hashicorp/terraform-plugin-framework/issues/925)) - diag: Removed `DiagnosticWithFunctionArgument` interface. Removed `NewArgumentErrorDiagnostic()`, `NewArgumentWarningDiagnostic()` and `WithFunctionArgument()` functions. Removed `AddArgumentError()` and `AddArgumentWarning()` methods from `Diagnostics`. ([#​925](https://togithub.com/hashicorp/terraform-plugin-framework/issues/925)) FEATURES: - resource: Added the `ResourceWithMoveState` interface, which enables state moves across resource types with Terraform 1.8 and later ([#​917](https://togithub.com/hashicorp/terraform-plugin-framework/issues/917)) ENHANCEMENTS: - privatestate: Added support for `SetKey()` method to fully remove key with `nil` or zero-length value ([#​910](https://togithub.com/hashicorp/terraform-plugin-framework/issues/910)) - function: Added `FuncError` type, required for `RunResponse` ([#​925](https://togithub.com/hashicorp/terraform-plugin-framework/issues/925)) - function: Added `NewFuncError()` and `NewArgumentFuncError()` functions, which create a `FuncError` ([#​925](https://togithub.com/hashicorp/terraform-plugin-framework/issues/925)) - function: Added `ConcatFuncErrors()` and `FuncErrorFromDiags()` helper functions for use when working with `FuncError` ([#​925](https://togithub.com/hashicorp/terraform-plugin-framework/issues/925))
hashicorp/terraform-plugin-go (github.com/hashicorp/terraform-plugin-go) ### [`v0.22.0`](https://togithub.com/hashicorp/terraform-plugin-go/releases/tag/v0.22.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-go/compare/v0.21.0...v0.22.0) BREAKING CHANGES: - tfprotov5+tfprotov6: Modified the response returned from the CallFunction RPC, replacing diagnostics with function error ([#​380](https://togithub.com/hashicorp/terraform-plugin-go/issues/380)) NOTES: - all: This Go module has been updated to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers building on earlier Go versions may experience errors. ([#​381](https://togithub.com/hashicorp/terraform-plugin-go/issues/381)) - all: If using terraform-plugin-framework, terraform-plugin-mux, or terraform-plugin-sdk, only upgrade this Go module when upgrading those Go modules to terraform-plugin-framework@v1.6.0, terraform-plugin-mux@v0.15.0, and terraform-plugin-sdk/v2@​v2.33.0, or greater, respectively ([#​380](https://togithub.com/hashicorp/terraform-plugin-go/issues/380)) ### [`v0.21.0`](https://togithub.com/hashicorp/terraform-plugin-go/releases/tag/v0.21.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-go/compare/v0.20.0...v0.21.0) NOTES: - tfprotov5+tfprotov6: An upcoming release will require the MoveResourceState implementation as part of ResourceServer ([#​364](https://togithub.com/hashicorp/terraform-plugin-go/issues/364)) FEATURES: - tfprotov5+tfprotov6: Upgraded protocols and added types to support the `MoveResourceState` RPC ([#​364](https://togithub.com/hashicorp/terraform-plugin-go/issues/364))
hashicorp/terraform-plugin-testing (github.com/hashicorp/terraform-plugin-testing) ### [`v1.7.0`](https://togithub.com/hashicorp/terraform-plugin-testing/releases/tag/v1.7.0) [Compare Source](https://togithub.com/hashicorp/terraform-plugin-testing/compare/v1.6.0...v1.7.0) NOTES: - helper/resource: Error messages generated by the testing logic, which were updated for clarity in this release, are not protected by compatibility promises. While testing logic errors are usable in certain scenarios with `ErrorCheck` and `ExpectError` functionality, error messaging checks should be based on provider-controlled messaging or when appropriate to use other testing features such as `ExpectNonEmptyPlan` instead. ([#​238](https://togithub.com/hashicorp/terraform-plugin-testing/issues/238)) - Numerical values in the plan are now represented as json.Number, not float64. Custom plan checks relying upon float64 representation may need altering ([#​248](https://togithub.com/hashicorp/terraform-plugin-testing/issues/248)) - plancheck: Deprecated `ExpectNullOutputValue` and `ExpectNullOutputValueAtPath`. Use `ExpectKnownOutputValue` and `ExpectKnownOutputValueAtPath` with `knownvalue.Null` instead ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) - plancheck: `ExpectKnownValue`, `ExpectKnownOutputValue` and `ExpectKnownOutputValueAtPath` plan checks are considered experimental and may be altered or removed in a subsequent release ([#​276](https://togithub.com/hashicorp/terraform-plugin-testing/issues/276)) - statecheck: `ExpectKnownValue`, `ExpectKnownOutputValue` and `ExpectKnownOutputValueAtPath` state checks are considered experimental and may be altered or removed in a subsequent release ([#​276](https://togithub.com/hashicorp/terraform-plugin-testing/issues/276)) - knownvalue: The `knownvalue` package is considered experimental and may be altered or removed in a subsequent release ([#​276](https://togithub.com/hashicorp/terraform-plugin-testing/issues/276)) - all: This Go module has been updated to Go 1.21 per the [Go support policy](https://go.dev/doc/devel/release#policy). It is recommended to review the [Go 1.21 release notes](https://go.dev/doc/go1.21) before upgrading. Any consumers building on earlier Go versions may experience errors ([#​300](https://togithub.com/hashicorp/terraform-plugin-testing/issues/300)) FEATURES: - plancheck: Added `ExpectKnownValue` plan check, which asserts that a given resource attribute has a defined type, and value ([#​248](https://togithub.com/hashicorp/terraform-plugin-testing/issues/248)) - plancheck: Added `ExpectKnownOutputValue` plan check, which asserts that a given output value has a defined type, and value ([#​248](https://togithub.com/hashicorp/terraform-plugin-testing/issues/248)) - plancheck: Added `ExpectKnownOutputValueAtPath` plan check, which asserts that a given output value at a specified path has a defined type, and value ([#​248](https://togithub.com/hashicorp/terraform-plugin-testing/issues/248)) - knownvalue: Introduced new `knownvalue` package which contains types for working with plan checks and state checks ([#​248](https://togithub.com/hashicorp/terraform-plugin-testing/issues/248)) - statecheck: Introduced new `statecheck` package with interface and built-in state check functionality ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) - statecheck: Added `ExpectKnownValue` state check, which asserts that a given resource attribute has a defined type, and value ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) - statecheck: Added `ExpectKnownOutputValue` state check, which asserts that a given output value has a defined type, and value ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) - statecheck: Added `ExpectKnownOutputValueAtPath` plan check, which asserts that a given output value at a specified path has a defined type, and value ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) - statecheck: Added `ExpectSensitiveValue` built-in state check, which asserts that a given attribute has a sensitive value ([#​275](https://togithub.com/hashicorp/terraform-plugin-testing/issues/275)) BUG FIXES: - helper/resource: Clarified error messaging from testing failures, especially when using `TestStep.PlanOnly: true` ([#​238](https://togithub.com/hashicorp/terraform-plugin-testing/issues/238)) - helper/resource: Fix detection of provider block declaration in `Config`, `ConfigDirectory`, and `ConfigFile` ([#​265](https://togithub.com/hashicorp/terraform-plugin-testing/issues/265)) - helper/resource: Fix detection of terraform block declaration in `Config`, `ConfigDirectory`, and `ConfigFile` ([#​265](https://togithub.com/hashicorp/terraform-plugin-testing/issues/265)) - helper/resource: Fixed internal deferred test helpers to properly report file and line information in test failures. ([#​292](https://togithub.com/hashicorp/terraform-plugin-testing/issues/292))

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.



This PR has been generated by Mend Renovate. View repository job log here.