Skip to content

Commit

Permalink
Bump github.com/hashicorp/terraform-plugin-framework from 1.2.0 to 1.…
Browse files Browse the repository at this point in the history
…3.0 (#25)

Bumps
[github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework)
from 1.2.0 to 1.3.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-plugin-framework/releases">github.com/hashicorp/terraform-plugin-framework's
releases</a>.</em></p>
<blockquote>
<h2>v1.3.0</h2>
<p>NOTES:</p>
<ul>
<li>datasource/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
</ul>
<p>ENHANCEMENTS:</p>
<ul>
<li>datasource/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>datasource/schema: Raise validation errors if attempting to use
top-level <code>for_each</code> attribute name, which requires special
Terraform configuration syntax to be usable by the data source (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/704">#704</a>)</li>
<li>resource/schema: Raise validation errors if attempting to use
top-level <code>for_each</code> attribute name, which requires special
Terraform configuration syntax to be usable by the resource (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/704">#704</a>)</li>
<li>datasource/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>provider/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>resource/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>all: Improved SDK logging performance when messages would be skipped
due to configured logging level (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/744">#744</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>datasource/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>tfsdk: Raise framework errors instead of generic upstream errors or
panics when encountering unexpected values with <code>Set()</code>
methods (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/715">#715</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md">github.com/hashicorp/terraform-plugin-framework's
changelog</a>.</em></p>
<blockquote>
<h2>1.3.0 (June 07, 2023)</h2>
<p>NOTES:</p>
<ul>
<li>datasource/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: The <code>Schema</code> type
<code>Validate()</code> method has been deprecated in preference of
<code>ValidateImplementation()</code> (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
</ul>
<p>ENHANCEMENTS:</p>
<ul>
<li>datasource/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: Added <code>Schema</code> type
<code>ValidateImplementation()</code> method, which performs
framework-defined schema validation and can be used in unit testing (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>datasource/schema: Raise validation errors if attempting to use
top-level <code>for_each</code> attribute name, which requires special
Terraform configuration syntax to be usable by the data source (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/704">#704</a>)</li>
<li>resource/schema: Raise validation errors if attempting to use
top-level <code>for_each</code> attribute name, which requires special
Terraform configuration syntax to be usable by the resource (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/704">#704</a>)</li>
<li>datasource/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>provider/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>resource/schema: Raise validation errors if attempting to use
attribute names with leading numerics (0-9), which are invalid in the
Terraform configuration language (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/705">#705</a>)</li>
<li>all: Improved SDK logging performance when messages would be skipped
due to configured logging level (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/744">#744</a>)</li>
</ul>
<p>BUG FIXES:</p>
<ul>
<li>datasource/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/metaschema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>provider/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>resource/schema: Raise errors with <code>ListAttribute</code>,
<code>MapAttribute</code>, <code>ObjectAttribute</code>, and
<code>SetAttribute</code> implementations instead of panics when missing
required <code>AttributeTypes</code> or <code>ElementTypes</code> fields
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/699">#699</a>)</li>
<li>tfsdk: Raise framework errors instead of generic upstream errors or
panics when encountering unexpected values with <code>Set()</code>
methods (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/715">#715</a>)</li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/2a1cd4caf36950aac87f23d22737527c43fa65d2"><code>2a1cd4c</code></a>
Update changelog</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/0ac33a2d11da2df8141258cc4ec4f704b42333c8"><code>0ac33a2</code></a>
resource/schema: Revert prevent UseStateForUnknown data misalignment by
raisi...</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/1e82228e6631748852c4cd00b6c7e1c0c1a4cfc2"><code>1e82228</code></a>
build(deps): Bump golang.org/x/net in /tools (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/746">#746</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/6486f941c4371b48be6bf187670e98062b8341a4"><code>6486f94</code></a>
Add <code>tools</code> folder to dependabot (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/749">#749</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/f1bfc9870bb3f9a4c92fe03d2fb9502caa89bdb2"><code>f1bfc98</code></a>
build(deps): Bump golangci/golangci-lint-action from 3.4.0 to 3.5.0 (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/748">#748</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/c5f89cd3c14a841b96adc35c3a5877cbfafea93e"><code>c5f89cd</code></a>
[COMPLIANCE] Add copywrite config, GH workflow and headers (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/745">#745</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/56b02e309aade23c5109129f203df7b34103be02"><code>56b02e3</code></a>
build(deps): Bump github.com/hashicorp/terraform-plugin-log from 0.8.0
to 0.9...</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/7b8be49df0f246b52d5c168679e4e3ac669672ff"><code>7b8be49</code></a>
Type-Based Semantic Equality (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/737">#737</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/e0c4951235e653764578ed30f64d4964bdd805af"><code>e0c4951</code></a>
Fix link (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/734">#734</a>)
(<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/743">#743</a>)</li>
<li><a
href="https://github.com/hashicorp/terraform-plugin-framework/commit/8938148fe6492e3120739aa171f74b621ec34479"><code>8938148</code></a>
build(deps): Bump actions/setup-go from 4.0.0 to 4.0.1 (<a
href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/742">#742</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.2.0...v1.3.0">compare
view</a></li>
</ul>
</details>
<br />


[![Dependabot compatibility
score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/hashicorp/terraform-plugin-framework&package-manager=go_modules&previous-version=1.2.0&new-version=1.3.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)

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-automerge-start)
[//]: # (dependabot-automerge-end)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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)


</details>
  • Loading branch information
tdabasinskas committed Jun 8, 2023
2 parents 2446938 + 550249e commit 1f2e028
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ go 1.20

require (
github.com/hashicorp/terraform-plugin-docs v0.14.1
github.com/hashicorp/terraform-plugin-framework v1.2.0
github.com/hashicorp/terraform-plugin-framework v1.3.0
github.com/hashicorp/terraform-plugin-framework-validators v0.10.0
github.com/hashicorp/terraform-plugin-go v0.15.0
github.com/hashicorp/terraform-plugin-log v0.9.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 1f2e028

Please sign in to comment.