Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 26, 2025

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

Package From To
code.cloudfoundry.org/bytefmt 0.35.0 0.58.0
github.com/aws/aws-sdk-go-v2 1.38.1 1.40.0
github.com/emicklei/proto 1.14.0 1.14.2
github.com/getsentry/sentry-go 0.31.2-0.20250102155933-f2d4348b0508 0.39.0
github.com/gookit/color 1.5.4 1.6.0
github.com/hashicorp/go-getter 1.8.1 1.8.3
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/tdewolff/minify/v2 2.23.1 2.24.7
mvdan.cc/sh/v3 3.11.0 3.12.0
k8s.io/api 0.34.0 0.34.2
k8s.io/client-go 0.34.0 0.34.2

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

Commits

Updates github.com/aws/aws-sdk-go-v2 from 1.38.1 to 1.40.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.39.0

Release notes

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

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

  • Add sentry.origin attribute to structured logs to identify log origin for slog and logrus integrations (auto.log.slog, auto.log.logrus) (#1121).

Bug Fixes

  • Fix slog event handler to use the initial context, ensuring events use the correct hub/span when the emission context lacks one (#1133).
  • Improve exception chain processing by checking pointer values when tracking visited errors, avoiding instability for certain wrapped errors (#1132).

... (truncated)

Changelog

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

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

  • Add sentry.origin attribute to structured logs to identify log origin for slog and logrus integrations (auto.log.slog, auto.log.logrus) (#1121).

Bug Fixes

... (truncated)

Commits

Updates github.com/google/pprof from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20251114195745-4902fdda35c8

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.3

Release notes

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

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
  • 13f1bb2 Merge pull request #564 from allisonlarson/b-chmod-failed-tar
  • c0ef527 close file before removing
  • d1113d8 Handle failed decompressed files
  • cfc3a4f Merge pull request #563 from hashicorp/dependabot/github_actions/actions-e02f...
  • 0c1f668 [chore] : Bump aws-actions/configure-aws-credentials
  • 5e2f62a Merge pull request #562 from hashicorp/dependabot/github_actions/actions-f175...
  • 5b4c45f [chore] : Bump actions/cache from 4.2.4 to 4.3.0 in the actions group
  • 60a3d53 Ensure temporary directory symlinks do not cause errors (#560)
  • See full diff 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/[email protected]
  • 3306aea Bump golang.org/x/sys from 0.20.0 to 0.24.0
  • See full diff in compare view

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

Release notes

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

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

v2.23.8

  • Fix NPM build

v2.23.7

... (truncated)

Commits
  • 8f615b9 Merge pull request #865 from tdewolff/dependabot/github_actions/actions/uploa...
  • 2f4aa14 Merge pull request #864 from tdewolff/dependabot/github_actions/actions/downl...
  • 6ae1a0f JS: reduce && and || if any argument is true/false; reduce if(cond){...} if c...
  • be173cd JS: support shortening of class private elements, fixes #652
  • 28cabf0 Bump actions/upload-artifact from 4 to 5
  • 55c4cde Bump actions/download-artifact from 5 to 6
  • 7575c43 Merge pull request #862 from tdewolff/dependabot/npm_and_yarn/bindings/js/nod...
  • 6f5b89f JS: revert transformation of => , fixes #863
  • aa4d964 Bump node-gyp from 11.4.2 to 11.5.0 in /bindings/js
  • 902ae95 Merge branch 'master' of github.com:tdewolff/minify
  • Additional commits viewable in compare view

Updates github.com/zclconf/go-cty from 1.16.2 to 1.16.4

Changelog

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

1.16.4 (August 20, 2025)

  • cty.UnknownAsNull now accepts marked values and preserves the given marks in its result. Previously it had no direct support for marks and so would either panic or return incorrect results when given marked values.

1.16.3 (May 16, 2025)

  • convert: Now generates more specific error messages in various cases of type conversion failure, giving additional information about the type that was given as compared to the type that was wanted by the caller.
Commits
  • e76eeea v1.16.4 release
  • 700a2bc cty: UnknownAsNull accepts marked values and preserves marks
  • 3c2b6a0 Prepare for future v1.16.4 release
  • a49320f Prepare for v1.16.3 release
  • 89f0621 convert: More forthcoming about cause in MismatchMessage
  • 67d85b6 Prepare for a future v1.16.3 release
  • See full diff in compare view

Updates mvdan.cc/sh/v3 from 3.11.0 to 3.12.0

Release notes

Sourced from mvdan.cc/sh/v3's releases.

v3.12.0

  • The mvdan-sh JS package is discontinued in favor of sh-syntax - #1145
  • cmd/shfmt
    • Support the "simplify" and "minify" flags via EditorConfig - #819
    • --simplify and --minify are now formatting options, disabling the use of EditorConfig
    • Do not allow --write to replace non-regular files - #843
  • interp
    • Add IsBuiltin to check if a command name is a shell built-in - #1164
    • Add HandlerContext.Builtin to allow ExecHandlerFunc to call built-ins
    • Initial support for $! and wait PID - #221
    • Return non-fatal ExecHandlerFunc errors via the Runner.Run API
    • Add HandlerContext.Pos to provide handlers with source positions
    • Deprecate NewExitStatus and IsExitStatus in favor of ExitStatus
    • Fix wait to always return the status of the last given job
    • Copy all env vars for background subshells to avoid data races
    • Support reading random numbers via $RANDOM and $SRANDOM
    • Set $BASH_REMATCH when matching regular expressions via =~
    • Support modifying local vars from the parent calling function
  • expand
    • Adjust which backslash sequences are expanded in here-docs - #1138
    • Tweak tilde expansions to match Bash semantics
  • pattern
    • Remove the flawed and broken Braces mode; use syntax.SplitBraces instead
    • Tweak ** to only act as "globstar" when alone as a path element - #1149
    • Tweak * and ** to not match leading dots in basenames
    • Add a NoGlobStar mode to match the POSIX semantics
  • fileutil
    • Treat all non-regular files as definitely not shell scripts - #1089

Consider becoming a sponsor if you benefit from the work that went into this release!

Binaries built on go version go1.24.4 linux/amd64 with:

CGO_ENABLED=0 go build -trimpath -ldflags="-w -s -X=main.version=v3.12.0"

Changelog

Sourced from mvdan.cc/sh/v3's changelog.

[3.12.0] - 2025-07-06

  • The mvdan-sh JS package is discontinued in favor of sh-syntax - #1145
  • cmd/shfmt
    • Support the "simplify" and "minify" flags via EditorConfig - #819
    • Do not allow --write to replace non-regular files - #843
  • interp
    • Add IsBuiltin to check if a command name is a shell built-in - #1164
    • Add HandlerContext.Builtin to allow ExecHandlerFunc to call built-ins
    • Initial support for $! and wait PID - #221
    • Return non-fatal ExecHandlerFunc errors via the Runner.Run API
    • Add HandlerContext.Pos to provide handlers with source positions
    • Deprecate NewExitStatus and IsExitStatus in favor of ExitStatus
    • Fix wait to always return the status of the last given job
    • Copy all env vars for background subshells to avoid data races
    • Support reading random numbers via $RANDOM and $SRANDOM
    • Set $BASH_REMATCH when matching regular expressions via =~
    • Support modifying local vars from the parent calling function
  • expand
    • Adjust which backslash sequences are expanded in here-docs - #1138
    • Tweak tilde expansions to match Bash semantics
  • pattern
    • Remove the flawed and broken Braces mode; use syntax.SplitBraces instead
    • Tweak ** to only act as "globstar" when alone as a path element - #1149
    • Tweak * and ** to not match leading dots in basenames
    • Add a NoGlobStar mode to match the POSIX semantics
  • fileutil
    • Treat all non-regular files as definitely not shell scripts - #1089
Commits
  • 8202166 CHANGELOG: add entry for v3.12.0
  • 27a4af8 README.md: add another example to caveats
  • 4e01dd2 interp: add HandlerContext.Builtin
  • 0797923 interp: add test cases with exit inside a process substitution
  • dbf7b7c interp: add HandlerContext.Pos

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

| Package | From | To |
| --- | --- | --- |
| [code.cloudfoundry.org/bytefmt](https://github.com/cloudfoundry/bytefmt) | `0.35.0` | `0.58.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.1` | `1.40.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.39.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.3` |
| [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/tdewolff/minify/v2](https://github.com/tdewolff/minify) | `2.23.1` | `2.24.7` |
| [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.0` | `0.34.2` |
| [k8s.io/client-go](https://github.com/kubernetes/client-go) | `0.34.0` | `0.34.2` |



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

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.1 to 1.40.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.40.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.39.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.39.0)

Updates `github.com/google/pprof` from 0.0.0-20250820193118-f64d9cf942d6 to 0.0.0-20251114195745-4902fdda35c8
- [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.3
- [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.8.1...v1.8.3)

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/tdewolff/minify/v2` from 2.23.1 to 2.24.7
- [Release notes](https://github.com/tdewolff/minify/releases)
- [Commits](tdewolff/minify@v2.23.1...v2.24.7)

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 `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.0 to 0.34.2
- [Commits](kubernetes/api@v0.34.0...v0.34.2)

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

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

---
updated-dependencies:
- dependency-name: code.cloudfoundry.org/bytefmt
  dependency-version: 0.58.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.40.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.39.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-20251114195745-4902fdda35c8
  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.3
  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/tdewolff/minify/v2
  dependency-version: 2.24.7
  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: 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.34.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/apimachinery
  dependency-version: 0.34.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: k8s.io/client-go
  dependency-version: 0.34.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

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 Nov 26, 2025
@dependabot dependabot bot requested a review from a team as a code owner November 26, 2025 13:02
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Nov 26, 2025
@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 Nov 26, 2025
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