Skip to content

build(deps): bump the gomod group across 1 directory with 30 updates#4542

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/gomod-2a60221f9d
Open

build(deps): bump the gomod group across 1 directory with 30 updates#4542
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/gomod-2a60221f9d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 3, 2026

Copy link
Copy Markdown
Contributor

Bumps the gomod group with 23 updates in the / directory:

Package From To
github.com/aws/aws-sdk-go-v2 1.41.7 1.42.1
github.com/aws/aws-sdk-go-v2/config 1.32.17 1.32.27
github.com/aws/aws-sdk-go-v2/feature/s3/manager 1.22.17 1.22.30
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs 1.73.0 1.78.2
github.com/aws/aws-sdk-go-v2/service/kinesis 1.43.7 1.44.4
github.com/aws/aws-sdk-go-v2/service/sqs 1.42.27 1.44.2
github.com/evanw/esbuild 0.27.2 0.28.1
github.com/getkin/kin-openapi 0.137.0 0.140.0
github.com/go-co-op/gocron/v2 2.21.1 2.21.2
github.com/go-openapi/errors 0.22.7 0.22.8
github.com/go-openapi/strfmt 0.26.2 0.26.4
github.com/go-openapi/swag 0.26.0 0.27.0
github.com/go-openapi/validate 0.25.2 0.26.0
github.com/jedib0t/go-pretty/v6 6.7.10 6.8.2
github.com/moby/moby/api 1.54.2 1.55.0
github.com/moby/moby/client 0.4.1 0.5.0
github.com/prometheus/common 0.67.5 0.69.0
github.com/shirou/gopsutil/v4 4.26.4 4.26.6
github.com/slack-go/slack 0.23.0 0.27.0
github.com/tetratelabs/wazero 1.11.0 1.12.0
google.golang.org/grpc 1.81.0 1.82.0
k8s.io/apiserver 0.36.0 0.36.2
modernc.org/sqlite 1.50.0 1.53.0

Updates github.com/aws/aws-sdk-go-v2 from 1.41.7 to 1.42.1

Commits

Updates github.com/aws/aws-sdk-go-v2/config from 1.32.17 to 1.32.27

Commits

Updates github.com/aws/aws-sdk-go-v2/feature/s3/manager from 1.22.17 to 1.22.30

Commits

Updates github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs from 1.73.0 to 1.78.2

Commits

Updates github.com/aws/aws-sdk-go-v2/service/kinesis from 1.43.7 to 1.44.4

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.100.1 to 1.104.2

Commits

Updates github.com/aws/aws-sdk-go-v2/service/sqs from 1.42.27 to 1.44.2

Commits

Updates github.com/evanw/esbuild from 0.27.2 to 0.28.1

Release notes

Sourced from github.com/evanw/esbuild's releases.

