-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tfprotov5+tfprotov6: Require FunctionServer in ProviderServer and Mov…
…eResourceState in ResourceServer (#388) Reference: #353 Reference: #363 This removes the temporary handling to smoothly release the new Terraform 1.8 and later RPC handling for provider servers. These changes codify this Go module's desired design that it reflects the protocol via its required implementations.
- Loading branch information
Showing
9 changed files
with
56 additions
and
150 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: BREAKING CHANGES | ||
body: 'tfprotov5+tfprotov6: `FunctionServer` interface is now required in `ProviderServer`. | ||
Implementations not needing function support can return errors from the `GetFunctions` | ||
and `CallFunction` methods.' | ||
time: 2024-03-11T09:32:08.806864-04:00 | ||
custom: | ||
Issue: "388" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
kind: BREAKING CHANGES | ||
body: 'tfprotov5+tfprotov6: `MoveResourceState` method is now required in | ||
`ResourceServer`. Implementations not needing move state support can return | ||
errors from the `MoveResourceState` method.' | ||
time: 2024-03-11T09:34:36.800884-04:00 | ||
custom: | ||
Issue: "388" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
kind: NOTES | ||
body: 'all: To prevent compilation errors, ensure your Go module is updated to at | ||
least terraform-plugin-framework@v1.6.0, terraform-plugin-mux@v0.15.0, | ||
terraform-plugin-sdk/v2@v2.33.0, and terraform-plugin-testing@v1.7.0 before | ||
upgrading this dependency.' | ||
time: 2024-03-11T09:37:36.503168-04:00 | ||
custom: | ||
Issue: "388" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters