ministryofjustice / cloud-platform-cli

Multi-purpose CLI for the Ministry of Justice Cloud Platform
MIT License
6 stars 8 forks source link

build(deps): bump the go group with 19 updates #586

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the go group with 19 updates:

Package From To
github.com/hashicorp/hcl/v2 2.19.1 2.20.1
github.com/zclconf/go-cty 1.14.1 1.14.4
golang.org/x/mod 0.14.0 0.17.0
github.com/aws/aws-sdk-go 1.50.0 1.53.10
github.com/dlclark/regexp2 1.10.0 1.11.0
github.com/hashicorp/go-version 1.6.0 1.7.0
github.com/hashicorp/hc-install 0.6.2 0.7.0
github.com/hashicorp/terraform-exec 0.20.0 0.21.0
github.com/hashicorp/terraform-json 0.21.0 0.22.1
github.com/jedib0t/go-pretty/v6 6.5.3 6.5.9
github.com/migueleliasweb/go-github-mock 0.0.22 0.0.23
github.com/rs/zerolog 1.31.0 1.33.0
github.com/stretchr/testify 1.8.4 1.9.0
golang.org/x/oauth2 0.16.0 0.20.0
k8s.io/api 0.26.3 0.26.15
k8s.io/apimachinery 0.26.3 0.26.15
k8s.io/client-go 0.26.3 0.26.15
k8s.io/kubectl 0.26.0-rc.1 0.27.0-rc.1
sigs.k8s.io/aws-iam-authenticator 0.6.17 0.6.20

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

Release notes

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

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: https://github.com/hashicorp/hcl/compare/v2.19.1...v2.20.0

