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 across 1 directory with 16 updates #575

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

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

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.52.2
github.com/dlclark/regexp2 1.10.0 1.11.0
github.com/hashicorp/hc-install 0.6.2 0.6.4
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.32.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/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.52.2

Release notes

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

Release v1.52.2 (2024-05-03)

Service Client Updates

  • service/bedrock-agent: Updates service API and documentation
  • service/connect: Updates service API and documentation
  • service/connectcases: Updates service API and documentation
  • service/datasync: Updates service API and documentation
  • service/inspector2: Updates service API and documentation
  • service/sagemaker: Updates service API and documentation
    • Amazon SageMaker Inference now supports m6i, c6i, r6i, m7i, c7i, r7i and g5 instance types for Batch Transform Jobs
  • service/sesv2: Updates service API and documentation

Release v1.52.1 (2024-05-02)

Service Client Updates

  • service/dynamodb: Updates service API, documentation, waiters, paginators, and examples
    • This release adds support to specify an optional, maximum OnDemandThroughput for DynamoDB tables and global secondary indexes in the CreateTable or UpdateTable APIs. You can also override the OnDemandThroughput settings by calling the ImportTable, RestoreFromPointInTime, or RestoreFromBackup APIs.
  • service/ec2: Updates service API and documentation
    • This release includes a new API for retrieving the public endorsement key of the EC2 instance's Nitro Trusted Platform Module (NitroTPM).
  • service/personalize: Updates service API and documentation
  • service/redshift-serverless: Updates service API and documentation

Release v1.52.0 (2024-05-01)

Service Client Updates

  • service/bedrock-agent: Updates service API and documentation
  • service/ec2: Updates service documentation
    • Documentation updates for Amazon EC2.
  • service/personalize-runtime: Updates service API and documentation
  • service/securityhub: Updates service API and documentation
  • service/sesv2: Updates service API

SDK Features

  • service/alexaforbusiness: Remove Alexaforbusiness
    • This change removes the Alexaforbusiness service, since it is deprecated.

Release v1.51.32 (2024-04-30)

Service Client Updates

  • service/chime-sdk-voice: Updates service API and documentation
  • service/codeartifact: Updates service API and documentation
  • service/fms: Updates service API and documentation
  • service/omics: Updates service API and documentation
  • service/opensearch: Updates service API and documentation
  • service/pinpoint-sms-voice-v2: Updates service API, documentation, and paginators
  • service/qbusiness: Updates service API, documentation, and waiters

... (truncated)

Commits


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

Commits


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

Release notes

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

v0.6.4

DEPENDENCIES:

v0.6.3

DEPENDENCIES:

INTERNAL:

Commits
  • 435c928 Update VERSION to cut 0.6.4
  • adbfc42 build(deps): bump github.com/go-git/go-git/v5 from 5.11.0 to 5.12.0 (#190)
  • 1009bb6 build(deps): bump github.com/ProtonMail/go-crypto (#189)
  • ac9ac80 build(deps): bump golang.org/x/mod from 0.15.0 to 0.16.0 (#188)
  • be9eff2 build(deps): bump github.com/ProtonMail/go-crypto (#187)
  • 71ed3f4 Result of tsccr-helper -log-level=info gha update -latest . (#185)
  • 178d8be Update VERSION back to dev
  • 2c6cd56 Update VERSION to 0.6.3
  • dbd7e10 build(deps): bump golang.org/x/mod from 0.14.0 to 0.15.0 (#184)
  • 1ffdbbf deps: Bump ProtonMail/go-crypto to v1.1.0-alpha.0 (#183)
  • Additional commits viewable 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.32.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

... (truncated)

Commits
  • bb548d0 Merge pull request #1552 from stretchr/dependabot/go_modules/github.com/stret...
  • 814075f build(deps): bump github.com/stretchr/objx from 0.5.1 to 0.5.2
  • e045612 Merge pull request #1339 from bogdandrutu/uintptr
  • 5b6926d Merge pull request #1385 from hslatman/not-implements
  • 9f97d67 Merge pull request #1550 from stretchr/release-notes
  • bcb0d3f Include the auto-release notes in releases
  • fb770f8 Merge pull request #1247 from ccoVeille/typos
  • 85d8bb6 fix typos in comments, tests and github templates
  • e2741fa Merge pull request #1548 from arjunmahishi/msgAndArgs
  • 6e59f20 http_assertions: assert that the msgAndArgs actually works in tests
  • Additional commits viewable in compare view


Updates golang.org/x/oauth2 from 0.16.0 to 0.20.0

Commits
  • 84cb9f7 oauth2: fix typo in comment
  • 4b7f0bd go.mod: update cloud.google.com/go/compute/metadata dependency
  • e11eea8 microsoft: added DeviceAuthURL to AzureADEndpoint
  • d0e617c google: add Credentials.UniverseDomainProvider
  • 3c9c1f6 oauth2/google: fix the logic of sts 0 value of expires_in
  • 5a05c65 oauth2/google: fix remove content-type header from idms get requests
  • 3a6776a appengine: drop obsolete code for AppEngine envs <=Go 1.11
  • 85231f9 go.mod: update golang.org/x dependencies
  • 34a7afa google/externalaccount: add Config.UniverseDomain
  • 95bec95 google/externalaccount: moves externalaccount package out of internal and exp...
  • Additional commits viewable in compare view


Updates k8s.io/api from 0.26.3 to 0.26.15

Commits
  • f34b283 Update dependencies to v0.26.15 tag
  • 4143d6b Merge pull request #123767 from liggitt/proto-1.26
  • 0ac2976 [CVE-2024-24786] Bump github.com/golang/protobuf v1.5.4, google.golang.org/pr...
  • 989015c Merge pull request #121547dims/automated-cherry-pick-of-#121364
  • b177161 bump golang.org/grpc to v1.56.3
  • fd69e66 Merge pull request #121126 from MadhavJivrajani/bump-x-net-126
  • 08b9677 .: bump golang.org/x/net to v0.17.0
  • 44c5cc8 Merge pull request #120210mimowo/automated-cherry-pick-of-#120204
  • c0b0923 Mark Job onPodConditions as optional in pod failure policy
  • 191d751 Merge pull request #119871liggitt/automated-cherry-pick-of-#119835
  • Additional commits viewable in compare view


Updates k8s.io/apimachinery from 0.26.3 to 0.26.15

Commits
  • 48b9387 Merge pull request #123767 from liggitt/proto-1.26
  • 08105fc [CVE-2024-24786] Bump github.com/golang/protobuf v1.5.4, google.golang.org/pr...
  • 6b469b3 Merge pull request #121547dims/automated-cherry-pick-of-#121364
  • 19e0eef bump golang.org/grpc to v1.56.3
  • 4eaec80 Merge pull request #121200enj/automated-cherry-pick-of-#121196
  • cd1cacd Prevent rapid reset http2 DOS on API server
  • 71fc595 Merge pull request #121126 from MadhavJivrajani/bump-x-net-126
  • 3135ed8 .: bump golang.org/x/net to v0.17.0
  • dd46389 Merge pull request #119261HirazawaUi/automated-cherry-pick-of-#119229
  • 81488b4 Fix the converts an empty string to nil.
  • Additional commits viewable in compare view


Updates k8s.io/client-go from 0.26.3 to 0.26.15

Commits
  • f70badf Update dependencies to v0.26.15 tag
  • 7adf9e8 Merge pull request #123767 from liggitt/proto-1.26
  • fc39103 [CVE-2024-24786] Bump github.com/golang/protobuf v1.5.4, google.golang.org/pr...
  • 6ee0283 Merge pull request #121547dims/automated-cherry-pick-of-#121364
  • 76fabd5 bump golang.org/grpc to v1.56.3
  • f981b01 Merge pull request #121126 from MadhavJivrajani/bump-x-net-126
  • 7d2c288 .: bump golang.org/x/net to v0.17.0
  • 7eeeef0 Merge pull request #120066HirazawaUi/automated-cherry-pick-of-#116506
  • b625a19 generate ReportingInstance and ReportingController in Event
  • 0d6350f Merge pull request #119871liggitt/automated-cherry-pick-of-#119835
  • Additional commits viewable in compare view


Updates k8s.io/kubectl from 0.26.0-rc.1 to 0.27.0-rc.1

Commits
  • df7357c Update dependencies to v0.27.0-rc.1 tag
  • 5e7a14b Merge remote-tracking b... _Description has been truncated_
dependabot[bot] commented 5 months ago

Superseded by #576.