Skip to content

chore(deps): bump the all group across 2 directories with 16 updates #975

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jun 17, 2025

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

Package From To
github.com/onsi/gomega 1.36.3 1.37.0
github.com/uptrace/bun 1.2.13 1.2.14
github.com/uptrace/bun/dialect/pgdialect 1.2.13 1.2.14
github.com/uptrace/bun/extra/bundebug 1.2.12 1.2.14
github.com/moby/sys/user 0.3.0 0.4.0
github.com/aws/smithy-go 1.22.3 1.22.4
github.com/docker/cli 27.4.1+incompatible 28.2.2+incompatible
github.com/go-viper/mapstructure/v2 2.2.1 2.3.0
github.com/opencontainers/runc 1.2.3 1.3.0
github.com/uptrace/bun/extra/bunotel 1.2.13 1.2.14
golang.org/x/time 0.11.0 0.12.0

Bumps the all group with 5 updates in the /tools/provisioner directory:

Package From To
golang.org/x/sync 0.14.0 0.15.0
github.com/go-logr/logr 1.4.2 1.4.3
golang.org/x/net 0.40.0 0.41.0
golang.org/x/time 0.11.0 0.12.0
sigs.k8s.io/structured-merge-diff/v4 4.6.0 4.7.0

Updates github.com/onsi/gomega from 1.36.3 to 1.37.0

Release notes

Sourced from github.com/onsi/gomega's releases.

v1.37.0

1.37.0

Features

  • add To/ToNot/NotTo aliases for AsyncAssertion [5666f98]
Changelog

Sourced from github.com/onsi/gomega's changelog.

1.37.0

Features

  • add To/ToNot/NotTo aliases for AsyncAssertion [5666f98]
Commits

Updates github.com/uptrace/bun from 1.2.13 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun's releases.

v1.2.14

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun's changelog.

1.2.14 (2025-06-16)

Bug Fixes

Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • See full diff in compare view

Updates github.com/uptrace/bun/dialect/pgdialect from 1.2.13 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun/dialect/pgdialect's releases.

v1.2.14

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/dialect/pgdialect's changelog.

1.2.14 (2025-06-16)

Bug Fixes

Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • See full diff in compare view

Updates github.com/uptrace/bun/extra/bundebug from 1.2.12 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun/extra/bundebug's releases.

v1.2.14

Please refer to CHANGELOG.md for details

v1.2.13

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/extra/bundebug's changelog.

1.2.14 (2025-06-16)

Bug Fixes

1.2.13 (2025-06-11)

Bug Fixes

  • query: scanAndCount without model (07fb7ec), closes #1209
  • sort fk constraints before appending (c87fa90)
  • use slices sort (8555900)
Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • 868b17d Merge pull request #1211 from uptrace/release/v1.2.13
  • 07aad46 chore: release v1.2.13 (release.sh)
  • 1a7d07e Merge pull request #1210 from uptrace/fix-clone-with-nil-model
  • 07fb7ec fix(query): scanAndCount without model
  • 4bda447 Merge pull request #1208 from luantranminh/master
  • ebe12c6 Merge pull request #1207 from shota3506/refactor/use-slices-sort
  • Additional commits viewable in compare view

Updates github.com/moby/sys/user from 0.3.0 to 0.4.0

Release notes

Sourced from github.com/moby/sys/user's releases.

mountinfo v0.4.0

Breaking changes:

  • PidMountInfo is now deprecated and will be removed before v1.0; users should switch to GetMountsFromReader (#47)

Fixes and improvements:

  • run filter after all fields are parsed (#50)
  • correct handling errors from bufio.Scan
  • documentation formatting fixes (#48)

Thanks to:

  • Aleksa Sarai

capability v0.4.0

Added

Fixed

  • Apply now returns an error if called for non-zero pid. Before this change, it could silently change some capabilities of the current process, instead of the one identified by the pid. (#168, #174)
  • Fixed tests that change capabilities to be run in a separate process. (#173)
  • Other improvements in tests. (#169, #170)

Changed

  • Use raw syscalls (which are slightly faster). (#176)
  • Most tests are now limited to testing the public API of the package. (#162)
  • Simplify parsing /proc/pid/status, add a test case. (#162)
  • Optimize the number of syscall to set ambient capabilities in Apply by clearing them first; add a test case. (#163, #164)
  • Better documentation for Apply, [NewFile], [NewFile2], [NewPid], [NewPid2]. (#175)

Removed

  • .golangci.yml and .codespellrc are no longer part of the package. (#158)

For the complete list of changes, see https://github.com/moby/sys/blob/HEAD/capability/CHANGELOG.md.


Thanks to all of the contributors who made this release possible:

... (truncated)

Commits
  • 71f0c5e Merge pull request #182 from dmcgowan/merge-idtools
  • db55716 Update interface to fit into user package
  • 8e08d6b Merge idtools from github.com/moby/moby/pkg/idtools
  • 7e518ec Merge pull request #49087 from dmcgowan/split-idtools-internal
  • 6134528 Split internal idtools functionality
  • 9ecbe7b pkg/idtools: rewrite to use moby/sys/user
  • 5805d70 pkg/idtools: use lazyregexp to compile regexes on first use
  • fdf2879 Merge pull request #49162 from thaJeztah/pkg_system_volume_uuid
  • 3d38759 pkg/idtools: remove uses of deprecated system.MkdirAll
  • ca0444f Merge pull request #180 from thaJeztah/add_codecov
  • Additional commits viewable in compare view

Updates github.com/aws/smithy-go from 1.22.3 to 1.22.4

Release notes

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

v1.22.4

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
Changelog

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

Release (2025-06-16)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.4
    • Bug Fix: Fix CBOR serd empty check for string and enum fields
    • Bug Fix: Fix HTTP metrics data race.
    • Bug Fix: Replace usages of deprecated ioutil package.

Release (2025-02-17)

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/smithy-go: v1.22.3
  • Dependency Update: Bump minimum Go version to 1.22 per our language support policy.

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)

... (truncated)

Commits
  • bf8427e Release 2025-06-16
  • f173ede add changelog for manual release (#585)
  • 49e32ad add empty check for string and enum serialization in cbor (#584)
  • 4114b6e set missing x-amzn-query-mode for awsQueryCompatible (#583)
  • ac97392 qt->qtype
  • 3f73d67 upgrade smithy, correct serialization of empty-prefix httpPrefixHeaders (#582)
  • a14e8e7 test protocol selection (#581)
  • a13e2d5 Move CBOR deserialization timers to AFTER calling middleware.Next (#580)
  • 4e627e9 abstract directed codegen
  • d2fdc13 Close cbor serde timers to accurately measure middleware timing (#578)
  • Additional commits viewable in compare view

Updates github.com/docker/cli from 27.4.1+incompatible to 28.2.2+incompatible

Commits
  • e6534b4 Merge pull request #6116 from vvoland/vendor-docker
  • 5c3128e vendor: github.com/docker/docker v28.2.2-dev (45873be4ae3f)
  • 879ac3f Merge pull request #6110 from thaJeztah/bump_engine
  • 92fa1e1 vendor: github.com/docker/docker 0e2cc22d36ae (v28.2-dev)
  • 4bec3a6 Merge pull request #6114 from thaJeztah/deprecate_non_compliant_registries
  • a007d1a Merge pull request #6113 from thaJeztah/config_suppress_err
  • bbfbd54 docs: deprecated: fallback for non-OCI-compliant registries is removed
  • 2d21e1f cli/config/configfile: explicitly ignore error
  • bc9be0b Merge pull request #6112 from thaJeztah/bump_tools
  • 3fe7dc5 Dockerfile: update compose to v2.36.2
  • Additional commits viewable in compare view

Updates github.com/go-viper/mapstructure/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from github.com/go-viper/mapstructure/v2's releases.

v2.3.0

What's Changed

New Contributors

Full Changelog: go-viper/mapstructure@v2.2.1...v2.3.0

Commits
  • 8c61ec1 Merge pull request #80 from rostislaved/feature-allow-unset-pointer
  • df765f4 Merge pull request #106 from go-viper/update-linter
  • 5f34b05 update linter
  • 36de1e1 Merge pull request #105 from go-viper/error-refactor
  • 6a283a3 chore: update error type doc
  • 599cb73 Merge pull request #101 from go-viper/dependabot/github_actions/github/codeql...
  • ed3f921 feat: remove value from error messages
  • a3f8b22 revert: error message change
  • 9661f6d feat: add common error interface
  • f12f6c7 Merge pull request #102 from m1k1o/prettify-errors2
  • Additional commits viewable in compare view

Updates github.com/opencontainers/runc from 1.2.3 to 1.3.0

Release notes

Sourced from github.com/opencontainers/runc's releases.

runc v1.2.5 -- "Мороз и солнце; день чудесный!"

This is the fifth patch release in the 1.2.z series of runc. It primarily fixes an issue caused by an upstream systemd bug.

  • There was a regression in systemd v230 which made the way we define device rule restrictions require a systemctl daemon-reload for our transient units. This caused issues for workloads using NVIDIA GPUs. Workaround the upstream regression by re-arranging how the unit properties are defined. (#4568, #4612, #4615)
  • Dependency github.com/cyphar/filepath-securejoin is updated to v0.4.1, to allow projects that vendor runc to bump it as well. (#4608)
  • CI: fixed criu-dev compilation. (#4611)
  • Dependency golang.org/x/net is updated to 0.33.0. (#4632)

Static Linking Notices

The runc binary distributed with this release are statically linked with the following GNU LGPL-2.1 licensed libraries, with runc acting as a "work that uses the Library":

The versions of these libraries were not modified from their upstream versions, but in order to comply with the LGPL-2.1 (§6(a)), we have attached the complete source code for those libraries which (when combined with the attached runc source code) may be used to exercise your rights under the LGPL-2.1.

However we strongly suggest that you make use of your distribution's packages or download them from the authoritative upstream sources, especially since these libraries are related to the security of your containers.

Thanks to the following contributors who made this release possible:

Signed-off-by: Aleksa Sarai cyphar@cyphar.com

runc v1.2.4 -- "Христос се роди!"

This is the fourth patch release of the 1.2.z release branch of runc. It includes a fix for a regression introduced in 1.2.0 related to the

... (truncated)

Changelog

Sourced from github.com/opencontainers/runc's changelog.

[1.3.0] - 2025-04-30

Mr. President, we must not allow a mine shaft gap!

Fixed

  • Removed preemptive "full access to cgroups" warning when calling runc pause or runc unpause as an unprivileged user without --systemd-cgroups. Now the warning is only emitted if an actual permission error was encountered. (#4709)
  • Several fixes to our CI, mainly related to AlmaLinux and CRIU. (#4670, #4728, #4736)

Changed

  • In runc 1.2, we changed our mount behaviour to correctly handle clearing flags. However, the error messages we returned did not provide as much information to users about what clearing flags were conflicting with locked mount flags. We now provide more diagnostic information if there is an error when in the fallback path to handle locked mount flags. (#4734)
  • Upgrade our CI to use golangci-lint v2.0. (#4692)
  • runc version information is now filled in using //go:embed rather than being set through Makefile. This allows go install or other non-make builds to contain the correct version information. Note that make EXTRA_VERSION=... still works. (#418)
  • Remove exclude directives from our go.mod for broken cilium/ebpf versions. v0.17.3 resolved the issue we had, and exclude directives are incompatible with go install. (#4748)

[1.3.0-rc.2] - 2025-04-10

Eppur si muove.

Fixed

  • Use the container's /etc/passwd to set the HOME env var. After a refactor for 1.3, we were setting it reading the host's /etc/passwd file instead. (#4693, #4688)
  • Override HOME env var if it's set to the empty string. This fixes a regression after the same refactor for 1.3 and aligns the behavior with older versions of runc. (#4711)
  • Add time namespace to container config after checkpoint/restore. CRIU since version 3.14 uses a time namespace for checkpoint/restore, however it was not joining the time namespace in runc. (#4705)

[1.3.0-rc.1] - 2025-03-04

No tengo miedo al invierno, con tu recuerdo lleno de sol.

libcontainer API

  • configs.CommandHook struct has changed, Command is now a pointer. Also, configs.NewCommandHook now accepts a *Command. (#4325)
  • The Process struct has User string field replaced with numeric

... (truncated)

Commits
  • 4ca628d VERSION: release v1.3.0
  • 889b4bd Merge pull request #4749 from rata/release-1.3
  • 60e2125 go.mod: Delete exclude directives
  • 8d2e095 Merge pull request #4744 from kolyshkin/1.3-4718
  • 7031f31 runc: embed version from VERSION file
  • 51b5267 runc --version: use a function
  • 3ffa349 Merge pull request #4745 from lifubang/1.3-golangcilint-2.0
  • 7b2b95d ci: bump to golangci-lint v2.0
  • 6a39b49 libct/intelrdt: fix staticcheck ST1020 warnings
  • 1ceca37 Fix staticcheck ST1020/ST1021 warnings
  • Additional commits viewable in compare view

Updates github.com/uptrace/bun/extra/bunotel from 1.2.13 to 1.2.14

Release notes

Sourced from github.com/uptrace/bun/extra/bunotel's releases.

v1.2.14

Please refer to CHANGELOG.md for details

Changelog

Sourced from github.com/uptrace/bun/extra/bunotel's changelog.

1.2.14 (2025-06-16)

Bug Fixes

Commits
  • b25423b Merge pull request #1216 from uptrace/release/v1.2.14
  • e14d18a chore: release v1.2.14 (release.sh)
  • ca94f25 Merge pull request #1214 from uptrace/fix/add-comments-and-restore-check
  • 07d32c1 fix: restore q.limit check
  • See full diff in compare view

Updates golang.org/x/time from 0.11.0 to 0.12.0

Commits
  • 1616a7f rate: skip time.Now call in Sometimes.Do unless necessary
  • See full diff in compare view

Updates golang.org/x/time from 0.11.0 to 0.12.0

Commits
  • 1616a7f rate: skip time.Now call in Sometimes.Do unless necessary
  • See full diff in compare view

Updates golang.org/x/sync from 0.14.0 to 0.15.0

Commits
  • 8a14946 errgroup: remove duplicated comment
  • 1869c69 all: replace deprecated ioutil
  • d1ac909 sync/errgroup: PanicError.Error print stack trace
  • See full diff in compare view

Updates github.com/go-logr/logr from 1.4.2 to 1.4.3

Release notes

Sourced from github.com/go-logr/logr's releases.

v1.4.3

Minor release.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.2...v1.4.3

Commits
  • 38a1c47 build(deps): bump github/codeql-action from 3.28.17 to 3.28.18
  • f08bedd build(deps): bump actions/setup-go from 5.4.0 to 5.5.0
  • 6295e99 build(deps): bump golangci/golangci-lint-action from 7.0.0 to 8.0.0
  • 028840d build(deps): bump github/codeql-action from 3.28.15 to 3.28.17
  • 511e5fa Merge pull request #367 from go-logr/dependabot/github_actions/github/codeql-...
  • d806463 build(deps): bump github/codeql-action from 3.28.13 to 3.28.15
  • 158c311 Merge pull request #366 from thockin/master
  • c79ddb3 Update to support golangci-lint v2
  • 20a64ba build(deps): bump github/codeql-action from 3.28.12 to 3.28.13
  • 0385e14 Add comments around slog exceptions
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.40.0 to 0.41.0

Commits
  • 6e41cae go.mod: update golang.org/x dependencies
  • 15f7d40 http2: correctly wrap ErrFrameTooLarge in Framer.ReadFrame
  • ef33bc0 internal/http3: use bubbled context in synctest tests
  • 919c6bc http2: use an array instead of a map in typeFrameParser
  • bae01a7 trace: add missing td tag
  • See full diff in compare view

Updates golang.org/x/text from 0.25.0 to 0.26.0

Commits
  • 8072180 go.mod: update golang.org/x dependencies
  • 6cacac1 go.mod: update tagx:ignore'd golang.org/x dependencies
  • See full diff in compare view

Updates golang.org/x/time from 0.11.0 to 0.12.0

Commits
  • 1616a7f rate: skip time.Now call in Sometimes.Do unless necessary
  • See full diff in compare view

Updates github.com/go-logr/logr from 1.4.2 to 1.4.3

Release notes

Sourced from github.com/go-logr/logr's releases.

v1.4.3

Minor release.

What's Changed

New Contributors

Full Changelog: go-logr/logr@v1.4.2...v1.4.3

Commits
  • 38a1c47 build(deps): bump github/codeql-action from 3.28.17 to 3.28.18
  • f08bedd build(deps): bump actions/setup-go from 5.4.0 to 5.5.0
  • 6295e99 build(deps): bump golangci/golangci-lint-action from 7.0.0 to 8.0.0
  • 028840d build(deps): bump github/codeql-action from 3.28.15 to 3.28.17
  • 511e5fa Merge pull request #367 from go-logr/dependabot/github_actions/github/codeql-...
  • d806463 build(deps): bump github/codeql-action from 3.28.13 to 3.28.15
  • 158c311 Merge pull request #366 from thockin/master
  • c79ddb3 Update to support golangci-lint v2
  • 20a64ba build(deps): bump github/codeql-action from 3.28.12 to 3.28.13
  • 0385e14 Add comments around slog exceptions
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.40.0 to 0.41.0

Commits
  • 6e41cae go.mod: update golang.org/x dependencies
  • 15f7d40 http2: correctly wrap ErrFrameTooLarge in Framer.ReadFrame
  • ef33bc0 internal/http3: use bubbled context in synctest tests
  • 919c6bc http2: use an array instead of a map in typeFrameParser
  • bae01a7 trace: add missing td tag
  • See full diff in compare view

Updates golang.org/x/sync from 0.14.0 to 0.15.0

Commits
  • 8a14946 errgroup: remove duplicated comment
  • 1869c69 all: replace deprecated ioutil
  • d1ac909 sync/errgroup: PanicError.Error print stack trace
  • See full diff in compare view

Updates golang.org/x/text from 0.25.0 to 0.26.0

Commits
  • 8072180 go.mod: update golang.org/x dependencies
  • 6cacac1 go.mod: update tagx:ignore'd golang.org/x dependencies
  • See full diff in compare view

Updates golang.org/x/time from 0.11.0 to 0.12.0

Commits
  • 1616a7f rate: skip time.Now call in Sometimes.Do unless necessary
  • See full diff in compare view

Updates sigs.k8s.io/structured-merge-diff/v4 from 4.6.0 to 4.7.0

Commits
  • dda5e3a Merge pull request #286 from liggitt/omitzero
  • 0e97094 Add omitzero support
  • 9a51599 Merge pull request #285 from kubernetes-sigs/jpbetz-patch-2
  • 06358ba Add yongruilin to reviewers for SMD
  • 33bf872 Merge pull request #282 from yongruilin/fix-errorf
  • 2321d21 fix: update error formatting and test naming
  • See full diff in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

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

| Package | From | To |
| --- | --- | --- |
| [github.com/onsi/gomega](https://github.com/onsi/gomega) | `1.36.3` | `1.37.0` |
| [github.com/uptrace/bun](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [github.com/uptrace/bun/dialect/pgdialect](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [github.com/uptrace/bun/extra/bundebug](https://github.com/uptrace/bun) | `1.2.12` | `1.2.14` |
| [github.com/moby/sys/user](https://github.com/moby/sys) | `0.3.0` | `0.4.0` |
| [github.com/aws/smithy-go](https://github.com/aws/smithy-go) | `1.22.3` | `1.22.4` |
| [github.com/docker/cli](https://github.com/docker/cli) | `27.4.1+incompatible` | `28.2.2+incompatible` |
| [github.com/go-viper/mapstructure/v2](https://github.com/go-viper/mapstructure) | `2.2.1` | `2.3.0` |
| [github.com/opencontainers/runc](https://github.com/opencontainers/runc) | `1.2.3` | `1.3.0` |
| [github.com/uptrace/bun/extra/bunotel](https://github.com/uptrace/bun) | `1.2.13` | `1.2.14` |
| [golang.org/x/time](https://github.com/golang/time) | `0.11.0` | `0.12.0` |

Bumps the all group with 5 updates in the /tools/provisioner directory:

| Package | From | To |
| --- | --- | --- |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.14.0` | `0.15.0` |
| [github.com/go-logr/logr](https://github.com/go-logr/logr) | `1.4.2` | `1.4.3` |
| [golang.org/x/net](https://github.com/golang/net) | `0.40.0` | `0.41.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.11.0` | `0.12.0` |
| [sigs.k8s.io/structured-merge-diff/v4](https://github.com/kubernetes-sigs/structured-merge-diff) | `4.6.0` | `4.7.0` |



Updates `github.com/onsi/gomega` from 1.36.3 to 1.37.0
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.36.3...v1.37.0)

Updates `github.com/uptrace/bun` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `github.com/uptrace/bun/dialect/pgdialect` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `github.com/uptrace/bun/extra/bundebug` from 1.2.12 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.12...v1.2.14)

Updates `github.com/moby/sys/user` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/moby/sys/releases)
- [Commits](moby/sys@user/v0.3.0...user/v0.4.0)

Updates `github.com/aws/smithy-go` from 1.22.3 to 1.22.4
- [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.22.3...v1.22.4)

Updates `github.com/docker/cli` from 27.4.1+incompatible to 28.2.2+incompatible
- [Commits](docker/cli@v27.4.1...v28.2.2)

Updates `github.com/go-viper/mapstructure/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/go-viper/mapstructure/releases)
- [Changelog](https://github.com/go-viper/mapstructure/blob/main/CHANGELOG.md)
- [Commits](go-viper/mapstructure@v2.2.1...v2.3.0)

Updates `github.com/opencontainers/runc` from 1.2.3 to 1.3.0
- [Release notes](https://github.com/opencontainers/runc/releases)
- [Changelog](https://github.com/opencontainers/runc/blob/main/CHANGELOG.md)
- [Commits](opencontainers/runc@v1.2.3...v1.3.0)

Updates `github.com/uptrace/bun/extra/bunotel` from 1.2.13 to 1.2.14
- [Release notes](https://github.com/uptrace/bun/releases)
- [Changelog](https://github.com/uptrace/bun/blob/master/CHANGELOG.md)
- [Commits](uptrace/bun@v1.2.13...v1.2.14)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `golang.org/x/sync` from 0.14.0 to 0.15.0
- [Commits](golang/sync@v0.14.0...v0.15.0)

Updates `github.com/go-logr/logr` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.4.2...v1.4.3)

Updates `golang.org/x/net` from 0.40.0 to 0.41.0
- [Commits](golang/net@v0.40.0...v0.41.0)

Updates `golang.org/x/text` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.25.0...v0.26.0)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `github.com/go-logr/logr` from 1.4.2 to 1.4.3
- [Release notes](https://github.com/go-logr/logr/releases)
- [Changelog](https://github.com/go-logr/logr/blob/master/CHANGELOG.md)
- [Commits](go-logr/logr@v1.4.2...v1.4.3)

Updates `golang.org/x/net` from 0.40.0 to 0.41.0
- [Commits](golang/net@v0.40.0...v0.41.0)

Updates `golang.org/x/sync` from 0.14.0 to 0.15.0
- [Commits](golang/sync@v0.14.0...v0.15.0)

Updates `golang.org/x/text` from 0.25.0 to 0.26.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.25.0...v0.26.0)

Updates `golang.org/x/time` from 0.11.0 to 0.12.0
- [Commits](golang/time@v0.11.0...v0.12.0)

Updates `sigs.k8s.io/structured-merge-diff/v4` from 4.6.0 to 4.7.0
- [Release notes](https://github.com/kubernetes-sigs/structured-merge-diff/releases)
- [Changelog](https://github.com/kubernetes-sigs/structured-merge-diff/blob/master/RELEASE.md)
- [Commits](kubernetes-sigs/structured-merge-diff@v4.6.0...v4.7.0)

---
updated-dependencies:
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/uptrace/bun
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/uptrace/bun/dialect/pgdialect
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/uptrace/bun/extra/bundebug
  dependency-version: 1.2.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/moby/sys/user
  dependency-version: 0.4.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/aws/smithy-go
  dependency-version: 1.22.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: github.com/docker/cli
  dependency-version: 28.2.2+incompatible
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: github.com/go-viper/mapstructure/v2
  dependency-version: 2.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/opencontainers/runc
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/uptrace/bun/extra/bunotel
  dependency-version: 1.2.14
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sync
  dependency-version: 0.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.41.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.26.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: github.com/go-logr/logr
  dependency-version: 1.4.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: golang.org/x/net
  dependency-version: 0.41.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/sync
  dependency-version: 0.15.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/text
  dependency-version: 0.26.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: golang.org/x/time
  dependency-version: 0.12.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sigs.k8s.io/structured-merge-diff/v4
  dependency-version: 4.7.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 17, 2025
@dependabot dependabot bot requested a review from a team as a code owner June 17, 2025 03:55
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jun 17, 2025
Copy link

coderabbitai bot commented Jun 17, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Explain this complex logic.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai explain this code block.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and explain its main purpose.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Support

Need help? Join our Discord community for assistance with any issues or questions.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate sequence diagram to generate a sequence diagram of the changes in this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 18, 2025

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

@dependabot dependabot bot closed this Jun 18, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/all-f65cc9285e branch June 18, 2025 03:42
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants