datasource: The DataSource type GetSchema method has been deprecated. Use the Schema method instead. (#546)
provider: The Provider type GetSchema method has been deprecated. Use the Schema method instead. (#553)
resource: The RequiresReplace() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.RequiresReplace() or resource/schema/stringplanmodifier.RequiresReplaceIfConfigured() (#565)
resource: The RequiresReplaceIf() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.RequiresReplaceIf() (#565)
resource: The Resource type GetSchema method has been deprecated. Use the Schema method instead. (#558)
resource: The UseStateForUnknown() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.UseStateForUnknown() (#565)
tfsdk: The Attribute, Block, and Schema types have been deprecated. Use the similarly named types in the datasource/schema, provider/schema, and resource/schema packages instead. (#563)
tfsdk: The ListNestedAttributes, MapNestedAttributes, SetNestedAttributes, and SingleNestedAttributes functions have been deprecated. Use the similarly named types in the datasource/schema, provider/schema, and resource/schema packages instead. (#563)
BREAKING CHANGES:
provider: The ProviderWithMetaSchema type GetMetaSchema method has been replaced with the MetaSchema method (#562)
tfsdk: The Attribute type FrameworkType() method has been removed. Use the GetType() method instead which returns the same information. (#543)
tfsdk: The Attribute type GetType() method now returns type information whether the attribute implements the Type field or Attributes field. (#543)
tfsdk: The Config, Plan, and State type Schema field type has been updated from tfsdk.Schema to the generic fwschema.Schema interface to enable additional schema implementations (#544)
FEATURES:
datasource/schema: New package which contains schema interfaces and types relevant to data sources (#546)
provider/schema: New package which contains schema interfaces and types relevant to providers (#553)
resource/schema/planmodifier: New package which contains type-specific schema plan modifier interfaces (#557)
resource/schema: New package which contains schema interfaces and types relevant to resources (#558)
resource/schema: New packages, such as stringplanmodifier which contain type-specific schema plan modifier implementations (#565)
schema/validator: New package which contains type-specific schema validator interfaces (#542)
BUG FIXES:
diag: 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. (#549)
internal/fwserver: Ensured blocks are ignored when marking computed nils as unknown during resource change planning (#552)
datasource: The DataSource type GetSchema method has been deprecated. Use the Schema method instead. (#546)
provider: The Provider type GetSchema method has been deprecated. Use the Schema method instead. (#553)
resource: The RequiresReplace() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.RequiresReplace() or resource/schema/stringplanmodifier.RequiresReplaceIfConfigured() (#565)
resource: The RequiresReplaceIf() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.RequiresReplaceIf() (#565)
resource: The Resource type GetSchema method has been deprecated. Use the Schema method instead. (#558)
resource: The UseStateForUnknown() plan modifier has been deprecated. Use a type-specific plan modifier instead, such as resource/schema/stringplanmodifier.UseStateForUnknown() (#565)
tfsdk: The Attribute, Block, and Schema types have been deprecated. Use the similarly named types in the datasource/schema, provider/schema, and resource/schema packages instead. (#563)
tfsdk: The ListNestedAttributes, MapNestedAttributes, SetNestedAttributes, and SingleNestedAttributes functions have been deprecated. Use the similarly named types in the datasource/schema, provider/schema, and resource/schema packages instead. (#563)
BREAKING CHANGES:
provider: The ProviderWithMetaSchema type GetMetaSchema method has been replaced with the MetaSchema method (#562)
tfsdk: The Attribute type FrameworkType() method has been removed. Use the GetType() method instead which returns the same information. (#543)
tfsdk: The Attribute type GetType() method now returns type information whether the attribute implements the Type field or Attributes field. (#543)
tfsdk: The Config, Plan, and State type Schema field type has been updated from tfsdk.Schema to the generic fwschema.Schema interface to enable additional schema implementations (#544)
FEATURES:
datasource/schema: New package which contains schema interfaces and types relevant to data sources (#546)
provider/schema: New package which contains schema interfaces and types relevant to providers (#553)
resource/schema/planmodifier: New package which contains type-specific schema plan modifier interfaces (#557)
resource/schema: New package which contains schema interfaces and types relevant to resources (#558)
resource/schema: New packages, such as stringplanmodifier which contain type-specific schema plan modifier implementations (#565)
schema/validator: New package which contains type-specific schema validator interfaces (#542)
BUG FIXES:
diag: 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. (#549)
internal/fwserver: Ensured blocks are ignored when marking computed nils as unknown during resource change planning (#552)
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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot rebase.
Bumps github.com/hashicorp/terraform-plugin-framework from 0.16.0 to 0.17.0.
Release notes
Sourced from github.com/hashicorp/terraform-plugin-framework's releases.
Changelog
Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.
Commits
54ed5dc
Update CHANGELOG for 0.17.0d51781c
website: Updates for tfsdk Attribute, Block, and Schema deprecations (#564)4db7ec6
resource/schema: New packages which contain type-specific schema plan modifie...8cde922
tfsdk: Deprecate Attribute, Block, and Schema types (#563)9353b7c
provider/metaschema: Initial package (#562)abe43b2
Fix nesting mode for map, set and single nested attribute within data source,...55244fe
provider/schema: Fix Go documentation for Schema type (#559)30b78ab
resource/schema: Initial package (#558)28f4804
resource/schema/planmodifier: New type-specific plan modifiers package (#557)1dfcd30
test: block attributes with MarkComputedNilsAsUnknown (#555)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 ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)