Skip to content

chore(deps)(deps): bump the all-dependencies group with 31 updates#133

Merged
YoshihitoAso merged 2 commits intodev-2.7from
dependabot/go_modules/all-dependencies-ab53d6790e
Mar 16, 2026
Merged

chore(deps)(deps): bump the all-dependencies group with 31 updates#133
YoshihitoAso merged 2 commits intodev-2.7from
dependabot/go_modules/all-dependencies-ab53d6790e

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 16, 2026

Bumps the all-dependencies group with 31 updates:

Package From To
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob 1.4.0 1.6.4
github.com/BurntSushi/toml 1.4.0 1.6.0
github.com/VictoriaMetrics/fastcache 1.12.2 1.13.3
github.com/aws/aws-sdk-go-v2/config 1.27.33 1.32.12
github.com/aws/aws-sdk-go-v2/credentials 1.17.32 1.19.12
github.com/aws/aws-sdk-go-v2/service/route53 1.43.2 1.62.4
github.com/btcsuite/btcd/btcec/v2 2.3.4 2.3.6
github.com/cloudflare/cloudflare-go 0.104.0 0.116.0
github.com/consensys/gnark-crypto 0.18.1 0.20.0
github.com/deckarep/golang-set/v2 2.6.0 2.8.0
github.com/fatih/color 1.17.0 1.18.0
github.com/fsnotify/fsnotify 1.7.0 1.9.0
github.com/golang/snappy 0.0.4 1.0.0
github.com/graph-gophers/graphql-go 1.5.0 1.9.0
github.com/hashicorp/go-hclog 1.1.0 1.6.3
github.com/hashicorp/go-plugin 1.6.0 1.7.0
github.com/hashicorp/golang-lru 0.5.5-0.20210104140557-80c98217689d 1.0.2
github.com/holiman/uint256 1.3.1 1.3.2
github.com/influxdata/influxdb 1.8.3 1.12.3
github.com/mattn/go-colorable 0.1.13 0.1.14
github.com/olekukonko/tablewriter 0.0.5 1.1.4
github.com/status-im/keycard-go 0.3.2 0.3.3
github.com/stretchr/testify 1.10.0 1.11.1
github.com/urfave/cli/v2 2.27.4 2.27.5
golang.org/x/crypto 0.45.0 0.48.0
golang.org/x/sync 0.18.0 0.19.0
golang.org/x/sys 0.38.0 0.41.0
golang.org/x/text 0.31.0 0.34.0
golang.org/x/time 0.6.0 0.9.0
google.golang.org/grpc 1.66.1 1.79.2
google.golang.org/protobuf 1.34.2 1.36.10

Updates github.com/Azure/azure-sdk-for-go/sdk/storage/azblob from 1.4.0 to 1.6.4

Release notes

Sourced from github.com/Azure/azure-sdk-for-go/sdk/storage/azblob's releases.

sdk/storage/azblob/v1.6.4

1.6.4 (2026-01-12)

Features Added

  • Added support for the StartFrom parameter on BlobContainerClient.listBlobs() and BlobContainerClient.listBlobsByHierarchy() APIs.
  • Added support for conditional headers on BlobClientBase.getTags() and BlobClientBase.setTags() APIs.

Other Changes

  • Added support for service version 2026-02-06.

sdk/storage/azfile/v1.5.4

1.5.4 (2026-01-12)

Features Added

  • Added support for User Delegation SAS.
  • Added support for service version 2026-02-06.

sdk/data/azcosmos/v1.5.0-beta.5

1.5.0-beta.5 (2026-03-09)

Features Added

  • Adds support for float 16 datatype for vector embedding policy. See PR 25707
  • Improved the performance of the built-in ReadMany implementation. See PR 26007

Breaking Changes

  • Removed QueryEngine field from ReadManyOptions. ReadMany now always uses the built-in Go-native implementation.

Other Changes

  • Small performance optimizations to API's using query engine. See PR 25669

sdk/data/azcosmos/v1.5.0-beta.4

1.5.0-beta.4 (2025-11-24)

Features Added

  • Added client engine support for ReadManyItems. See PR 25458

sdk/storage/azdatalake/v1.4.4

1.4.4 (2026-01-12)

Features Added

  • Added support for service version 2026-02-06.

sdk/data/azcosmos/v1.4.2

1.4.2 (2025-12-10)

Bugs Fixed

... (truncated)

Commits

Updates github.com/BurntSushi/toml from 1.4.0 to 1.6.0

Release notes

Sourced from github.com/BurntSushi/toml's releases.

v1.6.0

TOML 1.1 is now enabled by default. The TOML changelog has an overview of changes: https://github.com/toml-lang/toml/blob/main/CHANGELOG.md

Also two small fixes:

  • Encode large floats as exponent syntax so that round-tripping things like 5e+22 is correct.

  • Using duplicate array keys would not give an error:

    arr = [1]
    arr = [2]
    

    This will now correctly give a "Key 'arr' has already been defined" error.

v1.5.0

Mostly some small bugfixes, with a few small new features:

  • Add Position.Col, to mark the column an error occurred (#410)

  • Print more detailed errors in the tomlv CLI.

  • Ensure ParseError.Message is always set (#411)

  • Allow custom string types as map keys (#414)

  • Mark meta keys as decoded when using Unmarshaler interface (#426)

  • Fix encoding when nested inline table ends with map (#438)

  • Fix encoding of several layers of embedded structs (#430)

  • Fix ErrorWithPosition panic when there is no newline in the TOML document (#433)

Commits
  • 5253492 Enable TOML 1.1 by default (#457)
  • e954445 Reject duplicate arrays (#455)
  • 6b16cbd Update toml-test test cases from upstream (#456)
  • 011fa2b Ensure constant format strings in wf calls
  • 4b439bf Remove itemNil
  • a473c12 Add test for out of range float64
  • b535ff8 Add some boring tests for lex.go
  • 6011ef0 Remove unreachable condition in lexTableNameStart
  • c8ca9e6 Remove unreachable condition
  • 1121f81 Make tomlv read from stdin
  • Additional commits viewable in compare view

Updates github.com/VictoriaMetrics/fastcache from 1.12.2 to 1.13.3

Release notes

Sourced from github.com/VictoriaMetrics/fastcache's releases.

v1.13.0

What's Changed

Full Changelog: VictoriaMetrics/fastcache@v1.12.5...v1.13.0

v1.12.5

No release notes provided.

Release v1.12.4

Update note: We advise skipping this release as it contains a breaking change that was introduced in VictoriaMetrics/fastcache#86 and reverted in VictoriaMetrics/fastcache#88. The fix has been released in the next release v1.12.5.

v1.12.3

Update note: We advise skipping this release as it contains a breaking change that was introduced in VictoriaMetrics/fastcache#86 and reverted in VictoriaMetrics/fastcache#88. The fix has been released in the next release v1.12.5.

Commits
  • cef9ae9 run go fix -rangeint
  • f608073 Revert "introduce new stats item EvictedBytes (#93)"
  • 9bc5415 file.go: return the correct error message from load() when the cache at the g...
  • 1412165 introduce new stats item EvictedBytes (#93)
  • 2693e48 improve bucket.Get requests performance
  • 66aca6e update deps versions (#91)
  • a258637 add JS build tags
  • e274544 add wasm build tags
  • b7ccf30 file: add LoadFromFileMaxBytes (#89)
  • 8cfcf81 Revert "file: load from file should allow configure maxBytes (#86)" (#88)
  • Additional commits viewable in compare view

Updates github.com/aws/aws-sdk-go-v2/config from 1.27.33 to 1.32.12

Commits

Updates github.com/aws/aws-sdk-go-v2/credentials from 1.17.32 to 1.19.12

Commits

Updates github.com/aws/aws-sdk-go-v2/service/route53 from 1.43.2 to 1.62.4

Commits

Updates github.com/btcsuite/btcd/btcec/v2 from 2.3.4 to 2.3.6

Commits
  • 442ef28 Merge pull request #2443 from sputn1ck/musig2_sign_with_agg_nonce
  • 21eb99e musig2: add combinedNonce getter
  • 8f54cc6 musig2: add Session.RegisterCombinedNonce
  • b7d0706 Merge pull request #2430 from Roasbeef/v-0-25-0-rc1
  • 31a762b build: bump version to v0.25.0-beta.rc1
  • e8097a1 Merge pull request #2410 from mohamedawnallah/fallback-to-GOPATH-bin-dir
  • 29f4215 Makefile+workflows: fallback to GOPATH/bin on non-existent GOBIN
  • a4ddae2 Merge pull request #2409 from gosunuts/fix/dockerfile-go-version
  • 2577dd3 Dockerfile: update go base image
  • c002ea3 Merge pull request #2320 from gosunuts/feature/fix-ci
  • Additional commits viewable in compare view

Updates github.com/cloudflare/cloudflare-go from 0.104.0 to 0.116.0

Release notes

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

v0.116.0

ENHANCEMENTS:

  • access_service_tokens: Added graceful rotation support for client secrets (#4189)

v0.115.0

ENHANCEMENTS:

  • access_service_token: add last_seen_at field (#3838)
  • dns: Add settings to DNSRecord (#3670)
  • teams_rules: add support for biso admin controls v2 (#3848)

DEPENDENCIES:

  • deps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (#3865)
  • deps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (#3869)
  • deps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (#3870)
  • deps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (#3868)

v0.114.0

NOTES:

  • rulesets: remove http_request_sbfm phase (#3824)
  • workers: The placement_mode attribute in script upload responses has been deprecated. The new attribute placement.mode should be used instead. (#3825)

ENHANCEMENTS:

  • access_application: added more fields to private destinations (#3829)
  • teams_rules: add support for resolve_dns_internally settings on dns_resolver rules (#3779)
  • waiting_room: add waiting room turnstile integration fields (#3764)
  • workers: Add new placement attribute object in script upload responses. It contains the mode and status attributes. (#3825)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (#3796)
  • deps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (#3783)

v0.113.0

ENHANCEMENTS:

  • teams_location: make location parameters optional (#3758)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (#3756)

v0.112.0

ENHANCEMENTS:

  • access_application: support Access service token + multi-valued authentication for SCIM provisioning (#3708)

... (truncated)

Changelog

Sourced from github.com/cloudflare/cloudflare-go's changelog.

0.116.0 (September 5th, 2025)

ENHANCEMENTS:

  • access_service_tokens: Added graceful rotation support for client secrets (#4189)

0.115.0 (January 29th, 2025)

ENHANCEMENTS:

  • access_service_token: add last_seen_at field (#3838)
  • dns: Add settings to DNSRecord (#3670)
  • teams_rules: add support for biso admin controls v2 (#3848)

DEPENDENCIES:

  • deps: bumps dependabot/fetch-metadata from 2.2.0 to 2.3.0 (#3865)
  • deps: bumps github.com/go-git/go-git/v5 from 5.11.0 to 5.13.0 (#3869)
  • deps: bumps github.com/goccy/go-json from 0.10.4 to 0.10.5 (#3870)
  • deps: bumps golang.org/x/net from 0.25.0 to 0.33.0 (#3868)

0.114.0 (January 15th, 2025)

NOTES:

  • rulesets: remove http_request_sbfm phase (#3824)
  • workers: The placement_mode attribute in script upload responses has been deprecated. The new attribute placement.mode should be used instead. (#3825)

ENHANCEMENTS:

  • access_application: added more fields to private destinations (#3829)
  • teams_rules: add support for resolve_dns_internally settings on dns_resolver rules (#3779)
  • waiting_room: add waiting room turnstile integration fields (#3764)
  • workers: Add new placement attribute object in script upload responses. It contains the mode and status attributes. (#3825)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.33.0 to 0.34.0 (#3796)
  • deps: bumps golang.org/x/time from 0.8.0 to 0.9.0 (#3783)

0.113.0 (January 1st, 2025)

ENHANCEMENTS:

  • teams_location: make location parameters optional (#3758)

DEPENDENCIES:

  • deps: bumps golang.org/x/net from 0.32.0 to 0.33.0 (#3756)

... (truncated)

Commits
  • 1eda786 Update CHANGELOG.md
  • 1317436 Update CHANGELOG.md for #4189
  • fd41d6b Merge pull request #4189 from GreenStage/aholland/client_secret_version
  • 8f93e33 Bump golangci/golangci-lint-action to fix CI errors
  • d5bd4b9 Add graceful rotation support for client secrets
  • 57714bf Update CHANGELOG.md
  • b063df7 generate changelog
  • 46140a1 Merge pull request #3870 from cloudflare/dependabot/go_modules/github.com/goc...
  • 3abb34b add CHANGELOG for #3870
  • c726fce Bump github.com/goccy/go-json from 0.10.4 to 0.10.5
  • Additional commits viewable in compare view

Updates github.com/consensys/gnark-crypto from 0.18.1 to 0.20.0

Release notes

Sourced from github.com/consensys/gnark-crypto's releases.

v0.20.0

What's Changed

... (truncated)

Changelog

Sourced from github.com/consensys/gnark-crypto's changelog.

[v0.20.0] - 2026-03-11

Build

  • deps: bump golang.org/x/crypto from 0.41.0 to 0.45.0 in the go_modules group across 1 directory (#770)

CI

  • enable security code scanner (#771)
  • Standardize imports (#760)

Chore

  • rename sage files (#806)
  • add dependabot configuration for GitHub Actions updates (#804)
  • reintroduce slack notif (#802)
  • update ci workflows to go 1.25 (#801)
  • use self hosted runners (#763)
  • merge v0.19 hotfix branch (#766)
  • clarify PublicKey.SetBytes uses compressed public key (#732)

Docs

  • update CITATION.bib
  • update changelog
  • update Go tested versions
  • update citation

Feat

  • add bn254 poseidon2 constants and support t=4/8/12/16 (#783)
  • lattice-based rational reconstructions for gnark scalar decompositions (#799)
  • Expose NewDefaultPermutation in Poseidon2 packages (#761)
  • batch subgroup membership testing (#710)
  • add typed field hasher interface in MiMC package (#752)
  • add parallel prefix product for vector e4 (#750)
  • expose vortex.ComputeLagrangeBasisAtX
  • vector e4 utils ops (#749)
  • add vector.Exp method
  • adds e4 vector Exp method (#739)
  • make bitReverse generic (#736)
  • handle len(p)=0 in kzg (#730)
  • Add P-256 (secp256r1) elliptic curve + ECDSA (#767)
  • add column linear combination check (#731)
  • Jacobian Triple for j=0 curves (#715)

FiatShamir

  • creation of new challenges with New() (#811)

Fix

  • Affine twisted Edwards scalar multiplication edge case (#774)
  • fix cursor bot comments (#803)
  • E2 MustSetRandom all elements (#793)
  • remove duplicate import (#762)
  • use G2Affine in UpdateMonomialsG2 template (#735)
  • make #740 retro compatible BitReverse generic impl
  • reintroduce BitReverse in fft package as deprecated for backward… (#740)
  • #727 with go generate and cosmetics (#734)

Perf

  • direct quartic extension for koala and baby bears (#779)
  • optimize (purego) extension for koalabear (#729)
  • optimize pre-computation in fixed-argument pairings by batching double steps (#798)

... (truncated)

Commits

Updates github.com/deckarep/golang-set/v2 from 2.6.0 to 2.8.0

Commits
  • 4c06bfc Update README.md in preparation for release 2.8.0
  • 0d26f4c Support 1.23 iterator for set (#140)
  • e1dc81f feat: add ContainsAnyElement method (#149)
  • 5227976 chore: fix typo (#150)
  • 8b270e6 Update README.md in preparation for 2.7.0 - JSON marshaling/unmarshaling fina...
  • e00dc23 Use pointer receivers for unsafeset (#143)
  • b710ba4 psst - a new sibling project is born
  • See full diff in compare view

Updates github.com/fatih/color from 1.17.0 to 1.18.0

Release notes

Sourced from github.com/fatih/color's releases.

v1.18.0

What's Changed

New Contributors

Full Changelog: fatih/color@v1.17.0...v1.18.0

Commits
  • 1c8d870 Update README.md
  • 546c2d0 Merge pull request #225 from fatih/add-rgb-api
  • 1ff0f97 Apply suggestions from code review
  • 5723903 Add RGB API support
  • f203fbc Merge pull request #237 from fatih/dependabot/go_modules/golang.org/x/sys-0.25.0
  • 60aa7fb Bump golang.org/x/sys from 0.24.0 to 0.25.0
  • 741c2f4 Merge pull request #236 from fatih/dependabot/go_modules/golang.org/x/sys-0.24.0
  • 0d24b42 Bump golang.org/x/sys from 0.18.0 to 0.24.0
  • cb154c0 Merge pull request #235 from deining/fix-typo
  • 9b9653e Bump GitHub workflow actions
  • See full diff in compare view

Updates github.com/fsnotify/fsnotify from 1.7.0 to 1.9.0

Release notes

Sourced from github.com/fsnotify/fsnotify's releases.

v1.9.0

Changes and fixes

  • all: make BufferedWatcher buffered again (#657)

  • inotify: fix race when adding/removing watches while a watched path is being deleted (#678, #686)

  • inotify: don't send empty event if a watched path is unmounted (#655)

  • inotify: don't register duplicate watches when watching both a symlink and its target; previously that would get "half-added" and removing the second would panic (#679)

  • kqueue: fix watching relative symlinks (#681)

  • kqueue: correctly mark pre-existing entries when watching a link to a dir on kqueue (#682)

  • illumos: don't send error if changed file is deleted while processing the event (#678)

#657: fsnotify/fsnotify#657 #678: fsnotify/fsnotify#678 #686: fsnotify/fsnotify#686 #655: fsnotify/fsnotify#655 #681: fsnotify/fsnotify#681 #679: fsnotify/fsnotify#679 #682: fsnotify/fsnotify#682

v1.8.0

Additions

  • all: add FSNOTIFY_DEBUG to print debug logs to stderr (#619)

Changes and fixes

  • windows: fix behaviour of WatchList() to be consistent with other platforms (#610)

  • kqueue: ignore events with Ident=0 (#590)

  • kqueue: set O_CLOEXEC to prevent passing file descriptors to children (#617)

  • kqueue: emit events as "/path/dir/file" instead of "path/link/file" when watching a symlink (#625)

  • inotify: don't send event for IN_DELETE_SELF when also watching the parent (#620)

  • inotify: fix panic when calling Remove() in a goroutine (#650)

  • fen: allow watching subdirectories of watched directories (#621)

Changelog

Sourced from github.com/fsnotify/fsnotify's changelog.

1.9.0 2024-04-04

Changes and fixes

  • all: make BufferedWatcher buffered again (

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 16, 2026
Bumps the all-dependencies group with 31 updates:

| Package | From | To |
| --- | --- | --- |
| [github.com/Azure/azure-sdk-for-go/sdk/storage/azblob](https://github.com/Azure/azure-sdk-for-go) | `1.4.0` | `1.6.4` |
| [github.com/BurntSushi/toml](https://github.com/BurntSushi/toml) | `1.4.0` | `1.6.0` |
| [github.com/VictoriaMetrics/fastcache](https://github.com/VictoriaMetrics/fastcache) | `1.12.2` | `1.13.3` |
| [github.com/aws/aws-sdk-go-v2/config](https://github.com/aws/aws-sdk-go-v2) | `1.27.33` | `1.32.12` |
| [github.com/aws/aws-sdk-go-v2/credentials](https://github.com/aws/aws-sdk-go-v2) | `1.17.32` | `1.19.12` |
| [github.com/aws/aws-sdk-go-v2/service/route53](https://github.com/aws/aws-sdk-go-v2) | `1.43.2` | `1.62.4` |
| [github.com/btcsuite/btcd/btcec/v2](https://github.com/btcsuite/btcd) | `2.3.4` | `2.3.6` |
| [github.com/cloudflare/cloudflare-go](https://github.com/cloudflare/cloudflare-go) | `0.104.0` | `0.116.0` |
| [github.com/consensys/gnark-crypto](https://github.com/consensys/gnark-crypto) | `0.18.1` | `0.20.0` |
| [github.com/deckarep/golang-set/v2](https://github.com/deckarep/golang-set) | `2.6.0` | `2.8.0` |
| [github.com/fatih/color](https://github.com/fatih/color) | `1.17.0` | `1.18.0` |
| [github.com/fsnotify/fsnotify](https://github.com/fsnotify/fsnotify) | `1.7.0` | `1.9.0` |
| [github.com/golang/snappy](https://github.com/golang/snappy) | `0.0.4` | `1.0.0` |
| [github.com/graph-gophers/graphql-go](https://github.com/graph-gophers/graphql-go) | `1.5.0` | `1.9.0` |
| [github.com/hashicorp/go-hclog](https://github.com/hashicorp/go-hclog) | `1.1.0` | `1.6.3` |
| [github.com/hashicorp/go-plugin](https://github.com/hashicorp/go-plugin) | `1.6.0` | `1.7.0` |
| [github.com/hashicorp/golang-lru](https://github.com/hashicorp/golang-lru) | `0.5.5-0.20210104140557-80c98217689d` | `1.0.2` |
| [github.com/holiman/uint256](https://github.com/holiman/uint256) | `1.3.1` | `1.3.2` |
| [github.com/influxdata/influxdb](https://github.com/influxdata/influxdb) | `1.8.3` | `1.12.3` |
| [github.com/mattn/go-colorable](https://github.com/mattn/go-colorable) | `0.1.13` | `0.1.14` |
| [github.com/olekukonko/tablewriter](https://github.com/olekukonko/tablewriter) | `0.0.5` | `1.1.4` |
| [github.com/status-im/keycard-go](https://github.com/status-im/keycard-go) | `0.3.2` | `0.3.3` |
| [github.com/stretchr/testify](https://github.com/stretchr/testify) | `1.10.0` | `1.11.1` |
| [github.com/urfave/cli/v2](https://github.com/urfave/cli) | `2.27.4` | `2.27.5` |
| [golang.org/x/crypto](https://github.com/golang/crypto) | `0.45.0` | `0.48.0` |
| [golang.org/x/sync](https://github.com/golang/sync) | `0.18.0` | `0.19.0` |
| [golang.org/x/sys](https://github.com/golang/sys) | `0.38.0` | `0.41.0` |
| [golang.org/x/text](https://github.com/golang/text) | `0.31.0` | `0.34.0` |
| [golang.org/x/time](https://github.com/golang/time) | `0.6.0` | `0.9.0` |
| [google.golang.org/grpc](https://github.com/grpc/grpc-go) | `1.66.1` | `1.79.2` |
| google.golang.org/protobuf | `1.34.2` | `1.36.10` |


Updates `github.com/Azure/azure-sdk-for-go/sdk/storage/azblob` from 1.4.0 to 1.6.4
- [Release notes](https://github.com/Azure/azure-sdk-for-go/releases)
- [Commits](Azure/azure-sdk-for-go@sdk/azcore/v1.4.0...sdk/storage/azblob/v1.6.4)

Updates `github.com/BurntSushi/toml` from 1.4.0 to 1.6.0
- [Release notes](https://github.com/BurntSushi/toml/releases)
- [Commits](BurntSushi/toml@v1.4.0...v1.6.0)

Updates `github.com/VictoriaMetrics/fastcache` from 1.12.2 to 1.13.3
- [Release notes](https://github.com/VictoriaMetrics/fastcache/releases)
- [Commits](VictoriaMetrics/fastcache@v1.12.2...v1.13.3)

Updates `github.com/aws/aws-sdk-go-v2/config` from 1.27.33 to 1.32.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@config/v1.27.33...config/v1.32.12)

Updates `github.com/aws/aws-sdk-go-v2/credentials` from 1.17.32 to 1.19.12
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@credentials/v1.17.32...service/sqs/v1.19.12)

Updates `github.com/aws/aws-sdk-go-v2/service/route53` from 1.43.2 to 1.62.4
- [Release notes](https://github.com/aws/aws-sdk-go-v2/releases)
- [Commits](aws/aws-sdk-go-v2@service/ssm/v1.43.2...service/fsx/v1.62.4)

Updates `github.com/btcsuite/btcd/btcec/v2` from 2.3.4 to 2.3.6
- [Release notes](https://github.com/btcsuite/btcd/releases)
- [Changelog](https://github.com/btcsuite/btcd/blob/master/CHANGES)
- [Commits](btcsuite/btcd@btcec/v2.3.4...btcec/v2.3.6)

Updates `github.com/cloudflare/cloudflare-go` from 0.104.0 to 0.116.0
- [Release notes](https://github.com/cloudflare/cloudflare-go/releases)
- [Changelog](https://github.com/cloudflare/cloudflare-go/blob/v0.116.0/CHANGELOG.md)
- [Commits](cloudflare/cloudflare-go@v0.104.0...v0.116.0)

Updates `github.com/consensys/gnark-crypto` from 0.18.1 to 0.20.0
- [Release notes](https://github.com/consensys/gnark-crypto/releases)
- [Changelog](https://github.com/Consensys/gnark-crypto/blob/master/CHANGELOG.md)
- [Commits](Consensys/gnark-crypto@v0.18.1...v0.20.0)

Updates `github.com/deckarep/golang-set/v2` from 2.6.0 to 2.8.0
- [Release notes](https://github.com/deckarep/golang-set/releases)
- [Commits](deckarep/golang-set@v2.6.0...v2.8.0)

Updates `github.com/fatih/color` from 1.17.0 to 1.18.0
- [Release notes](https://github.com/fatih/color/releases)
- [Commits](fatih/color@v1.17.0...v1.18.0)

Updates `github.com/fsnotify/fsnotify` from 1.7.0 to 1.9.0
- [Release notes](https://github.com/fsnotify/fsnotify/releases)
- [Changelog](https://github.com/fsnotify/fsnotify/blob/main/CHANGELOG.md)
- [Commits](fsnotify/fsnotify@v1.7.0...v1.9.0)

Updates `github.com/golang/snappy` from 0.0.4 to 1.0.0
- [Release notes](https://github.com/golang/snappy/releases)
- [Commits](golang/snappy@v0.0.4...v1.0.0)

Updates `github.com/graph-gophers/graphql-go` from 1.5.0 to 1.9.0
- [Release notes](https://github.com/graph-gophers/graphql-go/releases)
- [Changelog](https://github.com/graph-gophers/graphql-go/blob/main/CHANGELOG.md)
- [Commits](graph-gophers/graphql-go@v1.5.0...v1.9.0)

Updates `github.com/hashicorp/go-hclog` from 1.1.0 to 1.6.3
- [Release notes](https://github.com/hashicorp/go-hclog/releases)
- [Commits](hashicorp/go-hclog@v1.1.0...v1.6.3)

Updates `github.com/hashicorp/go-plugin` from 1.6.0 to 1.7.0
- [Release notes](https://github.com/hashicorp/go-plugin/releases)
- [Changelog](https://github.com/hashicorp/go-plugin/blob/main/CHANGELOG.md)
- [Commits](hashicorp/go-plugin@v1.6.0...v1.7.0)

Updates `github.com/hashicorp/golang-lru` from 0.5.5-0.20210104140557-80c98217689d to 1.0.2
- [Release notes](https://github.com/hashicorp/golang-lru/releases)
- [Commits](https://github.com/hashicorp/golang-lru/commits/v1.0.2)

Updates `github.com/holiman/uint256` from 1.3.1 to 1.3.2
- [Release notes](https://github.com/holiman/uint256/releases)
- [Commits](holiman/uint256@v1.3.1...v1.3.2)

Updates `github.com/influxdata/influxdb` from 1.8.3 to 1.12.3
- [Release notes](https://github.com/influxdata/influxdb/releases)
- [Changelog](https://github.com/influxdata/influxdb/blob/main/RELEASE.md)
- [Commits](influxdata/influxdb@v1.8.3...v1.12.3)

Updates `github.com/mattn/go-colorable` from 0.1.13 to 0.1.14
- [Commits](mattn/go-colorable@v0.1.13...v0.1.14)

Updates `github.com/olekukonko/tablewriter` from 0.0.5 to 1.1.4
- [Release notes](https://github.com/olekukonko/tablewriter/releases)
- [Commits](olekukonko/tablewriter@v0.0.5...v1.1.4)

Updates `github.com/status-im/keycard-go` from 0.3.2 to 0.3.3
- [Release notes](https://github.com/status-im/keycard-go/releases)
- [Commits](keycard-tech/keycard-go@v0.3.2...v0.3.3)

Updates `github.com/stretchr/testify` from 1.10.0 to 1.11.1
- [Release notes](https://github.com/stretchr/testify/releases)
- [Commits](stretchr/testify@v1.10.0...v1.11.1)

Updates `github.com/urfave/cli/v2` from 2.27.4 to 2.27.5
- [Release notes](https://github.com/urfave/cli/releases)
- [Changelog](https://github.com/urfave/cli/blob/main/docs/CHANGELOG.md)
- [Commits](urfave/cli@v2.27.4...v2.27.5)

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

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

Updates `golang.org/x/sys` from 0.38.0 to 0.41.0
- [Commits](golang/sys@v0.38.0...v0.41.0)

Updates `golang.org/x/text` from 0.31.0 to 0.34.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.31.0...v0.34.0)

Updates `golang.org/x/time` from 0.6.0 to 0.9.0
- [Commits](golang/time@v0.6.0...v0.9.0)

Updates `google.golang.org/grpc` from 1.66.1 to 1.79.2
- [Release notes](https://github.com/grpc/grpc-go/releases)
- [Commits](grpc/grpc-go@v1.66.1...v1.79.2)

Updates `google.golang.org/protobuf` from 1.34.2 to 1.36.10

---
updated-dependencies:
- dependency-name: github.com/Azure/azure-sdk-for-go/sdk/storage/azblob
  dependency-version: 1.6.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/BurntSushi/toml
  dependency-version: 1.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/VictoriaMetrics/fastcache
  dependency-version: 1.13.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/config
  dependency-version: 1.32.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/credentials
  dependency-version: 1.19.12
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/aws/aws-sdk-go-v2/service/route53
  dependency-version: 1.62.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/btcsuite/btcd/btcec/v2
  dependency-version: 2.3.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: github.com/cloudflare/cloudflare-go
  dependency-version: 0.116.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/consensys/gnark-crypto
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/deckarep/golang-set/v2
  dependency-version: 2.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/fatih/color
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/fsnotify/fsnotify
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/golang/snappy
  dependency-version: 1.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: github.com/graph-gophers/graphql-go
  dependency-version: 1.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/hashicorp/go-hclog
  dependency-version: 1.6.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/hashicorp/go-plugin
  dependency-version: 1.7.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/hashicorp/golang-lru
  dependency-version: 1.0.2
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: github.com/holiman/uint256
  dependency-version: 1.3.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: github.com/influxdata/influxdb
  dependency-version: 1.12.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/mattn/go-colorable
  dependency-version: 0.1.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: github.com/olekukonko/tablewriter
  dependency-version: 1.1.4
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all-dependencies
- dependency-name: github.com/status-im/keycard-go
  dependency-version: 0.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-dependencies
- dependency-name: github.com/stretchr/testify
  dependency-version: 1.11.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: github.com/urfave/cli/v2
  dependency-version: 2.27.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-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-dependencies
- dependency-name: golang.org/x/sync
  dependency-version: 0.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: golang.org/x/sys
  dependency-version: 0.41.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: golang.org/x/text
  dependency-version: 0.34.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: golang.org/x/time
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: google.golang.org/grpc
  dependency-version: 1.79.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
- dependency-name: google.golang.org/protobuf
  dependency-version: 1.36.10
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/go_modules/all-dependencies-ab53d6790e branch from e53beb5 to 0465b73 Compare March 16, 2026 07:30
Add darwin-specific CGO_CFLAGS (-w) in build/ci to silence noisy third-party cgo warnings when using clang, and introduce appendEnvValue helper to manage env entries. Update core/rawdb database inspection to use the tablewriter's newer API (Header/Footer/Bulk/Render) and surface errors from Bulk/Render. Update module dependencies: replace github.com/influxdata/influxdb with github.com/influxdata/influxdb1-client, prune several indirect modules and refresh go.sum accordingly.
@YoshihitoAso YoshihitoAso merged commit 0af09b0 into dev-2.7 Mar 16, 2026
5 checks passed
@YoshihitoAso YoshihitoAso deleted the dependabot/go_modules/all-dependencies-ab53d6790e branch March 16, 2026 10:39
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.

1 participant