6.md (14135B)
1 # PR #6 Bump github.com/hashicorp/terraform-plugin-framework from 1.4.2 to 1.6.0 2 3 - **Status:** closed 4 - **Author:** @dependabot[bot] 5 - **Created:** 2024-02-29T02:50:29Z 6 - **Branch:** dependabot/go_modules/github.com/hashicorp/terraform-plugin-framework-1.6.0 → main 7 - **Closed:** 2024-03-06T02:07:50Z 8 - **Labels:** dependencies 9 - **Diff:** [6.diff](./6.diff) 10 11 --- 12 13 Bumps [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) from 1.4.2 to 1.6.0. 14 <details> 15 <summary>Release notes</summary> 16 <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> 17 <blockquote> 18 <h2>v1.6.0</h2> 19 <p>BREAKING CHANGES:</p> 20 <ul> 21 <li>function: Changed the framework type for variadic parameters to <code>types.TupleType</code>, where each element is the same element type. Provider-defined functions using a <code>types.List</code> for retrieving variadic argument data will need to update their code to use <code>types.Tuple</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/923">#923</a>)</li> 22 <li>function: Altered the <code>RunResponse</code> type, replacing <code>Diagnostics</code> with <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 23 <li>diag: Removed <code>DiagnosticWithFunctionArgument</code> interface. Removed <code>NewArgumentErrorDiagnostic()</code>, <code>NewArgumentWarningDiagnostic()</code> and <code>WithFunctionArgument()</code> functions. Removed <code>AddArgumentError()</code> and <code>AddArgumentWarning()</code> methods from <code>Diagnostics</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 24 </ul> 25 <p>FEATURES:</p> 26 <ul> 27 <li>resource: Added the <code>ResourceWithMoveState</code> interface, which enables state moves across resource types with Terraform 1.8 and later (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/917">#917</a>)</li> 28 </ul> 29 <p>ENHANCEMENTS:</p> 30 <ul> 31 <li>privatestate: Added support for <code>SetKey()</code> method to fully remove key with <code>nil</code> or zero-length value (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/910">#910</a>)</li> 32 <li>function: Added <code>FuncError</code> type, required for <code>RunResponse</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 33 <li>function: Added <code>NewFuncError()</code> and <code>NewArgumentFuncError()</code> functions, which create a <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 34 <li>function: Added <code>ConcatFuncErrors()</code> and <code>FuncErrorFromDiags()</code> helper functions for use when working with <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 35 </ul> 36 <h2>v1.5.0</h2> 37 <p>NOTES:</p> 38 <ul> 39 <li>all: Update <code>google.golang.org/grpc</code> dependency to address CVE-2023-44487 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/865">#865</a>)</li> 40 <li>Provider-defined function support is in technical preview and offered without compatibility promises until Terraform 1.8 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 41 </ul> 42 <p>FEATURES:</p> 43 <ul> 44 <li>function: New package for implementing provider defined functions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 45 </ul> 46 <p>ENHANCEMENTS:</p> 47 <ul> 48 <li>types/basetypes: Added <code>TupleType</code> and <code>TupleValue</code> implementations, which are only necessary for dynamic value handling (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/870">#870</a>)</li> 49 <li>diag: Added <code>NewArgumentErrorDiagnostic()</code> and <code>NewArgumentWarningDiagnostic()</code> functions, which create diagnostics with the function argument position set (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 50 <li>provider: Added <code>ProviderWithFunctions</code> interface for implementing provider defined functions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 51 <li>diag: Added <code>(Diagnostics).AddArgumentError()</code> and <code>(Diagnostics).AddArgumentWarning()</code> methods for appending function argument diagnostics (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 52 </ul> 53 </blockquote> 54 </details> 55 <details> 56 <summary>Changelog</summary> 57 <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> 58 <blockquote> 59 <h2>1.6.0 (February 28, 2024)</h2> 60 <p>BREAKING CHANGES:</p> 61 <ul> 62 <li>function: Changed the framework type for variadic parameters to <code>types.TupleType</code>, where each element is the same element type. Provider-defined functions using a <code>types.List</code> for retrieving variadic argument data will need to update their code to use <code>types.Tuple</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/923">#923</a>)</li> 63 <li>function: Altered the <code>RunResponse</code> type, replacing <code>Diagnostics</code> with <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 64 <li>diag: Removed <code>DiagnosticWithFunctionArgument</code> interface. Removed <code>NewArgumentErrorDiagnostic()</code>, <code>NewArgumentWarningDiagnostic()</code> and <code>WithFunctionArgument()</code> functions. Removed <code>AddArgumentError()</code> and <code>AddArgumentWarning()</code> methods from <code>Diagnostics</code>. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 65 </ul> 66 <p>FEATURES:</p> 67 <ul> 68 <li>resource: Added the <code>ResourceWithMoveState</code> interface, which enables state moves across resource types with Terraform 1.8 and later (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/917">#917</a>)</li> 69 </ul> 70 <p>ENHANCEMENTS:</p> 71 <ul> 72 <li>privatestate: Added support for <code>SetKey()</code> method to fully remove key with <code>nil</code> or zero-length value (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/910">#910</a>)</li> 73 <li>function: Added <code>FuncError</code> type, required for <code>RunResponse</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 74 <li>function: Added <code>NewFuncError()</code> and <code>NewArgumentFuncError()</code> functions, which create a <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 75 <li>function: Added <code>ConcatFuncErrors()</code> and <code>FuncErrorFromDiags()</code> helper functions for use when working with <code>FuncError</code> (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/925">#925</a>)</li> 76 </ul> 77 <h2>1.5.0 (January 11, 2024)</h2> 78 <p>NOTES:</p> 79 <ul> 80 <li>all: Update <code>google.golang.org/grpc</code> dependency to address CVE-2023-44487 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/865">#865</a>)</li> 81 <li>Provider-defined function support is in technical preview and offered without compatibility promises until Terraform 1.8 is generally available. (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 82 </ul> 83 <p>FEATURES:</p> 84 <ul> 85 <li>function: New package for implementing provider defined functions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 86 </ul> 87 <p>ENHANCEMENTS:</p> 88 <ul> 89 <li>types/basetypes: Added <code>TupleType</code> and <code>TupleValue</code> implementations, which are only necessary for dynamic value handling (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/870">#870</a>)</li> 90 <li>diag: Added <code>NewArgumentErrorDiagnostic()</code> and <code>NewArgumentWarningDiagnostic()</code> functions, which create diagnostics with the function argument position set (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 91 <li>provider: Added <code>ProviderWithFunctions</code> interface for implementing provider defined functions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 92 <li>diag: Added <code>(Diagnostics).AddArgumentError()</code> and <code>(Diagnostics).AddArgumentWarning()</code> methods for appending function argument diagnostics (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/889">#889</a>)</li> 93 </ul> 94 </blockquote> 95 </details> 96 <details> 97 <summary>Commits</summary> 98 <ul> 99 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/f35653eee5dbea1a5cbcd1f421f0ec6f614a4d87"><code>f35653e</code></a> Update changelog</li> 100 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/a99599148977b8ec59e146a1545a4ca7118684e9"><code>a995991</code></a> function: Replace usage of diagnostics with function errors during execution ...</li> 101 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/3c7a391644c7f8b8d18d8cb61153f937c80893ad"><code>3c7a391</code></a> reflect: Determine equivalency of float32 or float64, and *big.Float via stri...</li> 102 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/8d0d29d8fb30aae242a3d53ccb480dc64fc471fb"><code>8d0d29d</code></a> docs: add import statements to default-values.mdx (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/851">#851</a>)</li> 103 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/a8189f11c6e321fa5f790162ec64c93992ca33f5"><code>a8189f1</code></a> function: Switch the representation of variadic arguments to <code>types.Tuple</code> (#...</li> 104 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/bcbb70badb04f3555e70249d63c822a1c786cd56"><code>bcbb70b</code></a> Result of tsccr-helper -log-level=info gha update -latest . (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/924">#924</a>)</li> 105 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/86b2acb19e368d753e639cd91c685e76ee7052e7"><code>86b2acb</code></a> resource: Initial MoveResourceState RPC support (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/917">#917</a>)</li> 106 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/f471850d29cebf4e8e67eb858a72840dceb03bb9"><code>f471850</code></a> Result of tsccr-helper -log-level=info gha update -latest . (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/918">#918</a>)</li> 107 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/f2e8b335f1dccd69e967e40e69dc5d97a22b00f7"><code>f2e8b33</code></a> build(deps): Bump hashicorp/setup-terraform from 2.0.3 to 3.0.0 (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/916">#916</a>)</li> 108 <li><a href="https://github.com/hashicorp/terraform-plugin-framework/commit/0185b95cfb1416ec3af05de3c3596e4fd9883bb3"><code>0185b95</code></a> Added GHA dependabot config for managing hashicorp actions (<a href="https://redirect.github.com/hashicorp/terraform-plugin-framework/issues/915">#915</a>)</li> 109 <li>Additional commits viewable in <a href="https://github.com/hashicorp/terraform-plugin-framework/compare/v1.4.2...v1.6.0">compare view</a></li> 110 </ul> 111 </details> 112 <br /> 113 114 115 [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 116 117 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`. 118 119 [//]: # (dependabot-automerge-start) 120 [//]: # (dependabot-automerge-end) 121 122 --- 123 124 <details> 125 <summary>Dependabot commands and options</summary> 126 <br /> 127 128 You can trigger Dependabot actions by commenting on this PR: 129 - `@dependabot rebase` will rebase this PR 130 - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it 131 - `@dependabot merge` will merge this PR after your CI passes on it 132 - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it 133 - `@dependabot cancel merge` will cancel a previously requested merge and block automerging 134 - `@dependabot reopen` will reopen this PR if it is closed 135 - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually 136 - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency 137 - `@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) 138 - `@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) 139 - `@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) 140 141 142 </details> 143 144 145 ## Comments 146 147 ### @dependabot[bot] — 2024-03-06T02:07:50Z 148 149 Superseded by #7. 150