Skip to content

build(deps): bump the golang group across 1 directory with 27 updates - #192

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/main/golang-6d0b616df7
Open

build(deps): bump the golang group across 1 directory with 27 updates#192
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/main/golang-6d0b616df7

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps the golang group with 19 updates in the / directory:

Package From To
github.com/amacneil/dbmate/v2 2.33.0 2.35.0
github.com/aws/aws-sdk-go-v2 1.41.7 1.43.6
github.com/aws/aws-sdk-go-v2/config 1.32.17 1.32.37
github.com/aws/aws-sdk-go-v2/service/s3 1.101.0 1.107.2
github.com/danielgtaylor/huma/v2 2.37.3 2.39.1
github.com/gabriel-vasile/mimetype 1.4.13 1.4.15
github.com/go-chi/httprate 0.15.0 0.16.0
github.com/go-ozzo/ozzo-validation/v4 4.3.0 4.4.1
github.com/jackc/pgx/v5 5.9.2 5.10.0
github.com/stretchr/testify 1.11.1 1.12.0
github.com/wneessen/go-mail 0.7.2 0.8.1
go.opentelemetry.io/contrib/bridges/otelslog 0.18.0 0.20.0
go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp 0.19.0 0.21.0
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp 1.43.0 1.45.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp 1.43.0 1.45.0
github.com/ThreeDotsLabs/watermill 1.5.1 1.5.2
github.com/go-chi/httplog/v3 3.3.0 3.4.0
github.com/oschwald/geoip2-golang/v2 2.1.0 2.3.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp 0.68.0 0.70.0

Updates github.com/amacneil/dbmate/v2 from 2.33.0 to 2.35.0

Release notes

Sourced from github.com/amacneil/dbmate/v2's releases.

v2.35.0

What's Changed

New Contributors

Full Changelog: amacneil/dbmate@v2.34.1...v2.35.0

v2.34.1

What's Changed

Full Changelog: amacneil/dbmate@v2.34.0...v2.34.1

v2.34.0

What's Changed

New Contributors

Full Changelog: amacneil/dbmate@v2.33.0...v2.34.0

Commits

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

Commits

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

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.19.16 to 1.19.36

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.101.0 to 1.107.2

Commits

Updates github.com/danielgtaylor/huma/v2 from 2.37.3 to 2.39.1

Release notes

Sourced from github.com/danielgtaylor/huma/v2's releases.

v2.39.1

Overview

A patch release: correctness fixes for resolvers, validation, and response handling, plus a dependency refresh.

Response Status Visible to Middleware Again

WithContext context propagation in v2.39.0 copied the response status by value, so middleware that called WithContext and then read Status() after next() always saw 0 instead of the status the handler set, breaking access logging and telemetry. The status is now shared by every context copy across all adapters, restoring the pre-2.39 invariant while keeping context propagation intact. (#1081)

Resolvers & Defaults in Arrays and Maps

  • Nested resolvers now run for fixed-size arrays ([2]Item), not just slices (#1076)
  • A resolver on a named collection type (e.g. type Coords [2]float64) no longer panics, and is no longer conflated with a resolver on its element type, which previously ran the element's resolver twice and the collection's never (#1082)
  • Values reached through a map are now written back after being walked, so applying a default no longer panics with reflect: reflect.Value.Set using unaddressable value and resolver mutations are no longer silently discarded (#1082)

Stricter email and uri Formats

Validation for two string formats is tighter, so payloads that previously passed may now return 422:

  • email / idn-email accept an addr-spec only; full mailbox forms with a display name (Name <user@example.com>) are rejected
  • uri / iri require an absolute URI with a non-empty scheme, while relative references remain valid under uri-reference / iri-reference (#1068)

Validation Robustness

  • An unresolvable schema $ref during Validate now reports expected schema $ref to resolve: ... instead of panicking on a nil dereference, covering discriminators and map[string]any / map[any]any values (#1065)
  • Named numeric slice parameters (e.g. type IDs []int64) are built with their declared element type and validated with item, length, and uniqueness constraints intact (#1074)

Other Fixes

  • Resolver errors that wrap a HeadersError now contribute their headers to the response, matching the handler error path (#1070)
  • A nil interface response body no longer panics in the schema link transformer (#1072)
  • Dependencies updated (#1066)

What's Changed

New Contributors

Full Changelog: danielgtaylor/huma@v2.39.0...v2.39.1

... (truncated)

Commits
  • 198225e fix: distinguish collection and element matches when walking input (#1082)
  • 5961f0a fix: run nested resolvers in fixed arrays (#1076)
  • 85aad8f fix: share response status across WithContext copies (#1081)
  • 22a3cb0 fix: parse named numeric slice parameters (#1074)
  • ac9959c fix: handle nil interface response bodies (#1072)
  • b659c74 fix: preserve wrapped resolver error metadata (#1070)
  • 14aea2f fix: tighten format email and uri validation (#1068)
  • bba0d54 chore: update dependencies (#1066)
  • e114668 fix: do not panic on unresolved schema $ref during Validate (#1065)
  • d6f2a37 feat(form-data): handle unmarshalling and validation of non-file JSON form da...
  • Additional commits viewable in compare view

Updates github.com/gabriel-vasile/mimetype from 1.4.13 to 1.4.15

Release notes

Sourced from github.com/gabriel-vasile/mimetype's releases.

v1.4.15 fix int overflow on 32bit arch

What's Changed

This release fixes an integer overflow panic on 32 bit architectures and retracts the previous release.

Full Changelog: gabriel-vasile/mimetype@v.1.4.14...v1.4.15

v1.4.14 pyc, pcap, cycloned, gedcom support

Media type changes

  • newly added: application/x-bytecode.python, application/vnd.tcpdump.pcap, application/vnd.cyclonedx+xml, application/vnd.cyclonedx+json, text/vnd.familysearch.gedcom
  • superseded and demoted to aliases: image/vnd.mozilla.apng superseded by image/apng video/x-matroska superseded by video/matroska application/x-rar-compressed superseded by application/vnd.rar

Full changelog

New Contributors

Full Changelog: gabriel-vasile/mimetype@v1.4.13...v1.4.14

v1.4.14-rc1 pyc, pcap, cycloned support

... (truncated)

Commits
  • f6bb955 readme: add back contributing section, for #827 (#831)
  • 1b3ab2e fuzz: fuzz for 32 bit too to avoid panics like #829 (#830)
  • 38e5e71 cdf: fix slice index panic on 32bit arch (#829)
  • bcd718d gedcom: add support for text/vnd.familysearch.gedcom (#789)
  • 2995287 build(deps): bump the github-actions group across 1 directory with 7 updates ...
  • 14cefcb fuzz: improvements for exploring more code paths (#824)
  • 5b11e3a scan: fix panic and fuzz flags (#823)
  • 5621f29 charset: stop checking for ascii if utf8 is satisfied (#768)
  • eb8d3f4 docs: mention String() can return different values (#820)
  • 9268756 mkv: use IANA registered media type video/matroska (#819)
  • Additional commits viewable in compare view

Updates github.com/go-chi/chi/v5 from 5.2.5 to 5.3.1

Release notes

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

v5.3.1

What's Changed

New Contributors

Full Changelog: go-chi/chi@v5.3.0...v5.3.1

v5.3.0

What's Changed

New Contributors

SECURITY: middleware.ClientIP, a replacement for middleware.RealIP

@​VojtechVitek submitted PR #967, which introduces middleware.ClientIP — a replacement for middleware.RealIP that closes the three open spoofing advisories:

It also addresses issues outlined at:

... (truncated)

Commits
  • 8b258c7 ci: pin GitHub Actions to full commit SHAs (#1116)
  • caf87e6 feat(mux): support http QUERY method ietf rfc10008 (#1132)
  • 7fcb8a2 middleware: document printPrettyStack and harden NoColor panic test (#1131)
  • 878fe71 Fix defaultLogEntry.Panic not respecting NoColor setting (#1050)
  • d7b767b feat(middleware): add text/xml and application/xml to default compressible ty...
  • 3b50c7c Tidy build directives (#1113)
  • 2b9fca2 Honor Discard() in httpFancyWriter.ReadFrom (#1110)
  • 3b17157 feat: middleware.ClientIP, a replacement for middleware.RealIP (#967)
  • 818fdcf fix: set Request.Pattern from RoutePattern() (#1097)
  • f975af0 Fix typo in Route doc comment (#1073)
  • Additional commits viewable in compare view

Updates github.com/go-chi/httprate from 0.15.0 to 0.16.0

Release notes

Sourced from github.com/go-chi/httprate's releases.

v0.16.0

What's Changed

New Contributors

Full Changelog: go-chi/httprate@v0.15.0...v0.16.0

Commits
  • 741b4a5 Deprecate spoofable RealIP rate-limiting; add LimitBy + KeyFromContext and mo...
  • 81255de perf: use zero-alloc xxh3.HashString on the local counter hot path (#60)
  • 0c2093a test: replace golang.org/x/sync/errgroup with sync.WaitGroup (#59)
  • 89e5cca local counter: align windows to reset at sub-millisecond counter start (#58)
  • be2ba84 replace fmt with strconv to reduce allocations (#55)
  • See full diff in compare view

Updates github.com/go-ozzo/ozzo-validation/v4 from 4.3.0 to 4.4.1

Release notes

Sourced from github.com/go-ozzo/ozzo-validation/v4's releases.

v4.4.1 — Performance: 36% fewer allocations

Performance

Struct field offset cache eliminates repeated reflect.StructField allocations.

Benchmark v4.4.0 v4.4.1 Improvement
ValidateStruct (6 fields) 59 allocs, 4.7 KB, 6.7µs 38 allocs, 2.3 KB, 3.6µs -36% allocs, -50% memory, -46% time
ValidateWithConditional 34 allocs, 3.8µs 19 allocs, 1.7µs -44% allocs, -56% time

Also fixes benchmark to pre-compile regex (was inflating alloc count).

Full Changelog: go-ozzo/ozzo-validation@v4.4.0...v4.4.1

v4.4.0 — Revival Release

Revival release — ozzo-validation is actively maintained again after 6 years.

12 community PRs merged, maintainer bug fixes, modernized CI infrastructure.

Added

Fixed

  • E.164 phone validation now requires + prefix per ITU-T standard (#208 by @​Yanhu007)
  • Domain regex allows uppercase in final character (#197 by @​mhargrove)
  • Each() now passes pointers correctly to By() callbacks (#160 by @​dane)
  • IsEmpty() treats all zero-valued structs as empty (#144 by @​soranoba)
  • Errors.Error() no longer panics on nil values (#212)
  • Min()/Max() now validate zero values instead of silently skipping them (#212)
  • README install command, code examples, documentation

Breaking Changes

These are bug fixes — the old behavior was incorrect:

  • is.E164 rejects phone numbers without + prefix (spec-correct)
  • Each() with By() on pointer slices passes *T instead of T
  • IsEmpty() returns true for zero-valued structs (was only time.Time{})
  • Min()/Max() validate numeric zero and time.Time{} (were silently skipped)

Thank You

Thanks to all contributors who waited patiently — some PRs were open for 5+ years.

... (truncated)

Changelog

Sourced from github.com/go-ozzo/ozzo-validation/v4's changelog.

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

[4.4.0] - 2026-08-04

Project revived after 6 years of inactivity. New maintainer: @​kolkov.

Added

  • is.UUIDv7 validation rule per RFC 9562 (#205 by @​dmitryzhvinklis)
  • is.ULID validation rule (#171 by @​upamune)
  • is.Origin validation rule for CORS origins (#198 by @​nguyenvantuan2391996)
  • OptionalKey() and DynamicMap() convenience constructors (#151 by @​Jessinra)
  • EachUntilFirstError() rule for large collections (#93 by @​geekflyer)
  • GitHub Actions CI with Go 1.22/1.23 test matrix
  • golangci-lint integration with enterprise config
  • Codecov OIDC integration (99.5% coverage)
  • Benchmark infrastructure (PR comparison + historical tracking)
  • CONTRIBUTING.md, CODE_OF_CONDUCT.md, SECURITY.md, CODEOWNERS

Fixed

  • E.164 phone validation now requires + prefix per ITU-T standard (#208 by @​Yanhu007) — fixes #195
  • Domain regex allows uppercase in final character (#197 by @​mhargrove)
  • Each() now passes pointers correctly to By() callbacks (#160 by @​dane)
  • IsEmpty() treats all zero-valued structs as empty, not just time.Time{} (#144 by @​soranoba) — fixes #143
  • Errors.Error() no longer panics on nil values (#212) — fixes #147
  • Min()/Max() now validate zero values instead of silently skipping them (#212) — fixes #165, #180
  • README install command corrected to v4 module path (#194 by @​apuatcfbd)
  • README code examples: single quotes → double quotes (#178 by @​Hannes-tallied)
  • README city validation example uses realistic Length(1, 50) (#175 by @​tuan-nxcr)
  • Code formatting for Go 1.19+ doc comment style
  • Various golangci-lint issues (whitespace, bool comparison, if-else chains)

Changed

  • Badges: Travis CI → GitHub Actions, Coveralls → Codecov
  • govalidator dependency updated
  • Removed dead Travis CI configuration

Breaking Changes

  • is.E164 now rejects phone numbers without + prefix (spec-correct behavior)
  • Each() with By() on pointer slices now passes *T instead of T (correct behavior)
  • IsEmpty() returns true for zero-valued structs (was only time.Time{} before)
  • Min()/Max() now validate numeric zero and time.Time{} instead of skipping them
Commits
  • 0fb4d5a perf: struct field cache — 36% fewer allocations
  • 0283606 fix: pre-compile regex in benchmark (59 vs 106 allocs baseline)
  • d69c89a release: v4.4.0
  • 4ac85c1 chore: add enterprise-level benchmark infrastructure
  • 19f6be2 fix: nil pointer dereference in Errors.Error() and Min/Max zero value bypass
  • ce2965c Merge pull request #144 from soranoba/issue-143/structure-isEmpty
  • 25ba193 style: format util_test.go for Go 1.19+
  • 199d280 Merge branch 'master' into issue-143/structure-isEmpty
  • de1fed7 Merge pull request #198 from nguyenvantuan2391996/is-origin
  • d8c398a fix: resolve merge conflicts, improve Origin regex and tests
  • Additional commits viewable in compare view

Updates `github.com...

Description has been truncated

Bumps the golang group with 19 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/amacneil/dbmate/v2](https://github.com/amacneil/dbmate) | `2.33.0` | `2.35.0` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.41.7` | `1.43.6` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.32.17` | `1.32.37` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.101.0` | `1.107.2` |
| [github.com/danielgtaylor/huma/v2](https://github.com/danielgtaylor/huma) | `2.37.3` | `2.39.1` |
| [github.com/gabriel-vasile/mimetype](https://github.com/gabriel-vasile/mimetype) | `1.4.13` | `1.4.15` |
| [github.com/go-chi/httprate](https://github.com/go-chi/httprate) | `0.15.0` | `0.16.0` |
| [github.com/go-ozzo/ozzo-validation/v4](https://github.com/go-ozzo/ozzo-validation) | `4.3.0` | `4.4.1` |
| [github.com/jackc/pgx/v5](https://github.com/jackc/pgx) | `5.9.2` | `5.10.0` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.11.1` | `1.12.0` |
| [github.com/wneessen/go-mail](https://github.com/wneessen/go-mail) | `0.7.2` | `0.8.1` |
| [go.opentelemetry.io/contrib/bridges/otelslog](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.18.0` | `0.20.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp](https://github.com/open-telemetry/opentelemetry-go) | `0.19.0` | `0.21.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp](https://github.com/open-telemetry/opentelemetry-go) | `1.43.0` | `1.45.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp](https://github.com/open-telemetry/opentelemetry-go) | `1.43.0` | `1.45.0` |
| [github.com/ThreeDotsLabs/watermill](https://github.com/ThreeDotsLabs/watermill) | `1.5.1` | `1.5.2` |
| [github.com/go-chi/httplog/v3](https://github.com/go-chi/httplog) | `3.3.0` | `3.4.0` |
| [github.com/oschwald/geoip2-golang/v2](https://github.com/oschwald/geoip2-golang) | `2.1.0` | `2.3.0` |
| [go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp](https://github.com/open-telemetry/opentelemetry-go-contrib) | `0.68.0` | `0.70.0` |



Updates `github.com/amacneil/dbmate/v2` from 2.33.0 to 2.35.0
- [Release notes](https://github.com/amacneil/dbmate/releases)
- [Commits](amacneil/dbmate@v2.33.0...v2.35.0)

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

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

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.19.16 to 1.19.36
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.19.16...credentials/v1.19.36)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.101.0 to 1.107.2
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.101.0...service/s3/v1.107.2)

Updates `github.com/danielgtaylor/huma/v2` from 2.37.3 to 2.39.1
- [Release notes](https://github.com/danielgtaylor/huma/releases)
- [Commits](danielgtaylor/huma@v2.37.3...v2.39.1)

Updates `github.com/gabriel-vasile/mimetype` from 1.4.13 to 1.4.15
- [Release notes](https://github.com/gabriel-vasile/mimetype/releases)
- [Commits](gabriel-vasile/mimetype@v1.4.13...v1.4.15)

Updates `github.com/go-chi/chi/v5` from 5.2.5 to 5.3.1
- [Release notes](https://github.com/go-chi/chi/releases)
- [Changelog](https://github.com/go-chi/chi/blob/master/CHANGELOG.md)
- [Commits](go-chi/chi@v5.2.5...v5.3.1)

Updates `github.com/go-chi/httprate` from 0.15.0 to 0.16.0
- [Release notes](https://github.com/go-chi/httprate/releases)
- [Commits](go-chi/httprate@v0.15.0...v0.16.0)

Updates `github.com/go-ozzo/ozzo-validation/v4` from 4.3.0 to 4.4.1
- [Release notes](https://github.com/go-ozzo/ozzo-validation/releases)
- [Changelog](https://github.com/go-ozzo/ozzo-validation/blob/master/CHANGELOG.md)
- [Commits](go-ozzo/ozzo-validation@v4.3.0...v4.4.1)

Updates `github.com/jackc/pgx/v5` from 5.9.2 to 5.10.0
- [Changelog](https://github.com/jackc/pgx/blob/master/CHANGELOG.md)
- [Commits](jackc/pgx@v5.9.2...v5.10.0)

Updates `github.com/stretchr/testify` from 1.11.1 to 1.12.0
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.11.1...v1.12.0)

Updates `github.com/wneessen/go-mail` from 0.7.2 to 0.8.1
- [Release notes](https://github.com/wneessen/go-mail/releases)
- [Commits](wneessen/go-mail@v0.7.2...v0.8.1)

Updates `go.opentelemetry.io/contrib/bridges/otelslog` from 0.18.0 to 0.20.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.18.0...v0.20.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp` from 0.19.0 to 0.21.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.19.0...log/v0.21.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp` from 1.43.0 to 1.45.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.43.0...v1.45.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp` from 1.43.0 to 1.45.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.43.0...v1.45.0)

Updates `go.opentelemetry.io/otel/log` from 0.19.0 to 0.21.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.19.0...log/v0.21.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.43.0 to 1.45.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.43.0...v1.45.0)

Updates `go.opentelemetry.io/otel/sdk/log` from 0.19.0 to 0.21.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.19.0...log/v0.21.0)

Updates `go.opentelemetry.io/otel/sdk/metric` from 1.43.0 to 1.45.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.43.0...v1.45.0)

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

Updates `github.com/ThreeDotsLabs/watermill` from 1.5.1 to 1.5.2
- [Release notes](https://github.com/ThreeDotsLabs/watermill/releases)
- [Changelog](https://github.com/ThreeDotsLabs/watermill/blob/master/RELEASE-PROCEDURE.md)
- [Commits](ThreeDotsLabs/watermill@v1.5.1...v1.5.2)

Updates `github.com/go-chi/httplog/v3` from 3.3.0 to 3.4.0
- [Release notes](https://github.com/go-chi/httplog/releases)
- [Commits](go-chi/httplog@v3.3.0...v3.4.0)

Updates `github.com/oschwald/geoip2-golang/v2` from 2.1.0 to 2.3.0
- [Release notes](https://github.com/oschwald/geoip2-golang/releases)
- [Changelog](https://github.com/oschwald/geoip2-golang/blob/main/CHANGELOG.md)
- [Commits](oschwald/geoip2-golang@v2.1.0...v2.3.0)

Updates `go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp` from 0.68.0 to 0.70.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.68.0...zpages/v0.70.0)

Updates `go.opentelemetry.io/otel` from 1.43.0 to 1.45.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.43.0...v1.45.0)

---
updated-dependencies:
- dependency-name: github.com/amacneil/dbmate/v2
  dependency-version: 2.35.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.43.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.37
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.107.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/danielgtaylor/huma/v2
  dependency-version: 2.39.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/gabriel-vasile/mimetype
  dependency-version: 1.4.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/go-chi/chi/v5
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/go-chi/httprate
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/go-ozzo/ozzo-validation/v4
  dependency-version: 4.4.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/jackc/pgx/v5
  dependency-version: 5.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/wneessen/go-mail
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/contrib/bridges/otelslog
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlplog/otlploghttp
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/log
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/sdk/log
  dependency-version: 0.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel/sdk/metric
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: golang.org/x/sync
  dependency-version: 0.22.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/ThreeDotsLabs/watermill
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: golang
- dependency-name: github.com/go-chi/httplog/v3
  dependency-version: 3.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: github.com/oschwald/geoip2-golang/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp
  dependency-version: 0.70.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: golang
...

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 Aug 20, 2026
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