Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump the go group across 1 directory with 7 updates #54

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 1, 2024

Bumps the go group with 6 updates in the / directory:

Package From To
github.com/hashicorp/go-retryablehttp 0.7.6 0.7.7
github.com/hashicorp/terraform-plugin-docs 0.19.2 0.19.4
github.com/hashicorp/terraform-plugin-framework 1.8.0 1.13.0
github.com/hashicorp/terraform-plugin-framework-validators 0.12.0 0.15.0
github.com/hashicorp/terraform-plugin-sdk/v2 2.33.0 2.35.0
github.com/labd/apollostudio-go-sdk 1.1.0 1.1.1

Updates github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7

Changelog

Sourced from github.com/hashicorp/go-retryablehttp's changelog.

0.7.7 (May 30, 2024)

BUG FIXES:

  • client: avoid potentially leaking URL-embedded basic authentication credentials in logs (#158)
Commits
  • 1542b31 v0.7.7
  • defb9f4 v0.7.7
  • a99f07b Merge pull request #158 from dany74q/danny/redacted-url-in-logs
  • 8a28c57 Merge branch 'main' into danny/redacted-url-in-logs
  • 86e852d Merge pull request #227 from hashicorp/dependabot/github_actions/actions/chec...
  • 47fe99e Bump actions/checkout from 4.1.5 to 4.1.6
  • 490fc06 Merge pull request #226 from testwill/ioutil
  • f3e9417 chore: remove refs to deprecated io/ioutil
  • See full diff in compare view

Updates github.com/hashicorp/terraform-plugin-docs from 0.19.2 to 0.19.4

Release notes

Sourced from github.com/hashicorp/terraform-plugin-docs's releases.

v0.19.4

NOTES:

  • validate: The number of files check has been removed to match the latest Terraform Registry ingress logic (#381)

BUG FIXES:

  • generate: Prevented incorrect attribute paths with nested attributes that contain multiple attributes (#380)

v0.19.3

BUG FIXES:

  • validate: Fixed issue with provider name not defaulting to directory (#376)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-docs's changelog.

0.19.4 (June 04, 2024)

NOTES:

  • validate: The number of files check has been removed to match the latest Terraform Registry ingress logic (#381)

BUG FIXES:

  • generate: Prevented incorrect attribute paths with nested attributes that contain multiple attributes (#380)

0.19.3 (May 28, 2024)

BUG FIXES:

  • validate: Fixed issue with provider name not defaulting to directory (#376)
Commits
  • 418cfb3 Update changelog
  • 8b33694 [CI] terraform-devex-repos automation
  • ac10598 [CI] terraform-devex-repos automation
  • 0257299 [CI] terraform-devex-repos automation
  • 3870756 generate: Prevent incorrect attribute association with very deep nesting (#382)
  • c656571 validate: Remove number of files check (#381)
  • 0638bc3 Update changelog
  • c74bb38 Result of tsccr-helper -log-level=info gha update -latest . (#379)
  • 7f32d68 validate: Default provider name to base directory when running validate (#377)
  • 56ab54b Bump github.com/hashicorp/go-version from 1.6.0 to 1.7.0 (#378)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-framework from 1.8.0 to 1.13.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-framework's releases.

v1.13.0

NOTES:

  • Ephemeral resource support is in technical preview and offered without compatibility promises until Terraform 1.10 is generally available. (#1050)

FEATURES:

  • ephemeral: New package for implementing ephemeral resources (#1050)
  • ephemeral/schema: New package for implementing ephemeral resource schemas (#1050)

ENHANCEMENTS:

  • provider: Added ProviderWithEphemeralResources interface for implementing ephemeral resources (#1050)
  • tfsdk: Added EphemeralResultData struct for representing ephemeral values produced by a provider, such as from an ephemeral resource (#1050)
  • provider: Added EphemeralResourceData to ConfigureResponse, to pass provider-defined data to ephemeral.EphemeralResource implementations (#1050)

v1.12.0

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#1033)

BUG FIXES:

  • providerserver: Fixed bug that prevented moved operation support between resource types for framework-only providers. (#1039)

v1.11.0

NOTES:

  • Framework reflection logic (Config.Get, Plan.Get, etc.) for structs with tfsdk field tags has been updated to support embedded structs that promote exported fields. For existing structs that embed unexported structs with exported fields, a tfsdk ignore tag (tfsdk:"-") can be added to ignore all promoted fields.

For example, the following struct will now return an error diagnostic:

type thingResourceModel struct {
	Attr1 types.String `tfsdk:"attr_1"`
	Attr2 types.Bool   `tfsdk:"attr_2"`
// Previously, this embedded struct was ignored, will now promote underlying fields
embeddedModel

}
type embeddedModel struct {
// No tfsdk tag
ExportedField string
}

To preserve the original behavior, a tfsdk ignore tag can be added to ignore the entire embedded struct:

... (truncated)

Changelog

Sourced from github.com/hashicorp/terraform-plugin-framework's changelog.

1.13.0 (October 31, 2024)

NOTES:

  • Ephemeral resource support is in technical preview and offered without compatibility promises until Terraform 1.10 is generally available. (#1050)

FEATURES:

  • ephemeral: New package for implementing ephemeral resources (#1050)
  • ephemeral/schema: New package for implementing ephemeral resource schemas (#1050)

ENHANCEMENTS:

  • provider: Added ProviderWithEphemeralResources interface for implementing ephemeral resources (#1050)
  • tfsdk: Added EphemeralResultData struct for representing ephemeral values produced by a provider, such as from an ephemeral resource (#1050)
  • provider: Added EphemeralResourceData to ConfigureResponse, to pass provider-defined data to ephemeral.EphemeralResource implementations (#1050)

1.12.0 (September 18, 2024)

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#1033)

BUG FIXES:

  • providerserver: Fixed bug that prevented moved operation support between resource types for framework-only providers. (#1039)

1.11.0 (August 06, 2024)

NOTES:

  • Framework reflection logic (Config.Get, Plan.Get, etc.) for structs with tfsdk field tags has been updated to support embedded structs that promote exported fields. For existing structs that embed unexported structs with exported fields, a tfsdk ignore tag (tfsdk:"-") can be added to ignore all promoted fields.

For example, the following struct will now return an error diagnostic:

type thingResourceModel struct {
	Attr1 types.String `tfsdk:"attr_1"`
	Attr2 types.Bool   `tfsdk:"attr_2"`
// Previously, this embedded struct was ignored, will now promote underlying fields
embeddedModel

}
type embeddedModel struct {
// No tfsdk tag
ExportedField string
}
</tr></table>

... (truncated)

Commits
  • 497e13a Update changelog
  • ae74f93 ephemeral: Initial ephemeral resource type implementation (#1050)
  • a2137d3 build(deps): Bump github.com/hashicorp/terraform-plugin-go (#1051)
  • b372415 Result of tsccr-helper -log-level=info gha update -latest . (#1048)
  • bca1b06 Result of tsccr-helper -log-level=info gha update -latest . (#1046)
  • ffca03d Result of tsccr-helper -log-level=info gha update -latest . (#1045)
  • e09ec9d Update changelog
  • e753600 build(deps): Bump github.com/hashicorp/terraform-plugin-go (#1041)
  • ba1098a add missing capability MoveResourceState (#1038)
  • 7076cca docs: Miscellaneous doc fixes in attribute + unit tests (#1027)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-framework-validators from 0.12.0 to 0.15.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-framework-validators's releases.

v0.15.0

FEATURES:

  • ephemeralvalidator: Introduce new package with declarative validators for ephemeral resource configurations (#242)

v0.14.0

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#229)
  • all: Previously, creating validators with invalid data would result in a nil value being returned and a panic from terraform-plugin-framework. This has been updated to return an implementation diagnostic referencing the invalid data/validator during config validation. (#235)

FEATURES:

  • boolvalidator: Added Equals validator (#232)

ENHANCEMENTS:

  • all: Implemented parameter interfaces for all value-based validators. This allows these validators to be used with provider-defined functions. (#235)

v0.13.0

NOTES:

  • all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#198)

FEATURES:

  • int32validator: New package which contains int32 type specific validators (#222)
  • float32validator: New package which contains float32 type specific validators (#222)

ENHANCEMENTS:

  • listvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)
  • mapvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)
  • setvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)

BUG FIXES:

  • Add the attribute from the request to the at-least-one validator's error message (#199)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-framework-validators's changelog.

0.15.0 (October 31, 2024)

FEATURES:

  • ephemeralvalidator: Introduce new package with declarative validators for ephemeral resource configurations (#242)

0.14.0 (October 17, 2024)

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#229)
  • all: Previously, creating validators with invalid data would result in a nil value being returned and a panic from terraform-plugin-framework. This has been updated to return an implementation diagnostic referencing the invalid data/validator during config validation. (#235)

FEATURES:

  • boolvalidator: Added Equals validator (#232)

ENHANCEMENTS:

  • all: Implemented parameter interfaces for all value-based validators. This allows these validators to be used with provider-defined functions. (#235)

0.13.0 (July 09, 2024)

NOTES:

  • all: This Go module has been updated to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#198)

FEATURES:

  • int32validator: New package which contains int32 type specific validators (#222)
  • float32validator: New package which contains float32 type specific validators (#222)

ENHANCEMENTS:

  • listvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)
  • mapvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)
  • setvalidator: Added ValueInt32sAre and ValueFloat32sAre validators (#222)

BUG FIXES:

  • Add the attribute from the request to the at-least-one validator's error message (#199)
Commits
  • 987f5ac Update changelog
  • b793fd3 ephemeralvalidator: Introduce new package for common ephemeral resource confi...
  • 761f545 build(deps): bump github.com/hashicorp/terraform-plugin-framework (#243)
  • 371aa75 build(deps): bump github.com/hashicorp/terraform-plugin-go (#241)
  • 9765f80 Result of tsccr-helper -log-level=info gha update -latest . (#240)
  • 081db0f Update changelog
  • aa6a2de all: Implement function parameter validation interfaces (#238)
  • 6acd967 Result of tsccr-helper -log-level=info gha update -latest . (#237)
  • 8beb218 Result of tsccr-helper -log-level=info gha update -latest . (#236)
  • 974015b boolvalidator: add Equals validator (#232)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-go from 0.23.0 to 0.25.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-go's releases.

v0.25.0

NOTES:

  • tfprotov5+tfprotov6: An upcoming release will require the EphemeralResourceServer implementation as part of ProviderServer. (#441)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new ephemeral resource type (#441)

v0.24.0

BREAKING CHANGES:

  • tfprotov5+tfprotov6: Removed temporary ResourceServerWithMoveResourceState interface type. Use ResourceServer instead. (#408)

NOTES:

  • all: If using terraform-plugin-mux, it must be upgraded to v0.16.0 or later to prevent compilation errors (#408)
  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#428)

BUG FIXES:

  • logging: Add existing MoveResourceState server capability to v5 and v6 logging (#432)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-go's changelog.

0.25.0 (October 30, 2024)

NOTES:

  • tfprotov5+tfprotov6: An upcoming release will require the EphemeralResourceServer implementation as part of ProviderServer. (#441)

FEATURES:

  • tfprotov5+tfprotov6: Upgraded protocols and added types to support the new ephemeral resource type (#441)

0.24.0 (September 18, 2024)

BREAKING CHANGES:

  • tfprotov5+tfprotov6: Removed temporary ResourceServerWithMoveResourceState interface type. Use ResourceServer instead. (#408)

NOTES:

  • all: If using terraform-plugin-mux, it must be upgraded to v0.16.0 or later to prevent compilation errors (#408)
  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#428)

BUG FIXES:

  • logging: Add existing MoveResourceState server capability to v5 and v6 logging (#432)
Commits
  • 3cebe39 Update changelog
  • 879185f tfprotov5+tfprotov6: Initial ephemeral resource type implementation (#441)
  • 8e75df6 Result of tsccr-helper -log-level=info gha update -latest . (#439)
  • ed475eb build(deps): Bump github.com/hashicorp/go-plugin from 1.6.1 to 1.6.2 (#440)
  • 4bb130f build(deps): Bump google.golang.org/protobuf from 1.34.2 to 1.35.1 (#437)
  • 9ad05a3 Result of tsccr-helper -log-level=info gha update -latest . (#438)
  • 47d2cbf Result of tsccr-helper -log-level=info gha update -latest . (#436)
  • e20c6d1 build(deps): Bump google.golang.org/grpc from 1.67.0 to 1.67.1 (#435)
  • e814129 build(deps): Bump google.golang.org/grpc from 1.66.2 to 1.67.0 (#434)
  • c0a3a56 Update changelog
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-sdk/v2 from 2.33.0 to 2.35.0

Release notes

Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's releases.

v2.35.0

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1373)
  • helper/schema: While this Go module will not receive support for ephemeral resource types, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1390)

v2.34.0

NOTES:

  • all: The v2.33.0 release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#1318)
  • This release contains support for deferred actions, which is an experimental feature only available in prerelease builds of Terraform 1.9 and later. This functionality is subject to change and is not protected by version compatibility guarantees. (#1335)

FEATURES:

  • helper/schema: Added (Provider).ConfigureProvider function for configuring providers that support additional features, such as deferred actions. (#1335)
  • helper/schema: Added (Resource).ResourceBehavior to allow additional control over deferred action behavior during plan modification. (#1335)
Changelog

Sourced from github.com/hashicorp/terraform-plugin-sdk/v2's changelog.

2.35.0 (October 31, 2024)

NOTES:

  • all: This Go module has been updated to Go 1.22 per the Go support policy. It is recommended to review the Go 1.22 release notes before upgrading. Any consumers building on earlier Go versions may experience errors. (#1373)
  • helper/schema: While this Go module will not receive support for ephemeral resource types, the provider server is updated to handle the new operations, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1390)

2.34.0 (May 17, 2024)

NOTES:

  • all: The v2.33.0 release updated this Go module to Go 1.21 per the Go support policy. It is recommended to review the Go 1.21 release notes before upgrading. Any consumers building on earlier Go versions may experience errors (#1318)
  • This release contains support for deferred actions, which is an experimental feature only available in prerelease builds of Terraform 1.9 and later. This functionality is subject to change and is not protected by version compatibility guarantees. (#1335)

FEATURES:

  • helper/schema: Added (Provider).ConfigureProvider function for configuring providers that support additional features, such as deferred actions. (#1335)
  • helper/schema: Added (Resource).ResourceBehavior to allow additional control over deferred action behavior during plan modification. (#1335)
Commits
  • da29621 Update changelog
  • 0569613 Update meta package SDKVersion
  • 23a11cf all: Initial ephemeral resource implementation (#1390)
  • 24fa92a build(deps): bump github.com/hashicorp/terraform-json (#1388)
  • 0875f54 build(deps): bump github.com/hashicorp/terraform-plugin-go (#1389)
  • 64f0922 Result of tsccr-helper -log-level=info gha update -latest . (#1387)
  • 71a8bde Result of tsccr-helper -log-level=info gha update -latest . (#1385)
  • dd6c100 Result of tsccr-helper -log-level=info gha update -latest . (#1381)
  • 5efee53 build(deps): bump golang.org/x/crypto from 0.27.0 to 0.28.0 (#1382)
  • b454e07 Fix typos (#1380)
  • Additional commits viewable in compare view

Updates github.com/labd/apollostudio-go-sdk from 1.1.0 to 1.1.1

Changelog

Sourced from github.com/labd/apollostudio-go-sdk's changelog.

v1.1.1 - 2024-05-17

Dependency

  • chore(deps): bump the go group with 2 updates
  • chore(deps): bump the github-actions group across 1 directory with 6 updates
Commits
  • 13882f0 Merge pull request #8 from labd/release/v1.1.1
  • 15eb7a6 Release v1.1.1
  • 150223a Update tests.yaml
  • 394d6f4 Merge pull request #5 from labd/dependabot/go_modules/go-3d2d127b56
  • dc85a2d Merge pull request #7 from labd/dependabot/github_actions/github-actions-1c7d...
  • 611be58 🔄 synced local '.github/' with remote 'projects/go-default/.github'
  • c401086 chore(deps): add changelog for dependabot updates
  • d13deff chore(deps): add changelog for dependabot updates
  • 891cc32 chore(deps): bump the github-actions group across 1 directory with 6 updates
  • 1fa4655 chore(deps): bump the go group with 2 updates
  • Additional commits viewable in compare view

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 show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the go group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/hashicorp/go-retryablehttp](https://github.com/hashicorp/go-retryablehttp) | `0.7.6` | `0.7.7` |
| [github.com/hashicorp/terraform-plugin-docs](https://github.com/hashicorp/terraform-plugin-docs) | `0.19.2` | `0.19.4` |
| [github.com/hashicorp/terraform-plugin-framework](https://github.com/hashicorp/terraform-plugin-framework) | `1.8.0` | `1.13.0` |
| [github.com/hashicorp/terraform-plugin-framework-validators](https://github.com/hashicorp/terraform-plugin-framework-validators) | `0.12.0` | `0.15.0` |
| [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) | `2.33.0` | `2.35.0` |
| [github.com/labd/apollostudio-go-sdk](https://github.com/labd/apollostudio-go-sdk) | `1.1.0` | `1.1.1` |



Updates `github.com/hashicorp/go-retryablehttp` from 0.7.6 to 0.7.7
- [Changelog](https://github.com/hashicorp/go-retryablehttp/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-retryablehttp@v0.7.6...v0.7.7)

Updates `github.com/hashicorp/terraform-plugin-docs` from 0.19.2 to 0.19.4
- [Release notes](https://github.com/hashicorp/terraform-plugin-docs/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-docs/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-docs@v0.19.2...v0.19.4)

Updates `github.com/hashicorp/terraform-plugin-framework` from 1.8.0 to 1.13.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-framework/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-framework/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-framework@v1.8.0...v1.13.0)

Updates `github.com/hashicorp/terraform-plugin-framework-validators` from 0.12.0 to 0.15.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-framework-validators/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-framework-validators/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-framework-validators@v0.12.0...v0.15.0)

Updates `github.com/hashicorp/terraform-plugin-go` from 0.23.0 to 0.25.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-go/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-go/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-go@v0.23.0...v0.25.0)

Updates `github.com/hashicorp/terraform-plugin-sdk/v2` from 2.33.0 to 2.35.0
- [Release notes](https://github.com/hashicorp/terraform-plugin-sdk/releases)
- [Changelog](https://github.com/hashicorp/terraform-plugin-sdk/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-plugin-sdk@v2.33.0...v2.35.0)

Updates `github.com/labd/apollostudio-go-sdk` from 1.1.0 to 1.1.1
- [Release notes](https://github.com/labd/apollostudio-go-sdk/releases)
- [Changelog](https://github.com/labd/apollostudio-go-sdk/blob/main/CHANGELOG.md)
- [Commits](labd/apollostudio-go-sdk@v1.1.0...v1.1.1)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/go-retryablehttp
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-docs
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-framework
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-framework-validators
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go
- dependency-name: github.com/labd/apollostudio-go-sdk
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner November 1, 2024 22:56
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 1, 2024
@dependabot dependabot bot requested a review from demeyerthom November 1, 2024 22:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file go Pull requests that update Go code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants