Skip to content

Bump the go-mod group across 1 directory with 21 updates#128

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-mod-c78e18513d
Open

Bump the go-mod group across 1 directory with 21 updates#128
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-mod-c78e18513d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github May 15, 2026

Copy link
Copy Markdown
Contributor

Bumps the go-mod group with 16 updates in the / directory:

Package From To
github.com/DIMO-Network/cloudevent 0.2.6 1.0.4
github.com/DIMO-Network/model-garage 1.0.9 1.0.13
github.com/DIMO-Network/server-garage 0.0.5 0.4.0
github.com/IBM/sarama 1.46.2 1.50.2
github.com/ThreeDotsLabs/watermill 1.5.1 1.5.2
github.com/aarondl/sqlboiler/v4 4.19.5 4.19.7
github.com/ethereum/go-ethereum 1.17.1 1.17.3
github.com/go-jose/go-jose/v4 4.1.3 4.1.4
github.com/gofiber/fiber/v2 2.52.12 2.52.13
github.com/google/cel-go 0.26.1 0.28.1
github.com/lib/pq 1.10.9 1.12.3
github.com/pressly/goose/v3 3.27.0 3.27.1
github.com/rs/zerolog 1.34.0 1.35.1
github.com/testcontainers/testcontainers-go 0.40.0 0.42.0
github.com/testcontainers/testcontainers-go/modules/kafka 0.39.0 0.42.0
github.com/testcontainers/testcontainers-go/modules/postgres 0.39.0 0.42.0

Updates github.com/DIMO-Network/cloudevent from 0.2.6 to 1.0.4

Release notes

Sourced from github.com/DIMO-Network/cloudevent's releases.

v0.2.11

Full Changelog: DIMO-Network/cloudevent@v0.2.10...v0.2.11

v0.2.10

Full Changelog: DIMO-Network/cloudevent@v0.2.9...v0.2.10

v0.2.9

What's Changed

Full Changelog: DIMO-Network/cloudevent@v0.2.8...v0.2.9

v0.2.8

What's Changed

Full Changelog: DIMO-Network/cloudevent@v0.2.7...v0.2.8

v0.2.7

What's Changed

New Contributors

Full Changelog: DIMO-Network/cloudevent@v0.2.6...v0.2.7

Commits

Updates github.com/DIMO-Network/model-garage from 1.0.9 to 1.0.13

Release notes

Sourced from github.com/DIMO-Network/model-garage's releases.

v1.0.12

What's Changed

Full Changelog: DIMO-Network/model-garage@v1.0.11...v1.0.12

v1.0.11

What's Changed

Full Changelog: DIMO-Network/model-garage@v1.0.10...v1.0.11

v1.0.10

What's Changed

Full Changelog: DIMO-Network/model-garage@v1.0.9...v1.0.10

Commits
  • 04f2237 feat(migrations): signal_latest + summary tables (v1.0.13) (#263)
  • 2826475 Use the recommended golangci-lint install URL (#262)
  • f3ee34d Strip leading padding when decoding Ruptela VIN (#261)
  • 951f428 Add some IF EXISTS to the projection migration (#259)
  • 4115aaa Add latest/summary projections on signal and event tables (#257)
  • See full diff in compare view

Updates github.com/DIMO-Network/server-garage from 0.0.5 to 0.4.0

Release notes

Sourced from github.com/DIMO-Network/server-garage's releases.

v0.4.0 — mcpserver executor options

What's Changed

  • mcpserver.ExecutorOptionNewGQLGenExecutor(es, opts ...ExecutorOption) exposes the underlying gqlgen *executor.Executor so services can register handler extensions (billing, complexity limits, query recording, metrics) and error presenters on the MCP path. Source-compatible with existing callers.
  • Strict selection template keysSelectionTemplate parses with missingkey=error; tool calls omitting a templated key get a clear render error instead of <no value> spliced into the executed GraphQL query.
  • CI — golangci-lint pinned to v2.12.1 (v2.12.2 artifacts fail installer checksum verification).

Full Changelog: DIMO-Network/server-garage@v0.3.0...v0.4.0

v0.3.0 — @​mcpToolArg tool-only arguments

What's new

  • Repeatable @mcpToolArg(name, type, description) directive for declaring MCP tool arguments that exist purely to feed SelectionTemplate — no changes needed to the underlying GraphQL field. Lets templated selections (v0.2.0) work without modifying field signatures. See PR #35.
  • ArgDefinition.ToolOnly + stripping of those args from GraphQL variables before executor invocation.
  • Small type-string parser so the directive's type: argument can name any input/scalar/list already in the schema ([Foo!]!, [String!]!, Int, ...).

Example

signals(tokenId: Int!, interval: String!, from: Time!, to: Time!, filter: SignalFilter): [SignalAggregations!]
  @mcpTool(
    name: "get_signals_time_series"
    description: "..."
    selection: "timestamp{{range .signalRequests}} {{.name}}(agg: {{.agg}}){{end}}"
  )
  @mcpToolArg(
    name: "signalRequests"
    type: "[SignalAggregationRequest!]!"
    description: "..."
  )

The GraphQL signals field is unchanged. The MCP tool gets a required signalRequests input; on each call the template renders it into a concrete selection set and signalRequests is dropped before executing.

Compat

Fully additive. Existing @mcpTool-only usage (static or templated) is unaffected.

v0.2.0 — templated @​mcpTool selections

What's new

  • @mcpTool(selection: ...) now accepts Go text/template syntax. When a selection contains {{, mcpgen emits it as SelectionTemplate on ToolDefinition and puts SelectionPlaceholder in the query. At call time mcpserver renders the template against the call's argument map and splices the result into the query. See PR #34.
  • Static selections keep working unchanged.

Enables shortcut tools with argument-driven selection sets — for example, a signals time-series tool where each {name, agg} pair in a tool argument becomes its own sub-field in the GraphQL selection.

Notes

  • Adds SelectionTemplate field to ToolDefinition and exports SelectionPlaceholder constant.
  • registerShortcutTools now returns an error (package-internal; New propagates it).

... (truncated)

Commits

Updates github.com/DIMO-Network/shared from 1.0.7 to 1.1.5

Release notes

Sourced from github.com/DIMO-Network/shared's releases.

v1.1.5

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.4...v1.1.5

v1.1.4

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.3...v1.1.4

v1.1.3

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.2...v1.1.3

v1.1.2

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.1...v1.1.2

v1.1.1

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.0...v1.1.1

v1.1.0

What's Changed

Full Changelog: DIMO-Network/shared@v1.0.9...v1.1.0

v1.0.9

What's Changed

Full Changelog: DIMO-Network/shared@v1.0.8...v1.0.9

v1.0.8

... (truncated)

Commits

Updates github.com/DIMO-Network/token-exchange-api from 0.3.8-0.20251015163407-530d08daccd8 to 0.4.0

Release notes

Sourced from github.com/DIMO-Network/token-exchange-api's releases.

v0.4.0

What's Changed

Full Changelog: DIMO-Network/token-exchange-api@v0.3.8...v0.4.0

v0.3.8

Full Changelog: DIMO-Network/token-exchange-api@v0.3.7...v0.3.8

Commits

Updates github.com/IBM/sarama from 1.46.2 to 1.50.2

Release notes

Sourced from github.com/IBM/sarama's releases.

Version 1.50.2 (2026-06-05)

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

Full Changelog: IBM/sarama@v1.50.1...v1.50.2

Version 1.50.1 (2026-05-27)

What's Changed

🐛 Fixes

  • fix: correct requiredVersion for V8 JoinGroup and add protocol version placeholders by @​dnwe in IBM/sarama#3585

Full Changelog: IBM/sarama@v1.50.0...v1.50.1

Version 1.50.0 (2026-05-27)

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

... (truncated)

Changelog

Sourced from github.com/IBM/sarama's changelog.

Version 1.50.2 (2026-06-05)

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

Full Changelog: IBM/sarama@v1.50.1...v1.50.2

Version 1.50.1 (2026-05-27)

What's Changed

🐛 Fixes

  • fix: correct requiredVersion for V8 JoinGroup and add protocol version placeholders by @​dnwe in IBM/sarama#3585

Full Changelog: IBM/sarama@v1.50.0...v1.50.1

Version 1.50.0 (2026-05-27)

What's Changed

🎉 New Features / Improvements

🐛 Fixes

📦 Dependency updates

🔧 Maintenance

... (truncated)

Commits
  • 959f157 feat(consumer): option to cap decompressed batch size (#3604)
  • f6d1c19 feat(admin): add DescribeConfigs for multiple resources (#3600)
  • 3b4f72d chore(ci): Update docker dependencies (#3603)
  • 870f951 chore(ci): bump actions/checkout from 6.0.2 to 6.0.3 in the actions group (#3...
  • 5cb411e chore(ci): bump github/codeql-action from 4.36.0 to 4.36.1 (#3602)
  • 23ebd06 feat(protocol): add support for DescribeConfigs v3 and v4 (#3596)
  • 45b4840 fix(admin): retry ACL and SCRAM ops on stale controller (#3598)
  • 3248a77 feat(admin): add protocol support for DeleteRecords v2 (KIP-482) (#3594)
  • 810caff feat(txn): support consumer group metadata in TxnOffsetCommit v3 (#3593)
  • 94ffb2b fix(deps): update module github.com/pierrec/lz4/v4 to v4.1.27 (#3597)
  • Additional commits viewable in compare view

Updates github.com/ThreeDotsLabs/watermill from 1.5.1 to 1.5.2

Release notes

Sourced from github.com/ThreeDotsLabs/watermill's releases.

v1.5.2

What's Changed

New Contributors

Full Changelog: ThreeDotsLabs/watermill@v1.5.1...v1.5.2

Commits
  • 19b6816 Restore PR CI (#682)
  • 0e603ef feat(retry): add OnRetriesExhausted hook for cleanup actions (#670)
  • a08a994 Added support for custom JSON configuration in the forwarder component (#667)
  • 1680a80 Validate all examples + fix (#681)
  • ca4c559 Fix HTTP response body leak and add retry backoff in run.go (#665)
  • dac25bc docs: assorted documentation and comment improvements (#647)
  • 8ca936f Bump picomatch from 2.3.1 to 2.3.2 in /docs (#680)
  • 32ea5ae Bump vite from 5.4.12 to 5.4.21 in /docs (#629)
  • fbce4d6 Bump dependencies and fix races (#679)
  • 48515bc I can't see anything (#674)
  • Additional commits viewable in compare view

Updates github.com/aarondl/sqlboiler/v4 from 4.19.5 to 4.19.7

Changelog

Sourced from github.com/aarondl/sqlboiler/v4's changelog.

[4.19.7] - 2025-12-31

Fixed

  • Version number in main.go

[4.19.6] - 2025-12-31

Fixed

  • Do not treat columns with partial unique indexes as unique in psql driver.

Security

  • Update golang.org/x/crypto from 0.38.0 -> 0.45.0

[4.19.2-4] - 2025-06-26

Changed

  • Change import paths

[4.19.1] - 2025-05-20

Fixed

  • Fix performance issue in v4.19.0 by reverting the cleanup of unused imports.
  • Updated minimum required Go version to 1.23.
  • Updated dependencies to fix CVEs.

[4.19.0] - 2025-05-09

Added

  • Add relation getters on base model structs. (thanks @​parnic)
  • Added --no-relation-getters option to prevent generation relation getters on the main structs. (thanks @​parnic)
  • Add Query, Exec, and Bind helpers to the global executor. (thanks @​parnic)
    • BindGP
    • QueryRowG
    • QueryRowContextG
    • ExecG
    • ExecGP
    • QueryG
    • QueryGP
    • ExecContextG
    • ExecContextP
    • ExecContextGP
    • QueryContextG
    • QueryContextP
    • QueryContextGP

... (truncated)

Commits
  • 3b1f527 Bump version
  • 33a326a Update changelog
  • c11dae0 Merge pull request #1467 from aarondl/dependabot/go_modules/golang.org/x/cryp...
  • fba535b Bump golang.org/x/crypto from 0.38.0 to 0.45.0
  • 544e18d Merge pull request #1463 from shantanuraj/shantanu/fix-json-buffer-reuse
  • 7f8daf0 Drop unused sliceType argument from bind
  • b5b94dd Fix buffer reuse when reading types.JSON
  • 8b2fd83 add TestBindJsonSlice
  • b385498 Merge pull request #1462 from beonode/psql-partial-unique-index-fix
  • 5f0bad9 Revert accidental autoformatting
  • Additional commits viewable in compare view

Updates github.com/ethereum/go-ethereum from 1.17.1 to 1.17.3

Release notes

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

Enzymatic Injector (v1.17.3)

This is a maintenance release with continued progress on the Amsterdam fork implementation. It also introduces ETH/70, which is now live on the network.

ethereum/execution-apis#762reexec has been removed from the tracing config:

  • memory: words are 0x-prefixed and padded to 32 bytes
  • storage: keys and values are 0x-prefixed
  • error: omitted when empty (previously serialized as "")

Geth

  • Add retry mechanism for checkpoint init in blsync (#33966)
  • Add subcommand for offline binary tree conversion (#33740)
  • Add code exporter for db export (#34696)

Core

  • Amsterdam fork updates:
  • Implement stack arena (#33960)
  • Implement EIP-7975: eth/70 partial block receipt lists (#33153)
  • Prerequisites of snap/2 protocol (#34083, #34649, #34654, #34874)
  • Implement history index pruner for path-mode archive nodes (#33999)
  • Add Prague chain segment pruning point for Hoodi (#34714)
  • Allow reorging head to parent within 32 blocks under ePBS (#34767)
  • Stop serving chain segment requests when data is unavailable (#34787)
  • Drop peers sending invalid bodies or receipts (#34745, #34870)
  • Add kzg4844 cell-related functions (#34766)
  • State database refactoring (#33102, #34700, #34763, #34724)
  • Binary trie improvements (#34055, #34110, #34670, #34676, #34680, #34690, #34754, #34758, #34777, #34794)
  • Merge EIP-4762 access events for all system calls (#34637)
  • Reject duplicate layers in the path database (#34642)
  • Omit empty slotNumber and fix block value collection in pre-Amsterdam engine API payloads (#34704)
  • Include the operand in EIP-8024 error messages (#34635)
  • Fix vmodule downgrades and propagate verbosity changes to derived loggers (#33111)
  • Fix incorrect fsync ordering for index file truncation (#34728)
  • Fix file descriptor leak in freezer error paths (#34735)
  • Fix size calculation in path database (#34828)
  • Fix gapped queue size cap in blobpool (#34831)
  • Improve txpool pending concurrency by using read-only locking (#32924)
  • Replace deprecated TypeMux with Feed (#32585)
  • Continue blob retrieval when individual cell proof extraction fails (#34891)
  • Use uint256 in core Message for faster gas calculations (#34934)

... (truncated)

Commits

Updates github.com/go-jose/go-jose/v4 from 4.1.3 to 4.1.4

Release notes

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

v4.1.4

What's Changed

Fixes Panic in JWE decryption. See GHSA-78h2-9frx-2jm8

Full Changelog: go-jose/go-jose@v4.1.3...v4.1.4

Commits

Updates github.com/gofiber/fiber/v2 from 2.52.12 to 2.52.13

Release notes

Sourced from github.com/gofiber/fiber/v2's releases.

v2.52.13

What's Changed

🐛 Bug Fixes

Full Changelog: gofiber/fiber@v2.52.12...v2.52.13

Commits
  • 0c8cc20 Update fiber package version to 2.52.13
  • 616de00 Merge pull request #4232 from gofiber/update-html-format-to-escape-content
  • ba5a98e 🐛 bug: escape HTML output in Ctx.Format
  • See full diff in compare view

Updates github.com/golang-jwt/jwt/v5 from 5.3.0 to 5.3.1

Release notes

Sourced from github.com/golang-jwt/jwt/v5's releases.

v5.3.1

What's Changed

🔐 Features

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 15, 2026
Bumps the go-mod group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/DIMO-Network/cloudevent](https://github.com/DIMO-Network/cloudevent) | `0.2.6` | `1.0.4` |
| [github.com/DIMO-Network/model-garage](https://github.com/DIMO-Network/model-garage) | `1.0.9` | `1.0.13` |
| [github.com/DIMO-Network/server-garage](https://github.com/DIMO-Network/server-garage) | `0.0.5` | `0.4.0` |
| [github.com/IBM/sarama](https://github.com/IBM/sarama) | `1.46.2` | `1.50.2` |
| [github.com/ThreeDotsLabs/watermill](https://github.com/ThreeDotsLabs/watermill) | `1.5.1` | `1.5.2` |
| [github.com/aarondl/sqlboiler/v4](https://github.com/aarondl/sqlboiler) | `4.19.5` | `4.19.7` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.17.1` | `1.17.3` |
| [github.com/go-jose/go-jose/v4](https://github.com/go-jose/go-jose) | `4.1.3` | `4.1.4` |
| [github.com/gofiber/fiber/v2](https://github.com/gofiber/fiber) | `2.52.12` | `2.52.13` |
| [github.com/google/cel-go](https://github.com/google/cel-go) | `0.26.1` | `0.28.1` |
| [github.com/lib/pq](https://github.com/lib/pq) | `1.10.9` | `1.12.3` |
| [github.com/pressly/goose/v3](https://github.com/pressly/goose) | `3.27.0` | `3.27.1` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.34.0` | `1.35.1` |
| [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) | `0.40.0` | `0.42.0` |
| [github.com/testcontainers/testcontainers-go/modules/kafka](https://github.com/testcontainers/testcontainers-go) | `0.39.0` | `0.42.0` |
| [github.com/testcontainers/testcontainers-go/modules/postgres](https://github.com/testcontainers/testcontainers-go) | `0.39.0` | `0.42.0` |



Updates `github.com/DIMO-Network/cloudevent` from 0.2.6 to 1.0.4
- [Release notes](https://github.com/DIMO-Network/cloudevent/releases)
- [Commits](https://github.com/DIMO-Network/cloudevent/commits)

Updates `github.com/DIMO-Network/model-garage` from 1.0.9 to 1.0.13
- [Release notes](https://github.com/DIMO-Network/model-garage/releases)
- [Commits](DIMO-Network/model-garage@v1.0.9...v1.0.13)

Updates `github.com/DIMO-Network/server-garage` from 0.0.5 to 0.4.0
- [Release notes](https://github.com/DIMO-Network/server-garage/releases)
- [Commits](DIMO-Network/server-garage@v0.0.5...v0.4.0)

Updates `github.com/DIMO-Network/shared` from 1.0.7 to 1.1.5
- [Release notes](https://github.com/DIMO-Network/shared/releases)
- [Commits](DIMO-Network/shared@v1.0.7...v1.1.5)

Updates `github.com/DIMO-Network/token-exchange-api` from 0.3.8-0.20251015163407-530d08daccd8 to 0.4.0
- [Release notes](https://github.com/DIMO-Network/token-exchange-api/releases)
- [Commits](https://github.com/DIMO-Network/token-exchange-api/commits/v0.4.0)

Updates `github.com/IBM/sarama` from 1.46.2 to 1.50.2
- [Release notes](https://github.com/IBM/sarama/releases)
- [Changelog](https://github.com/IBM/sarama/blob/main/CHANGELOG.md)
- [Commits](IBM/sarama@v1.46.2...v1.50.2)

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/aarondl/sqlboiler/v4` from 4.19.5 to 4.19.7
- [Release notes](https://github.com/aarondl/sqlboiler/releases)
- [Changelog](https://github.com/aarondl/sqlboiler/blob/master/CHANGELOG.md)
- [Commits](aarondl/sqlboiler@v4.19.5...v4.19.7)

Updates `github.com/ethereum/go-ethereum` from 1.17.1 to 1.17.3
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.17.1...v1.17.3)

Updates `github.com/go-jose/go-jose/v4` from 4.1.3 to 4.1.4
- [Release notes](https://github.com/go-jose/go-jose/releases)
- [Commits](go-jose/go-jose@v4.1.3...v4.1.4)

Updates `github.com/gofiber/fiber/v2` from 2.52.12 to 2.52.13
- [Release notes](https://github.com/gofiber/fiber/releases)
- [Commits](gofiber/fiber@v2.52.12...v2.52.13)

Updates `github.com/golang-jwt/jwt/v5` from 5.3.0 to 5.3.1
- [Release notes](https://github.com/golang-jwt/jwt/releases)
- [Commits](golang-jwt/jwt@v5.3.0...v5.3.1)

Updates `github.com/google/cel-go` from 0.26.1 to 0.28.1
- [Release notes](https://github.com/google/cel-go/releases)
- [Commits](cel-expr/cel-go@v0.26.1...v0.28.1)

Updates `github.com/lib/pq` from 1.10.9 to 1.12.3
- [Release notes](https://github.com/lib/pq/releases)
- [Changelog](https://github.com/lib/pq/blob/master/CHANGELOG.md)
- [Commits](lib/pq@v1.10.9...v1.12.3)

Updates `github.com/pressly/goose/v3` from 3.27.0 to 3.27.1
- [Release notes](https://github.com/pressly/goose/releases)
- [Changelog](https://github.com/pressly/goose/blob/main/CHANGELOG.md)
- [Commits](pressly/goose@v3.27.0...v3.27.1)

Updates `github.com/rs/zerolog` from 1.34.0 to 1.35.1
- [Commits](rs/zerolog@v1.34.0...v1.35.1)

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

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

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

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

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

---
updated-dependencies:
- dependency-name: github.com/aarondl/sqlboiler/v4
  dependency-version: 4.19.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/cloudevent
  dependency-version: 1.0.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/model-garage
  dependency-version: 1.0.11
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/server-garage
  dependency-version: 0.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/shared
  dependency-version: 1.1.5
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/token-exchange-api
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/ethereum/go-ethereum
  dependency-version: 1.17.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/go-jose/go-jose/v4
  dependency-version: 4.1.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/gofiber/fiber/v2
  dependency-version: 2.52.13
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/golang-jwt/jwt/v5
  dependency-version: 5.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/google/cel-go
  dependency-version: 0.28.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/IBM/sarama
  dependency-version: 1.48.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/lib/pq
  dependency-version: 1.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/pressly/goose/v3
  dependency-version: 3.27.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/rs/zerolog
  dependency-version: 1.35.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/testcontainers/testcontainers-go
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/testcontainers/testcontainers-go/modules/kafka
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/testcontainers/testcontainers-go/modules/postgres
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/ThreeDotsLabs/watermill
  dependency-version: 1.5.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: golang.org/x/sync
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/grpc
  dependency-version: 1.80.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-mod-c78e18513d branch from 44bd365 to 3cd1e78 Compare June 15, 2026 00:07
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