Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 2, 2026

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

Package From To
code.cloudfoundry.org/bytefmt 0.35.0 0.59.0
github.com/BurntSushi/toml 1.5.0 1.6.0
github.com/aws/aws-sdk-go-v2 1.38.1 1.41.0
github.com/emicklei/proto 1.14.0 1.14.2
github.com/getsentry/sentry-go 0.31.2-0.20250102155933-f2d4348b0508 0.40.0
github.com/gookit/color 1.5.4 1.6.0
github.com/hashicorp/go-getter 1.8.1 1.8.4
github.com/hashicorp/hcl/v2 2.23.0 2.24.0
github.com/hashicorp/terraform-json 0.24.0 0.27.2
github.com/mackerelio/go-osstat 0.2.5 0.2.6
github.com/spf13/cobra 1.10.1 1.10.2
github.com/tdewolff/minify/v2 2.23.1 2.24.8
mvdan.cc/sh/v3 3.11.0 3.12.0
k8s.io/api 0.34.2 0.35.0
k8s.io/client-go 0.34.2 0.35.0

Updates code.cloudfoundry.org/bytefmt from 0.35.0 to 0.59.0

Commits

Updates github.com/BurntSushi/toml from 1.5.0 to 1.6.0

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.6.0

TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

Also two small fixes:

  • Encode large floats as exponent syntax so that round-tripping things like 5e+22 is correct.

  • Using duplicate array keys would not give an error:

    arr = [1]
    arr = [2]
    

    This will now correctly give a "Key 'arr' has already been defined" error.

Commits
  • 5253492 Enable TOML 1.1 by default (#457)
  • e954445 Reject duplicate arrays (#455)
  • 6b16cbd Update toml-test test cases from upstream (#456)
  • 011fa2b Ensure constant format strings in wf calls
  • 4b439bf Remove itemNil
  • a473c12 Add test for out of range float64
  • b535ff8 Add some boring tests for lex.go
  • 6011ef0 Remove unreachable condition in lexTableNameStart
  • c8ca9e6 Remove unreachable condition
  • 1121f81 Make tomlv read from stdin
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2 from 1.38.1 to 1.41.0

Commits

Updates github.com/emicklei/proto from 1.14.0 to 1.14.2

Changelog

Sourced from github.com/emicklei/proto's changelog.

v1.14.2 (2025-06-18)

  • fix parsing options for extensions (ISSUE #150)

v1.14.1 (2025-04-29)

  • fix option name with brackets (ISSUE #148)
Commits

Updates github.com/getsentry/sentry-go from 0.31.2-0.20250102155933-f2d4348b0508 to 0.40.0

Release notes

Sourced from github.com/getsentry/sentry-go's releases.

0.40.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.40.0.

Bug Fixes

  • Disable DisableTelemetryBuffer flag and noop Telemetry Buffer, to prevent a panic at runtime (#1149).

0.39.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.39.0.

Features

  • Drop events from the telemetry buffer when rate-limited or transport is full, allowing the buffer queue to empty itself under load (#1138).

Bug Fixes

  • Fix scheduler's hasWork() method to check if buffers are ready to flush. The previous implementation was causing CPU spikes (#1143).

0.38.0

Breaking Changes

Features

  • Introduce a new async envelope transport and telemetry buffer to prioritize and batch events (#1094, #1093, #1107).

    • Advantages:
      • Prioritized, per-category buffers (errors, transactions, logs, check-ins) reduce starvation and improve resilience under load
      • Batching for high-volume logs (up to 100 items or 5s) cuts network overhead
      • Bounded memory with eviction policies
      • Improved flush behavior with context-aware flushing
  • Add ClientOptions.DisableTelemetryBuffer to opt out and fall back to the legacy transport layer (HTTPTransport / HTTPSyncTransport).

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      DisableTelemetryBuffer: true, // fallback to legacy transport
    })

Notes

  • If a custom Transport is provided, the SDK automatically disables the telemetry buffer and uses the legacy transport for compatibility.

0.37.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.37.0.

Breaking Changes

  • Behavioral change for the TraceIgnoreStatusCodes option. The option now defaults to ignoring 404 status codes (#1122).

Features

... (truncated)

Changelog

Sourced from github.com/getsentry/sentry-go's changelog.

0.40.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.40.0.

Bug Fixes

  • Disable DisableTelemetryBuffer flag and noop Telemetry Buffer, to prevent a panic at runtime (#1149).

0.39.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.39.0.

Features

  • Drop events from the telemetry buffer when rate-limited or transport is full, allowing the buffer queue to empty itself under load (#1138).

Bug Fixes

  • Fix scheduler's hasWork() method to check if buffers are ready to flush. The previous implementation was causing CPU spikes (#1143).

0.38.0

Breaking Changes

Features

  • Introduce a new async envelope transport and telemetry buffer to prioritize and batch events (#1094, #1093, #1107).

    • Advantages:
      • Prioritized, per-category buffers (errors, transactions, logs, check-ins) reduce starvation and improve resilience under load
      • Batching for high-volume logs (up to 100 items or 5s) cuts network overhead
      • Bounded memory with eviction policies
      • Improved flush behavior with context-aware flushing
  • Add ClientOptions.DisableTelemetryBuffer to opt out and fall back to the legacy transport layer (HTTPTransport / HTTPSyncTransport).

    err := sentry.Init(sentry.ClientOptions{
      Dsn: "__DSN__",
      DisableTelemetryBuffer: true, // fallback to legacy transport
    })

Notes

  • If a custom Transport is provided, the SDK automatically disables the telemetry buffer and uses the legacy transport for compatibility.

0.37.0

The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.37.0.

Breaking Changes

... (truncated)

Commits

Updates github.com/google/pprof from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20251213031049-b05bdaca462f

Commits

Updates github.com/gookit/color from 1.5.4 to 1.6.0

Release notes

Sourced from github.com/gookit/color's releases.

v1.6.0

Change Log

Fixed

Feature

Update

Other

... (truncated)

Commits
  • 0b1dc4c ✅ demo: update the examples deps and some codes
  • fa47891 ⬆️ dep: upgrade gookit/assert to v0.1.1, update some tests
  • d95f213 ✨ feat: add new convert func: HSVToRGB, RGBToHSV
  • 173325a 👔 up: update detect env, use internal Level* instead of the terminfo....
  • c5db0d0 👔 up: remove deprecated var isLikeInCmd, update some tests
  • f46f52e 🔥 chore: remove any.go, merge printer.go to quickstart.go
  • cc45966 🎨 chore: update some go file code style
  • e532935 Optimize RenderCode performance with fast paths for string arguments (#110)
  • f14a7b8 📝 chore: update some code style and some tests
  • 6de7584 Fix race condition in Theme.Tips method when called concurrently (#109)
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-getter from 1.8.1 to 1.8.4

Release notes

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

v1.8.4

What's Changed

New Contributors

Full Changelog: hashicorp/go-getter@v1.8.3...v1.8.4

v1.8.3

What's Changed

New Contributors

Full Changelog: hashicorp/go-getter@v1.8.2...v1.8.3

v1.8.2

What's Changed

New Contributors

Full Changelog: hashicorp/go-getter@v1.8.1...v1.8.2

Commits
  • 576ab86 [chore] : Bump the go group across 1 directory with 12 updates (#575)
  • efec2db Merge pull request #574 from hashicorp/dependabot/github_actions/actions-36c6...
  • 7ccb947 [chore] : Bump the actions group across 1 directory with 6 updates
  • 228ad65 fix: allow downloading S3 files from MinIO over http (#570)
  • 5cb8b18 Merge pull request #567 from hashicorp/dependabot/github_actions/actions-92ca...
  • f358fa6 Merge pull request #571 from hashicorp/compliance/update-headers
  • 376d40c [COMPLIANCE] Update Copyright and License Headers
  • 9d34fba [chore] : Bump the actions group across 1 directory with 3 updates
  • fd63a33 Merge pull request #566 from hashicorp/compliance/update-headers
  • ac8218d [COMPLIANCE] Update Copyright and License Headers
  • Additional commits viewable in compare view

Updates github.com/hashicorp/hcl/v2 from 2.23.0 to 2.24.0

Release notes

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

v2.24.0

Enhancements

  • Add support for decoding block and attribute source ranges when using gohcl. (#703)
  • hclsyntax: Detect and reject invalid nested splat result. (#724)

Bugs Fixed

  • Correct handling of unknown objects in Index function. (#763)
Changelog

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

v2.24.0 (July 7, 2025)

Enhancements

  • Add support for decoding block and attribute source ranges when using gohcl. (#703)
  • hclsyntax: Detect and reject invalid nested splat result. (#724)

Bugs Fixed

  • Correct handling of unknown objects in Index function. (#763)
Commits
  • 6b50680 Update CHANGELOG.md (#764)
  • 77ef278 ops: handle unknown objects correctly when looking up by index (#763)
  • dfa124f [Compliance] - PR Template Changes Required (#761)
  • 6b5c4c2 fix errors thrown by errcheck linter (#755)
  • 61bd79d suppress and fix lint errors by unused (#754)
  • 8b8cb9c build(deps): bump golangci/golangci-lint-action
  • aa4e447 build(deps): bump actions/setup-go
  • 7244363 Update go-cty to latest (#749)
  • b4e27ae test_suite: refactor schema validation of diagnostic file range, pos (#750)
  • 314d236 fix staticcheck lint errors
  • Additional commits viewable in compare view

Updates github.com/hashicorp/terraform-json from 0.24.0 to 0.27.2

Release notes

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

v0.27.2

NOTES / BUG FIXES

  • UnmarshalLogMessage to use json.Number (instead of default float64) (#178)
    • This avoids precision related problems when decoding numbers in JSON data. This would impact only 0.27.1 consumers.

v0.27.1

What's Changed

ENHANCEMENTS

Full Changelog: hashicorp/terraform-json@v0.27.0...v0.27.1

v0.27.0

What's Changed

ENHANCEMENTS

INTERNAL

New Contributors

Full Changelog: hashicorp/terraform-json@v0.26.0...v0.27.0

v0.26.0

ENHANCEMENTS:

INTERNAL:

New Contributors

... (truncated)

Commits
  • ef5e0b8 UnmarshalLogMessage to use json.Number (#178)
  • 3fe6fb2 Replace json.RawMessage for list log messages (#177)
  • 739a592 actions: remove action types from action schema (#175)
  • 2eaedbe tf query: add identity version for the list_resource_found message (#176)
  • 2fd2922 Merge pull request #172 from hashicorp/mutahhir/add-action-invocation
  • b539674 Add ConfigUnknown field
  • 806b1a6 Fix tests after type change
  • 23522f3 Change ConfigValues and ConfigSensitive to interfaces for redaction
  • dd0e457 Remove Action Invocation as a Resource Mode
  • 4643c0f format plan.json for test
  • Additional commits viewable in compare view

Updates github.com/mackerelio/go-osstat from 0.2.5 to 0.2.6

Release notes

Sourced from github.com/mackerelio/go-osstat's releases.

v0.2.6

What's Changed

Full Changelog: mackerelio/go-osstat@v0.2.5...v0.2.6

Commits
  • e2840f1 Merge pull request #64 from mackerelio/dependabot/github_actions/mackerelio/w...
  • cb41f5c Bump mackerelio/workflows from 1.2.0 to 1.5.0
  • e79a9bb Merge pull request #63 from mackerelio/dependabot/go_modules/golang.org/x/sys...
  • bff3fdf Bump golang.org/x/sys from 0.24.0 to 0.33.0
  • 873f9e8 Merge pull request #58 from mackerelio/dependabot/go_modules/golang.org/x/sys...
  • ef829f9 Merge pull request #61 from mackerelio/nocov
  • 9a03569 remove coveralls status badge
  • 75bb38f Merge pull request #59 from mackerelio/update-workflows
  • e6c8794 use mackerelio/workflows@v1.2.0
  • 3306aea Bump golang.org/x/sys from 0.20.0 to 0.24.0
  • See full diff in compare view

Updates github.com/spf13/cobra from 1.10.1 to 1.10.2

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.10.2

🔧 Dependencies

  • chore: Migrate from gopkg.in/yaml.v3 to go.yaml.in/yaml/v3 by @​dims in spf13/cobra#2336 - the gopkg.in/yaml.v3 package has been deprecated for some time: this should significantly cleanup dependency/supply-chains for consumers of spf13/cobra

📈 CI/CD

🔥✍🏼 Docs

🍂 Refactors

🤗 New Contributors

Full Changelog: spf13/cobra@v1.10.1...v1.10.2

Thank you to our amazing contributors!!!!! 🐍 🚀

Commits

Updates github.com/tdewolff/minify/v2 from 2.23.1 to 2.24.8

Release notes

Sourced from github.com/tdewolff/minify/v2's releases.

v2.24.8

v2.24.7

v2.24.6

v2.24.5

v2.24.4

v2.24.3

v2.24.2

v2.24.1

v2.24.0

v2.23.11

v2.23.10

Fix JS binding

v2.23.9

... (truncated)

Commits
  • 8cf9eb3 Merge pull request #879 from VastBlast/js-bindings-rewrite
  • b5ecedf add optional minify overload with explicit required args
  • 3f34d2f add better memory leak test
  • f5efd76 remove flawed memory leak test (todo: add mem leak test)
  • 7aed404 update node workflow to work with new rewrite
  • 6a72bb1 require minimum node v20
  • c187fa0 rewrite...

    Description has been truncated

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jan 2, 2026
@dependabot dependabot bot requested a review from a team as a code owner January 2, 2026 15:14
@github-actions github-actions bot added bug Something isn't working query New query feature terraform Terraform query aws PR related with AWS Cloud kubernetes Kubernetes query labels Jan 2, 2026
@dependabot dependabot bot force-pushed the dependabot/go_modules/all-fcd0d9e9bd branch from fc3a35c to 9d979fb Compare January 6, 2026 23:04
Bumps the all group with 15 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [code.cloudfoundry.org/bytefmt](https://github.com/cloudfoundry/bytefmt) | `0.35.0` | `0.59.0` |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.5.0` | `1.6.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.1` | `1.41.0` |
| [github.com/emicklei/proto](https://github.com/emicklei/proto) | `1.14.0` | `1.14.2` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.31.2-0.20250102155933-f2d4348b0508` | `0.40.0` |
| [github.com/gookit/color](https://github.com/gookit/color) | `1.5.4` | `1.6.0` |
| [github.com/hashicorp/go-getter](https://github.com/hashicorp/go-getter) | `1.8.1` | `1.8.4` |
| [github.com/hashicorp/hcl/v2](https://github.com/hashicorp/hcl) | `2.23.0` | `2.24.0` |
| [github.com/hashicorp/terraform-json](https://github.com/hashicorp/terraform-json) | `0.24.0` | `0.27.2` |
| [github.com/mackerelio/go-osstat](https://github.com/mackerelio/go-osstat) | `0.2.5` | `0.2.6` |
| [github.com/spf13/cobra](https://github.com/spf13/cobra) | `1.10.1` | `1.10.2` |
| [github.com/tdewolff/minify/v2](https://github.com/tdewolff/minify) | `2.23.1` | `2.24.8` |
| [mvdan.cc/sh/v3](https://github.com/mvdan/sh) | `3.11.0` | `3.12.0` |
| [k8s.io/api](https://github.com/kubernetes/api) | `0.34.2` | `0.35.0` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.34.2` | `0.35.0` |



Updates `code.cloudfoundry.org/bytefmt` from 0.35.0 to 0.59.0
- [Release notes](https://github.com/cloudfoundry/bytefmt/releases)
- [Commits](cloudfoundry/bytefmt@v0.35.0...v0.59.0)

Updates `github.com/BurntSushi/toml` from 1.5.0 to 1.6.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.5.0...v1.6.0)

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.1 to 1.41.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.38.1...v1.41.0)

Updates `github.com/emicklei/proto` from 1.14.0 to 1.14.2
- [Changelog](https://github.com/emicklei/proto/blob/master/CHANGES.md)
- [Commits](emicklei/proto@v1.14.0...v1.14.2)

Updates `github.com/getsentry/sentry-go` from 0.31.2-0.20250102155933-f2d4348b0508 to 0.40.0
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](https://github.com/getsentry/sentry-go/commits/v0.40.0)

Updates `github.com/google/pprof` from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20251213031049-b05bdaca462f
- [Commits](https://github.com/google/pprof/commits)

Updates `github.com/gookit/color` from 1.5.4 to 1.6.0
- [Release notes](https://github.com/gookit/color/releases)
- [Commits](gookit/color@v1.5.4...v1.6.0)

Updates `github.com/hashicorp/go-getter` from 1.8.1 to 1.8.4
- [Release notes](https://github.com/hashicorp/go-getter/releases)
- [Commits](hashicorp/go-getter@v1.8.1...v1.8.4)

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

Updates `github.com/hashicorp/terraform-json` from 0.24.0 to 0.27.2
- [Release notes](https://github.com/hashicorp/terraform-json/releases)
- [Commits](hashicorp/terraform-json@v0.24.0...v0.27.2)

Updates `github.com/mackerelio/go-osstat` from 0.2.5 to 0.2.6
- [Release notes](https://github.com/mackerelio/go-osstat/releases)
- [Commits](mackerelio/go-osstat@v0.2.5...v0.2.6)

Updates `github.com/spf13/cobra` from 1.10.1 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.10.1...v1.10.2)

Updates `github.com/tdewolff/minify/v2` from 2.23.1 to 2.24.8
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](tdewolff/minify@v2.23.1...v2.24.8)

Updates `github.com/zclconf/go-cty` from 1.16.2 to 1.16.4
- [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.16.2...v1.16.4)

Updates `golang.org/x/net` from 0.47.0 to 0.48.0
- [Commits](golang/net@v0.47.0...v0.48.0)

Updates `golang.org/x/text` from 0.31.0 to 0.32.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.31.0...v0.32.0)

Updates `mvdan.cc/sh/v3` from 3.11.0 to 3.12.0
- [Release notes](https://github.com/mvdan/sh/releases)
- [Changelog](https://github.com/mvdan/sh/blob/master/CHANGELOG.md)
- [Commits](mvdan/sh@v3.11.0...v3.12.0)

Updates `k8s.io/api` from 0.34.2 to 0.35.0
- [Commits](kubernetes/api@v0.34.2...v0.35.0)

Updates `k8s.io/apimachinery` from 0.34.2 to 0.35.0
- [Commits](kubernetes/apimachinery@v0.34.2...v0.35.0)

Updates `k8s.io/client-go` from 0.34.2 to 0.35.0
- [Changelog](https://github.com/kubernetes/client-go/blob/master/CHANGELOG.md)
- [Commits](kubernetes/client-go@v0.34.2...v0.35.0)

---
updated-dependencies:
- dependency-name: code.cloudfoundry.org/bytefmt
  dependency-version: 0.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/emicklei/proto
  dependency-version: 1.14.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/google/pprof
  dependency-version: 0.0.0-20251213031049-b05bdaca462f
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/gookit/color
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/hashicorp/go-getter
  dependency-version: 1.8.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/hashicorp/hcl/v2
  dependency-version: 2.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/hashicorp/terraform-json
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/mackerelio/go-osstat
  dependency-version: 0.2.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/tdewolff/minify/v2
  dependency-version: 2.24.8
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/zclconf/go-cty
  dependency-version: 1.16.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.32.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: mvdan.cc/sh/v3
  dependency-version: 3.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/api
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: k8s.io/client-go
  dependency-version: 0.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/all-fcd0d9e9bd branch from 9d979fb to 8b96a64 Compare January 7, 2026 19:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

aws PR related with AWS Cloud bug Something isn't working dependencies Pull requests that update a dependency file go Pull requests that update Go code kubernetes Kubernetes query query New query feature terraform Terraform query

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants