Skip to content

Bump the all-updates group across 1 directory with 27 updates#1054

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-updates-3b9e7b4ade
Closed

Bump the all-updates group across 1 directory with 27 updates#1054
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/all-updates-3b9e7b4ade

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Apr 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-updates group with 18 updates in the / directory:

Package From To
github.com/breml/rootcerts 0.3.4 0.3.5
github.com/docker/cli 29.3.0+incompatible 29.4.0+incompatible
github.com/getsentry/sentry-go 0.43.0 0.45.1
github.com/go-git/go-git/v5 5.17.0 5.18.0
github.com/hashicorp/go-version 1.8.0 1.9.0
github.com/moby/buildkit 0.28.0 0.29.0
golang.org/x/crypto 0.49.0 0.50.0
google.golang.org/grpc 1.79.3 1.80.0
github.com/guptarohit/asciigraph 0.8.1 0.9.0
github.com/hashicorp/vault/api 1.22.0 1.23.0
github.com/moby/moby/api 1.54.0 1.54.1
github.com/moby/moby/client 0.3.0 0.4.0
github.com/testcontainers/testcontainers-go 0.41.0 0.42.0
go.opentelemetry.io/contrib/bridges/otelzap 0.17.0 0.18.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc 0.67.0 0.68.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp 0.18.0 0.19.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp 1.42.0 1.43.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 1.42.0 1.43.0

Updates github.com/breml/rootcerts from 0.3.4 to 0.3.5

Commits
  • e9a2b85 Auto Update Mozilla Included CA Certificate List
  • 16eff3b Merge pull request #19 from breml/dependabot/github_actions/EndBug/add-and-co...
  • 10c2a18 Bump EndBug/add-and-commit from 9 to 10
  • See full diff in compare view

Updates github.com/docker/cli from 29.3.0+incompatible to 29.4.0+incompatible

Commits
  • 9d7ad9f Merge pull request #6911 from thaJeztah/bump_modules
  • c88681f vendor: moby/api v1.54.1, moby/client v0.4.0
  • 84b884f Merge pull request #6909 from thaJeztah/update_authors_mailmap
  • d6169a5 Merge pull request #6910 from thaJeztah/update_version
  • 5ddc155 bump version to v29.4.0-dev
  • a347d9e update AUTHORS and .mailmap
  • 699b029 Merge pull request #6908 from thaJeztah/bump_runewidth
  • 512607a Merge pull request #6889 from YoanWai/docs/prune-filter-behavior
  • 5fca671 vendor: github.com/mattn/go-runewidth v0.0.22
  • 753b102 Merge pull request #6893 from thaJeztah/bump_moby
  • Additional commits viewable in compare view

Updates github.com/getsentry/sentry-go from 0.43.0 to 0.45.1

Release notes

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

0.45.1

Bug Fixes 🐛

0.45.0

Breaking Changes 🛠

New Features ✨

  • Add OTLP trace exporter via new otel/otlp sub-module by @​giortzisg in #1229
    • sentryotlp.NewTraceExporter sends OTel spans directly to Sentry's OTLP endpoint.
    • sentryotel.NewOtelIntegration links Sentry errors, logs, and metrics to the active OTel trace. Works with both direct-to-Sentry and collector-based setups.
    • NewSentrySpanProcessor, NewSentryPropagator, and SentrySpanMap are deprecated and will be removed in 0.47.0. To Migrate use sentryotlp.NewTraceExporter instead:
    // Before
    sentry.Init(sentry.ClientOptions{Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0})
    tp := sdktrace.NewTracerProvider(
    sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()),
    )
    otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())
    otel.SetTracerProvider(tp)
    // After:
    sentry.Init(sentry.ClientOptions{
    Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0,
    Integrations: func(i []sentry.Integration) []sentry.Integration {
    return append(i, sentryotel.NewOtelIntegration())
    },
    })
    exporter, _ := sentryotlp.NewTraceExporter(ctx, dsn)
    tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
    otel.SetTracerProvider(tp)

  • Add IsSensitiveHeader helper to easily distinguish which headers to scrub for PII. by @​giortzisg in #1239

Bug Fixes 🐛

Internal Changes 🔧

Deps

... (truncated)

Changelog

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

0.45.1

Bug Fixes 🐛

0.45.0

Breaking Changes 🛠

New Features ✨

  • Add OTLP trace exporter via new otel/otlp sub-module by @​giortzisg in #1229
    • sentryotlp.NewTraceExporter sends OTel spans directly to Sentry's OTLP endpoint.
    • sentryotel.NewOtelIntegration links Sentry errors, logs, and metrics to the active OTel trace. Works with both direct-to-Sentry and collector-based setups.
    • NewSentrySpanProcessor, NewSentryPropagator, and SentrySpanMap are deprecated and will be removed in 0.47.0. To Migrate use sentryotlp.NewTraceExporter instead:
    // Before
    sentry.Init(sentry.ClientOptions{Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0})
    tp := sdktrace.NewTracerProvider(
    sdktrace.WithSpanProcessor(sentryotel.NewSentrySpanProcessor()),
    )
    otel.SetTextMapPropagator(sentryotel.NewSentryPropagator())
    otel.SetTracerProvider(tp)
    // After:
    sentry.Init(sentry.ClientOptions{
    Dsn: dsn, EnableTracing: true, TracesSampleRate: 1.0,
    Integrations: func(i []sentry.Integration) []sentry.Integration {
    return append(i, sentryotel.NewOtelIntegration())
    },
    })
    exporter, _ := sentryotlp.NewTraceExporter(ctx, dsn)
    tp := sdktrace.NewTracerProvider(sdktrace.WithBatcher(exporter))
    otel.SetTracerProvider(tp)

  • Add IsSensitiveHeader helper to easily distinguish which headers to scrub for PII. by @​giortzisg in #1239

Bug Fixes 🐛

Internal Changes 🔧

... (truncated)

Commits

Updates github.com/go-git/go-git/v5 from 5.17.0 to 5.18.0

Release notes

Sourced from github.com/go-git/go-git/v5's releases.

v5.18.0

What's Changed

Full Changelog: go-git/go-git@v5.17.2...v5.18.0

v5.17.2

What's Changed

⚠️ This release fixes a bug (go-git/go-git#1942) that blocked some users from upgrading to v5.17.1. Thanks @​pskrbasu for reporting it. 🙇

Full Changelog: go-git/go-git@v5.17.1...v5.17.2

v5.17.1

What's Changed

Full Changelog: go-git/go-git@v5.17.0...v5.17.1

Commits
  • ea3e7ec Merge pull request #2004 from go-git/v5-http-hardening
  • bcd20a9 plumbing: transport/http, Add support for followRedirects policy
  • 45ae193 Merge pull request #1944 from go-git/fix-perms
  • fda4f74 storage: filesystem/dotgit, Skip writing pack files that already exist on disk
  • 2212dc7 Merge pull request #1941 from go-git/renovate/releases/v5.x-go-github.qkg1.top-go-...
  • ebb2d7d build: Update module github.com/go-git/go-git/v5 to v5.17.1 [SECURITY]
  • 5e23dfd Merge pull request #1937 from pjbgf/idx-v5
  • 6b38a32 Merge pull request #1935 from pjbgf/index-v5
  • cd757fc plumbing: format/idxfile, Fix version and fanout checks
  • 3ec0d70 plumbing: format/index, Fix tree extension invalidated entry parsing
  • Additional commits viewable in compare view

Updates github.com/hashicorp/go-version from 1.8.0 to 1.9.0

Release notes

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

v1.9.0

What's Changed

Enhancements

Internal

New Contributors

Full Changelog: hashicorp/go-version@v1.8.0...v1.9.0

Changelog

Sourced from github.com/hashicorp/go-version's changelog.

1.9.0 (Mar 30, 2026)

ENHANCEMENTS:

Support parsing versions with custom prefixes via opt-in option in hashicorp/go-version#79

INTERNAL:

Commits
  • b80b1e6 Update CHANGELOG for version 1.9.0 (#187)
  • e93736f Bump the github-actions-backward-compatible group across 1 directory with 2 u...
  • c009de0 Bump actions/upload-artifact from 6.0.0 to 7.0.0 in the github-actions-breaki...
  • 0474357 Update GitHub Actions to trigger on pull requests and update go version (#185)
  • b4ab5fc Support parsing versions with custom prefixes via opt-in option (#79)
  • 25c683b Merge pull request #182 from hashicorp/dependabot/github_actions/github-actio...
  • 4f2bcd8 Bump the github-actions-backward-compatible group with 3 updates
  • acb8b18 Merge pull request #180 from hashicorp/dependabot/github_actions/github-actio...
  • 0394c4f Merge pull request #179 from hashicorp/dependabot/github_actions/github-actio...
  • b2fbaa7 Bump the github-actions-backward-compatible group across 1 directory with 2 u...
  • Additional commits viewable in compare view

Updates github.com/moby/buildkit from 0.28.0 to 0.29.0

Release notes

Sourced from github.com/moby/buildkit's releases.

v0.29.0

Welcome to the v0.29.0 release of buildkit!

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

Contributors

  • Tõnis Tiigi
  • CrazyMax
  • David Karlsson
  • Akihiro Suda
  • Sebastiaan van Stijn
  • Brian Ristuccia
  • Jonathan A. Sternberg
  • Mateusz Gozdek
  • Natnael Gebremariam

Notable Changes

  • Builtin Dockerfile frontend has been updated to v1.23.0 changelog
  • Git sources can now initialize all files from a Git checkout with commit time in the LLB API for better reproducibility. See Dockerfile changelog for how to enable this in the Dockerfile frontend #6600
  • Various file access operations in Git and HTTP sources have been hardened for improved security #6613
  • Frontends can now report updated SOURCE_DATE_EPOCH with result metadata that can be used by exporters #6601
  • Fix possible panic when listing build history after recent deletions #6614
  • Fix possible issue where builds from Git repositories could start to fail after submodule rename #6563
  • Fix possible process lifecycle event ordering issue in interactive container API that could cause deadlocks in the client #6531
  • Fix regression where build progress skipped the message about layers being pushed to the registry #6587
  • Fix possible cgroup initialization failure in BuildKit container image entrypoint on some environments #6585
  • Fix issue with resolving symlinks via file access methods of the Gateway API #6559
  • Fix possible "parent snapshot does not exist" error when exporting images in parallel #6558
  • Fix possible panic from zstd compression #6599
  • Fix issue where cache imports from an uninitialized local cache tag could fail the build #6554
  • Included CNI plugins have been updated to v1.9.1 #6583
  • Included QEMU emulator support has been updated to v10.2.1 #6580
  • Runc container runtime has been updated to v1.3.5 #6625

Dependency Changes

  • github.com/aws/aws-sdk-go-v2 v1.41.1 -> v1.41.4
  • github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.7.4 -> v1.7.5
  • github.com/aws/aws-sdk-go-v2/config v1.32.7 -> v1.32.12
  • github.com/aws/aws-sdk-go-v2/credentials v1.19.7 -> v1.19.12
  • github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.18.17 -> v1.18.20
  • github.com/aws/aws-sdk-go-v2/internal/configsources v1.4.17 -> v1.4.20
  • github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.7.17 -> v2.7.20
  • github.com/aws/aws-sdk-go-v2/internal/ini v1.8.4 -> v1.8.6
  • github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.13.4 -> v1.13.7

... (truncated)

Commits
  • 8543ce4 Merge pull request #6634 from moby/dependabot/github_actions/crazy-max-dot-gi...
  • 1154c7e Merge pull request #6635 from moby/dependabot/github_actions/codecov/codecov-...
  • 326e4d1 Merge pull request #6637 from moby/dependabot/github_actions/github/codeql-ac...
  • 676cdfa Merge pull request #6636 from moby/dependabot/github_actions/actions/setup-go...
  • 1dd2e50 build(deps): bump github/codeql-action from 4.34.1 to 4.35.1
  • 21fb771 build(deps): bump actions/setup-go from 6.3.0 to 6.4.0
  • 06b36e5 build(deps): bump codecov/codecov-action from 5.5.4 to 6.0.0
  • 969f5e4 build(deps): bump the crazy-max-dot-github group with 2 updates
  • f8fd302 Merge pull request #6623 from crazy-max/zizmor
  • a103fb6 Merge pull request #6625 from thaJeztah/bump_runc_1.3
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.49.0 to 0.50.0

Commits
  • 03ca0dc go.mod: update golang.org/x dependencies
  • 8400f4a ssh: respect signer's algorithm preference in pickSignatureAlgorithm
  • 81c6cb3 ssh: swap cbcMinPaddingSize to cbcMinPacketSize to get encLength
  • See full diff in compare view

Updates golang.org/x/sys from 0.42.0 to 0.43.0

Commits
  • f33a730 windows: support nil security descriptor on GetNamedSecurityInfo
  • 493d172 cpu: add runtime import in cpu_darwin_arm64_other.go
  • 2c2be75 windows: use syscall.SyscallN in Proc.Call
  • a76ec62 cpu: roll back "use IsProcessorFeaturePresent to calculate ARM64 on windows"
  • See full diff in compare view

Updates golang.org/x/text from 0.35.0 to 0.36.0

Commits

Updates google.golang.org/grpc from 1.79.3 to 1.80.0

Release notes

Sourced from google.golang.org/grpc's releases.

Release 1.80.0

Behavior Changes

  • balancer: log a warning if a balancer is registered with uppercase letters, as balancer names should be lowercase. In a future release, balancer names will be treated as case-insensitive; see #5288 for details. (#8837)
  • xds: update resource error handling and re-resolution logic (#8907)
    • Re-resolve all LOGICAL_DNS clusters simultaneously when re-resolution is requested.
    • Fail all in-flight RPCs immediately upon receipt of listener or route resource errors, instead of allowing them to complete.

Bug Fixes

  • xds: support the LB policy configured in LOGICAL_DNS cluster resources instead of defaulting to pick_first. (#8733)
  • credentials/tls: perform per-RPC authority validation against the leaf certificate instead of the entire peer certificate chain. (#8831)
  • xds: enabling A76 ring hash endpoint keys no longer causes EDS resources with invalid proxy metadata to be NACKed when HTTP CONNECT (gRFC A86) is disabled. (#8875)
  • xds: validate that the sum of endpoint weights in a locality does not exceed the maximum uint32 value. (#8899)
  • xds: fix incorrect proto field access in the weighted round robin (WRR) configuration where blackout_period was used instead of weight_expiration_period. (#8915)
  • xds/rbac: handle addresses with ports in IP matchers. (#8990)

New Features

  • ringhash: enable gRFC A76 (endpoint hash keys and request hash headers) by default. (#8922)

Performance Improvements

  • credentials/alts: pool write buffers to reduce memory allocations and usage. (#8919)
  • grpc: enable the use of pooled write buffers for buffering HTTP/2 frame writes by default. This reduces memory usage when connections are idle. Use the WithSharedWriteBuffer dial option or the SharedWriteBuffer server option to disable this feature. (#8957)
  • xds/priority: stop caching child LB policies removed from the configuration. This will help reduce memory and cpu usage when localities are constantly switching between priorities. (#8997)
  • mem: add a faster tiered buffer pool; use the experimental mem.NewBinaryTieredBufferPool function to create such pools. (#8775)
Commits

Updates github.com/guptarohit/asciigraph from 0.8.1 to 0.9.0

Release notes

Sourced from github.com/guptarohit/asciigraph's releases.

v0.9.0

Added

  • plot: add X-axis rendering with tick marks and labels (#78)
  • cli: add -xmin, -xmax, and -xt flags for X-axis support (#78) demo

Fixed

  • docker: add OCI labels to Dockerfile for ghcr.io metadata (#76) (02f3e4a)
Changelog

Sourced from github.com/guptarohit/asciigraph's changelog.

0.9.0 (2026-03-28)

Added

  • plot: add X-axis rendering with tick marks and labels (#78)
  • cli: add -xmin, -xmax, and -xt flags for X-axis support (#78)

Fixed

  • docker: add OCI labels to Dockerfile for ghcr.io metadata (#76) (02f3e4a)
Commits
  • 2032fdb chore: release 0.9.0 (#80)
  • 34062f9 fix release
  • 9de946f chore: release 0.9.0
  • 266af73 fix 0.9.0 release
  • eefa2b7 ci(release): skip labeling to fix GraphQL node resolution failure
  • 37e6fba chore: release 0.9.0 (#77)
  • 8c1d226 docs(changelog): consolidate 0.9.0 entries and add PR links
  • d35ab6d chore: release 0.9.0
  • 1411f49 feat: added X-axis support with tick marks & labels (#78)
  • 6e65c25 refactor(options): add X-axis box-drawing characters to default CharSet
  • Additional commits viewable in compare view

Updates github.com/hashicorp/vault/api from 1.22.0 to 1.23.0

Commits
  • d430306 Merge remote-tracking branch 'remotes/from/ce/main'
  • a3bc0a3 (enos): Add LDAP secrets engine blackbox tests to Plugin Scenario (#13072) (#...
  • f8df539 Merge remote-tracking branch 'remotes/from/ce/main'
  • 2b0ec25 VAULT-43444 Addressed races in tests (#13278) (#13285)
  • a097d1f Merge remote-tracking branch 'remotes/from/ce/main'
  • 7e587fd Update vault-plugin-auth-kubernetes to v0.24.1 (#13259) (#13287)
  • 1331818 UI: Fix namespace search showing empty state when namespaces exist (#13257) (...
  • 7b12feb Merge remote-tracking branch 'remotes/from/ce/main'
  • 7d4395c Update vault-plugin-auth-jwt to v0.26.1 (#13242) (#13283)
  • 6d4b615 adds flag to fix chrome in ci (#13279) (#13282)
  • Additional commits viewable in compare view

Updates github.com/moby/moby/api from 1.54.0 to 1.54.1

Release notes

Sourced from github.com/moby/moby/api's releases.

api/v1.54.1

Changelog

  • api/types/network: add Port.Port() method to return the port-number as a string. moby/moby#52165
  • api, client: add //go:fix inline directives to deprecated functions. moby/moby#52178
  • api, client: go.mod: remove patch version. moby/moby#52174
  • api/types/network: fix handling of unmapped ports (ephemeral ports). moby/moby#52288

Full Changelog: moby/moby@api/v1.54.0...api/v1.54.1

Commits
  • a3d12a2 Merge pull request #52293 from vvoland/dropreplace
  • f1b420b Drop replace rules
  • ef0a1e4 Merge pull request #52277 from nvsahana/fix-typos-comments
  • 4436298 Merge pull request #52172 from Wang-squirrel/dev_1
  • e39d2cd Merge pull request #52291 from thaJeztah/update_authors_mailmap
  • 359ce1c Merge pull request #52290 from thaJeztah/client_flip_args
  • 07a5e92 Fix typos and misspellings in comments, tests, and docs
  • c493753 Merge pull request #52170 from thaJeztah/no_mod
  • 6604bd0 update AUTHORS and .mailmap
  • 88b79ac Merge pull request #52075 from htoyoda18/fix/swarm-event-handling
  • Additional commits viewable in compare view

Updates github.com/moby/moby/client from 0.3.0 to 0.4.0

Release notes

Sourced from github.com/moby/moby/client's releases.

client/v0.4.0

v0.4.0

Bug fixes and enhancements

  • api, client: add //go:fix inline directives to deprecated functions to help automatically migrating using go fix. moby/moby#52178
  • client/pkg/jsonmessage: add DisplayStream and DisplayMessages utils. moby/moby#52273
  • client/pkg/jsonmessage: use functional options for display funcs. moby/moby#52285
  • client: prevent panic when passing nil Opts to client.New. moby/moby#52184
  • client: the client now sets a default User-Agent if none was set, to prevent Go's default (Go-http-client/1.1) from being used. moby/moby#52167
  • Fix /system/df reporting in-use images as reclaimable. moby/moby#51778
  • Go SDK: client.WithHTTPHeaders now detects if duplicate headers are set, and produces an error. Previously, duplicate errors would be randomized, resulting in undefined behavior. moby/moby#52204

Full Changelog: moby/moby@client/v0.3.0...client/v0.4.0

Changelog

Sourced from github.com/moby/moby/client's changelog.

0.4.0 (2013-06-03)

  • Introducing Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
  • Introducing Remote API: control Docker programmatically using a simple HTTP/json API
  • Runtime: various reliability and usability improvements

0.3.4 (2013-05-30)

  • Builder: 'docker build' builds a container, layer by layer, from a source repository containing a Dockerfile
  • Builder: 'docker build -t FOO' applies the tag FOO to the newly built container.
  • Runtime: interactive TTYs correctly handle window resize
  • Runtime: fix how configuration is merged between layers
  • Remote API: split stdout and stderr on 'docker run'
  • Remote API: optionally listen on a different IP and port (use at your own risk)
  • Documentation: improved install instructions.

0.3.3 (2013-05-23)

  • Registry: Fix push regression
  • Various bugfixes

0.3.2 (2013-05-09)

  • Runtime: Store the actual archive on commit
  • Registry: Improve the checksum process
  • Registry: Use the size to have a good progress bar while pushing
  • Registry: Use the actual archive if it exists in order to speed up the push
  • Registry: Fix error 400 on push

0.3.1 (2013-05-08)

  • Builder: Implement the autorun capability within docker builder
  • Builder: Add caching to docker builder
  • Builder: Add support for docker builder with native API as top level command
  • Runtime: Add go version to debug infos
  • Builder: Implement ENV within docker builder
  • Registry: Add docker search top level command in order to search a repository
  • Images: output graph of images to dot (graphviz)
  • Documentation: new introduction and high-level overview
  • Documentation: Add the documentation for docker builder
  • Website: new high-level overview
  • Makefile: Swap "go get" for "go get -d", especially to compile on go1.1rc
  • Images: fix ByParent function
  • Builder: Check the command existance prior create and add Unit tests for the case
  • Registry: Fix pull for official images with specific tag
  • Registry: Fix issue when login in with a different user and trying to push
  • Documentation: CSS fix for docker documentation to make REST API docs look better.
  • Documentation: Fixed CouchDB example page header mistake
  • Documentation: fixed README formatting
  • Registry: Improve checksum - async calculation
  • Runtime: kernel version - don't show the dash if flavor is empty
  • Documentation: updated www.docker.io website.
  • Builder: use any whitespaces instead of tabs
  • Packaging: packaging ubuntu; issue #510: Use goland-stable PPA package to build docker
Commits
  • a8ae398 Bumped version to 0.4.0
  • 7a4408f Merge pull request #794 from dotcloud/780-diff-fix2
  • 854039b remove TrimLeft as it's go1.1
  • 070923b Merge pull request #792 from dotcloud/780-diff-fix
  • 71b1657 added test
  • 1bafe9d Merge pull request #793 from dotcloud/774-remove_login_check_on_pull-fix
  • 1ce4ba6 remove check on login
  • 2b1b3c1 Merge pull request #784 from dotcloud/remove_cgo_dependency
  • 8243f25 Update test to reflect new ApiInfo struct
  • 0443cc3 Merge pull request #772 from dotcloud/improve_version_info_cmds
  • Additional commits viewable in compare view

Updates github.com/testcontainers/testcontainers-go from 0.41.0 to 0.42.0

Release notes

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

v0.42.0

What's Changed

⚠️ Breaking Changes

🔒 Security

🐛 Bug Fixes

  • fix: return an error when docker host cannot be retrieved (#3613) @​ash2k

🧹 Housekeeping

📦 Dependency updates

  • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp from 1.28.0 to 1.43.0 in /modules/grafana-lgtm (#3639) @dependabot[bot]
  • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp from 1.42.0 to 1.43.0 in /modules/compose (#3641) @dependabot[bot]
  • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.42.0 to 1.43.0 in /modules/compose (#3645) @dependabot[bot]
  • chore(deps): bump mkdocs-include-markdown-plugin from 7.2.1 to 7.2.2 (#3626) @dependabot[bot]
  • chore(deps): bump github.com/aws/aws-sdk-go-v2/service/s3 from 1.51.2 to 1.97.3 in /modules/localstack (#3638) @dependabot[bot]
  • chore(deps): bump go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp from 1.41.0 to 1.43.0 in /modules/grafana-lgtm (#3643) @dependabot[bot]
  • chore(deps): bump go.opentelemetry.io/otel/sdk from 1.41.0 to 1.43.0 in /modules/milvus (#3644) @dependabot[bot]
  • chore: update to Go 1.25.9, 1.26.9 (

Bumps the all-updates group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/breml/rootcerts](https://github.com/breml/rootcerts) | `0.3.4` | `0.3.5` |
| [github.com/docker/cli](https://github.com/docker/cli) | `29.3.0+incompatible` | `29.4.0+incompatible` |
| [github.com/getsentry/sentry-go](https://github.com/getsentry/sentry-go) | `0.43.0` | `0.45.1` |
| [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) | `5.17.0` | `5.18.0` |
| [github.com/hashicorp/go-version](https://github.com/hashicorp/go-version) | `1.8.0` | `1.9.0` |
| [github.com/moby/buildkit](https://github.com/moby/buildkit) | `0.28.0` | `0.29.0` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.49.0` | `0.50.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.79.3` | `1.80.0` |
| [github.com/guptarohit/asciigraph](https://github.com/guptarohit/asciigraph) | `0.8.1` | `0.9.0` |
| [github.com/hashicorp/vault/api](https://github.com/hashicorp/vault) | `1.22.0` | `1.23.0` |
| [github.com/moby/moby/api](https://github.com/moby/moby) | `1.54.0` | `1.54.1` |
| [github.com/moby/moby/client](https://github.com/moby/moby) | `0.3.0` | `0.4.0` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.41.0` | `0.42.0` |
| [go.opentelemetry.io/contrib/bridges/otelzap](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.17.0` | `0.18.0` |
| [go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.67.0` | `0.68.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp](https://github.com/open-telemetry/opentelemetry-go) | `0.18.0` | `0.19.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp](https://github.com/open-telemetry/opentelemetry-go) | `1.42.0` | `1.43.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.42.0` | `1.43.0` |



Updates `github.com/breml/rootcerts` from 0.3.4 to 0.3.5
- [Release notes](https://github.com/breml/rootcerts/releases)
- [Commits](breml/rootcerts@v0.3.4...v0.3.5)

Updates `github.com/docker/cli` from 29.3.0+incompatible to 29.4.0+incompatible
- [Commits](docker/cli@v29.3.0...v29.4.0)

Updates `github.com/getsentry/sentry-go` from 0.43.0 to 0.45.1
- [Release notes](https://github.com/getsentry/sentry-go/releases)
- [Changelog](https://github.com/getsentry/sentry-go/blob/master/CHANGELOG.md)
- [Commits](getsentry/sentry-go@v0.43.0...v0.45.1)

Updates `github.com/go-git/go-git/v5` from 5.17.0 to 5.18.0
- [Release notes](https://github.com/go-git/go-git/releases)
- [Commits](go-git/go-git@v5.17.0...v5.18.0)

Updates `github.com/hashicorp/go-version` from 1.8.0 to 1.9.0
- [Release notes](https://github.com/hashicorp/go-version/releases)
- [Changelog](https://github.com/hashicorp/go-version/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-version@v1.8.0...v1.9.0)

Updates `github.com/moby/buildkit` from 0.28.0 to 0.29.0
- [Release notes](https://github.com/moby/buildkit/releases)
- [Commits](moby/buildkit@v0.28.0...v0.29.0)

Updates `golang.org/x/crypto` from 0.49.0 to 0.50.0
- [Commits](golang/crypto@v0.49.0...v0.50.0)

Updates `golang.org/x/sys` from 0.42.0 to 0.43.0
- [Commits](golang/sys@v0.42.0...v0.43.0)

Updates `golang.org/x/text` from 0.35.0 to 0.36.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.35.0...v0.36.0)

Updates `google.golang.org/grpc` from 1.79.3 to 1.80.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.79.3...v1.80.0)

Updates `github.com/guptarohit/asciigraph` from 0.8.1 to 0.9.0
- [Release notes](https://github.com/guptarohit/asciigraph/releases)
- [Changelog](https://github.com/guptarohit/asciigraph/blob/master/CHANGELOG.md)
- [Commits](guptarohit/asciigraph@v0.8.1...v0.9.0)

Updates `github.com/hashicorp/vault/api` from 1.22.0 to 1.23.0
- [Release notes](https://github.com/hashicorp/vault/releases)
- [Changelog](https://github.com/hashicorp/vault/blob/main/CHANGELOG.md)
- [Commits](hashicorp/vault@api/v1.22.0...api/v1.23.0)

Updates `github.com/moby/moby/api` from 1.54.0 to 1.54.1
- [Release notes](https://github.com/moby/moby/releases)
- [Commits](moby/moby@api/v1.54.0...api/v1.54.1)

Updates `github.com/moby/moby/client` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/moby/moby/releases)
- [Changelog](https://github.com/moby/moby/blob/v0.4.0/CHANGELOG.md)
- [Commits](moby/moby@v0.3.0...v0.4.0)

Updates `github.com/testcontainers/testcontainers-go` from 0.41.0 to 0.42.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.41.0...v0.42.0)

Updates `go.opentelemetry.io/contrib/bridges/otelzap` from 0.17.0 to 0.18.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@v0.17.0...v0.18.0)

Updates `go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc` from 0.67.0 to 0.68.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go-contrib/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go-contrib/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go-contrib@zpages/v0.67.0...zpages/v0.68.0)

Updates `go.opentelemetry.io/otel` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v0.18.0...v0.19.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/log` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v0.18.0...v0.19.0)

Updates `go.opentelemetry.io/otel/metric` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/sdk/log` from 0.18.0 to 0.19.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v0.18.0...v0.19.0)

Updates `go.opentelemetry.io/otel/sdk/metric` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

Updates `go.opentelemetry.io/otel/trace` from 1.42.0 to 1.43.0
- [Release notes](https://github.com/open-telemetry/opentelemetry-go/releases)
- [Changelog](https://github.com/open-telemetry/opentelemetry-go/blob/main/CHANGELOG.md)
- [Commits](open-telemetry/opentelemetry-go@v1.42.0...v1.43.0)

---
updated-dependencies:
- dependency-name: github.com/breml/rootcerts
  dependency-version: 0.3.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: github.com/docker/cli
  dependency-version: 29.4.0+incompatible
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/getsentry/sentry-go
  dependency-version: 0.45.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/go-git/go-git/v5
  dependency-version: 5.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/hashicorp/go-version
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/moby/buildkit
  dependency-version: 0.29.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: golang.org/x/crypto
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: golang.org/x/sys
  dependency-version: 0.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: golang.org/x/text
  dependency-version: 0.36.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: google.golang.org/grpc
  dependency-version: 1.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/guptarohit/asciigraph
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/hashicorp/vault/api
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/moby/moby/api
  dependency-version: 1.54.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-updates
- dependency-name: github.com/moby/moby/client
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/contrib/bridges/otelzap
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc
  dependency-version: 0.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/log
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/metric
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/sdk/log
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/sdk/metric
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.43.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 20, 2026
@dependabot
dependabot Bot requested a review from fkorotkov as a code owner April 20, 2026 02:20
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Apr 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github May 4, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this May 4, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/all-updates-3b9e7b4ade branch May 4, 2026 02:30
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants