Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 27, 2025

Bumps the gomod-normal-deps group with 22 updates in the / directory:

Package From To
cirello.io/pglock 1.14.0 1.16.1
github.com/BurntSushi/toml 1.3.2 1.5.0
github.com/coocood/freecache 1.2.3 1.2.4
github.com/fatih/color 1.15.0 1.18.0
github.com/fsnotify/fsnotify 1.6.0 1.9.0
github.com/gin-gonic/gin 1.9.1 1.11.0
github.com/go-resty/resty/v2 2.11.0 2.16.5
github.com/gorilla/websocket 1.5.0 1.5.3
github.com/grpc-ecosystem/grpc-gateway/v2 2.27.1 2.27.3
github.com/labstack/echo/v4 4.11.1 4.13.4
github.com/onsi/ginkgo/v2 2.12.0 2.27.1
github.com/samber/lo 1.38.1 1.52.0
github.com/spf13/cast 1.5.1 1.10.0
github.com/urfave/cli 1.22.14 1.22.17
github.com/valyala/fasthttp 1.48.0 1.68.0
go.etcd.io/etcd/api/v3 3.5.9 3.6.5
go.etcd.io/etcd/client/v3 3.5.9 3.6.5
go.mongodb.org/mongo-driver 1.12.1 1.17.4
go.opentelemetry.io/otel 1.37.0 1.38.0
go.opentelemetry.io/otel/bridge/opentracing 1.37.0 1.38.0
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc 1.37.0 1.38.0
gorm.io/driver/mysql 1.4.7 1.6.0

Bumps the gomod-normal-deps group with 7 updates in the /test/e2e directory:

Package From To
github.com/BurntSushi/toml 1.3.2 1.5.0
github.com/gin-gonic/gin 1.9.1 1.11.0
github.com/grpc-ecosystem/grpc-gateway/v2 2.27.1 2.27.3
github.com/labstack/echo/v4 4.11.1 4.13.4
github.com/onsi/ginkgo/v2 2.12.0 2.27.1
github.com/samber/lo 1.38.1 1.52.0
github.com/valyala/fasthttp 1.48.0 1.68.0

Bumps the gomod-normal-deps group with 10 updates in the /tools directory:

Package From To
github.com/grpc-ecosystem/grpc-gateway/v2 2.15.2 2.27.3
github.com/onsi/ginkgo/v2 2.9.1 2.27.1
github.com/spf13/cast 1.5.0 1.10.0
github.com/bufbuild/buf 1.14.0 1.59.0
github.com/douyu/jupiter 0.11.4 0.11.21
github.com/go-swagger/go-swagger 0.30.4 0.33.1
github.com/google/wire 0.5.0 0.7.0
github.com/vektra/mockery/v2 2.19.0 2.53.5
google.golang.org/grpc/cmd/protoc-gen-go-grpc 1.2.0 1.5.1
gorm.io/gen 0.3.21 0.3.27

Updates cirello.io/pglock from 1.14.0 to 1.16.1

Release notes

Sourced from cirello.io/pglock's releases.

Upgrade dependencies

What's Changed

Full Changelog: cirello-io/pglock@v1.16.0...v1.16.1

Use row-level locking to operate underlying table

No release notes provided.

Improve retry on transaction deadlocks; upgrade test dependency

No release notes provided.

Improve log verbosity

... (truncated)

Commits
  • 39a215e build(deps): bump github.com/jackc/pgx/v5 from 5.7.4 to 5.7.5 (#166)
  • bb74b4c build(deps): bump golang.org/x/crypto from 0.37.0 to 0.38.0 (#165)
  • 3c8ffab build(deps): bump golang.org/x/crypto from 0.36.0 to 0.37.0 (#161)
  • e3769b6 build(deps): bump github.com/jackc/pgx/v5 from 5.7.3 to 5.7.4 (#158)
  • 90a7587 build(deps): bump github.com/jackc/pgx/v5 from 5.7.2 to 5.7.3 (#157)
  • 7b6d518 build(deps): bump golang.org/x/crypto from 0.35.0 to 0.36.0 (#156)
  • ab744d3 build(deps): bump golang.org/x/crypto from 0.34.0 to 0.35.0 (#153)
  • 0d99d47 build(deps): bump golang.org/x/crypto from 0.33.0 to 0.34.0 (#152)
  • d11438c build(deps): bump golang.org/x/crypto from 0.31.0 to 0.33.0 (#151)
  • 576278d build(deps): bump golang.org/x/text from 0.21.0 to 0.22.0 (#150)
  • Additional commits viewable in compare view

Updates github.com/BurntSushi/toml from 1.3.2 to 1.5.0

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.5.0

Mostly some small bugfixes, with a few small new features:

  • Add Position.Col, to mark the column an error occurred (#410)

  • Print more detailed errors in the tomlv CLI.

  • Ensure ParseError.Message is always set (#411)

  • Allow custom string types as map keys (#414)

  • Mark meta keys as decoded when using Unmarshaler interface (#426)

  • Fix encoding when nested inline table ends with map (#438)

  • Fix encoding of several layers of embedded structs (#430)

  • Fix ErrorWithPosition panic when there is no newline in the TOML document (#433)

v1.4.0

This version requires Go 1.18

  • Add toml.Marshal() (#405)

  • Require 2-digit hour (#320)

  • Wrap UnmarshalTOML() and UnmarshalText() return values in ParseError for position information (#398)

  • Fix inline tables with dotted keys inside inline arrays (e.g. k=[{a.b=1}]) (#400)

Commits
  • d97def5 Update toml-test
  • d10101f Correct encoding of comma when nested inline table ends with map
  • 75a4f17 Correct encoding of several layers of embedded structs
  • 702f5a6 Minor staticcheck fixes
  • 6f7689d Mark meta keys as decoded when using Unmarshaler interface (#426)
  • 8323983 Remove exception for fuzzer
  • 4664468 Fix ErrorWithPosition panic when less than two lines
  • 211c915 Fix typos in comments, tests, error message (#432)
  • c141a29 Test with Go 1.24 in CI
  • 2918ee7 Fix metadata: do not reuse result of append (#418)
  • Additional commits viewable in compare view

Updates github.com/coocood/freecache from 1.2.3 to 1.2.4

Release notes

Sourced from github.com/coocood/freecache's releases.

v1.2.4

What's Changed

New Contributors

Full Changelog: coocood/freecache@v1.2.3...v1.2.4

Commits
  • c241df0 Add ExpireAt to the iterator return result (#128)
  • a3ea333 Decrease number of allocations during get or set operations (#126)
  • 8480cb3 Add a notice for the cache duration precision issue. (#119)
  • See full diff in compare view

Updates github.com/fatih/color from 1.15.0 to 1.18.0

Release notes

Sourced from github.com/fatih/color's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

v1.17.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.16.0...v1.17.0

v1.16.0

What's Changed

Dependency updates

New Contributors

... (truncated)

Commits
  • 1c8d870 Update README.md
  • 546c2d0 Merge pull request #225 from fatih/add-rgb-api
  • 1ff0f97 Apply suggestions from code review
  • 5723903 Add RGB API support
  • f203fbc Merge pull request #237 from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0
  • 60aa7fb Bump golang.org/x/sys from 0.24.0 to 0.25.0
  • 741c2f4 Merge pull request #236 from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0
  • 0d24b42 Bump golang.org/x/sys from 0.18.0 to 0.24.0
  • cb154c0 Merge pull request #235 from deining/fix-typo
  • 9b9653e Bump GitHub workflow actions
  • Additional commits viewable in compare view

Updates github.com/fsnotify/fsnotify from 1.6.0 to 1.9.0

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.9.0

Changes and fixes

  • all: make BufferedWatcher buffered again (#657)

  • inotify: fix race when adding/removing watches while a watched path is being deleted (#678, #686)

  • inotify: don't send empty event if a watched path is unmounted (#655)

  • inotify: don't register duplicate watches when watching both a symlink and its target; previously that would get "half-added" and removing the second would panic (#679)

  • kqueue: fix watching relative symlinks (#681)

  • kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#682)

  • illumos: don't send error if changed file is deleted while processing the event (#678)

#657: fsnotify/fsnotify#657 #678: fsnotify/fsnotify#678 #686: fsnotify/fsnotify#686 #655: fsnotify/fsnotify#655 #681: fsnotify/fsnotify#681 #679: fsnotify/fsnotify#679 #682: fsnotify/fsnotify#682

v1.8.0

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

v1.7.0

This version of fsnotify needs Go 1.17.

Additions

... (truncated)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.9.0 2024-04-04

Changes and fixes

  • all: make BufferedWatcher buffered again (#657)

  • inotify: fix race when adding/removing watches while a watched path is being deleted (#678, #686)

  • inotify: don't send empty event if a watched path is unmounted (#655)

  • inotify: don't register duplicate watches when watching both a symlink and its target; previously that would get "half-added" and removing the second would panic (#679)

  • kqueue: fix watching relative symlinks (#681)

  • kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#682)

  • illumos: don't send error if changed file is deleted while processing the event (#678)

#657: fsnotify/fsnotify#657 #678: fsnotify/fsnotify#678 #686: fsnotify/fsnotify#686 #655: fsnotify/fsnotify#655 #681: fsnotify/fsnotify#681 #679: fsnotify/fsnotify#679 #682: fsnotify/fsnotify#682

1.8.0 2024-10-31

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

... (truncated)

Commits
  • ae0e792 Release 1.9.0
  • 644fbb6 Add test to ensure Add()/Remove() works when not reading events
  • e7ec5f7 Fix staticcheck in CI
  • d321760 Update changelog
  • dbe0717 Remove AIX/AHFS from README
  • 2d897ca Simplify inotify backend locking
  • 868a000 Test gccgo in CI
  • 8f6d48b Move some shared code to a shared struct
  • e48b91a Add timeout-minutes in GitHub actions
  • c9507a5 Correctly mark pre-existing entries when watching a link to a dir on kqueue
  • Additional commits viewable in compare view

Updates github.com/gin-gonic/gin from 1.9.1 to 1.11.0

Release notes

Sourced from github.com/gin-gonic/gin's releases.

v1.11.0

Changelog

Features

  • 6ca8ddb1aed78d9ffaf984e5489111838242fedb: feat(binding): add BindPlain (#3904) (@​guonaihong)
  • 4ccfa7c275c449990818e46759d5974a953cc1c1: feat(binding): add support for unixMilli and unixMicro (#4190) (@​takanuva15)
  • 9d7c0e9e1a301f417df9dc89a8cadc3bf9063db2: feat(context): GetXxx added support for more go native types (#3633) (@​CC11001100)
  • fb09c825e8e13134daaa90debfda198520e1b347: feat(context): add SetCookieData (#4240) (@​Narita-1095305)
  • f05f966a0824b1d302ee556183e2579c91954266: feat(form): Support default values for collections in form binding (#4048) (@​takanuva15)
  • 3cb30679b5e3021db16c776ed7e70d380586e9ce: feat(form): add array collection format in form binding (#3986) (@​slowhigh)
  • 24d67647cb9b4e0bbdcdec7f0c2086e8004e1572: feat(form): add custom string slice for form tag unmarshal (#3970) (#3971) (@​bruceNu1l)
  • 8791c96960e719ff2f41e24163c5898656cee474: feat(fs): Export, test and document OnlyFilesFS (#3939) (@​joeig)
  • 71496abe6836462e2ed70436b7d72ea2a3585417: feat(fs): Implement loading HTML from http.FileSystem (#4053) (@​sunshineplan)
  • 3ac729dc4a497d360a23b9d7e766c622b3c99f51: feat(gin): support http3 using quic-go/quic-go (#3210) (@​thinkerou)
  • 4621b7ac982335d9a74432e182dd2bfc6d841431: feat(router): add literal colon support (#1432) (#2857) (@​wssccc)
  • dbd8a2515093ad47cadc5c1fface89861a0b765c: feat: added AbortWithStatusPureJSON() in Context (#4290) (@​ddevsr)
  • 688a429d19d8c804447bb889d3635e2c31a5564d: feat: support custom json codec at runtime (#3391) (@​timandy)

Bug fixes

  • 8fb3136664254d7c592127f00d52849caba18a67: Revert "fix(time): binding time with empty value (#4103)" (#4245) (@​appleboy)
  • e737e3e267beb4dc3bab16cc8be59e3902d98a94: fix(binding): prevent duplicate decoding and add validation in decodeToml (#4193) (@​revevide)
  • 4f339e6a35b163d31b30916b37f4176d385f41bd: fix(context): YAML judgment logic in Negotiate (#3966) (@​RedCrazyGhost)
  • 36b0dede4b8c4a67d92c4107cebc5a068364321d: fix(context): check handler is nil (#3413) (@​hktalent)
  • e0d46ded6cb6974d55a255ab122d1aa6ca0cd60e: fix(context): verify URL is Non-nil in initQueryCache() (#3969) (@​adrianosela)
  • dd33ff793861cee3baa77d575ff319119c366f3a: fix(docs): missing go markdown codeblock (#4266) (@​vdusart)
  • b38c59de7fef67400a1c98efeae700a689c45783: fix(errors): change Unwrap method receiver to value type (#4232) (@​OrkhanAlikhanov)
  • 28e57f58b184b2305ace192e02496bb89f6fd8cb: fix(form): Set default value for form fields (#4047) (@​ahmadSaeedGoda)
  • 626d55b0c02937645c21774cacc021713de88604: fix(gin): Do not panic when handling method not allowed on empty tree (#4003) (@​phsym)
  • 7d147928ee232fce156ea7ce8ae6329e148aeb41: fix(gin): data race warning for gin mode (#1580) (@​kplachkov)
  • c677ccc40a60386565dd0d755efacb85d153feca: fix(go): invalid Go toolchain version (#3961) (@​thinkerou)
  • 3319038418656a268c889393cb2dd4224c4469ec: fix(readme): fix broken link to English documentation (#4222) (@​eduardo-ax)
  • 674522db91d637d179c16c372d87756ea26fa089: fix(time): binding time with empty value (#4103) (@​ksw2000)
  • ea53388e6ee4a6a0a1647b390c56eeed780e7e56: fix(tree): Keep panic infos consistent when wildcard type build faild (#4077) (@​kingcanfish)
  • 8763f33c65f7df8be5b9fe7504ab7fcf20abb41d: fix: prevent middleware re-entry issue in HandleContext (#3987) (@​bound2)
  • 7a1b655074c313f9491c83bb8ea164cdc4a9afe9: fix: sonic on arm64 (#4234) (@​yashgorana)
  • 5826722a87cf5855fcc4b794cbef11612352771d: fix: version number discrepancy (#4299) (@​suwakei)

Enhancements

  • 40725d85badd647870df6f9fa7a75ac76341f804: chore(bind): return 413 status code when error is http.MaxBytesError (#4227) (@​ItalyPaleAle)
  • f875d8728306c2c2c6f504900ab08cd1d8c47f12: chore(context): test context initialization and handler logic (#4087) (@​appleboy)
  • e7693e67c23005743502962d3bb9839a354d6688: chore(deps): bump actions/setup-go from 5 to 6 (#4351) (@​dependabot[bot])
  • afa0c31d97e1b112ccfe7652957f7d8514580c72: chore(deps): bump github.com/gin-contrib/sse from 0.1.0 to 1.1.0 (#4216) (@​dependabot[bot])
  • 255af882db4baf0ed6209f1a5471f1663c5d0060: chore(deps): bump github.com/go-playground/validator/v10 (#4208) (@​dependabot[bot])
  • 545fd74379a0b167a918e38626ae5f7eb83fb243: chore(deps): bump github.com/go-playground/validator/v10 (#4289) (@​dependabot[bot])
  • c3c8620a7fb4e09c7845feca4e8e8a8678a2685d: chore(deps): bump github.com/go-playground/validator/v10 from 10.20.0 to 10.22.1 (#4052) (@​dependabot[bot])
  • cf32d2dcf8c7534f59727c5e213e45f2412c593a: chore(deps): bump github.com/pelletier/go-toml/v2 from 2.2.2 to 2.2.4 (#4212) (@​dependabot[bot])
  • bb824731032856460aa3ffc23bd90e11bf7d5199: chore(deps): bump github.com/quic-go/quic-go from 0.48.2 to 0.50.1 (#4197) (@​dependabot[bot])
  • 61c2b1c28f0c5a754330545e31f02cd6d6f7944e: chore(deps): bump github.com/quic-go/quic-go from 0.51.0 to 0.52.0 (#4250) (@​dependabot[bot])
  • b7d6308bcc84066df79a047ae363a6120fe87808: chore(deps): bump github.com/quic-go/quic-go from 0.52.0 to 0.53.0 (#4281) (@​dependabot[bot])
  • 077a2f39c85700ba0823f85ed29cec0c8f2cbdfc: chore(deps): bump github.com/quic-go/quic-go from 0.53.0 to 0.54.0 (#4328) (@​dependabot[bot])
  • 46150257b3eec60e3e0bf1cee7c03439099aef83: chore(deps): bump github.com/stretchr/testify from 1.10.0 to 1.11.1 (#4347) (@​dependabot[bot])
  • a6287825c95821a378a34f8a5c9139ea1f6ebd96: chore(deps): bump github.com/ugorji/go/codec from 1.2.12 to 1.3.0 (#4268) (@​dependabot[bot])
  • cc4e11438cd6c0bcc632fe3492d3817dfa21c337: chore(deps): bump golang.org/x/net from 0.25.0 to 0.27.0 (#4013) (@​dependabot[bot])

... (truncated)

Changelog

Sourced from github.com/gin-gonic/gin's changelog.

Gin v1.11.0

Features

  • feat(gin): Experimental support for HTTP/3 using quic-go/quic-go (#3210)
  • feat(form): add array collection format in form binding (#3986), add custom string slice for form tag unmarshal (#3970)
  • feat(binding): add BindPlain (#3904)
  • feat(fs): Export, test and document OnlyFilesFS (#3939)
  • feat(binding): add support for unixMilli and unixMicro (#4190)
  • feat(form): Support default values for collections in form binding (#4048)
  • feat(context): GetXxx added support for more go native types (#3633)

Enhancements

  • perf(context): optimize getMapFromFormData performance (#4339)
  • refactor(tree): replace string(/) with "/" in node.insertChild (#4354)
  • refactor(render): remove headers parameter from writeHeader (#4353)
  • refactor(context): simplify "GetType()" functions (#4080)
  • refactor(slice): simplify SliceValidationError Error method (#3910)
  • refactor(context):Avoid using filepath.Dir twice in SaveUploadedFile (#4181)
  • refactor(context): refactor context handling and improve test robustness (#4066)
  • refactor(binding): use strings.Cut to replace strings.Index (#3522)
  • refactor(context): add an optional permission parameter to SaveUploadedFile (#4068)
  • refactor(context): verify URL is Non-nil in initQueryCache() (#3969)
  • refactor(context): YAML judgment logic in Negotiate (#3966)
  • tree: replace the self-defined 'min' to official one (#3975)
  • context: Remove redundant filepath.Dir usage (#4181)

Bug Fixes

  • fix: prevent middleware re-entry issue in HandleContext (#3987)
  • fix(binding): prevent duplicate decoding and add validation in decodeToml (#4193)
  • fix(gin): Do not panic when handling method not allowed on empty tree (#4003)
  • fix(gin): data race warning for gin mode (#1580)
  • fix(context): verify URL is Non-nil in initQueryCache() (#3969)
  • fix(context): YAML judgment logic in Negotiate (#3966)
  • fix(context): check handler is nil (#3413)
  • fix(readme): fix broken link to English documentation (#4222)
  • fix(tree): Keep panic infos consistent when wildcard type build faild (#4077)

Build process updates / CI

  • ci: integrate Trivy vulnerability scanning into CI workflow (#4359)
  • ci: support Go 1.25 in CI/CD (#4341)
  • build(deps): upgrade github.com/bytedance/sonic from v1.13.2 to v1.14.0 (#4342)
  • ci: add Go version 1.24 to GitHub Actions (#4154)
  • build: update Gin minimum Go version to 1.21 (#3960)
  • ci(lint): enable new linters (testifylint, usestdlibvars, perfsprint, etc.) (#4010, #4091, #4090)
  • ci(lint): update workflows and improve test request consistency (#4126)

... (truncated)

Commits
  • 6ad6205 docs(changelog): upgrade Gin to v1.11.0 and add release notes (#4361)
  • 7858527 docs(changelog): update release notes for Gin v1.10.1 (#4360)
  • cb000f5 ci: integrate Trivy vulnerability scanning into CI workflow (#4359)
  • 2119046 ci: support Go 1.25 (#4341)
  • da372fc build(deps): upgrade github.com/bytedance/sonic from v1.13.2 to v1.14.0 (#4342)
  • e198f6e refactor(render): remove headers parameter from writeHeader (#4353)
  • cca98d2 chore(deps): bump google.golang.org/protobuf from 1.36.8 to 1.36.9 (#4356)
  • 9b1e353 refactor(tree): replace string(/) with "/" in node.insertChild (#4354)
  • f9bd00a perf(context): optimize getMapFromFormData performance (#4339)
  • 28172fa chore(deps): bump google.golang.org/protobuf from 1.36.6 to 1.36.8 (#4346)
  • Additional commits viewable in compare view

Updates github.com/go-resty/resty/v2 from 2.11.0 to 2.16.5

Release notes

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

v2.16.5

Release Notes

Bug Fixes

Documentation

Full Changelog: go-resty/resty@v2.16.4...v2.16.5

v2.16.4

Release Notes

Bug Fixes

Documentation

New Contributors

Full Changelog: go-resty/resty@v2.16.3...v2.16.4

v2.16.3

Release Notes

Full Changelog: go-resty/resty@v2.16.2...v2.16.3

v2.16.2

Release Notes

Bug Fixes

  • fix: buffer reuse and back to pool and release v2.16.2 by @​jeevatkm in <...

    Description has been truncated

…th 47 updates

Bumps the gomod-normal-deps group with 22 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cirello.io/pglock](https://github.com/cirello-io/pglock) | `1.14.0` | `1.16.1` |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.3.2` | `1.5.0` |
| [github.com/coocood/freecache](https://github.com/coocood/freecache) | `1.2.3` | `1.2.4` |
| [github.com/fatih/color](https://github.com/fatih/color) | `1.15.0` | `1.18.0` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.6.0` | `1.9.0` |
| [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) | `1.9.1` | `1.11.0` |
| [github.com/go-resty/resty/v2](https://github.com/go-resty/resty) | `2.11.0` | `2.16.5` |
| [github.com/gorilla/websocket](https://github.com/gorilla/websocket) | `1.5.0` | `1.5.3` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.27.1` | `2.27.3` |
| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.11.1` | `4.13.4` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.12.0` | `2.27.1` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.38.1` | `1.52.0` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.5.1` | `1.10.0` |
| [github.com/urfave/cli](https://github.com/urfave/cli) | `1.22.14` | `1.22.17` |
| [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) | `1.48.0` | `1.68.0` |
| [go.etcd.io/etcd/api/v3](https://github.com/etcd-io/etcd) | `3.5.9` | `3.6.5` |
| [go.etcd.io/etcd/client/v3](https://github.com/etcd-io/etcd) | `3.5.9` | `3.6.5` |
| [go.mongodb.org/mongo-driver](https://github.com/mongodb/mongo-go-driver) | `1.12.1` | `1.17.4` |
| [go.opentelemetry.io/otel](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [go.opentelemetry.io/otel/bridge/opentracing](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc](https://github.com/open-telemetry/opentelemetry-go) | `1.37.0` | `1.38.0` |
| [gorm.io/driver/mysql](https://github.com/go-gorm/mysql) | `1.4.7` | `1.6.0` |

Bumps the gomod-normal-deps group with 7 updates in the /test/e2e directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.3.2` | `1.5.0` |
| [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) | `1.9.1` | `1.11.0` |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.27.1` | `2.27.3` |
| [github.com/labstack/echo/v4](https://github.com/labstack/echo) | `4.11.1` | `4.13.4` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.12.0` | `2.27.1` |
| [github.com/samber/lo](https://github.com/samber/lo) | `1.38.1` | `1.52.0` |
| [github.com/valyala/fasthttp](https://github.com/valyala/fasthttp) | `1.48.0` | `1.68.0` |

Bumps the gomod-normal-deps group with 10 updates in the /tools directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/grpc-ecosystem/grpc-gateway/v2](https://github.com/grpc-ecosystem/grpc-gateway) | `2.15.2` | `2.27.3` |
| [github.com/onsi/ginkgo/v2](https://github.com/onsi/ginkgo) | `2.9.1` | `2.27.1` |
| [github.com/spf13/cast](https://github.com/spf13/cast) | `1.5.0` | `1.10.0` |
| [github.com/bufbuild/buf](https://github.com/bufbuild/buf) | `1.14.0` | `1.59.0` |
| [github.com/douyu/jupiter](https://github.com/douyu/jupiter) | `0.11.4` | `0.11.21` |
| [github.com/go-swagger/go-swagger](https://github.com/go-swagger/go-swagger) | `0.30.4` | `0.33.1` |
| [github.com/google/wire](https://github.com/google/wire) | `0.5.0` | `0.7.0` |
| [github.com/vektra/mockery/v2](https://github.com/vektra/mockery) | `2.19.0` | `2.53.5` |
| [google.golang.org/grpc/cmd/protoc-gen-go-grpc](https://github.com/grpc/grpc-go) | `1.2.0` | `1.5.1` |
| [gorm.io/gen](https://github.com/go-gorm/gen) | `0.3.21` | `0.3.27` |



Updates `cirello.io/pglock` from 1.14.0 to 1.16.1
- [Release notes](https://github.com/cirello-io/pglock/releases)
- [Commits](cirello-io/pglock@v1.14.0...v1.16.1)

Updates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.3.2...v1.5.0)

Updates `github.com/coocood/freecache` from 1.2.3 to 1.2.4
- [Release notes](https://github.com/coocood/freecache/releases)
- [Commits](coocood/freecache@v1.2.3...v1.2.4)

Updates `github.com/fatih/color` from 1.15.0 to 1.18.0
- [Release notes](https://github.com/fatih/color/releases)
- [Commits](fatih/color@v1.15.0...v1.18.0)

Updates `github.com/fsnotify/fsnotify` from 1.6.0 to 1.9.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.6.0...v1.9.0)

Updates `github.com/gin-gonic/gin` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.9.1...v1.11.0)

Updates `github.com/go-resty/resty/v2` from 2.11.0 to 2.16.5
- [Release notes](https://github.com/go-resty/resty/releases)
- [Commits](go-resty/resty@v2.11.0...v2.16.5)

Updates `github.com/gorilla/websocket` from 1.5.0 to 1.5.3
- [Release notes](https://github.com/gorilla/websocket/releases)
- [Commits](gorilla/websocket@v1.5.0...v1.5.3)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/labstack/echo/v4` from 4.11.1 to 4.13.4
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.11.1...v4.13.4)

Updates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14
- [Commits](mattn/go-colorable@v0.1.13...v0.1.14)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/onsi/gomega` from 1.27.10 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.27.10...v1.38.2)

Updates `github.com/prometheus/client_golang` from 1.16.0 to 1.19.1
- [Release notes](https://github.com/prometheus/client_golang/releases)
- [Changelog](https://github.com/prometheus/client_golang/blob/main/CHANGELOG.md)
- [Commits](prometheus/client_golang@v1.16.0...v1.19.1)

Updates `github.com/samber/lo` from 1.38.1 to 1.52.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.38.1...v1.52.0)

Updates `github.com/spf13/cast` from 1.5.1 to 1.10.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.5.1...v1.10.0)

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

Updates `github.com/urfave/cli` from 1.22.14 to 1.22.17
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v1.22.14...v1.22.17)

Updates `github.com/valyala/fasthttp` from 1.48.0 to 1.68.0
- [Release notes](https://github.com/valyala/fasthttp/releases)
- [Commits](valyala/fasthttp@v1.48.0...v1.68.0)

Updates `go.etcd.io/etcd/api/v3` from 3.5.9 to 3.6.5
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.9...v3.6.5)

Updates `go.etcd.io/etcd/client/v3` from 3.5.9 to 3.6.5
- [Release notes](https://github.com/etcd-io/etcd/releases)
- [Commits](etcd-io/etcd@v3.5.9...v3.6.5)

Updates `go.mongodb.org/mongo-driver` from 1.12.1 to 1.17.4
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v1.12.1...v1.17.4)

Updates `go.opentelemetry.io/otel` from 1.37.0 to 1.38.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.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/bridge/opentracing` from 1.37.0 to 1.38.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.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc` from 1.37.0 to 1.38.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.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/sdk` from 1.37.0 to 1.38.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.37.0...v1.38.0)

Updates `go.opentelemetry.io/otel/trace` from 1.37.0 to 1.38.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.37.0...v1.38.0)

Updates `go.uber.org/automaxprocs` from 1.5.3 to 1.6.0
- [Release notes](https://github.com/uber-go/automaxprocs/releases)
- [Changelog](https://github.com/uber-go/automaxprocs/blob/master/CHANGELOG.md)
- [Commits](uber-go/automaxprocs@v1.5.3...v1.6.0)

Updates `go.uber.org/zap` from 1.25.0 to 1.27.0
- [Release notes](https://github.com/uber-go/zap/releases)
- [Changelog](https://github.com/uber-go/zap/blob/master/CHANGELOG.md)
- [Commits](uber-go/zap@v1.25.0...v1.27.0)

Updates `golang.org/x/mod` from 0.25.0 to 0.28.0
- [Commits](golang/mod@v0.25.0...v0.28.0)

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

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

Updates `google.golang.org/genproto/googleapis/api` from 0.0.0-20250603155806-513f23925822 to 0.0.0-20250929231259-57b25ae835d4
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/genproto/googleapis/rpc` from 0.0.0-20250603155806-513f23925822 to 0.0.0-20250929231259-57b25ae835d4
- [Commits](https://github.com/googleapis/go-genproto/commits)

Updates `google.golang.org/grpc` from 1.73.0 to 1.75.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.73.0...v1.75.1)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `gorm.io/driver/mysql` from 1.4.7 to 1.6.0
- [Commits](go-gorm/mysql@v1.4.7...v1.6.0)

Updates `gorm.io/gorm` from 1.24.6 to 1.30.0
- [Release notes](https://github.com/go-gorm/gorm/releases)
- [Commits](go-gorm/gorm@v1.24.6...v1.30.0)

Updates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.3.2...v1.5.0)

Updates `github.com/gin-gonic/gin` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.9.1...v1.11.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/labstack/echo/v4` from 4.11.1 to 4.13.4
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.11.1...v4.13.4)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/onsi/gomega` from 1.27.10 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.27.10...v1.38.2)

Updates `github.com/samber/lo` from 1.38.1 to 1.52.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.38.1...v1.52.0)

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

Updates `github.com/valyala/fasthttp` from 1.48.0 to 1.68.0
- [Release notes](https://github.com/valyala/fasthttp/releases)
- [Commits](valyala/fasthttp@v1.48.0...v1.68.0)

Updates `google.golang.org/grpc` from 1.73.0 to 1.75.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.73.0...v1.75.1)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/spf13/cast` from 1.5.1 to 1.10.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.5.1...v1.10.0)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.3.2...v1.5.0)

Updates `github.com/gin-gonic/gin` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.9.1...v1.11.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/labstack/echo/v4` from 4.11.1 to 4.13.4
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.11.1...v4.13.4)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/onsi/gomega` from 1.27.10 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.27.10...v1.38.2)

Updates `github.com/samber/lo` from 1.38.1 to 1.52.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.38.1...v1.52.0)

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

Updates `github.com/valyala/fasthttp` from 1.48.0 to 1.68.0
- [Release notes](https://github.com/valyala/fasthttp/releases)
- [Commits](valyala/fasthttp@v1.48.0...v1.68.0)

Updates `google.golang.org/grpc` from 1.73.0 to 1.75.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.73.0...v1.75.1)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `github.com/BurntSushi/toml` from 1.3.2 to 1.5.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.3.2...v1.5.0)

Updates `github.com/gin-gonic/gin` from 1.9.1 to 1.11.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.9.1...v1.11.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/labstack/echo/v4` from 4.11.1 to 4.13.4
- [Release notes](https://github.com/labstack/echo/releases)
- [Changelog](https://github.com/labstack/echo/blob/master/CHANGELOG.md)
- [Commits](labstack/echo@v4.11.1...v4.13.4)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/onsi/gomega` from 1.27.10 to 1.38.2
- [Release notes](https://github.com/onsi/gomega/releases)
- [Changelog](https://github.com/onsi/gomega/blob/master/CHANGELOG.md)
- [Commits](onsi/gomega@v1.27.10...v1.38.2)

Updates `github.com/samber/lo` from 1.38.1 to 1.52.0
- [Release notes](https://github.com/samber/lo/releases)
- [Commits](samber/lo@v1.38.1...v1.52.0)

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

Updates `github.com/valyala/fasthttp` from 1.48.0 to 1.68.0
- [Release notes](https://github.com/valyala/fasthttp/releases)
- [Commits](valyala/fasthttp@v1.48.0...v1.68.0)

Updates `google.golang.org/grpc` from 1.73.0 to 1.75.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.73.0...v1.75.1)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.27.1 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/onsi/ginkgo/v2` from 2.12.0 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `google.golang.org/protobuf` from 1.36.6 to 1.36.10

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.15.2 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/onsi/ginkgo/v2` from 2.9.1 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/spf13/cast` from 1.5.0 to 1.10.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.5.1...v1.10.0)

Updates `google.golang.org/protobuf` from 1.30.0 to 1.36.10

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.15.2 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/onsi/ginkgo/v2` from 2.9.1 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `google.golang.org/protobuf` from 1.30.0 to 1.36.10

Updates `github.com/bufbuild/buf` from 1.14.0 to 1.59.0
- [Release notes](https://github.com/bufbuild/buf/releases)
- [Changelog](https://github.com/bufbuild/buf/blob/main/CHANGELOG.md)
- [Commits](bufbuild/buf@v1.14.0...v1.59.0)

Updates `github.com/douyu/jupiter` from 0.11.4 to 0.11.21
- [Release notes](https://github.com/douyu/jupiter/releases)
- [Changelog](https://github.com/douyu/jupiter/blob/master/.goreleaser.yml)
- [Commits](v0.11.4...v0.11.21)

Updates `github.com/envoyproxy/protoc-gen-validate` from 0.9.1 to 1.2.1
- [Release notes](https://github.com/envoyproxy/protoc-gen-validate/releases)
- [Changelog](https://github.com/bufbuild/protoc-gen-validate/blob/main/.goreleaser.yaml)
- [Commits](bufbuild/protoc-gen-validate@v0.9.1...v1.2.1)

Updates `github.com/go-swagger/go-swagger` from 0.30.4 to 0.33.1
- [Release notes](https://github.com/go-swagger/go-swagger/releases)
- [Changelog](https://github.com/go-swagger/go-swagger/blob/master/.goreleaser.yml)
- [Commits](go-swagger/go-swagger@v0.30.4...v0.33.1)

Updates `github.com/google/wire` from 0.5.0 to 0.7.0
- [Release notes](https://github.com/google/wire/releases)
- [Commits](google/wire@v0.5.0...v0.7.0)

Updates `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.15.2 to 2.27.3
- [Release notes](https://github.com/grpc-ecosystem/grpc-gateway/releases)
- [Changelog](https://github.com/grpc-ecosystem/grpc-gateway/blob/main/.goreleaser.yml)
- [Commits](grpc-ecosystem/grpc-gateway@v2.27.1...v2.27.3)

Updates `github.com/onsi/ginkgo/v2` from 2.9.1 to 2.27.1
- [Release notes](https://github.com/onsi/ginkgo/releases)
- [Changelog](https://github.com/onsi/ginkgo/blob/master/CHANGELOG.md)
- [Commits](onsi/ginkgo@v2.12.0...v2.27.1)

Updates `github.com/spf13/cast` from 1.5.0 to 1.10.0
- [Release notes](https://github.com/spf13/cast/releases)
- [Commits](spf13/cast@v1.5.1...v1.10.0)

Updates `github.com/srikrsna/protoc-gen-gotag` from 0.6.2 to 1.0.2
- [Release notes](https://github.com/srikrsna/protoc-gen-gotag/releases)
- [Commits](srikrsna/protoc-gen-gotag@v0.6.2...v1.0.2)

Updates `github.com/vektra/mockery/v2` from 2.19.0 to 2.53.5
- [Release notes](https://github.com/vektra/mockery/releases)
- [Changelog](https://github.com/vektra/mockery/blob/v3/.goreleaser.yml)
- [Commits](vektra/mockery@v2.19.0...v2.53.5)

Updates `google.golang.org/grpc/cmd/protoc-gen-go-grpc` from 1.2.0 to 1.5.1
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.2.0...v1.5.1)

Updates `google.golang.org/protobuf` from 1.30.0 to 1.36.10

Updates `gorm.io/gen` from 0.3.21 to 0.3.27
- [Release notes](https://github.com/go-gorm/gen/releases)
- [Commits](go-gorm/gen@v0.3.21...v0.3.27)

---
updated-dependencies:
- dependency-name: cirello.io/pglock
  dependency-version: 1.16.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/coocood/freecache
  dependency-version: 1.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/fatih/color
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/fsnotify/fsnotify
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/gin-gonic/gin
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/go-resty/resty/v2
  dependency-version: 2.16.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/gorilla/websocket
  dependency-version: 1.5.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/labstack/echo/v4
  dependency-version: 4.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/mattn/go-colorable
  dependency-version: 0.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/prometheus/client_golang
  dependency-version: 1.19.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/samber/lo
  dependency-version: 1.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/spf13/cast
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/urfave/cli
  dependency-version: 1.22.17
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/valyala/fasthttp
  dependency-version: 1.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.etcd.io/etcd/api/v3
  dependency-version: 3.6.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.etcd.io/etcd/client/v3
  dependency-version: 3.6.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.mongodb.org/mongo-driver
  dependency-version: 1.17.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.opentelemetry.io/otel
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.opentelemetry.io/otel/bridge/opentracing
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.opentelemetry.io/otel/sdk
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.opentelemetry.io/otel/trace
  dependency-version: 1.38.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.uber.org/automaxprocs
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: go.uber.org/zap
  dependency-version: 1.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: golang.org/x/mod
  dependency-version: 0.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: golang.org/x/sync
  dependency-version: 0.17.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: golang.org/x/text
  dependency-version: 0.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/genproto/googleapis/api
  dependency-version: 0.0.0-20250929231259-57b25ae835d4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/genproto/googleapis/rpc
  dependency-version: 0.0.0-20250929231259-57b25ae835d4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: gorm.io/driver/mysql
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: gorm.io/gorm
  dependency-version: 1.30.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/gin-gonic/gin
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/labstack/echo/v4
  dependency-version: 4.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/samber/lo
  dependency-version: 1.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/valyala/fasthttp
  dependency-version: 1.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/spf13/cast
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/gin-gonic/gin
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/labstack/echo/v4
  dependency-version: 4.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/samber/lo
  dependency-version: 1.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/valyala/fasthttp
  dependency-version: 1.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/gin-gonic/gin
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/labstack/echo/v4
  dependency-version: 4.13.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/gomega
  dependency-version: 1.38.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/samber/lo
  dependency-version: 1.52.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/valyala/fasthttp
  dependency-version: 1.68.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/grpc
  dependency-version: 1.75.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/spf13/cast
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/bufbuild/buf
  dependency-version: 1.59.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/douyu/jupiter
  dependency-version: 0.11.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
- dependency-name: github.com/envoyproxy/protoc-gen-validate
  dependency-version: 1.2.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod-normal-deps
- dependency-name: github.com/go-swagger/go-swagger
  dependency-version: 0.33.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/google/wire
  dependency-version: 0.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/grpc-ecosystem/grpc-gateway/v2
  dependency-version: 2.27.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/onsi/ginkgo/v2
  dependency-version: 2.27.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/spf13/cast
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: github.com/srikrsna/protoc-gen-gotag
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: gomod-normal-deps
- dependency-name: github.com/vektra/mockery/v2
  dependency-version: 2.53.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/grpc/cmd/protoc-gen-go-grpc
  dependency-version: 1.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: gomod-normal-deps
- dependency-name: gorm.io/gen
  dependency-version: 0.3.27
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: gomod-normal-deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 27, 2025
@codecov
Copy link

codecov bot commented Oct 27, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 33.49%. Comparing base (d458bb6) to head (01eafdc).

❗ There is a different number of reports uploaded between BASE (d458bb6) and HEAD (01eafdc). Click for more details.

HEAD has 1 upload less than BASE
Flag BASE (d458bb6) HEAD (01eafdc)
2 1
Additional details and impacted files
@@             Coverage Diff             @@
##           master    #1215       +/-   ##
===========================================
- Coverage   47.12%   33.49%   -13.63%     
===========================================
  Files         236      163       -73     
  Lines       10878     7303     -3575     
===========================================
- Hits         5126     2446     -2680     
+ Misses       5293     4623      -670     
+ Partials      459      234      -225     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 17, 2025

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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.

1 participant