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 common group across 1 directory with 54 updates #100

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Jan 27, 2025

Bumps the common group with 36 updates in the / directory:

Package From To
github.com/Azure/azure-sdk-for-go/sdk/azcore 1.14.0 1.17.0
github.com/Azure/azure-sdk-for-go/sdk/azidentity 1.7.0 1.8.1
github.com/CycloneDX/cyclonedx-go 0.9.0 0.9.2
github.com/Masterminds/sprig/v3 3.2.3 3.3.0
github.com/alicebob/miniredis/v2 2.33.0 2.34.0
github.com/antchfx/htmlquery 1.3.2 1.3.4
github.com/aquasecurity/go-npm-version 0.0.0-20201110091526-0b796d180798 0.0.1
github.com/aquasecurity/go-pep440-version 0.0.0-20210121094942-22b2f8951d46 0.0.1
github.com/aws/aws-sdk-go-v2 1.30.3 1.34.0
github.com/aws/aws-sdk-go-v2/config 1.27.27 1.29.2
github.com/aws/aws-sdk-go-v2/service/ec2 1.173.0 1.201.1
github.com/aws/aws-sdk-go-v2/service/ecr 1.31.0 1.38.7
github.com/aws/aws-sdk-go-v2/service/s3 1.58.3 1.74.1
github.com/bmatcuk/doublestar/v4 4.6.1 4.8.1
github.com/cheggaaa/pb/v3 3.1.5 3.1.6
github.com/containerd/containerd 1.7.20 1.7.25
github.com/docker/docker 27.1.1+incompatible 27.5.1+incompatible
github.com/go-git/go-git/v5 5.12.0 5.13.2
github.com/google/go-containerregistry 0.20.2 0.20.3
github.com/hashicorp/go-getter 1.7.5 1.7.8
github.com/hashicorp/hc-install 0.8.0 0.9.1
github.com/hashicorp/hcl/v2 2.21.0 2.23.0
github.com/hashicorp/terraform-exec 0.21.0 0.22.0
github.com/moby/buildkit 0.15.1 0.19.0
github.com/owenrumney/squealer 1.2.3 1.2.6
github.com/samber/lo 1.46.0 1.49.0
github.com/secure-systems-lab/go-securesystemslib 0.8.0 0.9.0
github.com/sigstore/rekor 1.3.6 1.3.8
github.com/spf13/cast 1.7.0 1.7.1
github.com/testcontainers/testcontainers-go 0.32.0 0.35.0
github.com/testcontainers/testcontainers-go/modules/localstack 0.32.0 0.35.0
github.com/tetratelabs/wazero 1.7.3 1.8.2
github.com/zclconf/go-cty-yaml 1.0.3 1.1.0
golang.org/x/vuln 1.1.3 1.1.4
helm.sh/helm/v3 3.15.3 3.17.0
modernc.org/sqlite 1.32.0 1.34.5

Updates github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.14.0 to 1.17.0

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azcore's releases.

sdk/azcore/v1.17.0

1.17.0 (2025-01-07)

Features Added

  • Added field OperationLocationResultPath to runtime.NewPollerOptions[T] for LROs that use the Operation-Location pattern.
  • Support encoding.TextMarshaler and encoding.TextUnmarshaler interfaces in arm.ResourceID.

sdk/azcore/v1.16.0

1.16.0 (2024-10-17)

Features Added

  • Added field Kind to runtime.StartSpanOptions to allow a kind to be set when starting a span.

Bugs Fixed

  • BearerTokenPolicy now rewinds request bodies before retrying

sdk/azcore/v1.15.0

1.15.0 (2024-10-14)

Features Added

  • BearerTokenPolicy handles CAE claims challenges

Bugs Fixed

  • Omit the ResponseError.RawResponse field from JSON marshaling so instances can be marshaled.
  • Fixed an integer overflow in the retry policy.

Other Changes

  • Update dependencies.
Commits

Updates github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.7.0 to 1.8.1

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/azidentity's releases.

sdk/azidentity/v1.8.1

1.8.1 (2025-01-15)

Bugs Fixed

  • User credential types inconsistently log access token scopes
  • DefaultAzureCredential skips managed identity in Azure Container Instances
  • Credentials having optional tenant IDs such as AzureCLICredential and InteractiveBrowserCredential require setting AdditionallyAllowedTenants when used with some clients

Other Changes

  • ChainedTokenCredential and DefaultAzureCredential continue to their next credential after ManagedIdentityCredential receives an unexpected response from IMDS, indicating the response is from something else such as a proxy

sdk/azidentity/v1.8.0

1.8.0 (2024-10-08)

Other Changes

  • AzurePipelinesCredential sets an additional OIDC request header so that it receives a 401 instead of a 302 after presenting an invalid system access token
  • Allow logging of debugging headers for AzurePipelinesCredential and include them in error messages

sdk/messaging/azservicebus/v1.8.0-beta.2

1.8.0-beta.2 (2025-01-14)

Features Added

  • ServiceBusClient allows the endpoint to be overridden with ServiceBusClientOptions.CustomEndpoint, to use TCP proxies with AMQP. (PR #23843)

Bugs Fixed

  • Receivers had a bug where a message could be received but not returned to the user. Callers would see that, occasionally, a message would not be returned from ReceiveMessages(), but would appear to have been received. Thanks to @​patrickwhite256 for reporting this issue. (PR #23929)

sdk/messaging/azservicebus/v1.7.4

1.7.4 (2025-01-13)

Bugs Fixed

  • Receivers had a bug where a message could be received but not returned to the user. Callers would see that, occasionally, a message would not be returned from ReceiveMessages(), but would appear to have been received. Thanks to @​patrickwhite256 for reporting this issue. (PR #23929)

sdk/messaging/azservicebus/v1.7.3

1.7.3 (2024-10-14)

Bugs Fixed

  • Apply fix from @​bcho for overflows with retries. (PR#23562)
Commits
  • d5e09ea Prepare azidentity v1.8.1 for release (#23954)
  • af8249d Increment package version after release of storage/azblob (#23940)
  • 8b21042 Increment package version after release of storage/azdatalake (#23958)
  • a44e152 Release storage stg96 azdatalake preview (#23957)
  • b11c1a5 Relax tenant verification for credentials having optional tenant IDs (#23951)
  • e557039 remove erroneous package inclusion during package-properties evaluation (#23948)
  • 0fb4336 Increment package version after release of messaging/azservicebus (#23950)
  • b1480a2 Updating docs.microsoft.com to learn.microsoft.com (#23934)
  • 786b0be Credential chains continue iterating after unexpected IMDS responses (#23894)
  • 7d4721b add liftr base package dep to emitter dep list (#23938)
  • Additional commits viewable in compare view

Updates github.com/CycloneDX/cyclonedx-go from 0.9.0 to 0.9.2

Release notes

Sourced from github.com/CycloneDX/cyclonedx-go's releases.

v0.9.2

Changelog

Features

  • 39ede217f126cfbc80eabf880f6643be3d392a4f: feat: add MarshalXML and UnmarshalXML (@​DmitriyLewen)
  • e9191ed11a269fcb6b3fb54e000ed6d81b5bf9db: feat: add UnmarshalJSON (@​DmitriyLewen)

Fixes

  • 80fede1f13a956d35eb14696cd2ca9d2d943f809: fix: add json tag for Identity (@​DmitriyLewen)
  • 24e9503293f0837e6e7ea3ff670ef958e6075b87: fix: tests (@​DmitriyLewen)
  • d68a199bc1747e5d6a7d4196c2f270535bbf6e3e: fix: use identity as array in valid-evidence.json (@​DmitriyLewen)
  • ff9cc28f9c9554328bd6c1ad56098be5a692d5e9: fix: use componentEvidence array for Evidence.Identity field (@​DmitriyLewen)

Building and Packaging

  • 016ee293d464d6383be3a714f7fb0debebef8ad5: build(deps): bump actions/checkout from 4.1.7 to 4.2.0 (@​dependabot[bot])
  • 77153ab5fe005f6484ac1e1225e7152df00db3f1: build(deps): bump actions/checkout from 4.2.0 to 4.2.1 (@​dependabot[bot])
  • 4f50d02c1282ac1d0d7448502b231a0e84a1e529: build(deps): bump actions/checkout from 4.2.1 to 4.2.2 (@​dependabot[bot])
  • b84451219e77e0fbbe7d5ba054bcf25dbc7aaea4: build(deps): bump actions/setup-go from 5.0.2 to 5.1.0 (@​dependabot[bot])
  • 238cbea3479fed9fdfcbfa5f1751828390a05211: build(deps): bump actions/setup-go from 5.1.0 to 5.2.0 (@​dependabot[bot])
  • bbe8f3c2c7c4567514ae966c69bf93fc1b3dba2a: build(deps): bump github.com/stretchr/testify from 1.9.0 to 1.10.0 (@​dependabot[bot])
  • 05f8930fe918a31941ebf90eec627e5e6e908d1c: build(deps): bump github.com/terminalstatic/go-xsd-validate (@​dependabot[bot])
  • 082f87791a5e290c9d4c6e8126dc0cc987028a60: build(deps): bump gitpod/workspace-go from 2a9e01c to 9c95281 (@​dependabot[bot])
  • 093b1c15164dad5d46768db0e3f6ee43eb60ca20: build(deps): bump gitpod/workspace-go from 9c95281 to 6932342 (@​dependabot[bot])
  • 47b7e01ce8f8209894065e9656217b8c00a3c8ea: build(deps): bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 (@​dependabot[bot])
  • ce6eb841cb1e21aa28efbccd9eb8fe5eea0555c9: build(deps): bump goreleaser/goreleaser-action from 6.0.0 to 6.1.0 (@​dependabot[bot])

Others

  • 4d3aff9fab9ae78bd6fbbc9fd0912fab14c8fb64: UPDATE_SNAPSHOTS=true make test (@​DmitriyLewen)
  • 31d954443e6563aeee69d82bdfb82aee83e07df1: refactor (@​DmitriyLewen)
  • 0170729e313a681fc8659643601410ae10ffe803: refactor: update convert package (@​DmitriyLewen)

v0.9.1

Changelog

Fixes

  • 6f0e0cf025dd99ab903e33f8e043d92b28dab4f6: fix: nil pointer dereference during evidence conversion (@​nscuro)
  • ce43b6f4cb5707d3ef2db1af1d597f5b23bf0e15: fix: make linter happy (@​nscuro)
  • 5d799e634b9bed9c86621048544737b210e433e8: fix: remove deprecated goreleaser flag (@​nscuro)

Building and Packaging

  • 6d5bcb0e277207551dbc728eb29959f1d3cbd685: build(deps): bump actions/checkout from 4.1.6 to 4.1.7 (@​dependabot[bot])
  • f34fc0c413da74d20d1cc240863aaf2eb6b274f7: build(deps): bump actions/setup-go from 5.0.1 to 5.0.2 (@​dependabot[bot])
  • 71cff221b8dbbc1d50f839fa76ecea4e42d83a2b: build(deps): bump gitpod/workspace-go from 8d15123 to 2a9e01c (@​dependabot[bot])
  • ea693550558d230b3fbba810b6e75ac2eb0b55c8: build(deps): bump golangci/golangci-lint-action from 6.0.1 to 6.1.0 (@​dependabot[bot])
  • d5cbdad49dfbf54f2dab4ad95bd1a47c710a526c: build(deps): bump goreleaser/goreleaser-action from 5.1.0 to 6.0.0 (@​dependabot[bot])
Commits
  • cba06ff Merge pull request #205 from CycloneDX/dependabot/go_modules/github.com/termi...
  • 5c81749 Merge pull request #211 from CycloneDX/dependabot/github_actions/actions/setu...
  • 753526c Merge pull request #204 from DmitriyLewen/fix/componentEvidence-as-array
  • 4d3aff9 UPDATE_SNAPSHOTS=true make test
  • d68a199 fix: use identity as array in valid-evidence.json
  • 24e9503 fix: tests
  • 238cbea build(deps): bump actions/setup-go from 5.1.0 to 5.2.0
  • a7f7415 Merge branch 'master' of github.com:DmitriyLewen/cyclonedx-go into fix/compon...
  • 05f8930 build(deps): bump github.com/terminalstatic/go-xsd-validate
  • 464d426 Merge pull request #202 from CycloneDX/dependabot/github_actions/actions/chec...
  • Additional commits viewable in compare view

Updates github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0

Release notes

Sourced from github.com/Masterminds/sprig/v3's releases.

v3.3.0

What's Changed

New Contributors

Full Changelog: Masterminds/sprig@v3.2.3...v3.3.0

Changelog

Sourced from github.com/Masterminds/sprig/v3's changelog.

Release 3.3.0 (2024-08-29)

Added

Changed

  • #407: Removed duplicate documentation (functions were documentated in 2 places)
  • #290: Corrected copy/paster oops in math documentation (thanks @​zzhu41)
  • #369: Corrected template reference in docs (thanks @​chey)
  • #375: Added link to URL documenation (thanks @​carlpett)
  • #406: Updated the mergo dependency which had a breaking change (which was accounted for)
  • #376: Fixed documentation error (thanks @​jheyduk)
  • #404: Updated dependency tree
  • #391: Fixed misspelling (thanks @​chrishalbert)
  • #405: Updated Go versions used in testing
Commits
  • e708470 Merge pull request #408 from mattfarina/update-changelog-3.3
  • 8fc4354 Updating the changelog for the 3.3.0 release
  • cb81a32 Merge pull request #407 from mattfarina/remove-dup-math-functions
  • 2637693 Removing duplicate documentation
  • 06b9a87 Merge pull request #290 from zzhu41/patch-1
  • e663ec6 Merge pull request #369 from chey/patch-1
  • bb2f73f Merge pull request #375 from carlpett/patch-1
  • f07659e Merge pull request #400 from itzik-elayev/master
  • 98b35c1 Add closing bracket
  • 7a88928 Merge pull request #406 from mattfarina/update-mergo
  • Additional commits viewable in compare view

Updates github.com/alicebob/miniredis/v2 from 2.33.0 to 2.34.0

Release notes

Sourced from github.com/alicebob/miniredis/v2's releases.

add ZRANK/ZREVRANK, fix ZINTERSTORE and XTRIM

  • fix ZINTERSTORE where target is one of the source sets
  • added support for ZRank and ZRevRank with score (thanks Jeff Howell)
  • fix MEMORY subcommand casing (thanks @​joshaber)
  • use streamCmp in Xtrim (thanks @​daniel-cohere)
Changelog

Sourced from github.com/alicebob/miniredis/v2's changelog.

v2.34.0

  • fix ZINTERSTORE where target is one of the source sets
  • added support for ZRank and ZRevRank with score (thanks Jeff Howell)
  • fix MEMORY subcommand casing (thanks @​joshaber)
  • use streamCmp in Xtrim (thanks @​daniel-cohere)
Commits
  • c5669ae changelog for v2.34.0
  • 5320c5c Merge pull request #391 from daniel-cohere/streamCmp-in-xtrim
  • e4791b5 use streamCmp in Xtrim
  • ef93126 Fix MEMORY subcommand casing (#389)
  • 1863d22 inttest and fix some returns
  • 5056952 added support for ZRank and ZRevRank with score
  • 08e664a update dependency
  • 12d2a70 CI against go 1.23
  • 8225546 fix ZINTERSTORE where target is one of the source sets
  • See full diff in compare view

Updates github.com/antchfx/htmlquery from 1.3.2 to 1.3.4

Release notes

Sourced from github.com/antchfx/htmlquery's releases.

v1.3.4

Update packages:

  • update golang.org/x/net from v0.7.0 to v0.33.0
  • update github.com/antchfx/xpath from v1.3.2 to v1.3.3

v1.3.3

update dep package github.com/antchfx/xpath from v1.3.1 to v1.3.2

https://github.com/antchfx/xpath/releases/tag/v1.3.2

Commits
  • 8189c48 Bump golang.org/x/net from 0.7.0 to 0.33.0
  • 23f943c update github.com/antchfx/xpath to v1.3.3
  • 6e38e8d update deps github.com/antchfx/xpath from v1.3.1 to v1.3.2
  • See full diff in compare view

Updates github.com/aquasecurity/go-npm-version from 0.0.0-20201110091526-0b796d180798 to 0.0.1

Release notes

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

v0.0.1

Full Changelog: https://github.com/aquasecurity/go-npm-version/commits/v0.0.1

Commits

Updates github.com/aquasecurity/go-pep440-version from 0.0.0-20210121094942-22b2f8951d46 to 0.0.1

Commits

Updates github.com/aquasecurity/go-version from 0.0.0-20240603093900-cf8a8d29271d to 0.0.1

Commits

Updates github.com/aws/aws-sdk-go-v2 from 1.30.3 to 1.34.0

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.27 to 1.29.2

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.27 to 1.17.55

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ec2 from 1.173.0 to 1.201.1

Commits

Updates github.com/aws/aws-sdk-go-v2/service/ecr from 1.31.0 to 1.38.7

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.58.3 to 1.74.1

Commits

Updates github.com/aws/smithy-go from 1.20.3 to 1.22.2

Changelog

Sourced from github.com/aws/smithy-go's changelog.

Release (2025-01-21)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.2
    • Bug Fix: Fix HTTP metrics data race.
    • Bug Fix: Replace usages of deprecated ioutil package.

Release (2024-11-15)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.1
    • Bug Fix: Fix failure to replace URI path segments when their names overlap.

Release (2024-10-03)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.0
    • Feature: Add HTTP client metrics.

Release (2024-09-25)

Module Highlights

  • github.com/aws/smithy-go/aws-http-auth: v1.0.0
    • Release: Initial release of module aws-http-auth, which implements generically consumable SigV4 and SigV4a request signing.

Release (2024-09-19)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.21.0
    • Feature: Add tracing and metrics APIs, and builtin instrumentation for both, in generated clients.
  • github.com/aws/smithy-go/metrics/smithyotelmetrics: v1.0.0
    • Release: Initial release of smithyotelmetrics module, which is used to adapt an OpenTelemetry SDK meter provider to be used with Smithy clients.
  • github.com/aws/smithy-go/tracing/smithyoteltracing: v1.0.0
    • Release: Initial release of smithyoteltracing module, which is used to adapt an OpenTelemetry SDK tracer provider to be used with Smithy clients.

Release (2024-08-14)

Module Highlights

... (truncated)

Commits
  • f2ae388 Release 2025-01-21
  • d9b8ee9 refactor: fix deprecated for ioutil (#560)
  • ee8334e transport/http: fix metrics race condition (#555)
  • 7e81497 transport/http: fix go doc typo (#554)
  • a7d0f1e fix potential nil deref in waiter path matcher (#563)
  • e5c5ac3 add changelog instructions and make recipe
  • 5e16ee7 add missing waiter retry breakout on non-nil non-matched error (#561)
  • 10fbeed Revert "Change defaults when generating a client via smithy CLI (#558)" (#559)
  • 95ba318 Change defaults when generating a client via smithy CLI (#558)
  • bed421c Release 2024-11-15
  • Additional commits viewable in compare view

Updates github.com/bmatcuk/doublestar/v4 from 4.6.1 to 4.8.1

Release notes

Sourced from github.com/bmatcuk/doublestar/v4's releases.

Small Performance Improvement for MatchUnvalidated

Skip some additional validation checks in MatchUnvalidated. Thanks to @​lukemassa for the PR!

Additional documentation improvements from @​timo-reymann. Thanks!

What's Changed

New Contributors

Full Changelog: bmatcuk/doublestar@v4.8.0...v4.8.1

Fixed Escaped Meta in the "Base" of the Pattern

If the "base" of a pattern (ie, everything up to the first path slash before any meta characters) contains an escaped meta character, doublestar would fail to glob any files.

Thanks to @​tdurieux for finding and fixing this bug!

Breaking-ish Change

I've updated SplitPattern to unescape meta characters in the first returned string. I suspect this shouldn't cause issues for anyone because, if anyone was using this function, they've probably either never passed a pattern with escaped meta characters, or hand-rolled an unescape method to fix the bug - which will now be a no-op for them.

What's Changed

New Contributors

Full Changelog: bmatcuk/doublestar@v4.7.1...v4.8.0

Fixed FilepathGlob("")

To be consistent with filepath.Glob, FilepathGlob("") returns nil.

Added MatchUnvalidated, PathMatchUnvalidated

These functions provide a small performance improvement in cases where you don't care about whether or not the pattern is valid (maybe because you already ran ValidatePattern).

Commits
  • b707fe4 Wording
  • 569c123 Add tests to make sure we're skipping validation
  • 3b1e3d1 Skip additional validations
  • 24bdb14 small updates to docs and tests
  • 32ab680 test: Add tests for number ranges and sets
  • 9ee73e3 docs: Document number ranges and sets in README
  • 29e67f4 fix windows tests
  • 28b892c remove sponsor =(
  • 4b5670c fix(#96) some minor corrections to escaping pattern base
  • 1e7ad31 fix: fix match when there is a escaped meta in the pattern
  • Additional commits viewable in compare view

Updates github.com/cheggaaa/pb/v3 from 3.1.5 to 3.1.6

Commits
  • 634b527 Merge pull request #226 from cheggaaa/dependabot/go_modules/v3/github.com/mat...
  • 72db192 Merge pull request #225 from secDre4mer/master
  • 1897845 Bump github.com/mattn/go-colorable from 0.1.13 to 0.1.14 in /v3
  • 4d7e5a0 feat: AIX support
  • d0803d4 Merge pull request #224 from cheggaaa/dependabot/go_modules/v3/github.com/fat...
  • bce8d1a Bump github.com/fatih/color from 1.17.0 to 1.18.0 in /v3
  • 4ca3463 Merge pull request #221 from cheggaaa/dependabot/go_modules/v3/github.com/fat...
  • ced2481 Merge pull request #222 from cheggaaa/dependabot/go_modules/v3/github.com/mat...
  • e774f99 Bump github.com/mattn/go-runewidth from 0.0.15 to 0.0.16 in /v3
  • 809a0b4 Bump github.com/fatih/color from 1.16.0 to 1.17.0 in /v3
  • Additional commits viewable in compare view

Updates github.com/containerd/containerd from 1.7.20 to 1.7.25

Release notes

Sourced from github.com/containerd/containerd's releases.

containerd 1.7.25

Welcome to the v1.7.25 release of containerd!

The twenty-fifth patch release for containerd 1.7 contains various fixes and updates.

Highlights

  • Update runc binary to v1.2.4 (#11238)
  • Fix proto conflicts and update to 1.8 API (#11184)

Container Runtime Interface (CRI)

  • Fix ip_pref configuration option (#11223)

Runtime

  • Fix panic due to nil dereference cgroups v2 (#11099)

Please try out the release binaries and report any issues at https://github.com/containerd/containerd/issues.

Contributors

  • Akihiro Suda
  • Derek McGowan
  • Sebastiaan van Stijn
  • Wei Fu
  • Maksym Pavlenko
  • Akhil Mohan
  • Henry Wang
  • Jin Dong
  • Phil Estes
  • Sam Edwards
  • Samuel Karp
  • Brian Goff
  • David Son
  • Kohei Tokunaga
  • Pierre Gimalac
  • Yang Yang
  • bo.jiang

Chan...

Description has been truncated

Summary by Sourcery

Update various dependencies to their latest versions.

Build:

  • Bumped Go toolchain version to 1.23.5.

Chores:

  • Updated 54 Go dependencies across 1 directory.

Bumps the common group with 36 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/azcore](https://github.com/Azure/azure-sdk-for-go) | `1.14.0` | `1.17.0` |
| [github.com/Azure/azure-sdk-for-go/sdk/azidentity](https://github.com/Azure/azure-sdk-for-go) | `1.7.0` | `1.8.1` |
| [github.com/CycloneDX/cyclonedx-go](https://github.com/CycloneDX/cyclonedx-go) | `0.9.0` | `0.9.2` |
| [github.com/Masterminds/sprig/v3](https://github.com/Masterminds/sprig) | `3.2.3` | `3.3.0` |
| [github.com/alicebob/miniredis/v2](https://github.com/alicebob/miniredis) | `2.33.0` | `2.34.0` |
| [github.com/antchfx/htmlquery](https://github.com/antchfx/htmlquery) | `1.3.2` | `1.3.4` |
| [github.com/aquasecurity/go-npm-version](https://github.com/aquasecurity/go-npm-version) | `0.0.0-20201110091526-0b796d180798` | `0.0.1` |
| [github.com/aquasecurity/go-pep440-version](https://github.com/aquasecurity/go-pep440-version) | `0.0.0-20210121094942-22b2f8951d46` | `0.0.1` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.30.3` | `1.34.0` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.27` | `1.29.2` |
| [github.com/aws/aws-sdk-go-v2/service/ec2](https://github.com/aws/aws-sdk-go-v2) | `1.173.0` | `1.201.1` |
| [github.com/aws/aws-sdk-go-v2/service/ecr](https://github.com/aws/aws-sdk-go-v2) | `1.31.0` | `1.38.7` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.58.3` | `1.74.1` |
| [github.com/bmatcuk/doublestar/v4](https://github.com/bmatcuk/doublestar) | `4.6.1` | `4.8.1` |
| [github.com/cheggaaa/pb/v3](https://github.com/cheggaaa/pb) | `3.1.5` | `3.1.6` |
| [github.com/containerd/containerd](https://github.com/containerd/containerd) | `1.7.20` | `1.7.25` |
| [github.com/docker/docker](https://github.com/docker/docker) | `27.1.1+incompatible` | `27.5.1+incompatible` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.12.0` | `5.13.2` |
| [github.com/google/go-containerregistry](https://github.com/google/go-containerregistry) | `0.20.2` | `0.20.3` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.7.5` | `1.7.8` |
| [github.com/hashicorp/hc-install](https://github.com/hashicorp/hc-install) | `0.8.0` | `0.9.1` |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.21.0` | `2.23.0` |
| [github.com/hashicorp/terraform-exec](https://github.com/hashicorp/terraform-exec) | `0.21.0` | `0.22.0` |
| [github.com/moby/buildkit](https://github.com/moby/buildkit) | `0.15.1` | `0.19.0` |
| [github.com/owenrumney/squealer](https://github.com/owenrumney/squealer) | `1.2.3` | `1.2.6` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.46.0` | `1.49.0` |
| [github.com/secure-systems-lab/go-securesystemslib](https://github.com/secure-systems-lab/go-securesystemslib) | `0.8.0` | `0.9.0` |
| [github.com/sigstore/rekor](https://github.com/sigstore/rekor) | `1.3.6` | `1.3.8` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.7.0` | `1.7.1` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.32.0` | `0.35.0` |
| [github.com/testcontainers/testcontainers-go/modules/localstack](https://github.com/testcontainers/testcontainers-go) | `0.32.0` | `0.35.0` |
| [github.com/tetratelabs/wazero](https://github.com/tetratelabs/wazero) | `1.7.3` | `1.8.2` |
| [github.com/zclconf/go-cty-yaml](https://github.com/zclconf/go-cty-yaml) | `1.0.3` | `1.1.0` |
| [golang.org/x/vuln](https://github.com/golang/vuln) | `1.1.3` | `1.1.4` |
| [helm.sh/helm/v3](https://github.com/helm/helm) | `3.15.3` | `3.17.0` |
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.32.0` | `1.34.5` |



Updates `github.com/Azure/azure-sdk-for-go/sdk/azcore` from 1.14.0 to 1.17.0
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.14.0...sdk/azcore/v1.17.0)

Updates `github.com/Azure/azure-sdk-for-go/sdk/azidentity` from 1.7.0 to 1.8.1
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Changelog](https://github.com/Azure/azure-sdk-for-go/blob/main/documentation/release.md)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.7.0...sdk/azidentity/v1.8.1)

Updates `github.com/CycloneDX/cyclonedx-go` from 0.9.0 to 0.9.2
- [Release notes](https://github.com/CycloneDX/cyclonedx-go/releases)
- [Changelog](https://github.com/CycloneDX/cyclonedx-go/blob/master/.goreleaser.yml)
- [Commits](CycloneDX/cyclonedx-go@v0.9.0...v0.9.2)

Updates `github.com/Masterminds/sprig/v3` from 3.2.3 to 3.3.0
- [Release notes](https://github.com/Masterminds/sprig/releases)
- [Changelog](https://github.com/Masterminds/sprig/blob/master/CHANGELOG.md)
- [Commits](Masterminds/sprig@v3.2.3...v3.3.0)

Updates `github.com/alicebob/miniredis/v2` from 2.33.0 to 2.34.0
- [Release notes](https://github.com/alicebob/miniredis/releases)
- [Changelog](https://github.com/alicebob/miniredis/blob/master/CHANGELOG.md)
- [Commits](alicebob/miniredis@v2.33.0...v2.34.0)

Updates `github.com/antchfx/htmlquery` from 1.3.2 to 1.3.4
- [Release notes](https://github.com/antchfx/htmlquery/releases)
- [Commits](antchfx/htmlquery@v1.3.2...v1.3.4)

Updates `github.com/aquasecurity/go-npm-version` from 0.0.0-20201110091526-0b796d180798 to 0.0.1
- [Release notes](https://github.com/aquasecurity/go-npm-version/releases)
- [Commits](https://github.com/aquasecurity/go-npm-version/commits/v0.0.1)

Updates `github.com/aquasecurity/go-pep440-version` from 0.0.0-20210121094942-22b2f8951d46 to 0.0.1
- [Release notes](https://github.com/aquasecurity/go-pep440-version/releases)
- [Commits](https://github.com/aquasecurity/go-pep440-version/commits/v0.0.1)

Updates `github.com/aquasecurity/go-version` from 0.0.0-20240603093900-cf8a8d29271d to 0.0.1
- [Release notes](https://github.com/aquasecurity/go-version/releases)
- [Commits](https://github.com/aquasecurity/go-version/commits/v0.0.1)

Updates `github.com/aws/aws-sdk-go-v2` from 1.30.3 to 1.34.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.30.3...v1.34.0)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.27 to 1.29.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.27...config/v1.29.2)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.27 to 1.17.55
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.27...credentials/v1.17.55)

Updates `github.com/aws/aws-sdk-go-v2/service/ec2` from 1.173.0 to 1.201.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/ec2/v1.173.0...service/ec2/v1.201.1)

Updates `github.com/aws/aws-sdk-go-v2/service/ecr` from 1.31.0 to 1.38.7
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@v1.31.0...service/ecr/v1.38.7)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.58.3 to 1.74.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Changelog](https://github.com/aws/aws-sdk-go-v2/blob/main/changelog-template.json)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.58.3...service/s3/v1.74.1)

Updates `github.com/aws/smithy-go` from 1.20.3 to 1.22.2
- [Release notes](https://github.com/aws/smithy-go/releases)
- [Changelog](https://github.com/aws/smithy-go/blob/main/CHANGELOG.md)
- [Commits](aws/smithy-go@v1.20.3...v1.22.2)

Updates `github.com/bmatcuk/doublestar/v4` from 4.6.1 to 4.8.1
- [Release notes](https://github.com/bmatcuk/doublestar/releases)
- [Commits](bmatcuk/doublestar@v4.6.1...v4.8.1)

Updates `github.com/cheggaaa/pb/v3` from 3.1.5 to 3.1.6
- [Commits](cheggaaa/pb@v3.1.5...v3.1.6)

Updates `github.com/containerd/containerd` from 1.7.20 to 1.7.25
- [Release notes](https://github.com/containerd/containerd/releases)
- [Changelog](https://github.com/containerd/containerd/blob/main/RELEASES.md)
- [Commits](containerd/containerd@v1.7.20...v1.7.25)

Updates `github.com/docker/docker` from 27.1.1+incompatible to 27.5.1+incompatible
- [Release notes](https://github.com/docker/docker/releases)
- [Commits](moby/moby@v27.1.1...v27.5.1)

Updates `github.com/fatih/color` from 1.17.0 to 1.18.0
- [Release notes](https://github.com/fatih/color/releases)
- [Commits](fatih/color@v1.17.0...v1.18.0)

Updates `github.com/go-git/go-git/v5` from 5.12.0 to 5.13.2
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.12.0...v5.13.2)

Updates `github.com/google/go-containerregistry` from 0.20.2 to 0.20.3
- [Release notes](https://github.com/google/go-containerregistry/releases)
- [Changelog](https://github.com/google/go-containerregistry/blob/main/.goreleaser.yml)
- [Commits](google/go-containerregistry@v0.20.2...v0.20.3)

Updates `github.com/hashicorp/go-getter` from 1.7.5 to 1.7.8
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Changelog](https://github.com/hashicorp/go-getter/blob/main/.goreleaser.yml)
- [Commits](hashicorp/go-getter@v1.7.5...v1.7.8)

Updates `github.com/hashicorp/hc-install` from 0.8.0 to 0.9.1
- [Release notes](https://github.com/hashicorp/hc-install/releases)
- [Commits](hashicorp/hc-install@v0.8.0...v0.9.1)

Updates `github.com/hashicorp/hcl/v2` from 2.21.0 to 2.23.0
- [Release notes](https://github.com/hashicorp/hcl/releases)
- [Changelog](https://github.com/hashicorp/hcl/blob/main/CHANGELOG.md)
- [Commits](hashicorp/hcl@v2.21.0...v2.23.0)

Updates `github.com/hashicorp/terraform-exec` from 0.21.0 to 0.22.0
- [Release notes](https://github.com/hashicorp/terraform-exec/releases)
- [Changelog](https://github.com/hashicorp/terraform-exec/blob/main/CHANGELOG.md)
- [Commits](hashicorp/terraform-exec@v0.21.0...v0.22.0)

Updates `github.com/moby/buildkit` from 0.15.1 to 0.19.0
- [Release notes](https://github.com/moby/buildkit/releases)
- [Commits](moby/buildkit@v0.15.1...v0.19.0)

Updates `github.com/open-policy-agent/opa` from 0.67.1 to 0.68.0
- [Release notes](https://github.com/open-policy-agent/opa/releases)
- [Changelog](https://github.com/open-policy-agent/opa/blob/main/CHANGELOG.md)
- [Commits](open-policy-agent/opa@v0.67.1...v0.68.0)

Updates `github.com/owenrumney/squealer` from 1.2.3 to 1.2.6
- [Release notes](https://github.com/owenrumney/squealer/releases)
- [Changelog](https://github.com/owenrumney/squealer/blob/main/.goreleaser.yml)
- [Commits](owenrumney/squealer@v1.2.3...v1.2.6)

Updates `github.com/samber/lo` from 1.46.0 to 1.49.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.46.0...v1.49.0)

Updates `github.com/secure-systems-lab/go-securesystemslib` from 0.8.0 to 0.9.0
- [Release notes](https://github.com/secure-systems-lab/go-securesystemslib/releases)
- [Commits](secure-systems-lab/go-securesystemslib@v0.8.0...v0.9.0)

Updates `github.com/sigstore/rekor` from 1.3.6 to 1.3.8
- [Release notes](https://github.com/sigstore/rekor/releases)
- [Changelog](https://github.com/sigstore/rekor/blob/main/CHANGELOG.md)
- [Commits](sigstore/rekor@v1.3.6...v1.3.8)

Updates `github.com/spf13/cast` from 1.7.0 to 1.7.1
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.7.0...v1.7.1)

Updates `github.com/stretchr/testify` from 1.9.0 to 1.10.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.9.0...v1.10.0)

Updates `github.com/testcontainers/testcontainers-go` from 0.32.0 to 0.35.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.32.0...v0.35.0)

Updates `github.com/testcontainers/testcontainers-go/modules/localstack` from 0.32.0 to 0.35.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.32.0...v0.35.0)

Updates `github.com/tetratelabs/wazero` from 1.7.3 to 1.8.2
- [Release notes](https://github.com/tetratelabs/wazero/releases)
- [Commits](tetratelabs/wazero@v1.7.3...v1.8.2)

Updates `github.com/zclconf/go-cty` from 1.15.0 to 1.16.1
- [Release notes](https://github.com/zclconf/go-cty/releases)
- [Changelog](https://github.com/zclconf/go-cty/blob/main/CHANGELOG.md)
- [Commits](zclconf/go-cty@v1.15.0...v1.16.1)

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 `go.etcd.io/bbolt` from 1.3.10 to 1.3.11
- [Release notes](https://github.com/etcd-io/bbolt/releases)
- [Commits](etcd-io/bbolt@v1.3.10...v1.3.11)

Updates `golang.org/x/crypto` from 0.26.0 to 0.32.0
- [Commits](golang/crypto@v0.26.0...v0.32.0)

Updates `golang.org/x/mod` from 0.20.0 to 0.22.0
- [Commits](golang/mod@v0.20.0...v0.22.0)

Updates `golang.org/x/net` from 0.28.0 to 0.34.0
- [Commits](golang/net@v0.28.0...v0.34.0)

Updates `golang.org/x/sync` from 0.8.0 to 0.10.0
- [Commits](golang/sync@v0.8.0...v0.10.0)

Updates `golang.org/x/term` from 0.23.0 to 0.28.0
- [Commits](golang/term@v0.23.0...v0.28.0)

Updates `golang.org/x/text` from 0.17.0 to 0.21.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.17.0...v0.21.0)

Updates `golang.org/x/vuln` from 1.1.3 to 1.1.4
- [Release notes](https://github.com/golang/vuln/releases)
- [Commits](golang/vuln@v1.1.3...v1.1.4)

Updates `golang.org/x/xerrors` from 0.0.0-20231012003039-104605ab7028 to 0.0.0-20240716161551-93cc26a95ae9
- [Commits](https://github.com/golang/xerrors/commits)

Updates `google.golang.org/protobuf` from 1.34.2 to 1.36.3

Updates `helm.sh/helm/v3` from 3.15.3 to 3.17.0
- [Release notes](https://github.com/helm/helm/releases)
- [Commits](helm/helm@v3.15.3...v3.17.0)

Updates `k8s.io/api` from 0.30.3 to 0.32.0
- [Commits](kubernetes/api@v0.30.3...v0.32.0)

Updates `k8s.io/utils` from 0.0.0-20231127182322-b307cd553661 to 0.0.0-20241104100929-3ea5e8cea738
- [Commits](https://github.com/kubernetes/utils/commits)

Updates `modernc.org/sqlite` from 1.32.0 to 1.34.5
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.32.0...v1.34.5)

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azcore
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/azidentity
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/CycloneDX/cyclonedx-go
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/Masterminds/sprig/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/alicebob/miniredis/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/antchfx/htmlquery
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/aquasecurity/go-npm-version
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/aquasecurity/go-pep440-version
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/aquasecurity/go-version
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ec2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2/service/ecr
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/aws/smithy-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/bmatcuk/doublestar/v4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/cheggaaa/pb/v3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/containerd/containerd
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/docker/docker
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/fatih/color
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/go-git/go-git/v5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/google/go-containerregistry
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/hashicorp/go-getter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/hashicorp/hc-install
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/hashicorp/terraform-exec
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/moby/buildkit
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/open-policy-agent/opa
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/owenrumney/squealer
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/samber/lo
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/secure-systems-lab/go-securesystemslib
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/sigstore/rekor
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/spf13/cast
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: github.com/stretchr/testify
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/testcontainers/testcontainers-go/modules/localstack
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/tetratelabs/wazero
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/zclconf/go-cty
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: github.com/zclconf/go-cty-yaml
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: go.etcd.io/bbolt
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: golang.org/x/crypto
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/mod
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/net
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/sync
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/term
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/text
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: golang.org/x/vuln
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: golang.org/x/xerrors
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: google.golang.org/protobuf
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: helm.sh/helm/v3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: k8s.io/api
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
- dependency-name: k8s.io/utils
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: common
- dependency-name: modernc.org/sqlite
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: common
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 27, 2025
Copy link

codesandbox bot commented Jan 27, 2025

Review or Edit in CodeSandbox

Open the branch in Web EditorVS CodeInsiders

Open Preview

Copy link

sourcery-ai bot commented Jan 27, 2025

Reviewer's Guide by Sourcery

This pull request updates multiple dependencies in the go.mod file. It includes updates to Azure SDK, CycloneDX, Sprig, Miniredis, HTMLQuery, and several other libraries. These updates bring in bug fixes, new features, and performance improvements from the respective libraries.

No diagrams generated as the changes look simple and do not need a visual representation.

File-Level Changes

Change Details Files
Updated Azure SDK core library.
  • Updated github.com/Azure/azure-sdk-for-go/sdk/azcore from 1.14.0 to 1.17.0
go.mod
go.sum
Updated Azure SDK identity library.
  • Updated github.com/Azure/azure-sdk-for-go/sdk/azidentity from 1.7.0 to 1.8.1
go.mod
go.sum
Updated CycloneDX library.
  • Updated github.com/CycloneDX/cyclonedx-go from 0.9.0 to 0.9.2
go.mod
go.sum
Updated Sprig library.
  • Updated github.com/Masterminds/sprig/v3 from 3.2.3 to 3.3.0
go.mod
go.sum
Updated Miniredis library.
  • Updated github.com/alicebob/miniredis/v2 from 2.33.0 to 2.34.0
go.mod
go.sum
Updated HTMLQuery library.
  • Updated github.com/antchfx/htmlquery from 1.3.2 to 1.3.4
go.mod
go.sum
Updated go-npm-version library.
  • Updated github.com/aquasecurity/go-npm-version from 0.0.0-20201110091526-0b796d180798 to 0.0.1
go.mod
go.sum
Updated go-pep440-version library.
  • Updated github.com/aquasecurity/go-pep440-version from 0.0.0-20210121094942-22b2f8951d46 to 0.0.1
go.mod
go.sum
Updated go-version library.
  • Updated github.com/aquasecurity/go-version from 0.0.0-20240603093900-cf8a8d29271d to 0.0.1
go.mod
go.sum
Updated AWS SDK library.
  • Updated github.com/aws/aws-sdk-go-v2 from 1.30.3 to 1.34.0
go.mod
go.sum
Updated AWS SDK config library.
  • Updated github.com/aws/aws-sdk-go-v2/config from 1.27.27 to 1.29.2
go.mod
go.sum
Updated AWS SDK credentials library.
  • Updated github.com/aws/aws-sdk-go-v2/credentials from 1.17.27 to 1.17.55
go.mod
go.sum
Updated AWS SDK EC2 library.
  • Updated github.com/aws/aws-sdk-go-v2/service/ec2 from 1.173.0 to 1.201.1
go.mod
go.sum
Updated AWS SDK ECR library.
  • Updated github.com/aws/aws-sdk-go-v2/service/ecr from 1.31.0 to 1.38.7
go.mod
go.sum
Updated AWS SDK S3 library.
  • Updated github.com/aws/aws-sdk-go-v2/service/s3 from 1.58.3 to 1.74.1
go.mod
go.sum
Updated Smithy library.
  • Updated github.com/aws/smithy-go from 1.20.3 to 1.22.2
go.mod
go.sum
Updated doublestar library.
  • Updated github.com/bmatcuk/doublestar/v4 from 4.6.1 to 4.8.1
go.mod
go.sum
Updated pb library.
  • Updated github.com/cheggaaa/pb/v3 from 3.1.5 to 3.1.6
go.mod
go.sum
Updated containerd library.
  • Updated github.com/containerd/containerd from 1.7.20 to 1.7.25
go.mod
go.sum
Updated docker library.
  • Updated github.com/docker/docker from 27.1.1+incompatible to 27.5.1+incompatible
go.mod
go.sum
Updated go-git library.
  • Updated github.com/go-git/go-git/v5 from 5.12.0 to 5.13.2
go.mod
go.sum
Updated go-containerregistry library.
  • Updated github.com/google/go-containerregistry from 0.20.2 to 0.20.3
go.mod
go.sum
Updated go-getter library.
  • Updated github.com/hashicorp/go-getter from 1.7.5 to 1.7.8
go.mod
go.sum
Updated hc-install library.
  • Updated github.com/hashicorp/hc-install from 0.8.0 to 0.9.1
go.mod
go.sum
Updated hcl/v2 library.
  • Updated github.com/hashicorp/hcl/v2 from 2.21.0 to 2.23.0
go.mod
go.sum
Updated terraform-exec library.
  • Updated github.com/hashicorp/terraform-exec from 0.21.0 to 0.22.0
go.mod
go.sum
Updated buildkit library.
  • Updated github.com/moby/buildkit from 0.15.1 to 0.19.0
go.mod
go.sum
Updated squealer library.
  • Updated github.com/owenrumney/squealer from 1.2.3 to 1.2.6
go.mod
go.sum
Updated lo library.
  • Updated github.com/samber/lo from 1.46.0 to 1.49.0
go.mod
go.sum
Updated go-securesystemslib library.
  • Updated github.com/secure-systems-lab/go-securesystemslib from 0.8.0 to 0.9.0
go.mod
go.sum
Updated rekor library.
  • Updated github.com/sigstore/rekor from 1.3.6 to 1.3.8
go.mod
go.sum
Updated cast library.
  • Updated github.com/spf13/cast from 1.7.0 to 1.7.1
go.mod
go.sum
Updated testcontainers-go library.
  • Updated github.com/testcontainers/testcontainers-go from 0.32.0 to 0.35.0
go.mod
go.sum
Updated testcontainers-go localstack module.
  • Updated github.com/testcontainers/testcontainers-go/modules/localstack from 0.32.0 to 0.35.0
go.mod
go.sum
Updated wazero library.
  • Updated github.com/tetratelabs/wazero from 1.7.3 to 1.8.2
go.mod
go.sum
Updated go-cty-yaml library.
  • Updated github.com/zclconf/go-cty-yaml from 1.0.3 to 1.1.0
go.mod
go.sum
Updated vuln library.
  • Updated golang.org/x/vuln from 1.1.3 to 1.1.4
go.mod
go.sum
Updated helm/v3 library.
  • Updated helm.sh/helm/v3 from 3.15.3 to 3.17.0
go.mod
go.sum
Updated sqlite library.
  • Updated modernc.org/sqlite from 1.32.0 to 1.34.5
go.mod
go.sum

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

Copy link
Author

dependabot bot commented on behalf of github Feb 3, 2025

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

@dependabot dependabot bot closed this Feb 3, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/common-4fd8cc8a3f branch February 3, 2025 14:43
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