Changelog

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

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

  • hclsyntax: Conditional expressions will no longer panic when one or both of their results are "marked", as is the case for situations like how HashiCorp Terraform tracks its concept of "sensitive values". (#630)

v2.18.0 (August 30, 2023)

Enhancements

  • HCL now uses the tables from Unicode 15 when performing string normalization and character segmentation. HCL was previously using the Unicode 13 tables.

    For calling applications where consistent Unicode support is important, consider also upgrading to Go 1.21 at the same time as adopting HCL v2.18.0 so that the standard library unicode tables (used for case folding, etc) will also be from Unicode 15.

v2.17.1 (August 30, 2023)

Enhancements

  • hclsyntax: When evaluating string templates that have a long known constant prefix, HCL will truncate the known prefix to avoid creating excessively-large refinements. String prefix refinements are intended primarily for relatively-short fixed prefixes, such as https:// at the start of a URL known to use that scheme. (#617)
  • ext/tryfunc: The "try" and "can" functions now handle unknown values slightly more precisely, and so can return known values in more situations when given expressions referring to unknown symbols. (#622)

... (truncated)

Commits
  • 303be61 Update CHANGELOG for 2.20.1
  • 2a0a3f0 Standardize on only two value dumping/diffing libraries
  • 5160967 Merge pull request #668 from hashicorp/add-expr-syntax-error
  • cc3af98 fix test error message if wrong type
  • 54e4175 add SrcRange to ExprSyntaxError
  • 53ee54e chore: add test from #665
  • 1cbb0d4 feat: return ExprSyntaxError instead of nil when expression parsing fails for...
  • 57f8bbf update CHANGELOG.md for v2.20
  • 21a05d5 Merge pull request #663 from hashicorp/ci-workflow-updates
  • 1f6a0f7 Use make targets in CI
  • Additional commits viewable in compare view


Updates github.com/zclconf/go-cty from 1.14.1 to 1.14.4

Changelog

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

1.14.4 (March 20, 2024)

  • msgpack: Now uses string encoding instead of float encoding for a whole number that is too large to fit in any of MessagePack's integer types.
  • function/stdlib: Type conversion functions (constructed with MakeToFunc) can now convert null values of unknown type into null values of the target type, rather than returning an unknown value in that case.
  • json: Will now correctly reject attempts to encode cty.DynamicVal, whereas before it would just produce an invalid JSON document without any error. (This is invalid because JSON encoding cannot support unknown values at all; cty.DynamicVal is a special case of unknown value where even the type isn't known.)

1.14.3 (February 29, 2024)

  • msgpack: Fixed edge-case bug that could cause loss of floating point precision when round-tripping due to incorrectly using a MessagePack integer to represent a large non-integral number. #176
  • cty: Fixed some false-negative numeric equality test results by comparing numbers as integers when possible. #176

1.14.2 (January 23, 2024)

  • convert: Converting from an unknown map value to an object type now correctly handles the situation where the map element type disagrees with an optional attribute of the target type, since when a map value is unknown we don't yet know which keys it has and thus cannot predict what subset of the elements will get converted as attributes in the resulting object. (#175)
Commits
  • 74286a8 v1.14.4 release
  • 4a34c33 json: Refuse to encode cty.DynamicVal
  • 4b76b75 stdlib: Conversion functions can accept unknown-typed nulls
  • f41ae52 msgpack: Never marshal integers as MessagePack float
  • 0e3c880 functions: lookup third argument is not optional
  • a0c3e7b Prepare for possible future 1.14.4 release
  • 304e4a8 v1.14.3 release
  • 50ce6d3 Update CHANGELOG.md
  • 1e9442d don't use compact floats in msgpack
  • a0315a5 Use integer comparison for equality
  • Additional commits viewable in compare view


Updates golang.org/x/mod from 0.14.0 to 0.17.0

Commits
  • aa51b25 modfile: do not collapse if there are unattached comments within blocks
  • 87140ec sumdb/tlog: make NewTiles only generate strictly necessary tiles
  • 18d3f56 modfile: fix crash on AddGoStmt in empty File
  • 766dc5d modfile: use new go version string format in WorkFile.add error
  • fa1ba42 sumdb: replace globsMatchPath with module.MatchPrefixPatterns
  • See full diff in compare view


Updates github.com/aws/aws-sdk-go from 1.50.0 to 1.53.10

Release notes

Sourced from github.com/aws/aws-sdk-go's releases.

Release v1.53.10 (2024-05-24)

Service Client Updates

  • service/dynamodb: Updates service API, documentation, waiters, paginators, and examples
    • Documentation only updates for DynamoDB.
  • service/iotfleetwise: Updates service API and documentation
  • service/managedblockchain: Updates service API and documentation

SDK Bugs

  • Fix misaligned struct member used in atomic operation.
    • This change fixes panics on 32-bit systems in services that use endpoint discovery.

Release v1.53.9 (2024-05-23)

Service Client Updates

  • service/emr-serverless: Updates service API and documentation
  • service/opsworks: Updates service API and documentation
    • Documentation-only update for OpsWorks Stacks.

Release v1.53.8 (2024-05-22)

Service Client Updates

  • service/chatbot: Updates service API and documentation
  • service/cloudformation: Updates service API and documentation
    • Added DeletionMode FORCE_DELETE_STACK for deleting a stack that is stuck in DELETE_FAILED state due to resource deletion failure.
  • service/kms: Updates service API and documentation
    • This release includes feature to import customer's asymmetric (RSA, ECC and SM2) and HMAC keys into KMS in China.
  • service/opensearch: Updates service API and documentation
  • service/wafv2: Updates service API and documentation

SDK Bugs

  • service/ec2: Correct empty list serialization behavior.
    • Empty, non-nil lists should NOT be serialized for this service.

Release v1.53.7 (2024-05-21)

Service Client Updates

  • service/cloudfront: Updates service API
    • Model update; no change to SDK functionality.
  • service/glue: Updates service API and documentation
    • Add Maintenance window to CreateJob and UpdateJob APIs and JobRun response. Add a new Job Run State for EXPIRED.
  • service/lightsail: Updates service API and documentation
    • This release adds support for Amazon Lightsail instances to switch between dual-stack or IPv4 only and IPv6-only public IP address types.
  • service/mailmanager: Adds new service
  • service/pi: Updates service API and documentation
  • service/rds: Updates service API, documentation, waiters, paginators, and examples

... (truncated)

Commits


Updates github.com/dlclark/regexp2 from 1.10.0 to 1.11.0

Commits


Updates github.com/hashicorp/go-version from 1.6.0 to 1.7.0

Release notes

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

v1.7.0

ENHANCEMENTS:

  • Remove reflect dependency (#91)
  • Implement the database/sql.Scanner and database/sql/driver.Value interfaces for Version (#133)

INTERNAL:

  • [COMPLIANCE] Add Copyright and License Headers (#115)
  • [COMPLIANCE] Update MPL-2.0 LICENSE (#105)
  • Bump actions/cache from 3.0.11 to 3.2.5 (#116)
  • Bump actions/checkout from 3.2.0 to 3.3.0 (#111)
  • Bump actions/upload-artifact from 3.1.1 to 3.1.2 (#112)
  • GHA Migration (#103)
  • github: Pin external GitHub Actions to hashes (#107)
  • SEC-090: Automated trusted workflow pinning (2023-04-05) (#124)
  • update readme (#104)
Changelog

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

1.7.0 (May 24, 2024)

ENHANCEMENTS:

  • Remove reflect dependency (#91)
  • Implement the database/sql.Scanner and database/sql/driver.Value interfaces for Version (#133)

INTERNAL:

  • [COMPLIANCE] Add Copyright and License Headers (#115)
  • [COMPLIANCE] Update MPL-2.0 LICENSE (#105)
  • Bump actions/cache from 3.0.11 to 3.2.5 (#116)
  • Bump actions/checkout from 3.2.0 to 3.3.0 (#111)
  • Bump actions/upload-artifact from 3.1.1 to 3.1.2 (#112)
  • GHA Migration (#103)
  • github: Pin external GitHub Actions to hashes (#107)
  • SEC-090: Automated trusted workflow pinning (2023-04-05) (#124)
  • update readme (#104)
Commits
  • fcaa532 Update CHANGELOG.md
  • b85381a Update CHANGELOG.md
  • d55f214 Implement the Scan and driver.Value SQL interfaces (#133)
  • e04a866 remove reflection dependency (#91)
  • 94bab9e [COMPLIANCE] Add Copyright and License Headers (#115)
  • 73ddc63 github: Change Dependabot to only manage HashiCorp-owned Actions
  • bf1144e SEC-090: Automated trusted workflow pinning (2023-04-05) (#124)
  • 644291d Bump actions/cache from 3.0.11 to 3.2.5 (#116)
  • 8f6487b Bump actions/upload-artifact from 3.1.1 to 3.1.2 (#112)
  • 7f856b8 Bump actions/checkout from 3.2.0 to 3.3.0 (#111)
  • Additional commits viewable in compare view


Updates github.com/hashicorp/hc-install from 0.6.2 to 0.7.0

Release notes

Sourced from github.com/hashicorp/hc-install's releases.

v0.7.0

ENHANCEMENTS:

BUG FIXES:

DEPENDENCIES:

INTERNAL:

New Contributors

Full Changelog: https://github.com/hashicorp/hc-install/compare/v0.6.4...v0.7.0

v0.6.4

DEPENDENCIES:

v0.6.3

DEPENDENCIES:

... (truncated)

Commits
  • 152a3b6 Release v0.7.0
  • 237ac6f Ensure license files are tracked during installation so they can be removed (...
  • 5a74938 github: Create CODEOWNERS (#210)
  • 40acb8c build(deps): bump the github-actions-breaking group with 2 updates (#211)
  • b19d1fc build(deps): bump hashicorp/setup-copywrite from 1.1.2 to 1.1.3 in the github...
  • e094597 Result of tsccr-helper -log-level=info gha update -latest . (#209)
  • b5c313e build(deps): bump hashicorp/action-setup-bob (#208)
  • 35884ef github: Set up Dependabot to manage HashiCorp-owned Actions versioning (#207)
  • 704a29e Add support for custom download URLs (#203)
  • 7de7b37 Ensure license file gets packaged along w/ the CLI binary (#205)
  • Additional commits viewable in compare view


Updates github.com/hashicorp/terraform-exec from 0.20.0 to 0.21.0

Release notes

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

v0.21.0

ENHANCEMENTS:

  • tfexec: Add -allow-deferral to (Terraform).Apply() and (Terraform).Plan() methods (#447)
Changelog

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

0.21.0 (May 17, 2024)

ENHANCEMENTS:

  • tfexec: Add -allow-deferral to (Terraform).Apply() and (Terraform).Plan() methods (#447)
Commits
  • b6ae175 v0.21.0 [skip ci]
  • 67e92f4 build(deps): bump github.com/hashicorp/terraform-json from 0.22.0 to 0.22.1 (...
  • 64df8d2 build(deps): bump github.com/hashicorp/terraform-json from 0.21.0 to 0.22.0 (...
  • af05782 build(deps): Bump workflows to latest trusted versions (#450)
  • 1df7d52 build(deps): bump golang.org/x/net from 0.22.0 to 0.23.0 (#444)
  • 6ea7295 build(deps): bump hashicorp/setup-copywrite from 1.1.2 to 1.1.3 in the github...
  • a9c9728 tfexec: Add -allow-deferral experimental options to Plan and Apply comm...
  • c07c678 Reenable Dependabot for internal GitHub actions (#455)
  • 259b9e9 build(deps): bump github.com/hashicorp/hc-install from 0.6.3 to 0.6.4 (#443)
  • 46360f1 build(deps): bump github.com/zclconf/go-cty from 1.14.3 to 1.14.4 (#441)
  • Additional commits viewable in compare view


Updates github.com/hashicorp/terraform-json from 0.21.0 to 0.22.1

Release notes

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

v0.22.1

BUG FIXES:

Full Changelog: https://github.com/hashicorp/terraform-json/compare/v0.22.0...v0.22.1

v0.22.0

ENHANCEMENTS:

INTERNAL:

New Contributors

Full Changelog: https://github.com/hashicorp/terraform-json/compare/v0.21.0...v0.22.0

Commits
  • 7e28e2d tfjson: Update Complete to a pointer value for older Terraform versions (#131)
  • 5e08e15 Bump hashicorp/setup-copywrite (#130)
  • 4a9d1e7 github: Set up Dependabot to manage HashiCorp-owned Actions versions (#128)
  • 11f603e Result of tsccr-helper -log-level=info gha update -latest . (#127)
  • 6e83e7b Result of tsccr-helper -log-level=info gha update -latest . (#124)
  • 3b8a921 tfjson: Add DeferredChanges and Complete to Plan JSON (#123)
  • 8cba21a Bump github.com/zclconf/go-cty from 1.14.3 to 1.14.4 (#122)
  • d5065f2 Bump github.com/zclconf/go-cty from 1.14.2 to 1.14.3 (#121)
  • 1498774 Bump github.com/zclconf/go-cty from 1.14.1 to 1.14.2 (#120)
  • See full diff in compare view


Updates github.com/jedib0t/go-pretty/v6 from 6.5.3 to 6.5.9

Release notes

Sourced from github.com/jedib0t/go-pretty/v6's releases.

v6.5.9

What's Changed

New Contributors

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.8...v6.5.9

v6.5.8

What's Changed

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.7...v6.5.8

v6.5.7

What's Changed

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.6...v6.5.7

v6.5.6

What's Changed

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.5...v6.5.6

v6.5.5

What's Changed

New Contributors

Full Changelog: https://github.com/jedib0t/go-pretty/compare/v6.5.4...v6.5.5

v6.5.4

What's Changed

New Contributors

... (truncated)

Commits


Updates github.com/migueleliasweb/go-github-mock from 0.0.22 to 0.0.23

Release notes

Sourced from github.com/migueleliasweb/go-github-mock's releases.

v0.0.23

What's Changed

New Contributors

Full Changelog: https://github.com/migueleliasweb/go-github-mock/compare/v0.0.22...v0.0.23

Commits


Updates github.com/rs/zerolog from 1.31.0 to 1.33.0

Commits


Updates github.com/stretchr/testify from 1.8.4 to 1.9.0

Release notes

Sourced from github.com/stretchr/testify's releases.

v1.9.0

What's Changed

dependabot[bot] commented 4 months ago

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

dependabot[bot] commented 4 months ago

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