Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the go-mod group across 1 directory with 11 updates #119

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 25, 2025

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

Package From To
github.com/ClickHouse/clickhouse-go/v2 2.30.0 2.32.2
github.com/DIMO-Network/attestation-api 0.0.11 0.0.18
github.com/Khan/genqlient 0.7.0 0.8.0
github.com/auth0/go-jwt-middleware/v2 2.2.1 2.2.2
github.com/ethereum/go-ethereum 1.14.13 1.15.2
github.com/go-jose/go-jose/v4 4.0.4 4.0.5
github.com/prometheus/client_golang 1.20.5 1.21.0
github.com/volatiletech/sqlboiler/v4 4.17.1 4.18.0

Updates github.com/ClickHouse/clickhouse-go/v2 from 2.30.0 to 2.32.2

Release notes

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

v2.32.2

What's Changed

Bug Fixes 🐛

Full Changelog: ClickHouse/clickhouse-go@v2.32.1...v2.32.2

v2.32.1

What's Changed

Bug Fixes 🐛

Full Changelog: ClickHouse/clickhouse-go@v2.32.0...v2.32.1

v2.32.0

What's Changed

Enhancements 🎉

Performance 🏎️

Bug fixes 🐛

Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.31.0...v2.32.0

v2.31.0

What's Changed

Enhancements 🎉

... (truncated)

Changelog

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

v2.32.2, 2025-02-20

What's Changed

Bug Fixes 🐛

Full Changelog: ClickHouse/clickhouse-go@v2.32.1...v2.32.2

v2.32.1, 2025-02-17

What's Changed

Bug Fixes 🐛

Full Changelog: ClickHouse/clickhouse-go@v2.32.0...v2.32.1

v2.32.0, 2025-02-14

What's Changed

Enhancements 🎉

Performance 🏎️

Bug fixes 🐛

Other Changes 🛠

New Contributors

Full Changelog: ClickHouse/clickhouse-go@v2.31.0...v2.32.0

v2.31.0, 2025-02-10

What's Changed

Enhancements 🎉

Other Changes 🛠

... (truncated)

Commits

Updates github.com/DIMO-Network/attestation-api from 0.0.11 to 0.0.18

Release notes

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

v0.0.18

What's Changed

New Contributors

Full Changelog: DIMO-Network/attestation-api@v0.0.17...v0.0.18

v0.0.17

What's Changed

Full Changelog: DIMO-Network/attestation-api@v0.0.16...v0.0.17

v0.0.16

What's Changed

New Contributors

Full Changelog: DIMO-Network/attestation-api@v0.0.15...v0.0.16

v0.0.15

What's Changed

Full Changelog: DIMO-Network/attestation-api@v0.0.14...v0.0.15

v0.0.14

What's Changed

Full Changelog: DIMO-Network/attestation-api@v0.0.13...v0.0.14

v0.0.13

... (truncated)

Commits
  • 8d4f786 Update Image Version to dc11fcb
  • dc11fcb INTG-1543: added compassIot integration (#50)
  • e79710c Update Image Version to 0.0.17
  • d07c502 Update Image Version to 6047871
  • 6047871 Merge pull request #49 from DIMO-Network/ex-2808-internal-api-for-manual-vc-c...
  • af46dc0 Update manual VIN VC request
  • 1819094 Update Image Version to 5b9c599
  • 5b9c599 Merge pull request #48 from DIMO-Network/as-3194-create-vin-vc-for-teslas-pay...
  • c0699c6 Add decoding for tesla fingerprint
  • 0c7732d Update Image Version to 53f42d9
  • Additional commits viewable in compare view

Updates github.com/DIMO-Network/shared from 0.12.7 to 0.12.9

Release notes

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

v0.12.9

What's Changed

Full Changelog: DIMO-Network/shared@v0.12.8...v0.12.9

v0.12.8

What's Changed

Full Changelog: DIMO-Network/shared@v0.12.7...v0.12.8

Commits

Updates github.com/Khan/genqlient from 0.7.0 to 0.8.0

Release notes

Sourced from github.com/Khan/genqlient's releases.

v0.8.0

This release adds support for genqlient subscriptions; see the documentation for more, and thanks to @​matthieu4294967296moineau for the original implementation and @​HaraldNordgren for additional testing and improvements.

Note that genqlient now requires Go 1.22.5 or higher, and is tested through Go 1.23.3.

Breaking changes:

  • genqlient now forbids omitempty: false (including implicit behaviour) when using pointer on non-null input field.
  • The error text for HTTP errors has changed slightly. If you were parsing it, switch to As-ing to graphql.HTTPError.

New features:

  • genqlient now supports subscriptions; the websocket protocol is by default graphql-transport-ws but can be set to another value.
    See the documentation for more details on how to use subscriptions.
  • genqlient now supports double-star globs for schema and query files; see https://github.com/Khan/genqlient/blob/HEAD/genqlient.yaml docs for more.
  • genqlient now generates slices containing all enum values for each enum type.
  • genqlient now returns Is/As-able errors when the HTTP request returns a non-200 status.

Bug fixes:

  • omitempty validation:
    • allow omitempty on non-nullable input field, if the field has a default
    • allow omitempty: false on an input field, even when it is non-nullable
  • don't do omitempty and pointer input types validation when use_struct_reference is used, as the generated type is often not compatible with validation logic.
  • the allow_broken_features option, which no longer did anything, has been removed
Changelog

Sourced from github.com/Khan/genqlient's changelog.

v0.8.0

This release adds support for genqlient subscriptions; see the documentation for more, and thanks to @​matthieu4294967296moineau for the original implementation and @​HaraldNordgren for additional testing and improvements.

Note that genqlient now requires Go 1.22.5 or higher, and is tested through Go 1.23.3.

Breaking changes:

  • genqlient now forbids omitempty: false (including implicit behaviour) when using pointer on non-null input field.
  • The error text for HTTP errors has changed slightly. If you were parsing it, switch to As-ing to graphql.HTTPError.

New features:

  • genqlient now supports subscriptions; the websocket protocol is by default graphql-transport-ws but can be set to another value.
    See the documentation for more details on how to use subscriptions.
  • genqlient now supports double-star globs for schema and query files; see https://github.com/Khan/genqlient/blob/main/docs/genqlient.yaml docs for more.
  • genqlient now generates slices containing all enum values for each enum type.
  • genqlient now returns Is/As-able errors when the HTTP request returns a non-200 status.

Bug fixes:

  • omitempty validation:
    • allow omitempty on non-nullable input field, if the field has a default
    • allow omitempty: false on an input field, even when it is non-nullable
  • don't do omitempty and pointer input types validation when use_struct_reference is used, as the generated type is often not compatible with validation logic.
  • the allow_broken_features option, which no longer did anything, has been removed
Commits
  • 78a03a6 Release v0.8.0 (#370)
  • 8ba2f83 Fix documentation for client error As-ability, and add tests (#369)
  • 6010b63 HTTPError wraps full Response for typed output (#366)
  • d3e516b Move websocket headers to opt function 'WithWebsocketHeaders' (#365)
  • 5913cd6 Improve HTTP error text (#364)
  • 1147aaf Update Go (and golangci-lint, and gqlgen) versions, and test codegen (#362)
  • 800909d Subscription connection parameters support (#360)
  • adb9dd6 Standardize error return from HTTP requests (#363)
  • ca5889f Use generics for subscriptions responses (#356)
  • e030ff1 Fix issue where subscription server data channel closing gives error (#354)
  • Additional commits viewable in compare view

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

Release notes

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

v2.2.2

Security

Changelog

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

v2.2.2 (2024-08-23)

Full Changelog

Security

Commits
  • 87ed699 Release v2.2.2 (#282)
  • d4f086d Update Go Version from 1.19 to 1.22 (#281)
  • 084ab8f Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/echo-example (#265)
  • c57326a Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/gin-example (#266)
  • 5dde8f7 Bump golang.org/x/net from 0.17.0 to 0.23.0 in /examples/iris-example (#267)
  • 9299d69 Bump github.com/stretchr/testify from 1.8.4 to 1.9.0 (#254)
  • 07ed325 Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 in /examples/gin-exampl...
  • 2d58e74 Bump google.golang.org/protobuf from 1.31.0 to 1.33.0 in /examples/iris-examp...
  • 85928a4 Bump gopkg.in/go-jose/go-jose.v2 from 2.6.2 to 2.6.3 in /examples/http-jwks-e...
  • 9145c90 Bump gopkg.in/go-jose/go-jose.v2 from 2.6.2 to 2.6.3 in /examples/http-exampl...
  • Additional commits viewable in compare view

Updates github.com/ethereum/go-ethereum from 1.14.13 to 1.15.2

Release notes

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

Survivor Loadout (v1.15.2)

This release fixes a few regressions. In particular, it restores block building on mainnet, which was broken in v1.15.1.

All changes in this release:

  • Block building on mainnet works again. (#31191)
  • Discv5 and DNS peer discovery has been restored. It was accidentally disabled in v1.14.9. (#31185)
  • An edge-case for geth dumpconfig related to the P2P.NAT setting in TOML is fixed. (#31192)

For a full rundown of the changes please consult the Geth 1.15.2 release milestone


As with all our previous releases, you can find the:

Engineering Kit (v1.15.1)

This release enables the Prague fork for the Holesky and Sepolia testnets. It is a required upgrade if you want to participate in these networks.

The fork is set to activate at

  • Holesky slot: 3710976, timestamp: Mon, Feb 24 at 21:55:12 UTC
  • Sepolia slot: 7118848, timestamp: Wed, Mar 5 at 07:29:36 UTC

Other user-facing changes in this release:

  • Support for EIP-7702 transactions has been enabled in the transaction pool. (#31073)
  • A v1.15.0 regression was identified in genesis handling for custom networks, related to the new blobSchedule setting. Geth v1.15.1 has been updated no longer crash in this case, and we will have an improved fix in v1.15.2 (#31171)
  • A v1.15.0 regression in the evm command related to state dumps has been fixed. (#31158)
  • A v1.15.0 regression with the ancient store in read-only mode has been fixed. (#31173)
  • A crash in debug_getRaw* RPC methods has been fixed. (#31157)
  • The supranational/blst dependency has been upgraded to v0.3.14 in order to allow building Geth with Go 1.24. (#31165)

For a full rundown of the changes please consult the Geth 1.15.1 release milestone


As with all our previous releases, you can find the:

Operative Package (v1.15.0)

... (truncated)

Commits
  • c8c62da version: release go-ethereum v1.15.2 stable
  • d37a0b8 eth/protocols/eth: add discovery iterator to protocol (#31185)
  • c113e3b p2p: fix marshaling of NAT in TOML (#31192)
  • e5bc789 consensus/beacon: fix isPostMerge for mainnet (#31191)
  • 68de26e core/types: create block's bloom by merging receipts' bloom (#31129)
  • 7776282 version: begin v1.15.2 release cycle
  • b027a90 version: release go-ethereum v1.15.1 stable
  • 913fee4 core/rawdb: skip setting flushOffset in read-only mode (#31173)
  • 8ec4a06 core: sanity-check fork configuration in genesis (#31171)
  • 24ed0b5 go.mod: update blst to v0.3.14 (#31165)
  • Additional commits viewable in compare view

Updates github.com/go-jose/go-jose/v4 from 4.0.4 to 4.0.5

Release notes

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

v4.0.5

What's Changed

Fixes GHSA-c6gw-w398-hv78

Various other dependency updates, small fixes, and documentation updates in the full changelog

New Contributors

Full Changelog: go-jose/go-jose@v4.0.4...v4.0.5

Commits

Updates github.com/prometheus/client_golang from 1.20.5 to 1.21.0

Release notes

Sourced from github.com/prometheus/client_golang's releases.

v1.21.0 / 2025-02-19

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang (and depend on the strict, legacy validation for the label names). New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function. ⚠️

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [PERF] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [PERF] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654

... (truncated)

Changelog

Sourced from github.com/prometheus/client_golang's changelog.

1.21.0 / 2025-02-17

⚠️ This release contains potential breaking change if you upgrade github.com/prometheus/common to 0.62+ together with client_golang. ⚠️

New common version changes model.NameValidationScheme global variable, which relaxes the validation of label names and metric name, allowing all UTF-8 characters. Typically, this should not break any user, unless your test or usage expects strict certain names to panic/fail on client_golang metric registration, gathering or scrape. In case of problems change model.NameValidationScheme to old model.LegacyValidation value in your project init function.

  • [BUGFIX] gocollector: Fix help message for runtime/metric metrics. #1583
  • [BUGFIX] prometheus: Fix Desc.String() method for no labels case. #1687
  • [ENHANCEMENT] prometheus: Optimize popular prometheus.BuildFQName function; now up to 30% faster. #1665
  • [ENHANCEMENT] prometheus: Optimize Inc, Add and Observe cumulative metrics; now up to 50% faster under high concurrent contention. #1661
  • [CHANGE] Upgrade prometheus/common to 0.62.0 which changes model.NameValidationScheme global variable. #1712
  • [CHANGE] Add support for Go 1.23. #1602
  • [FEATURE] process_collector: Add support for Darwin systems. #1600 #1616 #1625 #1675 #1715
  • [FEATURE] api: Add ability to invoke CloseIdleConnections on api.Client using api.Client.(CloseIdler).CloseIdleConnections() casting. #1513
  • [FEATURE] promhttp: Add promhttp.HandlerOpts.EnableOpenMetricsTextCreatedSamples option to create OpenMetrics _created lines. Not recommended unless you want to use opt-in Created Timestamp feature. Community works on OpenMetrics 2.0 format that should make those lines obsolete (they increase cardinality significantly). #1408
  • [FEATURE] prometheus: Add NewConstNativeHistogram function. #1654
Commits

Updates github.com/uber/h3-go/v4 from 4.1.2 to 4.2.0

Release notes

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

v4.2.0

❗This release introduces breaking API changes with the introduction of the returning of error codes #73.❗

What's Changed

Full Changelog: uber/h3-go@v4.1.2...v4.2.0

Commits

Updates github.com/volatiletech/sqlboiler/v4 from 4.17.1 to 4.18.0

Release notes

Sourced from github.com/volatiletech/sqlboiler/v4's releases.

v4.18.0

Added

Fixed

  • Revert change to DeleteAll method. The change causes incorrect changes on tables with multi-column primary keys

New Contributors

Full Changelog: volatiletech/sqlboiler@v4.17.1...v4.18.0

Changelog

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

[4.18.0] - 2025-01-03

Added

Fixed

  • Revert change to DeleteAll method. The change causes incorrect changes on tables with multi-column primary keys
Commits
  • 2921b87 Update CHANGELOG and Bump Version
  • 6a51bd5 Update CHANGELOG and Bump Version
  • a33806b Merge pull request #1431 from volatiletech/revert-1376-master
  • fc6399e Revert "Updates to string template"
  • d0cee93 Merge pull request #1428 from volatiletech/workflows
  • 9dd0e46 Pin ubuntu-22.04 in workflow
  • dafaf41 Merge pull request #1414 from morganhein/feat/add-no-schema-argument
  • 583bd69 wip: added --no-schema option scaffolding, needs tests
  • See full diff in compare view

Updates google.golang.org/grpc from 1.67.1 to 1.70.0

Release notes

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

Release 1.70.0

Behavior Changes

  • client: reject service configs containing an invalid retryPolicy in accordance with gRFCs A21 and A6. (#7905)
    • Note that this is a potential breaking change for some users using an invalid configuration, but continuing to allow this behavior would violate our cross-language compatibility requirements.

New Features

  • xdsclient: fallback to a secondary management server (if specified in the bootstrap configuration) when the primary is down is enabled by default. Can be disabled by setting the environment variable GRPC_EXPERIMENTAL_XDS_FALLBACK to false. (#7949)
  • experimental/credentials: experimental transport credentials are added which don't enforce ALPN. (#7980)
    • These credentials will be removed in an upcoming grpc-go release. Users must not rely on these credentials directly. Instead, they should either vendor a specific version of gRPC or copy the relevant credentials into their own codebase if absolutely necessary.

Bug Fixes

  • xds: fix a possible deadlock that happens when both the client application and the xDS management server (responsible for configuring the client) are using the xds:/// scheme in their target URIs. (#8011)

Performance

  • server: for unary requests, free raw request message data as soon as parsing is finished instead of waiting until the method handler returns. (#7998)

Documentation

  • examples/features/gracefulstop: add example to demonstrate server graceful stop. (#7865)

Release 1.69.4

Bug Fixes

  • rbac: fix support for :path header matchers, which would previously never successfully match (#7965).

Documentation

  • examples/features/csm_observability: update example client and server to use the helloworld service instead of echo service (#7945).

Release 1.69.3 was accidentally tagged on the master branch and will be deleted. Please update to 1.69.4 instead.

Release 1.69.2

Bug Fixes

  • stats/experimental: add type aliases for symbols (Metrics/etc) that were moved to the stats package (#7929).
  • client: set user-agent string to the correct version.

Release 1.69.0

Known Issues

  • The recently added grpc.NewClient function is incompatible with forward proxies, because it resolves the target hostname on the client instead of passing the hostname to the proxy. A fix is expected to be a part of grpc-go v1.70. (#7556)

New Features

  • stats/opentelemetry: Introduce new APIs to enable OpenTelemetry instrumentation for metrics on servers and clients (#7874)
  • xdsclient: add support to fallback to lower priority servers when higher priority ones are down (#7701)
  • dns: Add support for link local IPv6 addresses (#7889)
  • The new experimental pickfirst LB policy (disabled by default) supports Happy Eyeballs, interleaving IPv4 and IPv6 address as described in RFC-8305 section 4, to attempt connections to multiple backends concurrently. The experimental pickfirst policy can be enabled by setting the environment variable GRPC_EXPERIMENTAL_ENABLE_NEW_PICK_FIRST to true. (#7725, #7742)

... (truncated)

Commits

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

| Package | From | To |
| --- | --- | --- |
| [github.com/ClickHouse/clickhouse-go/v2](https://github.com/ClickHouse/clickhouse-go) | `2.30.0` | `2.32.2` |
| [github.com/DIMO-Network/attestation-api](https://github.com/DIMO-Network/attestation-api) | `0.0.11` | `0.0.18` |
| [github.com/Khan/genqlient](https://github.com/Khan/genqlient) | `0.7.0` | `0.8.0` |
| [github.com/auth0/go-jwt-middleware/v2](https://github.com/auth0/go-jwt-middleware) | `2.2.1` | `2.2.2` |
| [github.com/ethereum/go-ethereum](https://github.com/ethereum/go-ethereum) | `1.14.13` | `1.15.2` |
| [github.com/go-jose/go-jose/v4](https://github.com/go-jose/go-jose) | `4.0.4` | `4.0.5` |
| [github.com/prometheus/client_golang](https://github.com/prometheus/client_golang) | `1.20.5` | `1.21.0` |
| [github.com/volatiletech/sqlboiler/v4](https://github.com/volatiletech/sqlboiler) | `4.17.1` | `4.18.0` |



Updates `github.com/ClickHouse/clickhouse-go/v2` from 2.30.0 to 2.32.2
- [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.30.0...v2.32.2)

Updates `github.com/DIMO-Network/attestation-api` from 0.0.11 to 0.0.18
- [Release notes](https://github.com/DIMO-Network/attestation-api/releases)
- [Commits](DIMO-Network/attestation-api@v0.0.11...v0.0.18)

Updates `github.com/DIMO-Network/shared` from 0.12.7 to 0.12.9
- [Release notes](https://github.com/DIMO-Network/shared/releases)
- [Commits](DIMO-Network/shared@v0.12.7...v0.12.9)

Updates `github.com/Khan/genqlient` from 0.7.0 to 0.8.0
- [Release notes](https://github.com/Khan/genqlient/releases)
- [Changelog](https://github.com/Khan/genqlient/blob/main/docs/CHANGELOG.md)
- [Commits](Khan/genqlient@v0.7.0...v0.8.0)

Updates `github.com/auth0/go-jwt-middleware/v2` from 2.2.1 to 2.2.2
- [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.1...v2.2.2)

Updates `github.com/ethereum/go-ethereum` from 1.14.13 to 1.15.2
- [Release notes](https://github.com/ethereum/go-ethereum/releases)
- [Commits](ethereum/go-ethereum@v1.14.13...v1.15.2)

Updates `github.com/go-jose/go-jose/v4` from 4.0.4 to 4.0.5
- [Release notes](https://github.com/go-jose/go-jose/releases)
- [Changelog](https://github.com/go-jose/go-jose/blob/main/CHANGELOG.md)
- [Commits](go-jose/go-jose@v4.0.4...v4.0.5)

Updates `github.com/prometheus/client_golang` from 1.20.5 to 1.21.0
- [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.20.5...v1.21.0)

Updates `github.com/uber/h3-go/v4` from 4.1.2 to 4.2.0
- [Release notes](https://github.com/uber/h3-go/releases)
- [Changelog](https://github.com/uber/h3-go/blob/master/CHANGELOG.md)
- [Commits](uber/h3-go@v4.1.2...v4.2.0)

Updates `github.com/volatiletech/sqlboiler/v4` from 4.17.1 to 4.18.0
- [Release notes](https://github.com/volatiletech/sqlboiler/releases)
- [Changelog](https://github.com/volatiletech/sqlboiler/blob/master/CHANGELOG.md)
- [Commits](volatiletech/sqlboiler@v4.17.1...v4.18.0)

Updates `google.golang.org/grpc` from 1.67.1 to 1.70.0
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.67.1...v1.70.0)

---
updated-dependencies:
- dependency-name: github.com/ClickHouse/clickhouse-go/v2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/attestation-api
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/DIMO-Network/shared
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/Khan/genqlient
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/auth0/go-jwt-middleware/v2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/ethereum/go-ethereum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/go-jose/go-jose/v4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-mod
- dependency-name: github.com/prometheus/client_golang
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/uber/h3-go/v4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: github.com/volatiletech/sqlboiler/v4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-mod
- dependency-name: google.golang.org/grpc
  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 Feb 25, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 28, 2025

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

@dependabot dependabot bot closed this Feb 28, 2025
@dependabot dependabot bot deleted the dependabot/go_modules/go-mod-192334b407 branch February 28, 2025 02:21
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