Skip to content

chore(deps): bump the go-mod group across 1 directory with 16 updates#80

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-mod-7c9f280995
Open

chore(deps): bump the go-mod group across 1 directory with 16 updates#80
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/go-mod-7c9f280995

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

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

Package From To
github.com/99designs/gqlgen 0.17.89 0.17.90
github.com/ClickHouse/clickhouse-go/v2 2.43.0 2.45.0
github.com/DIMO-Network/clickhouse-infra 0.0.7 0.0.8
github.com/DIMO-Network/cloudevent 0.2.8 1.0.4
github.com/DIMO-Network/server-garage 0.1.1 0.3.0
github.com/DIMO-Network/shared 1.1.7 1.1.9
github.com/auth0/go-jwt-middleware/v2 2.2.2 2.3.1
github.com/aws/aws-sdk-go-v2 1.38.3 1.41.6
github.com/aws/aws-sdk-go-v2/credentials 1.18.10 1.19.15
github.com/aws/aws-sdk-go-v2/service/s3 1.87.3 1.100.0
github.com/ethereum/go-ethereum 1.17.1 1.17.2
github.com/grpc-ecosystem/go-grpc-middleware/v2 2.3.2 2.3.3
github.com/modelcontextprotocol/go-sdk 1.4.1 1.5.0
github.com/rs/zerolog 1.34.0 1.35.1
google.golang.org/grpc 1.79.3 1.80.0

Updates github.com/99designs/gqlgen from 0.17.89 to 0.17.90

Release notes

Sourced from github.com/99designs/gqlgen's releases.

v0.17.90

What's Changed

New Contributors

... (truncated)

Commits

Updates github.com/ClickHouse/clickhouse-go/v2 from 2.43.0 to 2.45.0

Release notes

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

v2.45.0

What's Changed

Bug Fixes 🐛

Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.44.0...v2.45.0

v2.44.0

What's Changed

Enhancements 🎉

Bug Fixes 🐛

Other Changes 🛠

... (truncated)

Changelog

Sourced from github.com/ClickHouse/clickhouse-go/v2's changelog.

v2.45.0, 2026-04-13

What's Changed

Bug Fixes 🐛

Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.44.0...v2.45.0

v2.44.0, 2026-03-31

What's Changed

Enhancements 🎉

Bug Fixes 🐛

Other Changes 🛠

New Contributors

... (truncated)

Commits
  • 1422cc5 Update release notes
  • c790ac6 Merge pull request #1826 from binger-li-dd/fix/host-header-http-transport
  • 30d09f0 fix: set req.Host for Host header in HTTP transport
  • 960153b Merge pull request #1818 from ClickHouse/kavirajk/fix-code-review-workflow
  • f8cbde7 chore: pass explicity github token for claude review
  • b24794b Update release notes
  • d6c6a95 Merge pull request #1816 from ClickHouse/kavirajk/agent-review-id-token-fix
  • 9ca8018 chore: remove the todos
  • 5e30f1d chore: fix the code-review CI error with enough rights.
  • fcfc8b8 Merge pull request #1811 from ClickHouse/kavirajk/integrate-claude-code-gh-ac...
  • Additional commits viewable in compare view

Updates github.com/DIMO-Network/clickhouse-infra from 0.0.7 to 0.0.8

Release notes

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

v0.0.8

What's Changed

Full Changelog: DIMO-Network/clickhouse-infra@v0.0.7...v0.0.8

Commits
  • 50d26b3 Merge pull request #46 from DIMO-Network/upgrade_vers
  • fb8049b Upgrade ClickHouse container to 25.12.1.649
  • See full diff in compare view

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

Commits

Updates github.com/DIMO-Network/server-garage from 0.1.1 to 0.3.0

Release notes

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

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).
Commits

Updates github.com/DIMO-Network/shared from 1.1.7 to 1.1.9

Release notes

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

v1.1.9

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.8...v1.1.9

v1.1.8

What's Changed

Full Changelog: DIMO-Network/shared@v1.1.7...v1.1.8

Commits

Updates github.com/auth0/go-jwt-middleware/v2 from 2.2.2 to 2.3.1

Release notes

Sourced from github.com/auth0/go-jwt-middleware/v2's releases.

v2.3.1

Security

v2.3.0

Added

Fixed

Changelog

Sourced from github.com/auth0/go-jwt-middleware/v2's changelog.

v2.3.1 (2025-11-20)

Full Changelog

Security

v2.3.0 (2025-03-05)

Full Changelog

Added

Fixed

Commits

Updates github.com/aws/aws-sdk-go-v2 from 1.38.3 to 1.41.6

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.18.10 to 1.19.15

Commits

Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.87.3 to 1.100.0

Commits

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

Release notes

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

EMF Suppressor (v1.17.2)

This is a maintenance release with several important bug fixes. Notably, a critical issue in debug_executionWitness could previously corrupt node data, users relying on this RPC endpoint are strongly advised to upgrade.

Geth now also supports syncing with chains where pre-Prague history has been pruned, and allows explicitly removing it via geth prune-history --history.chain postprague.

Geth

  • Set default cache size to 4GB across all networks (#33836, #33975)
  • Added support for pruning chain history prior to the Prague fork (#33657, #34036)
  • Added fetchpayload command to build execution witnesses for specific blocks (#33919)
  • Optimized Era history import with batched insertion (#33894)
  • Added womir target for keeper (#34079)
  • Added support for iterating a single storage trie in geth snapshot traverse-state and geth snapshot traverse-rawstate (#34051)

Core

  • Amsterdam fork updates:
    • EIP-8024: Switch to branchless normalization and extend EXCHANGE (#33869)
    • EIP-7778: Block gas accounting without refunds (#33593)
    • EIP-7954: Increase maximum contract size (#33832)
    • EIP-7708: ETH transfers now emit logs (#33645)
    • Reworked gas measurement order (prerequisite for EIP-7928) (#33648)
  • Improved payload building by prewarming trie nodes for state hash computation (#33945)
  • Various binary trie improvements (#33951, #33961, #33989, #34021, #34032, #34022, #34056)
  • Upgraded go-eth-kzg to v1.5.0, significantly reducing allocations in VerifyCellProofBatch (#33963)
  • Refactored state database in preparation for binary trie integration (#33816)
  • Enabled trie node history retention on existing nodes (#33934)
  • Optimized historical state indexer with batch processing (#33640)
  • Fixed potential deadlock in txlookup (#34039)
  • Added new RLP APIs (#34052, #34048)
  • Fix dir.Sync() failure in freezer on Windows (#34115)

Networking

  • Avoid duplicate connections by skipping simultaneous inbound/outbound dials (#33198)
  • Fixed session key mismatch by using consistent remote address handling in discv5 tests (#34031)
  • Added DNS hostname resolution for bootstrap nodes (#34101)

RPC

  • Fixed state corruption issue in debug_executionWitness; deprecated debug_executionWitnessByHash (#33931)
  • Added MaxUsedGas field to eth_simulateV1 response (#32789)
  • Fixed gas cap handling in eth_simulateV1 (#33952)
  • Fixed nonce revert edge case during contract creation in tracer (#33978)
  • Fixed eth_createAccessList to return an empty list instead of null for storage keys (#33976)
  • eth_getFilterLogs now returns an error if the requested chain segment has been pruned (#33823)
  • Fixed slot number encoding in RPC responses (#34005)
  • Enforce RPC call limits for eth_simulateV1 (#34616)
  • Enforce storage slot limits for proofs in eth_getProof (#34617)

Observability

... (truncated)

Commits

Updates github.com/grpc-ecosystem/go-grpc-middleware/v2 from 2.3.2 to 2.3.3

Release notes

Sourced from github.com/grpc-ecosystem/go-grpc-middleware/v2's releases.

v2.3.3

What's Changed

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

| Package | From | To |
| --- | --- | --- |
| [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) | `0.17.89` | `0.17.90` |
| [github.com/ClickHouse/clickhouse-go/v2](https://github.com/ClickHouse/clickhouse-go) | `2.43.0` | `2.45.0` |
| [github.com/DIMO-Network/clickhouse-infra](https://github.com/DIMO-Network/clickhouse-infra) | `0.0.7` | `0.0.8` |
| [github.com/DIMO-Network/cloudevent](https://github.com/DIMO-Network/cloudevent) | `0.2.8` | `1.0.4` |
| [github.com/DIMO-Network/server-garage](https://github.com/DIMO-Network/server-garage) | `0.1.1` | `0.3.0` |
| [github.com/DIMO-Network/shared](https://github.com/DIMO-Network/shared) | `1.1.7` | `1.1.9` |
| [github.com/auth0/go-jwt-middleware/v2](https://github.com/auth0/go-jwt-middleware) | `2.2.2` | `2.3.1` |
| [github.com/aws/aws-sdk-go-v2](https://github.com/aws/aws-sdk-go-v2) | `1.38.3` | `1.41.6` |
| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.18.10` | `1.19.15` |
| [github.com/aws/aws-sdk-go-v2/service/s3](https://github.com/aws/aws-sdk-go-v2) | `1.87.3` | `1.100.0` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.17.1` | `1.17.2` |
| [github.com/grpc-ecosystem/go-grpc-middleware/v2](https://github.com/grpc-ecosystem/go-grpc-middleware) | `2.3.2` | `2.3.3` |
| [github.com/modelcontextprotocol/go-sdk](https://github.com/modelcontextprotocol/go-sdk) | `1.4.1` | `1.5.0` |
| [github.com/rs/zerolog](https://github.com/rs/zerolog) | `1.34.0` | `1.35.1` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.79.3` | `1.80.0` |



Updates `github.com/99designs/gqlgen` from 0.17.89 to 0.17.90
- [Release notes](https://github.com/99designs/gqlgen/releases)
- [Changelog](https://github.com/99designs/gqlgen/blob/master/CHANGELOG.md)
- [Commits](99designs/gqlgen@v0.17.89...v0.17.90)

Updates `github.com/ClickHouse/clickhouse-go/v2` from 2.43.0 to 2.45.0
- [Release notes](https://github.com/ClickHouse/clickhouse-go/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-go/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-go@v2.43.0...v2.45.0)

Updates `github.com/DIMO-Network/clickhouse-infra` from 0.0.7 to 0.0.8
- [Release notes](https://github.com/DIMO-Network/clickhouse-infra/releases)
- [Commits](DIMO-Network/clickhouse-infra@v0.0.7...v0.0.8)

Updates `github.com/DIMO-Network/cloudevent` from 0.2.8 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/server-garage` from 0.1.1 to 0.3.0
- [Release notes](https://github.com/DIMO-Network/server-garage/releases)
- [Commits](DIMO-Network/server-garage@v0.1.1...v0.3.0)

Updates `github.com/DIMO-Network/shared` from 1.1.7 to 1.1.9
- [Release notes](https://github.com/DIMO-Network/shared/releases)
- [Commits](DIMO-Network/shared@v1.1.7...v1.1.9)

Updates `github.com/auth0/go-jwt-middleware/v2` from 2.2.2 to 2.3.1
- [Release notes](https://github.com/auth0/go-jwt-middleware/releases)
- [Changelog](https://github.com/auth0/go-jwt-middleware/blob/master/CHANGELOG.md)
- [Commits](auth0/go-jwt-middleware@v2.2.2...v2.3.1)

Updates `github.com/aws/aws-sdk-go-v2` from 1.38.3 to 1.41.6
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@v1.38.3...v1.41.6)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.18.10 to 1.19.15
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.18.10...credentials/v1.19.15)

Updates `github.com/aws/aws-sdk-go-v2/service/s3` from 1.87.3 to 1.100.0
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/s3/v1.87.3...service/s3/v1.100.0)

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

Updates `github.com/grpc-ecosystem/go-grpc-middleware/v2` from 2.3.2 to 2.3.3
- [Release notes](https://github.com/grpc-ecosystem/go-grpc-middleware/releases)
- [Commits](grpc-ecosystem/go-grpc-middleware@v2.3.2...v2.3.3)

Updates `github.com/modelcontextprotocol/go-sdk` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/modelcontextprotocol/go-sdk/releases)
- [Commits](modelcontextprotocol/go-sdk@v1.4.1...v1.5.0)

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/vektah/gqlparser/v2` from 2.5.32 to 2.5.33
- [Release notes](https://github.com/vektah/gqlparser/releases)
- [Commits](vektah/gqlparser@v2.5.32...v2.5.33)

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

---
updated-dependencies:
- dependency-name: github.com/99designs/gqlgen
  dependency-version: 0.17.90
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/ClickHouse/clickhouse-go/v2
  dependency-version: 2.45.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/clickhouse-infra
  dependency-version: 0.0.8
  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/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.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/auth0/go-jwt-middleware/v2
  dependency-version: 2.3.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2
  dependency-version: 1.41.6
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.15
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/aws/aws-sdk-go-v2/service/s3
  dependency-version: 1.100.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.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/grpc-ecosystem/go-grpc-middleware/v2
  dependency-version: 2.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/modelcontextprotocol/go-sdk
  dependency-version: 1.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  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/vektah/gqlparser/v2
  dependency-version: 2.5.33
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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 added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Apr 28, 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