v0.28.1

  • Disallow \ in local development server HTTP requests (GHSA-g7r4-m6w7-qqqr)

    This release fixes a security issue where HTTP requests to esbuild's local development server could traverse outside of the serve directory on Windows using a \ backslash character. It happened due to the use of Go's path.Clean() function, which only handles Unix-style / characters. HTTP requests with paths containing \ are no longer allowed.

    Thanks to @​dellalibera for reporting this issue.

  • Add integrity checks to the Deno API (GHSA-gv7w-rqvm-qjhr)

    The previous release of esbuild added integrity checks to esbuild's npm install script. This release also adds integrity checks to esbuild's Deno install script. Now esbuild's Deno API will also fail with an error if the downloaded esbuild binary contains something other than the expected content.

    Note that esbuild's Deno API installs from registry.npmjs.org by default, but allows the NPM_CONFIG_REGISTRY environment variable to override this with a custom package registry. This change means that the esbuild executable served by NPM_CONFIG_REGISTRY must now match the expected content.

    Thanks to @​sondt99 for reporting this issue.

  • Avoid inlining using and await using declarations (#4482)

    Previously esbuild's minifier sometimes incorrectly inlined using and await using declarations into subsequent uses of that declaration, which then fails to dispose of the resource correctly. This bug happened because inlining was done for let and const declarations by avoiding doing it for var declarations, which no longer worked when more declaration types were added. Here's an example:

    // Original code
    {
      using x = new Resource()
      x.activate()
    }
    // Old output (with --minify)
    new Resource().activate();
    // New output (with --minify)
    {using e=new Resource;e.activate()}

  • Fix module evaluation when an error is thrown (#4461, #4467)

    If an error is thrown during module evaluation, esbuild previously didn't preserve the state of the module for subsequent module references. This was observable if import() or require() is used to import a module multiple times. The thrown error is supposed to be thrown by every call to import() or require(), not just the first. With this release, esbuild will now throw the same error every time you call import() or require() on a module that throws during its evaluation.

  • Fix some edge cases around the new operator (#4477)

    Previously esbuild incorrectly printed certain edge cases involving complex expressions inside the target of a new expression (specifically an optional chain and/or a tagged template literal). The generated code for the new target was not correctly wrapped with parentheses, and either contained a syntax error or had different semantics. These edge cases have been fixed so that they now correctly wrap the new target in parentheses. Here is an example of some affected code:

    // Original code
    new (foo()`bar`)()
    new (foo()?.bar)()
    // Old output
    new foo()bar();
    new (foo())?.bar();

... (truncated)

Changelog

Sourced from github.com/evanw/esbuild's changelog.

Changelog: 2025

This changelog documents all esbuild versions published in the year 2025 (versions 0.25.0 through 0.27.2).

Commits

Updates github.com/getkin/kin-openapi from 0.137.0 to 0.140.0

Release notes

Sourced from github.com/getkin/kin-openapi's releases.

v0.140.0

What's Changed

Full Changelog: getkin/kin-openapi@v0.139.0...v0.140.0

v0.139.0

What's Changed

Full Changelog: getkin/kin-openapi@v0.138.0...v0.139.0

v0.138.0

What's Changed

Full Changelog: getkin/kin-openapi@v0.137.0...v0.138.0

Commits
  • 5124898 chore: bump jsonpointer to v0.22.5 (#1198)
  • 5ece4a3 docs: update GoDoc links to Go Reference (#1197)
  • b8600c5 openapi2,openapi3: remove marshmallow dependency (#1196)
  • 3a5ddcd refactor: apply modernize fixes (#1195)
  • 742704d openapi3: remove decimal128 dependency (#1194)
  • 368327b openapi3: remove deepcopy dependency (#1193)
  • 4dc207c openapi3: document that a custom ReadFromURIFunc bypasses IsExternalRefsAllow...
  • 8381bfc openapi3: type the remaining bare-error validation sites (#1187)
  • d29b5c0 openapi3: fix validation of duplicated path templates (#1189)
  • e56c2c7 openapi3: aggregate independent validation errors via EnableMultiError (#1185)
  • Additional commits viewable in compare view

Updates github.com/go-co-op/gocron/v2 from 2.21.1 to 2.21.2

Release notes

Sourced from github.com/go-co-op/gocron/v2's releases.

v2.21.2

What's Changed

New Contributors

Full Changelog: go-co-op/gocron@v2.21.1...v2.21.2

Commits

Updates github.com/go-openapi/errors from 0.22.7 to 0.22.8

Release notes

Sourced from github.com/go-openapi/errors's releases.

v0.22.8

0.22.8 - 2026-05-31

Full Changelog: go-openapi/errors@v0.22.7...v0.22.8

13 commits in this release.


Implemented enhancements

  • feat(ci): added shared workflow for bot-pr monitoring by @​fredbi ...

Documentation

Code quality

Miscellaneous tasks

Updates


People who contributed to this release


errors license terms

... (truncated)

Commits
  • a677038 feat(ci): added shared workflow for bot-pr monitoring
  • 0cda362 chore(deps): bump the development-dependencies group across 1 directory with ...
  • 7d9a134 chore(deps): bump github.com/go-openapi/testify/v2
  • e810af9 chore(deps): bump github.com/go-openapi/testify/v2
  • 921874f chore(deps): bump the development-dependencies group with 7 updates
  • b78497c doc: updated contributors file
  • e1888b7 chore(deps): bump github.com/go-openapi/testify/v2
  • 3e93bcb chore(deps): bump the development-dependencies group with 7 updates
  • b00e83e chore: bump go directive to 1.25.0 (#102)
  • 53f8970 doc: add portable agentic instructions (#101)
  • Additional commits viewable in compare view

Updates github.com/go-openapi/strfmt from 0.26.2 to 0.26.4

Release notes

Sourced from github.com/go-openapi/strfmt's releases.

v0.26.4

0.26.4 - 2026-06-29

Full Changelog: go-openapi/strfmt@v0.26.3...v0.26.4

14 commits in this release.


Fixed bugs

Documentation

Code quality

Miscellaneous tasks

Updates


People who contributed to this release


... (truncated)

Commits
  • 09a3881 chore: prepare release v0.26.4
  • 7dcda43 build(deps): bump the other-dependencies group across 3 directories with 1 up...
  • 5b746cb build(deps): bump the go-openapi-dependencies group across 2 directories with...
  • 708588c ci: post README announcements to discord + bump ci-workflows to v0.4.0 (#272)
  • 06b6bb0 fix: validate "uri" format for absolute URIs with a fragment (#131) (#269)
  • 64c4277 chore: disabled goconst linter (#271)
  • a8a2d74 chore(ci): run contributors workflow monthly instead of weekly (#270)
  • 00af19e build(deps): bump the development-dependencies group with 2 updates
  • a3d472a build(deps): bump golang.org/x/net
  • 1928b1d build(deps): bump the development-dependencies group with 9 updates
  • Additional commits viewable in compare view

Updates github.com/go-openapi/swag from 0.26.0 to 0.27.0

Release notes

Sourced from github.com/go-openapi/swag's releases.

v0.27.0

0.27.0 - 2026-06-29

Pools utility module

Full Changelog: go-openapi/swag@v0.26.1...v0.27.0

9 commits in this release.


Implemented enhancements

  • feat: factory for generic sync.Pool usage, with safety test mode by @​fredbi in #215 ...

Documentation

Miscellaneous tasks

Updates

  • build(deps): bump the go-openapi-dependencies group across 15 directories with 2 updates by @​dependabot[bot] in #214 ...
  • build(deps): bump go-openapi/ci-workflows/.github/workflows/monitor-bot-pr.yml from 93b16765c4045dbd4dac2372803294298aa7592a to 2e57e83146e049b5dfb8116ba16a09b2da27b3c5 in the development-dependencies group by @​dependabot[bot] in #211 ...
  • build(deps): bump the development-dependencies group with 8 updates by @​dependabot[bot] in #209 ...

People who contributed to this release


swag license terms

[License][license-url]

... (truncated)

Commits
  • 4f9e718 chore: prepare release v0.27.0
  • 014eae7 chore: deprecated the jsonname module (moved to jsonpointer) (#216)
  • d4bd1af feat: factory for generic sync.Pool usage, with safety test mode. (#215)
  • 23df065 build(deps): bump the go-openapi-dependencies group across 15 directories wit...
  • ce8f066 ci: post README announcements to discord + bump ci-workflows to v0.4.0 (#213)
  • ea59449 chore(ci): run contributors workflow monthly instead of weekly (#212)
  • b623b89 build(deps): bump go-openapi/ci-workflows/.github/workflows/monitor-bot-pr.yml
  • 3eac5b8 doc: updated contributors file
  • 95a4653 build(deps): bump the development-dependencies group with 8 updates
  • 85923a5 chore: prepare release v0.26.1
  • Additional commits viewable in compare view

Updates github.com/go-openapi/validate from 0.25.2 to 0.26.0

Release notes

Sourced from github.com/go-openapi/validate's releases.

v0.26.0

0.26.0 - 2026-06-10

Full Changelog: go-openapi/validate@v0.25.3...v0.26.0

6 commits in this release.


Implemented enhancements

Documentation

Miscellaneous tasks

Updates


People who contributed to this release


validate license terms

License

v0.25.3

0.25.3 - 2026-05-31

... (truncated)

Commits
  • 799b897 fix(race): read result validity before Merge redeems it to the pool (#260)
  • e5b5ca2 test: stop executing the live remote-URL doc examples (#259)
  • 84c917d feat(spec): warn on dubious $ref locations (#258)
  • 64e54b4 doc: updated contributors file
  • 0fa122c doc: aligned with org docs (#256)
  • a62829b chore(deps): bump the go-openapi-dependencies group with 4 updates
  • 5bff947 chore: updated deps (#254)
  • 83c7e8d chore(deps): bump the development-dependencies group across 1 directory with ...
  • 8434d39 feat(ci): added shared workflow for bot-pr monitoring
  • 71d6405 chore(deps): bump github.com/go-openapi/analysis
  • Additional commits viewable in compare view

Updates github.com/jedib0t/go-pretty/v6 from 6.7.10 to 6.8.2

Release notes

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

v6.8.2

What's Changed

New Contributors

Full Changelog: jedib0t/go-pretty@v6.8.1...v6.8.2

v6.8.1

What's Changed

A hardening pass across the table, list, progress, and text packages, fixing security issues, crash/race bugs, and performance problems in the render hot paths, with benchmarks added to back the optimizations.

Security

  • table/list (HTML): escape the title, caption, and CSS class names in RenderHTML() to prevent HTML/attribute injection.
  • table (CSV): make RenderCSV() output RFC 4180 compliant, and add an opt-in Style().CSV.FieldProtection option that neutralizes spreadsheet formula-injection fields (=, +, -, @, tab, CR).
  • text: sanitize hyperlink URLs and bound the escape-sequence parser buffer so adversarial input can't grow it without limit.

Correctness

  • progress: fix a render panic on tiny tracker lengths, data races on tracker/indicator state, and a leaked time.Ticker in the terminal-size watcher.
  • table: guard auto-index rendering against empty maxColumnLengths.
  • text: prevent a panic in VAlign.Apply on negative maxLines.

Performance

  • table: compile regex filters once per render; pre-size render builders.
  • list: hoist repeated width math out of the render loops.
  • text: speed up Align.Apply and StringWidthWithoutEscSequences.
  • progress: build PacManChomp frames with a strings.Builder.

Tooling

  • Moved root-level benchmarks into their packages and wired up make bench; added benchmarks for the table/text/list/progress render hot paths and tests covering the retained-done-tracker render paths.

Full Changelog:

@dependabot dependabot Bot added go Pull requests that update Go code kind/dependencies labels Jul 3, 2026
Bumps the gomod group with 23 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.7` | `1.42.1` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.17` | `1.32.27` |
| [github.com/aws/aws-sdk-go-v2/feature/s3/manager](https://github.com/aws/aws-sdk-go-v2) | `1.22.17` | `1.22.30` |
| [github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs](https://github.com/aws/aws-sdk-go-v2) | `1.73.0` | `1.78.2` |
| [github.com/aws/aws-sdk-go-v2/service/kinesis](https://github.com/aws/aws-sdk-go-v2) | `1.43.7` | `1.44.4` |
| [github.com/aws/aws-sdk-go-v2/service/sqs](https://github.com/aws/aws-sdk-go-v2) | `1.42.27` | `1.44.2` |
| [github.com/evanw/esbuild](https://github.com/evanw/esbuild) | `0.27.2` | `0.28.1` |
| [github.com/getkin/kin-openapi](https://github.com/getkin/kin-openapi) | `0.137.0` | `0.140.0` |
| [github.com/go-co-op/gocron/v2](https://github.com/go-co-op/gocron) | `2.21.1` | `2.21.2` |
| [github.com/go-openapi/errors](https://github.com/go-openapi/errors) | `0.22.7` | `0.22.8` |
| [github.com/go-openapi/strfmt](https://github.com/go-openapi/strfmt) | `0.26.2` | `0.26.4` |
| [github.com/go-openapi/swag](https://github.com/go-openapi/swag) | `0.26.0` | `0.27.0` |
| [github.com/go-openapi/validate](https://github.com/go-openapi/validate) | `0.25.2` | `0.26.0` |
| [github.com/jedib0t/go-pretty/v6](https://github.com/jedib0t/go-pretty) | `6.7.10` | `6.8.2` |
| [github.com/moby/moby/api](https://github.com/moby/moby) | `1.54.2` | `1.55.0` |
| [github.com/moby/moby/client](https://github.com/moby/moby) | `0.4.1` | `0.5.0` |
| [github.com/prometheus/common](https://github.com/prometheus/common) | `0.67.5` | `0.69.0` |
| [github.com/shirou/gopsutil/v4](https://github.com/shirou/gopsutil) | `4.26.4` | `4.26.6` |
| [github.com/slack-go/slack](https://github.com/slack-go/slack) | `0.23.0` | `0.27.0` |
| [github.com/tetratelabs/wazero](https://github.com/tetratelabs/wazero) | `1.11.0` | `1.12.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.81.0` | `1.82.0` |
| [k8s.io/apiserver](https://github.com/kubernetes/apiserver) | `0.36.0` | `0.36.2` |
| [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) | `1.50.0` | `1.53.0` |



Updates `github.com/aws/aws-sdk-go-v2` from 1.41.7 to 1.42.1
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.41.7...v1.42.1)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.32.17 to 1.32.27
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.32.17...config/v1.32.27)

Updates `github.com/aws/aws-sdk-go-v2/feature/s3/manager` from 1.22.17 to 1.22.30
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@feature/s3/manager/v1.22.17...feature/s3/manager/v1.22.30)

Updates `github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs` from 1.73.0 to 1.78.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.73.0...service/s3/v1.78.2)

Updates `github.com/aws/aws-sdk-go-v2/service/kinesis` from 1.43.7 to 1.44.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/fsx/v1.43.7...service/fms/v1.44.4)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.100.1 to 1.104.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.100.1...service/s3/v1.104.2)

Updates `github.com/aws/aws-sdk-go-v2/service/sqs` from 1.42.27 to 1.44.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/sqs/v1.42.27...service/fms/v1.44.2)

Updates `github.com/evanw/esbuild` from 0.27.2 to 0.28.1
- [Release notes](https://github.com/evanw/esbuild/releases)
- [Changelog](https://github.com/evanw/esbuild/blob/main/CHANGELOG-2025.md)
- [Commits](evanw/esbuild@v0.27.2...v0.28.1)

Updates `github.com/getkin/kin-openapi` from 0.137.0 to 0.140.0
- [Release notes](https://github.com/getkin/kin-openapi/releases)
- [Commits](getkin/kin-openapi@v0.137.0...v0.140.0)

Updates `github.com/go-co-op/gocron/v2` from 2.21.1 to 2.21.2
- [Release notes](https://github.com/go-co-op/gocron/releases)
- [Commits](go-co-op/gocron@v2.21.1...v2.21.2)

Updates `github.com/go-openapi/errors` from 0.22.7 to 0.22.8
- [Release notes](https://github.com/go-openapi/errors/releases)
- [Commits](go-openapi/errors@v0.22.7...v0.22.8)

Updates `github.com/go-openapi/strfmt` from 0.26.2 to 0.26.4
- [Release notes](https://github.com/go-openapi/strfmt/releases)
- [Commits](go-openapi/strfmt@v0.26.2...v0.26.4)

Updates `github.com/go-openapi/swag` from 0.26.0 to 0.27.0
- [Release notes](https://github.com/go-openapi/swag/releases)
- [Commits](go-openapi/swag@v0.26.0...v0.27.0)

Updates `github.com/go-openapi/validate` from 0.25.2 to 0.26.0
- [Release notes](https://github.com/go-openapi/validate/releases)
- [Commits](go-openapi/validate@v0.25.2...v0.26.0)

Updates `github.com/jedib0t/go-pretty/v6` from 6.7.10 to 6.8.2
- [Release notes](https://github.com/jedib0t/go-pretty/releases)
- [Commits](jedib0t/go-pretty@v6.7.10...v6.8.2)

Updates `github.com/moby/moby/api` from 1.54.2 to 1.55.0
- [Release notes](https://github.com/moby/moby/releases)
- [Commits](moby/moby@api/v1.54.2...api/v1.55.0)

Updates `github.com/moby/moby/client` from 0.4.1 to 0.5.0
- [Release notes](https://github.com/moby/moby/releases)
- [Changelog](https://github.com/moby/moby/blob/v0.5.0/CHANGELOG.md)
- [Commits](moby/moby@v0.4.1...v0.5.0)

Updates `github.com/prometheus/common` from 0.67.5 to 0.69.0
- [Release notes](https://github.com/prometheus/common/releases)
- [Changelog](https://github.com/prometheus/common/blob/main/CHANGELOG.md)
- [Commits](prometheus/common@v0.67.5...v0.69.0)

Updates `github.com/shirou/gopsutil/v4` from 4.26.4 to 4.26.6
- [Release notes](https://github.com/shirou/gopsutil/releases)
- [Commits](shirou/gopsutil@v4.26.4...v4.26.6)

Updates `github.com/slack-go/slack` from 0.23.0 to 0.27.0
- [Release notes](https://github.com/slack-go/slack/releases)
- [Changelog](https://github.com/slack-go/slack/blob/master/CHANGELOG.md)
- [Commits](slack-go/slack@v0.23.0...v0.27.0)

Updates `github.com/tetratelabs/wazero` from 1.11.0 to 1.12.0
- [Release notes](https://github.com/tetratelabs/wazero/releases)
- [Commits](wazero/wazero@v1.11.0...v1.12.0)

Updates `golang.org/x/crypto` from 0.51.0 to 0.53.0
- [Commits](golang/crypto@v0.51.0...v0.53.0)

Updates `golang.org/x/mod` from 0.35.0 to 0.36.0
- [Commits](golang/mod@v0.35.0...v0.36.0)

Updates `golang.org/x/net` from 0.55.0 to 0.56.0
- [Commits](golang/net@v0.55.0...v0.56.0)

Updates `golang.org/x/sync` from 0.20.0 to 0.21.0
- [Commits](golang/sync@v0.20.0...v0.21.0)

Updates `golang.org/x/sys` from 0.45.0 to 0.46.0
- [Commits](golang/sys@v0.45.0...v0.46.0)

Updates `golang.org/x/text` from 0.37.0 to 0.38.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.37.0...v0.38.0)

Updates `google.golang.org/grpc` from 1.81.0 to 1.82.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.81.0...v1.82.0)

Updates `k8s.io/apiserver` from 0.36.0 to 0.36.2
- [Commits](kubernetes/apiserver@v0.36.0...v0.36.2)

Updates `modernc.org/sqlite` from 1.50.0 to 1.53.0
- [Changelog](https://gitlab.com/cznic/sqlite/blob/master/CHANGELOG.md)
- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.50.0...v1.53.0)

---
updated-dependencies:
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.42.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/feature/s3/manager
  dependency-version: 1.22.30
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs
  dependency-version: 1.78.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/kinesis
  dependency-version: 1.44.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.104.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/sqs
  dependency-version: 1.44.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/evanw/esbuild
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/getkin/kin-openapi
  dependency-version: 0.140.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/go-co-op/gocron/v2
  dependency-version: 2.21.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/go-openapi/errors
  dependency-version: 0.22.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/go-openapi/strfmt
  dependency-version: 0.26.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/go-openapi/swag
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/go-openapi/validate
  dependency-version: 0.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/jedib0t/go-pretty/v6
  dependency-version: 6.8.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/moby/moby/api
  dependency-version: 1.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/moby/moby/client
  dependency-version: 0.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/prometheus/common
  dependency-version: 0.69.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/shirou/gopsutil/v4
  dependency-version: 4.26.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: github.com/slack-go/slack
  dependency-version: 0.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: github.com/tetratelabs/wazero
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/crypto
  dependency-version: 0.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/mod
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/net
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sync
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/sys
  dependency-version: 0.46.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: golang.org/x/text
  dependency-version: 0.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: google.golang.org/grpc
  dependency-version: 1.82.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
- dependency-name: k8s.io/apiserver
  dependency-version: 0.36.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod
- dependency-name: modernc.org/sqlite
  dependency-version: 1.53.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/gomod-2a60221f9d branch from 9f342cd to ab42fab Compare July 6, 2026 12:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

go Pull requests that update Go code kind/dependencies needs/area

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants