chore(deps): bump the all-dependencies group with 16 updates#1734
Open
dependabot[bot] wants to merge 3 commits into
Open
chore(deps): bump the all-dependencies group with 16 updates#1734dependabot[bot] wants to merge 3 commits into
dependabot[bot] wants to merge 3 commits into
Conversation
--- updated-dependencies: - dependency-name: buf.build/gen/go/agglayer/agglayer/grpc/go dependency-version: 1.6.2-20260721180539-9c8c052f9efb.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: buf.build/gen/go/agglayer/agglayer/protocolbuffers/go dependency-version: 1.36.11-20260721180539-9c8c052f9efb.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: buf.build/gen/go/agglayer/interop/protocolbuffers/go dependency-version: 1.36.11-00000000000000-29048f73ad53.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: buf.build/gen/go/agglayer/provers/grpc/go dependency-version: 1.6.2-20251202141513-a9dcd71009d1.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: buf.build/gen/go/agglayer/provers/protocolbuffers/go dependency-version: 1.36.11-20251202141513-a9dcd71009d1.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: github.com/ethereum/go-ethereum dependency-version: 1.17.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: github.com/invopop/jsonschema dependency-version: 0.14.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: github.com/jellydator/ttlcache/v3 dependency-version: 3.4.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: github.com/knadh/koanf/v2 dependency-version: 2.3.5 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: github.com/mattn/go-sqlite3 dependency-version: 1.14.48 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: github.com/pelletier/go-toml/v2 dependency-version: 2.4.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: github.com/prometheus/client_golang dependency-version: 1.24.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: go.uber.org/zap dependency-version: 1.28.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: golang.org/x/sync dependency-version: 0.21.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies - dependency-name: google.golang.org/genproto/googleapis/rpc dependency-version: 0.0.0-20260226221140-a57be14db171 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: all-dependencies - dependency-name: google.golang.org/grpc dependency-version: 1.81.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: all-dependencies ... Signed-off-by: dependabot[bot] <support@github.com>
joanestebanr
previously approved these changes
Jul 22, 2026
The grouped Dependabot update pulled the agglayer/interop protobuf module backward to the 2025-05-19 schema snapshot (via a v1.36.11 pseudo-version that MVS selects over the previous v1.36.10-20250923). That snapshot predates the Multisig/ECDSAMultisig/AggchainProofWithMultisig types, breaking the build across every CI job. Pin interop to a recent v1.36.11 snapshot (20260710) that still contains those types so MVS resolves forward instead of back. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Their pseudo-versions encode the schema by embedded timestamp, not semver, so Dependabot can "upgrade" to an older schema and break the build (as happened in this PR). Bump these first-party modules manually. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Note
Manual changes added on top of the Dependabot bump (Arnau + Claude)
Why extra commits were needed
The grouped bump rolled the
agglayer/interopprotobuf module backward. The other agglayer proto modules in this group transitively requireinteropat av1.36.11pseudo-version, and Go module resolution (MVS) selects the highest semver — which resolved to the 2025-05-19 schema snapshot. That snapshot predates theMultisig/ECDSAMultisig/AggchainProofWithMultisiggenerated types thatagglayer/grpcdepends on, so the build failed and cascaded into every CI job (lint, CodeQL, govulncheck, Docker build, e2e image builds).The catch: these
buf.build/gen/go/agglayer/*modules use pseudo-versions where the semver prefix (v1.36.11) is only the protobuf-go generator version — the actual schema is identified by the embedded commit timestamp. So av1.36.11module can carry an older schema than av1.36.10one, and Dependabot/MVS have no way to know.What the manual commits do
fix(deps)— forward-pininteropto a recentv1.36.11snapshot (20260710) that still contains the multisig types, so MVS resolves forward instead of back. Verified locally withmake build-aggkitandgo build ./....ci(dependabot)— add anignorerule forbuf.build/gen/go/agglayer/*so Dependabot no longer manages these first-party proto modules. Their timestamp-encoded versioning is incompatible with semver-based update logic; the team bumps them deliberately together. This prevents the same backward-schema breakage from recurring.Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase.Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions