Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 9, 2026

Bumps the all-go group with 2 updates in the / directory: golang.org/x/crypto and golang.org/x/net.
Bumps the all-go group with 2 updates in the /execution/grpc directory: golang.org/x/net and github.com/evstack/ev-node.
Bumps the all-go group with 2 updates in the /test/docker-e2e directory: github.com/celestiaorg/tastora and github.com/evstack/ev-node/execution/evm.
Bumps the all-go group with 1 update in the /test/e2e directory: github.com/celestiaorg/tastora.

Updates golang.org/x/crypto from 0.47.0 to 0.48.0

Commits

Updates golang.org/x/net from 0.49.0 to 0.50.0

Commits
  • ebddb99 go.mod: update golang.org/x dependencies
  • 4a490d4 internal/http3: add Expect: 100-continue support to ClientConn
  • 73fe701 internal/http3: add Expect: 100-continue support to Server
  • af0c9df html: add NodeType.String() method
  • e02fb33 internal/http3: make responseWriter.Flush write headers if not done yet
  • da558ff internal/http3: ensure bodyReader cannot be read after being closed
  • d7c76fa internal/http3: make responseWriter behave closer to other http.ResponseWriter
  • 64b3af9 http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit
  • 1973e8d internal/http3: add Server support for handling HEAD requests
  • 57ea86d icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian
  • Additional commits viewable in compare view

Updates golang.org/x/net from 0.49.0 to 0.50.0

Commits
  • ebddb99 go.mod: update golang.org/x dependencies
  • 4a490d4 internal/http3: add Expect: 100-continue support to ClientConn
  • 73fe701 internal/http3: add Expect: 100-continue support to Server
  • af0c9df html: add NodeType.String() method
  • e02fb33 internal/http3: make responseWriter.Flush write headers if not done yet
  • da558ff internal/http3: ensure bodyReader cannot be read after being closed
  • d7c76fa internal/http3: make responseWriter behave closer to other http.ResponseWriter
  • 64b3af9 http2: prevent transport deadlock due to WINDOW_UPDATE that exceeds limit
  • 1973e8d internal/http3: add Server support for handling HEAD requests
  • 57ea86d icmp, internal/socket, ipv4, ipv6: use binary.NativeEndian
  • Additional commits viewable in compare view

Updates github.com/evstack/ev-node from 1.0.0-rc.1 to 1.0.0-rc.3

Release notes

Sourced from github.com/evstack/ev-node's releases.

v1.0.0-rc.3 (2026-02-05)

ev-node v1.0.0-rc.3

This is new release candidate focused on improving cache handling, fixing critical bugs in block replay logic, and enhancing node synchronization with DA hints for P2P transactions. This release includes one breaking change related to cache persistence behavior that requires operator awareness.

Tested upgrade paths

  • ev-node v1.0.0-rc.2 -> ev-node v1.0.0-rc.3

⚠️ Breaking Changes

Cache Persistence Changes

What changed: The pending events cache and transaction cache are now fully ephemeral and will not persist across node restarts. Only the DA inclusion cache persists (stored in metadata) until cleared after DA inclusion processing has been completed. (#3047)

Action required:

  1. Be aware that on node restart, pending events and transactions will need to be re-fetched from peers or the DA layer
  2. Operators can delete the previous file cache to save disk space (rm -rf ./appd/data/cache)

Full Changelog

For a complete list of all changes including new features, improvements, and bug fixes, see CHANGELOG.md.

Images

  • ghcr.io/evstack/ev-node-evm:v1.0.0-rc.3
  • ghcr.io/evstack/ev-node-grpc:v1.0.0-rc.3
  • ghcr.io/evstack/ev-node-testapp:v1.0.0-rc.3

v1.0.0-rc.2 (2026-02-04)

ev-node v1.0.0-rc.2

This release candidate improves cache handling, storage efficiency, and metrics accuracy. This release reduces storage duplication by replacing the go-header store with the ev-node native store and improves performance when handling backlogs of pending blocks. It also reduces the default max bytes size to 5MB for better compatibility with public DA nodes.

Tested upgrade paths

  • ev-node v1.0.0-rc.1 -> ev-node v1.0.0-rc.2

Full Changelog

For a complete list of all changes including new features, improvements, and bug fixes, see CHANGELOG.md.

Images

  • ghcr.io/evstack/ev-node-evm:v1.0.0-rc.2
  • ghcr.io/evstack/ev-node-grpc:v1.0.0-rc.2
  • ghcr.io/evstack/ev-node-testapp:v1.0.0-rc.2
Changelog

Sourced from github.com/evstack/ev-node's changelog.

v1.0.0-rc.3

Added

  • Add DA Hints for P2P transactions. This allows a catching up node to be on sync with both DA and P2P. (#2891)

Changes

  • Improve cache.NumPendingData to not return empty data. Automatically bumps LastSubmittedHeight to reflect that. (#3046)
  • BREAKING Make pending events cache and tx cache fully ephemeral. Those will be re-fetched on restart. DA Inclusion cache persists until cleared up after DA inclusion has been processed. Persist accross restart using store metadata. (#3047)
  • Replace LRU cache by standard mem cache with manual eviction in store_adapter. When P2P blocks were fetched too fast, they would be evicted before being executed #3051
  • Fix replay logic leading to app hashes by verifying against the wrong block #3053.

v1.0.0-rc.2

Changes

  • Improve cache handling when there is a significant backlog of pending headers and data. (#3030)
  • Decrease MaxBytesSize to 5MB to increase compatibility with public nodes. (#3030)
  • Proper counting of DASubmitterPendingBlobs metrics. #3038
  • Replace go-header store by ev-node store. This avoid duplication of all blocks in go-header and ev-node store. Thanks to the cached store from #3030, this should improve p2p performance as well. #3036
Commits
  • aedd573 fix(block): fix replay logic (#3053)
  • 0425059 chore: updating changelog to include telemetry options (#3052)
  • b8eda5d refactor(store): improve cache restore perf & fix go-header store errs (#3051)
  • 0a349c0 build(deps): Bump bytes from 1.11.0 to 1.11.1 in the cargo group across 1 dir...
  • d20b1ac refactor(cache)!: remove gob cache (#3047)
  • 2510fe7 ci: release process with breaking changes (#2998)
  • 432d5a7 test: adding compatibility test to perform syncing (#3023)
  • 120195f build(deps): Bump the all-go group across 4 directories with 9 updates (#3042)
  • e7bf19d refactor(cache): skip empty data in pending data (#3046)
  • e8e8946 feat: DA hints in p2p (#2891)
  • Additional commits viewable in compare view

Updates github.com/celestiaorg/tastora from 0.10.0 to 0.12.0

Release notes

Sourced from github.com/celestiaorg/tastora's releases.

v0.12.0

What's Changed

Full Changelog: celestiaorg/tastora@v0.11.1...v0.12.0

v0.11.1

What's Changed

Full Changelog: celestiaorg/tastora@v0.11.0...v0.11.1

v0.11.0

What's Changed

New Contributors

Full Changelog: celestiaorg/tastora@v0.10.0...v0.11.0

Commits
  • dc48f39 refactor: hyperlane changes to support agents image and debugging
  • cd8f897 chore: apply suggestion from pr review
  • d5e5a54 chore: address test failures due to naming change in hyp registry
  • 99e0b77 chore: add notice for chain name workaround in hyperlane provider
  • c027d25 chore: revert and concat in hyperlane registry builder
  • 4f39d43 chore: set agent log level to debug by default
  • 0fb2e79 fix: update reth hyperlane contract addresses and add technicalStack
  • c15845b chore: adding g as price overrides
  • cc9ddaa chore: switch around deploy cfgs
  • 6f30e42 chore: commit changes, cosmos to evm now relaying
  • Additional commits viewable in compare view

Updates github.com/evstack/ev-node/execution/evm from 1.0.0-rc.1 to 1.0.0-rc.2

Release notes

Sourced from github.com/evstack/ev-node/execution/evm's releases.

v1.0.0-rc.2 (2026-02-04)

ev-node v1.0.0-rc.2

This release candidate improves cache handling, storage efficiency, and metrics accuracy. This release reduces storage duplication by replacing the go-header store with the ev-node native store and improves performance when handling backlogs of pending blocks. It also reduces the default max bytes size to 5MB for better compatibility with public DA nodes.

Tested upgrade paths

  • ev-node v1.0.0-rc.1 -> ev-node v1.0.0-rc.2

Full Changelog

For a complete list of all changes including new features, improvements, and bug fixes, see CHANGELOG.md.

Images

  • ghcr.io/evstack/ev-node-evm:v1.0.0-rc.2
  • ghcr.io/evstack/ev-node-grpc:v1.0.0-rc.2
  • ghcr.io/evstack/ev-node-testapp:v1.0.0-rc.2
Changelog

Sourced from github.com/evstack/ev-node/execution/evm's changelog.

v1.0.0-rc.2

Changes

  • Improve cache handling when there is a significant backlog of pending headers and data. (#3030)
  • Decrease MaxBytesSize to 5MB to increase compatibility with public nodes. (#3030)
  • Proper counting of DASubmitterPendingBlobs metrics. #3038
  • Replace go-header store by ev-node store. This avoid duplication of all blocks in go-header and ev-node store. Thanks to the cached store from #3030, this should improve p2p performance as well. #3036
Commits
  • 709d4db chore: remove double p2p setting (#3041)
  • 0189cd5 docs: clarify txpoolExt_getTxs usage (#3032)
  • e9b9f39 refactor(store): replace go-header store by ev-node store (#3036)
  • 850a82f fix(sync): reduce P2P init timeout and fallback to DA sync (#3037)
  • 9bc6311 fix(metrics): proper count of pending blobs metrics (#3038)
  • 5506eb0 add http2 grpc app (#3039)
  • 455b6c1 feat: Add collapsible blob list in DA Explorer (#3033)
  • 30a3e24 test: enable force inclusion, re-enable fi e2e and add fi benchmarks (#3005)
  • 895db52 fix(cache,store): improve cache handling (#3030)
  • bcd3375 chore: CHANGELOG feedbacks on 1.0.0-rc.1 (#3031)
  • Additional commits viewable in compare view

Updates github.com/celestiaorg/tastora from 0.10.0 to 0.12.0

Release notes

Sourced from github.com/celestiaorg/tastora's releases.

v0.12.0

What's Changed

Full Changelog: celestiaorg/tastora@v0.11.1...v0.12.0

v0.11.1

What's Changed

Full Changelog: celestiaorg/tastora@v0.11.0...v0.11.1

v0.11.0

What's Changed

New Contributors

Full Changelog: celestiaorg/tastora@v0.10.0...v0.11.0

Commits
  • dc48f39 refactor: hyperlane changes to support agents image and debugging
  • cd8f897 chore: apply suggestion from pr review
  • d5e5a54 chore: address test failures due to naming change in hyp registry
  • 99e0b77 chore: add notice for chain name workaround in hyperlane provider
  • c027d25 chore: revert and concat in hyperlane registry builder
  • 4f39d43 chore: set agent log level to debug by default
  • 0fb2e79 fix: update reth hyperlane contract addresses and add technicalStack
  • c15845b chore: adding g as price overrides
  • cc9ddaa chore: switch around deploy cfgs
  • 6f30e42 chore: commit changes, cosmos to evm now relaying
  • Additional commits viewable in compare view

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the all-go group with 2 updates in the / directory: [golang.org/x/crypto](https://github.com/golang/crypto) and [golang.org/x/net](https://github.com/golang/net).
Bumps the all-go group with 2 updates in the /execution/grpc directory: [golang.org/x/net](https://github.com/golang/net) and [github.com/evstack/ev-node](https://github.com/evstack/ev-node).
Bumps the all-go group with 2 updates in the /test/docker-e2e directory: [github.com/celestiaorg/tastora](https://github.com/celestiaorg/tastora) and [github.com/evstack/ev-node/execution/evm](https://github.com/evstack/ev-node).
Bumps the all-go group with 1 update in the /test/e2e directory: [github.com/celestiaorg/tastora](https://github.com/celestiaorg/tastora).


Updates `golang.org/x/crypto` from 0.47.0 to 0.48.0
- [Commits](golang/crypto@v0.47.0...v0.48.0)

Updates `golang.org/x/net` from 0.49.0 to 0.50.0
- [Commits](golang/net@v0.49.0...v0.50.0)

Updates `golang.org/x/net` from 0.49.0 to 0.50.0
- [Commits](golang/net@v0.49.0...v0.50.0)

Updates `github.com/evstack/ev-node` from 1.0.0-rc.1 to 1.0.0-rc.3
- [Release notes](https://github.com/evstack/ev-node/releases)
- [Changelog](https://github.com/evstack/ev-node/blob/main/CHANGELOG.md)
- [Commits](v1.0.0-rc.1...v1.0.0-rc.3)

Updates `github.com/celestiaorg/tastora` from 0.10.0 to 0.12.0
- [Release notes](https://github.com/celestiaorg/tastora/releases)
- [Commits](celestiaorg/tastora@v0.10.0...v0.12.0)

Updates `github.com/evstack/ev-node/execution/evm` from 1.0.0-rc.1 to 1.0.0-rc.2
- [Release notes](https://github.com/evstack/ev-node/releases)
- [Changelog](https://github.com/evstack/ev-node/blob/main/CHANGELOG.md)
- [Commits](v1.0.0-rc.1...v1.0.0-rc.2)

Updates `github.com/celestiaorg/tastora` from 0.10.0 to 0.12.0
- [Release notes](https://github.com/celestiaorg/tastora/releases)
- [Commits](celestiaorg/tastora@v0.10.0...v0.12.0)

---
updated-dependencies:
- dependency-name: golang.org/x/crypto
  dependency-version: 0.48.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go
- dependency-name: golang.org/x/net
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go
- dependency-name: golang.org/x/net
  dependency-version: 0.50.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go
- dependency-name: github.com/evstack/ev-node
  dependency-version: 1.0.0-rc.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go
- dependency-name: github.com/celestiaorg/tastora
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go
- dependency-name: github.com/evstack/ev-node/execution/evm
  dependency-version: 1.0.0-rc.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-go
- dependency-name: github.com/celestiaorg/tastora
  dependency-version: 0.12.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-go
...

Signed-off-by: dependabot[bot] <support@github.com>
@claude
Copy link
Contributor

claude bot commented Feb 10, 2026

Claude finished @julienrbrt's task in 2m 29s —— View job


Code Review: Dependency Updates

I've completed a comprehensive review of this Dependabot PR which updates multiple Go dependencies across the ev-node monorepo.

Summary

This PR updates 5 key dependencies across 4 directories:

  • golang.org/x/crypto (0.47.0 → 0.48.0)
  • golang.org/x/net (0.49.0 → 0.50.0)
  • github.com/evstack/ev-node (1.0.0-rc.1 → 1.0.0-rc.3)
  • github.com/celestiaorg/tastora (0.10.0 → 0.12.0)
  • github.com/evstack/ev-node/execution/evm (1.0.0-rc.1 → 1.0.0-rc.2)

Critical Findings

⚠️ Breaking Changes in ev-node rc.3

The ev-node update from rc.1 to rc.3 includes BREAKING CHANGES that require operator awareness:

Cache Persistence Changes (#3047):

  • Pending events cache and transaction cache are now fully ephemeral (won't persist across restarts)
  • Only the DA inclusion cache persists (stored in metadata)
  • Action Required: On node restart, pending events and transactions will need to be re-fetched from peers or the DA layer
  • Migration: Operators should delete the previous file cache to save disk space: rm -rf ./appd/data/cache

Other Notable Changes:

  • Fixed critical replay logic bug that was verifying against wrong blocks (#3053)
  • Replaced LRU cache with standard memory cache to prevent premature eviction of P2P blocks (#3051)
  • Added DA Hints for P2P transactions to improve node synchronization (#2891)

Detailed Analysis

1. Security Review ✅

golang.org/x/crypto (0.47.0 → 0.48.0):

  • Security Fix: Addresses panic on parameters <= 0 in scrypt (commit 7d0074c)
  • This prevents potential DoS attacks via malicious scrypt parameters
  • Recommendation: This is a security-relevant update and should be merged

golang.org/x/net (0.49.0 → 0.50.0):

  • Security Fix: Prevents transport deadlock due to WINDOW_UPDATE that exceeds limit in HTTP/2 (commit 64b3af9)
  • Adds Expect: 100-continue support to HTTP/3 (both client and server)
  • Improves responseWriter behavior and bodyReader safety
  • Recommendation: This is a security-relevant update addressing a potential deadlock condition

2. Compatibility Review ✅

Module Boundary Consistency:
The PR correctly updates dependencies across all module boundaries in the monorepo:

  • Root module (/) - go.mod:39-40
  • execution/grpc/ - go.mod:10
  • test/docker-e2e/ - go.mod:7,9,34
  • test/e2e/ - go.mod (tastora update)
  • apps/evm/ - go.mod:12,14
  • execution/evm/ (indirect updates)

Version Alignment:

  • ✅ All modules consistently use golang.org/x/crypto v0.48.0 and golang.org/x/net v0.50.0
  • ✅ Internal ev-node version bumps are correctly applied:
    • Main module: github.com/evstack/ev-node v1.0.0-rc.3 (execution/grpc/go.mod:8)
    • Execution: github.com/evstack/ev-node/execution/evm v1.0.0-rc.2 (test/docker-e2e/go.mod:9)
    • Core remains at: github.com/evstack/ev-node/core v1.0.0-rc.1 (consistent across modules)

go.sum Integrity:

  • ✅ All go.sum files properly updated with corresponding checksums
  • ✅ No suspicious or missing checksums detected
  • ✅ Checksum format follows standard Go module conventions

3. Testing & CI Status ⏳

Current CI Status:

  • ✅ Semantic Pull Request check passed
  • ⏳ Main CI pipeline is queued (not yet completed)
  • ⏳ PR validation workflow is in progress

Testing Considerations:
Given the breaking changes in ev-node rc.3, the following should be verified by CI:

  • Block replay logic correctness (fixed in #3053)
  • P2P block synchronization with new cache implementation
  • DA hints functionality for P2P transactions
  • Cache persistence behavior after restart

Recommendation: Wait for CI to complete before merging to ensure all tests pass with the new cache behavior.

4. Performance Implications 📈

ev-node rc.3 Performance Improvements:

  • Cache handling improved for backlogs of pending headers/data
  • LRU cache replaced with manual eviction to prevent premature P2P block eviction (#3051)
  • go-header store replaced with ev-node native store (reduces storage duplication)
  • MaxBytesSize reduced to 5MB for better compatibility with public DA nodes

Potential Concerns:

  • Ephemeral caches mean more network traffic on node restarts (re-fetching from peers/DA)
  • Operators should monitor memory usage with new cache implementation
  • Initial sync after upgrade may be slower due to cache rebuilding

5. Breaking Change Impact Assessment ⚠️

Severity: Medium
Scope: Operations (not API breaking)
Migration Complexity: Low (requires cache cleanup)

Impact on Deployments:

  • Existing nodes will need to clear old file-based caches
  • Operators should expect increased network usage on first restart after upgrade
  • No code changes required in dependent applications
  • Backward compatibility maintained for APIs

Code Quality & Architecture Review ✅

Go Dependency Management:

  • ✅ All updates follow semantic versioning principles
  • ✅ No cyclic dependencies introduced
  • ✅ Module boundaries respected (separate go.mod files maintained)
  • ✅ Replace directives properly maintained (google.golang.org/genproto pinning)

Build Process:

  • go mod tidy has been run (commit b88211c)
  • ✅ All indirect dependencies properly tracked
  • ✅ No missing or dangling dependencies

Recommendations

  1. Merge Approval: ✅ I recommend merging this PR after CI passes

  2. Pre-Merge Checklist:

    • Verify all CI checks pass (currently pending)
    • Ensure integration tests validate the new cache behavior
    • Confirm e2e tests pass with the block replay fix
    • Verify docker-e2e tests with tastora updates
  3. Post-Merge Actions:

    • Document the breaking cache changes in release notes
    • Notify operators about cache cleanup requirements
    • Monitor node restarts for unexpected behavior
    • Track metrics for cache re-fetching performance
  4. Documentation Updates Needed:

    • Update operator docs to mention ephemeral cache behavior
    • Add migration guide for rc.1 → rc.3 upgrade path
    • Document the rm -rf ./appd/data/cache cleanup step
    • Update performance tuning guides with new cache behavior

Additional Notes

Positive Observations:

  • ✅ The scrypt security fix in golang.org/x/crypto is valuable
  • ✅ HTTP/2 deadlock fix in golang.org/x/net improves reliability
  • ✅ ev-node rc.3 fixes critical replay logic bugs
  • ✅ Storage efficiency improvements through go-header removal
  • ✅ Dependency updates are well-tested (rc.1 → rc.3 includes multiple fixes)

Dependencies Audit:

  • No known CVEs in the updated dependencies
  • All version bumps follow semantic versioning
  • Update frequency is reasonable (rc.1 → rc.3 in production lifecycle)
  • celestiaorg/tastora updates (0.10.0 → 0.12.0) focus on Hyperlane multi-chain support

Risk Assessment:

  • Low Risk: Security updates (golang.org/x/crypto, golang.org/x/net)
  • Medium Risk: Cache behavior changes (requires operational awareness)
  • Low Risk: tastora updates (test infrastructure only)
  • Overall Risk: Low-Medium (manageable with proper communication)

Conclusion

This is a well-structured dependency update with important security fixes and critical bug fixes. The breaking changes are properly documented in the upstream release notes and have low migration complexity. The main risk is the cache behavior change, which should be monitored post-deployment.

The PR demonstrates good dependency hygiene:

  • Security patches applied promptly
  • Internal version consistency maintained
  • Module boundaries respected
  • Proper use of go mod tidy

Overall Assessment: ✅ Approved pending CI completion

The updates bring valuable improvements:

  • Security hardening (scrypt DoS prevention, HTTP/2 deadlock fix)
  • Critical bug fixes (replay logic, cache eviction)
  • Performance improvements (storage deduplication, cache handling)
  • Enhanced functionality (DA hints for P2P sync)

CI Status:

  • Main CI: ⏳ Queued
  • Semantic PR: ✅ Passed
  • PR Validation: ⏳ In Progress

@github-actions
Copy link
Contributor

The latest Buf updates on your PR. Results from workflow CI / buf-check (pull_request).

BuildFormatLintBreakingUpdated (UTC)
✅ passed⏩ skipped✅ passed✅ passedFeb 10, 2026, 10:12 AM

@codecov
Copy link

codecov bot commented Feb 10, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 61.60%. Comparing base (a64c35b) to head (b88211c).
⚠️ Report is 1 commits behind head on main.

Additional details and impacted files
@@            Coverage Diff             @@
##             main    #3058      +/-   ##
==========================================
- Coverage   61.64%   61.60%   -0.05%     
==========================================
  Files         111      111              
  Lines       11120    11120              
==========================================
- Hits         6855     6850       -5     
- Misses       3526     3531       +5     
  Partials      739      739              
Flag Coverage Δ
combined 61.60% <ø> (-0.05%) ⬇️

Flags with carried forward coverage won't be shown. Click here to find out more.

☔ 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.

@julienrbrt julienrbrt enabled auto-merge February 10, 2026 10:17
@julienrbrt julienrbrt added this pull request to the merge queue Feb 10, 2026
Merged via the queue into main with commit dd87ec9 Feb 10, 2026
29 checks passed
@julienrbrt julienrbrt deleted the dependabot/go_modules/all-go-3edd2d1f8f branch February 10, 2026 10:40
@claude claude bot mentioned this pull request Feb 10, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant