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

Dependencies: Bump the gomod group with 10 updates #196

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 25, 2024

Bumps the gomod group with 10 updates:

Package From To
github.com/hashicorp/hcl/v2 2.19.1 2.22.0
github.com/hashicorp/terraform-plugin-sdk/v2 2.29.0 2.34.0
github.com/sergi/go-diff 1.3.1 1.3.2-0.20230802210424-5b0b94c5c0d3
github.com/zclconf/go-cty-yaml 1.0.3 1.1.0
k8s.io/api 0.31.0 0.31.2
k8s.io/apimachinery 0.31.0 0.31.2
k8s.io/cli-runtime 0.31.0 0.31.2
k8s.io/client-go 0.31.0 0.31.2
k8s.io/kube-aggregator 0.31.0 0.31.2
k8s.io/kubectl 0.31.0 0.31.2

Updates github.com/hashicorp/hcl/v2 from 2.19.1 to 2.22.0

Release notes

Sourced from github.com/hashicorp/hcl/v2's releases.

v2.22.0

Enhancements

  • feat: return an ExprSyntaxError for invalid references that end in a dot (#692)

v2.21.0

Enhancements

  • Introduce ParseTraversalPartial, which allows traversals that include the splat ([*]) index operator. (#673)
  • ext/dynblock: Now accepts marked values in for_each, and will transfer those marks (as much as technically possible) to values in the generated blocks. (#679)

Bugs Fixed

  • Expression evaluation will no longer panic if the splat operator is applied to an unknown value that has cty marks. (#678)

v2.20.1

Bugs Fixed

  • Return ExprSyntaxError when an invalid namespaced function is encountered during parsing (#668)

Internal

  • Standardize on only two value dumping/diffing libraries (#669)

v2.20.0

What's Changed

New Contributors

Full Changelog: hashicorp/hcl@v2.19.1...v2.20.0

Changelog

Sourced from github.com/hashicorp/hcl/v2's changelog.

v2.22.0 (August 26, 2024)

Enhancements

  • feat: return an ExprSyntaxError for invalid references that end in a dot (#692)

v2.21.0 (June 19, 2024)

Enhancements

  • Introduce ParseTraversalPartial, which allows traversals that include the splat ([*]) index operator. (#673)
  • ext/dynblock: Now accepts marked values in for_each, and will transfer those marks (as much as technically possible) to values in the generated blocks. (#679)

Bugs Fixed

  • Expression evaluation will no longer panic if the splat operator is applied to an unknown value that has cty marks. (#678)

v2.20.1 (March 26, 2024)

Bugs Fixed

  • Return ExprSyntaxError when an invalid namespaced function is encountered during parsing (#668)

Internal

  • Standardize on only two value dumping/diffing libraries (#669)

v2.20.0 (February 29, 2024)

Enhancements

  • Support for namespaced functions (#639)

Bugs Fixed

  • ext/dynblock: if iterator is invalid return this error instead of consequential errors (#656)

v2.19.0 (October 16, 2023)

Enhancements

  • ext/dynblock: dynblock.Expand now supports an optional hook for calling applications to check and potentially veto (by returning error diagnostics) particular for_each values. The behavior is unchanged for callers that don't set the new option. (#634)

Bugs Fixed

  • hclsyntax: Further fixes for treatment of "marked" values in the conditional expression, and better tracking of refined values into the conditional expression results, building on the fixes from v2.18.1. (#633)

v2.18.1 (October 5, 2023)

Bugs Fixed

... (truncated)

Commits
  • 2442aca Merge pull request #694 from hashicorp/prepare-release-2.22.0
  • 141e3db Prepare for v2.22.0 release
  • 06aab2a Merge pull request #693 from hashicorp/update-changelog-692
  • f68c58f Update Changelog.md
  • ae53b93 Merge pull request #692 from hashicorp/support-incomplete-references-in-objec...
  • 117baa8 feat: return an ExprSyntaxError for invalid references that end in a dot (com...
  • 360ae57 prepare for v2.21.0 release
  • f7e093a github: Pin action refs to latest trusted by TSCCR (#683)
  • 212a40e Update CHANGELOG.md
  • 318bbfe hcldec: Allow body-derived values to be marked
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-plugin-sdk/v2 from 2.29.0 to 2.34.0

Release notes

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

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)

v2.33.0

NOTES:

  • helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#1316)

v2.32.0

NOTES:

  • helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1307)

v2.31.0

NOTES:

  • helper/schema: While this Go module will not receive support for provider-defined functions, 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. (#1288)

v2.30.0

NOTES:

  • meta: The SDKVersion variable, SDKPrerelease variable, and SDKVersionString() function have been deprecated. Use the Go standard library runtime/debug package build information instead. (#1257)

BUG FIXES:

  • meta: Fixed version in SDKVersion variable and SDKVersionString() function (#1257)
  • helper/schema: Ensured (ResourceData).GetRawConfig() data is populated for Provider.ConfigureFunc and Provider.ConfigureContextFunc (#1270)
  • helper/schema: Ensured (ResourceData).GetOkExists() second result is true when configuration contains zero-value data in Provider.ConfigureFunc and Provider.ConfigureContextFunc (#1270)
Changelog

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

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)

2.33.0 (February 23, 2024)

NOTES:

  • helper/schema: While this Go module will not receive support for provider defined functions, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future (#1316)

2.32.0 (January 29, 2024)

NOTES:

  • helper/schema: While this Go module will not receive support for moving resource state across resource types, the provider server is updated to handle the new operation, which will be required to prevent errors when updating terraform-plugin-framework or terraform-plugin-mux in the future. (#1307)

2.31.0 (December 14, 2023)

NOTES:

  • helper/schema: While this Go module will not receive support for provider-defined functions, 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. (#1288)

2.30.0 (November 09, 2023)

NOTES:

  • meta: The SDKVersion variable, SDKPrerelease variable, and SDKVersionString() function have been deprecated. Use the Go standard library runtime/debug package build information instead. (#1257)

BUG FIXES:

  • meta: Fixed version in SDKVersion variable and SDKVersionString() function (#1257)
  • helper/schema: Ensured (ResourceData).GetRawConfig() data is populated for Provider.ConfigureFunc and Provider.ConfigureContextFunc (#1270)
  • helper/schema: Ensured (ResourceData).GetOkExists() second result is true when configuration contains zero-value data in Provider.ConfigureFunc and Provider.ConfigureContextFunc (#1270)
Commits
  • f4b227f Update changelog
  • 19860a8 Update meta package SDKVersion
  • 02c429c all: Add automatic deferred action support for unknown provider configuration...
  • b76c8ef build(deps): bump github.com/hashicorp/terraform-exec (#1341)
  • f03b54b build(deps): bump github.com/hashicorp/terraform-json (#1340)
  • 4b066a0 Result of tsccr-helper -log-level=info gha update -latest . (#1339)
  • a8e0607 build(deps): bump hashicorp/setup-copywrite from 1.1.2 to 1.1.3 (#1338)
  • 04daf66 build(deps): bump github.com/hashicorp/terraform-plugin-go (#1336)
  • f3da651 build(deps): bump golang.org/x/crypto from 0.22.0 to 0.23.0 (#1337)
  • 29017d5 Result of tsccr-helper -log-level=info gha update -latest . (#1334)
  • Additional commits viewable in compare view

Updates github.com/sergi/go-diff from 1.3.1 to 1.3.2-0.20230802210424-5b0b94c5c0d3

Commits

Updates github.com/zclconf/go-cty-yaml from 1.0.3 to 1.1.0

Changelog

Sourced from github.com/zclconf/go-cty-yaml's changelog.

1.1.0 (October 2, 2024)

  • The YAML decoder now exactly follows the YAML specification when resolving the implied YAML tags for integers. (#6)

    The new implementation matches the patterns in the specification, but it now has stricter integer resolution than the previous release. The primary goal of this library is to translate valid YAML syntax to and from cty's type system and so deviation from the YAML grammar is treated typically as a bug to be fixed even if that means a change in behavior for existing callers that were dealing in invalid input. This further improves earlier work done in v1.0.2, which didn't quite match the spec.

    In particular:

    • Scalars containing underscores can no longer be resolved as integers.
    • Octal and hexadecimal sequences must now start with exactly Oo and 0x respectively to be resolved as integers; a leading sign (+ or -) is accepted only for the decimal integer and float patterns.

    The YAML tag resolution process infers an implied type tag for each scalar value that isn't explicitly tagged. go-cty-yaml then uses the YAML tags (whether implied or explicit) to decide which cty type to use for each value in the result.

    The scalar values that are no longer resolved as numbers will now all be resolved as strings instead, and so calling applications can perform further parsing and transformation on the resulting strings to accept forms outside of those in the YAML specification, if required.

Commits
  • 0e40a15 v1.1.0 release
  • a2572e6 Implicit number recognition pattern now matches YAML specifications
  • See full diff in compare view

Updates k8s.io/api from 0.31.0 to 0.31.2

Commits
  • bc73ef7 Update dependencies to v0.31.2 tag
  • 46f6230 Merge pull request #126761thockin/automated-cherry-pick-of-#126749
  • 1857695 fix v1a3 ResourceSliceList metadata field name
  • See full diff in compare view

Updates k8s.io/apimachinery from 0.31.0 to 0.31.2

Commits

Updates k8s.io/cli-runtime from 0.31.0 to 0.31.2

Commits

Updates k8s.io/client-go from 0.31.0 to 0.31.2

Commits

Updates k8s.io/kube-aggregator from 0.31.0 to 0.31.2

Commits

Updates k8s.io/kubectl from 0.31.0 to 0.31.2

Commits

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 gomod group with 10 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.19.1` | `2.22.0` |
| [github.com/hashicorp/terraform-plugin-sdk/v2](https://github.com/hashicorp/terraform-plugin-sdk) | `2.29.0` | `2.34.0` |
| [github.com/sergi/go-diff](https://github.com/sergi/go-diff) | `1.3.1` | `1.3.2-0.20230802210424-5b0b94c5c0d3` |
| [github.com/zclconf/go-cty-yaml](https://github.com/zclconf/go-cty-yaml) | `1.0.3` | `1.1.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.31.0` | `0.31.2` |
| [k8s.io/apimachinery](https://github.com/kubernetes/apimachinery) | `0.31.0` | `0.31.2` |
| [k8s.io/cli-runtime](https://github.com/kubernetes/cli-runtime) | `0.31.0` | `0.31.2` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.31.0` | `0.31.2` |
| [k8s.io/kube-aggregator](https://github.com/kubernetes/kube-aggregator) | `0.31.0` | `0.31.2` |
| [k8s.io/kubectl](https://github.com/kubernetes/kubectl) | `0.31.0` | `0.31.2` |


Updates `github.com/hashicorp/hcl/v2` from 2.19.1 to 2.22.0
- [Release notes](https://github.com/hashicorp/hcl/releases)
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md)
- [Commits](hashicorp/hcl@v2.19.1...v2.22.0)

Updates `github.com/hashicorp/terraform-plugin-sdk/v2` from 2.29.0 to 2.34.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.29.0...v2.34.0)

Updates `github.com/sergi/go-diff` from 1.3.1 to 1.3.2-0.20230802210424-5b0b94c5c0d3
- [Commits](https://github.com/sergi/go-diff/commits)

Updates `github.com/zclconf/go-cty-yaml` from 1.0.3 to 1.1.0
- [Changelog](https://github.com/zclconf/go-cty-yaml/blob/master/CHANGELOG.md)
- [Commits](zclconf/go-cty-yaml@v1.0.3...v1.1.0)

Updates `k8s.io/api` from 0.31.0 to 0.31.2
- [Commits](kubernetes/api@v0.31.0...v0.31.2)

Updates `k8s.io/apimachinery` from 0.31.0 to 0.31.2
- [Commits](kubernetes/apimachinery@v0.31.0...v0.31.2)

Updates `k8s.io/cli-runtime` from 0.31.0 to 0.31.2
- [Commits](kubernetes/cli-runtime@v0.31.0...v0.31.2)

Updates `k8s.io/client-go` from 0.31.0 to 0.31.2
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.31.0...v0.31.2)

Updates `k8s.io/kube-aggregator` from 0.31.0 to 0.31.2
- [Commits](kubernetes/kube-aggregator@v0.31.0...v0.31.2)

Updates `k8s.io/kubectl` from 0.31.0 to 0.31.2
- [Commits](kubernetes/kubectl@v0.31.0...v0.31.2)

---
updated-dependencies:
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/hashicorp/terraform-plugin-sdk/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/sergi/go-diff
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/zclconf/go-cty-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/apimachinery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/cli-runtime
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/client-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/kube-aggregator
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: k8s.io/kubectl
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 25, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 25, 2024
@dependabot dependabot bot deleted the dependabot/go_modules/gomod-a7a370ebd8 branch October 25, 2024 13:09
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant