Skip to content

chore(deps): bump the go-dependencies group across 1 directory with 4 updates - #4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-77c2a5beb0
Open

dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/go-dependencies-77c2a5beb0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 21, 2026 •

Copy link
Copy Markdown
Contributor

Bumps the go-dependencies group with 4 updates in the / directory: github.com/sirupsen/logrus, github.com/spf13/cobra, github.com/trustwallet/go-libs and github.com/trustwallet/go-primitives.

Updates github.com/sirupsen/logrus from 1.9.0 to 1.10.2

Release notes

Sourced from github.com/sirupsen/logrus's releases.

v1.10.2

Logrus v1.10.2

This is a small maintenance release that updates github.com/stretchr/testify to v1.12.1, removing the legacy gopkg.in/yaml.v3 dependency from Logrus' dependency graph. There are no functional changes in this release.

Dependency Changes

  • update github.com/stretchr/testify to v1.12.1

Full Changelog: sirupsen/logrus@v1.10.1...v1.10.2

v1.10.1

Logrus v1.10.1

This patch release fixes two issues in field formatting and handling:

  • Fix a regression introduced in v1.10.0 where TextFormatter could panic when formatting nil or panicking error and fmt.Stringer values.
  • Allow function-backed values implementing error to be used with WithError, WithField, and WithFields.

Dependency Changes

  • update github.com/stretchr/testify to v1.12.0

Full Changelog: sirupsen/logrus@v1.10.0...v1.10.1

v1.10.0

Logrus v1.10.0

This release focuses on substantial performance improvements, concurrency correctness, and better interoperability with modern Go logging APIs.

🚀 Performance

Major improvements across TextFormatter, entry handling, and common logger paths:

  • ~17% lower geomean runtime across the benchmark suite
  • ~27% higher geomean formatter throughput
  • Common enabled logging paths are ~30–44% faster
  • WithError is ~40% faster
  • Chained fields are ~46% faster
  • TextFormatter paths are up to ~40% faster
  • Allocation counts are reduced by ~25–74% across measured TextFormatter cases, with the largest reductions in colored output

The improvements also show up in complete logger paths:

  • Logger + TextFormatter is ~31% faster, with ~24% fewer allocations
  • Logger + JSONFormatter is ~21% faster, with ~10% fewer allocations

... (truncated)

Changelog

Sourced from github.com/sirupsen/logrus's changelog.

1.10.2

Changed:

  • Update github.com/stretchr/testify to v1.12.1, removing the legacy gopkg.in/yaml.v3 dependency.

1.10.1

Fixes:

  • Fix a regression introduced in v1.10.0 where TextFormatter could panic when formatting nil or panicking error and fmt.Stringer values.
  • Allow function-backed implementations of error as field values.

1.10.0

Fixes:

  • Fix reentrant logging deadlocks in formatter paths.
  • Fix race conditions in formatter and entry handling.
  • Fix generic Log, Logf, Logln, and LogFn methods unexpectedly panicking when called with PanicLevel. Use the corresponding Panic methods when panic behavior is desired.
  • Improve concurrency safety around formatter and hook access.

Features:

  • Add slog hook for forwarding Logrus entries to log/slog.
  • Add slog.Handler for forwarding log/slog records to a Logrus logger, including levels, fields, groups, context, time, and optional caller reporting. The hook and handler can also be combined to help migrate between Logrus and log/slog.
  • Add minimal, composable logging interfaces for each log level. This enables consumers to depend on narrower interfaces, making it easier to substitute or adapt logging implementations.
  • Allow Entry.Caller to be set explicitly and preserve it across derived entries, enabling custom caller detection without Logrus overwriting caller information when ReportCaller is enabled.

Changed:

  • Raise minimum supported Go version to 1.23.
  • TextFormatter now renders []byte values as raw/quoted strings instead of slice-of-ints.
  • TextFormatter now uses distinct dimmed colors for debug and trace output.
  • TextFormatter now automatically enables colors on Windows terminals with ANSI support, matching the behavior on other platforms.
  • Entry.HasCaller is now deprecated in favor of checking Entry.Caller directly.
  • Deprecated MutexWrap, which was unintentionally exposed as public API. It remains available as an alias for compatibility but should not be used

... (truncated)

Commits
  • 6d6a132 Merge pull request #1586 from thaJeztah/prepare_v1.10.2
  • 4f94653 update changelog for v1.10.2
  • 87434bb Merge pull request #1585 from thaJeztah/bump_testify
  • e7d2120 chore(deps): bump github.com/stretchr/testify v1.12.1
  • 8b673a9 Merge pull request #1583 from thaJeztah/release_1.10.1
  • 0b920ad Merge pull request #1584 from thaJeztah/more_coverage
  • 5e20694 TextFormatter: cover nil pointer method receivers
  • 8312732 update changelog for v1.10.1
  • e987a40 Merge pull request #1582 from thaJeztah/panic_handler
  • 17d574b TextFormatter: recover panics from Error and String methods
  • Additional commits viewable in compare view

Updates github.com/spf13/cobra from 1.7.0 to 1.10.2

Release notes

Sourced from github.com/spf13/cobra's releases.

v1.10.2

🔧 Dependencies

  • chore: Migrate from gopkg.in/yaml.v3 to go.yaml.in/yaml/v3 by @​dims in spf13/cobra#2336 - the gopkg.in/yaml.v3 package has been deprecated for some time: this should significantly cleanup dependency/supply-chains for consumers of spf13/cobra

📈 CI/CD

🔥✍🏼 Docs

🍂 Refactors

🤗 New Contributors

Full Changelog: spf13/cobra@v1.10.1...v1.10.2

Thank you to our amazing contributors!!!!! 🐍 🚀

v1.10.1

🐛 Fix

v1.0.9 of pflags brought back ParseErrorsWhitelist and marked it as deprecated

Full Changelog: spf13/cobra@v1.10.0...v1.10.1

v1.10.0

What's Changed

🚨 Attention!

This version of pflag carried a breaking change: it renamed ParseErrorsWhitelist to ParseErrorsAllowlist which can break builds if both pflag and cobra are dependencies in your project.

  • If you use both pflag and cobra, upgrade pflagto 1.0.8 andcobrato1.10.0`
  • or use the newer, fixed version of pflag v1.0.9 which keeps the deprecated ParseErrorsWhitelist

... (truncated)

Commits

Updates github.com/trustwallet/go-libs from 0.7.3 to 0.9.0

Release notes

Sourced from github.com/trustwallet/go-libs's releases.

metrics: Enhance the http metrics middleware

This pull request includes changes to the middleware/metrics.go and middleware/metrics_test.go files to enhance the metrics middleware by adding status code tracking and updating the corresponding tests. The most important changes include adding status code labels, updating the metrics middleware to record status codes, and modifying the tests to validate the new status code metrics.

Enhancements to metrics middleware:

  • middleware/metrics.go: Added a new label labelStatus to track HTTP status codes and updated the MetricsMiddleware function to include this label in the metrics.
  • middleware/metrics.go: Modified the MetricsMiddleware function to record the status code of each request and include it in the label values.

Updates to tests:

  • middleware/metrics_test.go: Added a new route /404 to simulate a 404 error and updated the test cases to include this new route.
  • middleware/metrics_test.go: Updated the expected metrics to include new keys for client and server errors, and modified the assertions to check for the new status code label.

v0.8.8

No release notes provided.

v0.8.7

What's Changed

Full Changelog: trustwallet/go-libs@v0.8.6...v0.8.7

v0.8.6

What's Changed

Full Changelog: trustwallet/go-libs@v0.8.5...v0.8.6

v0.8.5

What's Changed

Full Changelog: trustwallet/go-libs@v0.8.4...v0.8.5

v0.8.4

What's Changed

Full Changelog: trustwallet/go-libs@v0.8.3...v0.8.4

Scan method in Redis wrapper

No release notes provided.

v0.8.2

What's Changed

... (truncated)

Commits

Updates github.com/trustwallet/go-primitives from 0.1.32 to 0.5.0

Release notes

Sourced from github.com/trustwallet/go-primitives's releases.

v0.3.1

What's Changed

Full Changelog: trustwallet/go-primitives@v0.3.0...v0.3.1

v0.3.0

What's Changed

Full Changelog: trustwallet/go-primitives@v0.2.9...v0.3.0

v0.2.8

What's Changed

Full Changelog: trustwallet/go-primitives@0.2.7...v0.2.8

v0.2.7

What's Changed

New Contributors

Full Changelog: trustwallet/go-primitives@v0.2.6...0.2.7

v0.2.6

What's Changed

New Contributors

Full Changelog: trustwallet/go-primitives@v0.2.5...v0.2.6

v0.2.5

What's Changed

Full Changelog: trustwallet/go-primitives@v0.2.4...v0.2.5

v0.2.4

What's Changed

... (truncated)

Commits
  • ed6d1c0 feat: Update ARC token ID and explorer URLs; add TokenVersionV29 (#224)
  • 72334d5 feat: Add support for ARC token and related functionality (#223)
  • 0e52377 chore: remove agent tooling scaffolding from repo (#222)
  • 6778b07 chore(kb): bootstrap sdd knowledge base (#221)
  • f6941f3 Update Robinhood mainnet (#220)
  • f836cfb Deprecate polygonzkevm and callisto chains (#219)
  • 0278b4b Update CI configuration and add release job (#218)
  • de0c4fd Robinhood testnet->mainnet (#217)
  • d044edb Support Robinhood Chain (#216)
  • 27b0b1b fix: rename HypeEVM → HyperEVM (chain ID 999, handle hyperevm) (#215)
  • Additional commits viewable in compare view

@dependabot @github

dependabot Bot commented on behalf of github Jun 21, 2026

Copy link
Copy Markdown
Contributor Author

Labels

The following labels could not be found: dependencies. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot Bot changed the title Bump the go-dependencies group with 4 updates Bump the go-dependencies group across 1 directory with 4 updates Jul 1, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch 2 times, most recently from 74c649b to 76e2c63 Compare July 8, 2026 05:24
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch from 76e2c63 to f878ee6 Compare July 29, 2026 05:24
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch from f878ee6 to 538a458 Compare August 12, 2026 05:26
@dependabot dependabot Bot changed the title Bump the go-dependencies group across 1 directory with 4 updates chore(deps): bump the go-dependencies group across 1 directory with 4 updates Aug 19, 2026
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch from 538a458 to f3dfc26 Compare August 19, 2026 05:24
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch 2 times, most recently from ebdfd86 to 5409d0c Compare September 9, 2026 05:24
… updates

Bumps the go-dependencies group with 4 updates in the / directory: [github.com/sirupsen/logrus](https://github.com/sirupsen/logrus), [github.com/spf13/cobra](https://github.com/spf13/cobra), [github.com/trustwallet/go-libs](https://github.com/trustwallet/go-libs) and [github.com/trustwallet/go-primitives](https://github.com/trustwallet/go-primitives).


Updates `github.com/sirupsen/logrus` from 1.9.0 to 1.10.2
- [Release notes](https://github.com/sirupsen/logrus/releases)
- [Changelog](https://github.com/sirupsen/logrus/blob/master/CHANGELOG.md)
- [Commits](sirupsen/logrus@v1.9.0...v1.10.2)

Updates `github.com/spf13/cobra` from 1.7.0 to 1.10.2
- [Release notes](https://github.com/spf13/cobra/releases)
- [Commits](spf13/cobra@v1.7.0...v1.10.2)

Updates `github.com/trustwallet/go-libs` from 0.7.3 to 0.9.0
- [Release notes](https://github.com/trustwallet/go-libs/releases)
- [Commits](trustwallet/go-libs@v0.7.3...v0.9.0)

Updates `github.com/trustwallet/go-primitives` from 0.1.32 to 0.5.0
- [Release notes](https://github.com/trustwallet/go-primitives/releases)
- [Commits](trustwallet/go-primitives@v0.1.32...v0.5.0)

---
updated-dependencies:
- dependency-name: github.com/sirupsen/logrus
  dependency-version: 1.9.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-dependencies
- dependency-name: github.com/spf13/cobra
  dependency-version: 1.10.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/trustwallet/go-libs
  dependency-version: 0.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
- dependency-name: github.com/trustwallet/go-primitives
  dependency-version: 0.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/go-dependencies-77c2a5beb0 branch from 5409d0c to 2c22ef5 Compare September 16, 2026 05:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants