all: update github.com/rcrowley/go-metrics a5cfc242a56b => 51425a2415d2 #1679
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.
PR Checklist
PR Structure
otherwise).
services/friendbot
, orall
ordoc
if the changes are broad or impact manypackages.
Thoroughness
This PR adds tests for the most critical parts of the new functionality or fixes.I've updated any docs (developer docs,.md
files, etc... affected by this change). Take a look in the
docs
folder for a given service,like this one.
Release planning
I've updated the relevant CHANGELOG (here for Horizon) ifneeded with deprecations, added features, breaking changes, and DB schema changes.
I've decided if this PR requires a new major/minor version according tosemver, or if it's mainly a patch change. The PR is targeted at the next
release branch if it's not a patch change.
Summary
Update
github.com/rcrowley/go-metrics
for transition to Modules (#1634).From: rcrowley/go-metrics@a5cfc242a56b
To: rcrowley/go-metrics@51425a2415d2
Diff: rcrowley/go-metrics@a5cfc24...51425a2 (41 commits)
Goal and scope
To make the transition to Modules possible. Some dependencies at their current version have incompatible relationships with other dependencies we have. Dep was more tolerant to incompatible versions than Modules. Making this change ahead of the PR that switches us to Modules makes that PR a functional no-op.
The reason Modules is updating
go-metrics
is because the monorepo is also dependent ong.yxqyang.asia/ethereum/go-ethereum
which is in turn, via it's tests, dependent on theexp
sub-package withingo-metrics
. The sub-package was added in rcrowley/go-metrics@51425a2.The
go
tool in this situation will automatically upgradego-metrics
to it's latest revision since it can see theexp
is available there. This PR is however upgrading to the first or oldest revision that contains the sub-package we need to satisfy Modules. We could upgrade to the latest revision but the changes in the smaller diff are much less significant and pose a smaller risk than the changes that are in the diff (rcrowley/go-metrics@a5cfc24...cac0b30 144 commits) to take us all the way to latest.More details about how this was discovered can be found here: golang/go#33771 (comment)
Summary of changes
Known limitations & issues
N/A
What shouldn't be reviewed
N/A