-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: update deps #8571
chore: update deps #8571
Conversation
@@ -2,13 +2,13 @@ module github.com/ipfs/go-ipfs | |||
|
|||
require ( | |||
bazil.org/fuse v0.0.0-20200117225306-7b5117fecadc | |||
contrib.go.opencensus.io/exporter/prometheus v0.3.0 | |||
contrib.go.opencensus.io/exporter/prometheus v0.4.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The only changes were to bump client_golang and statsd_exporter census-ecosystem/opencensus-go-exporter-prometheus@v0.3.0...v0.4.0, which we were already doing manually.
This should mean we can drop the manual statsd_exporter import
github.com/blang/semver/v4 v4.0.0 | ||
github.com/cheggaaa/pb v1.0.29 | ||
github.com/coreos/go-systemd/v22 v22.3.2 | ||
github.com/dustin/go-humanize v1.0.0 | ||
github.com/elgris/jsondiff v0.0.0-20160530203242-765b5c24c302 | ||
github.com/fsnotify/fsnotify v1.4.9 | ||
github.com/fsnotify/fsnotify v1.5.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/fsnotify/fsnotify/releases
While v1.5.0 was a buggy release that got retracted v1.5.1 seems to basically just fix an unsafe pointer conversion (fsnotify/fsnotify#325) and update x/sys
@@ -90,22 +90,22 @@ require ( | |||
github.com/libp2p/go-ws-transport v0.5.0 | |||
github.com/miekg/dns v1.1.43 | |||
github.com/mitchellh/go-homedir v1.1.0 | |||
github.com/multiformats/go-multiaddr v0.4.0 | |||
github.com/multiformats/go-multiaddr v0.4.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
plaintextv2 code point added https://github.com/multiformats/go-multiaddr/releases/tag/v0.4.1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We probably don’t need to do this, unless this is pulled in by some other dependency update. On the other, it won’t hurt either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ya, we don't need it but figure for dependencies we control we should probably try and run with the latest so we can detect any issues
@@ -26,7 +26,7 @@ require ( | |||
github.com/ipfs/go-fetcher v1.6.1 | |||
github.com/ipfs/go-filestore v0.1.0 | |||
github.com/ipfs/go-fs-lock v0.0.7 | |||
github.com/ipfs/go-graphsync v0.10.6-0.20211119194020-99752d2dc1cc | |||
github.com/ipfs/go-graphsync v0.11.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
go-datastore contexts merged + released
go.uber.org/fx v1.13.1 | ||
go.uber.org/zap v1.19.0 | ||
go.uber.org/fx v1.15.0 | ||
go.uber.org/zap v1.19.1 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
some small JSON encoding fixes that likely don't effect us https://github.com/uber-go/zap/releases/tag/v1.19.1
github.com/stretchr/testify v1.7.0 | ||
github.com/syndtr/goleveldb v1.0.0 | ||
github.com/whyrusleeping/go-sysinfo v0.0.0-20190219211824-4a357d4b90b1 | ||
github.com/whyrusleeping/multiaddr-filter v0.0.0-20160516205228-e903e4adabd7 | ||
go.opencensus.io v0.23.0 | ||
go.uber.org/fx v1.13.1 | ||
go.uber.org/zap v1.19.0 | ||
go.uber.org/fx v1.15.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like there have been a number of changes to fx in the last few releases (i.e. between Aug 2020 and Nov 2021).
v0.15.0 was released a few weeks ago and has some interesting features available (e.g. fx.Annotate
that could allow us to not need as many fx.In/Out
wrapper structs). If we're not comfortable upgrading yet we could stay on v1.14.2 as well.
6703420
to
ec87885
Compare
ec87885
to
29972de
Compare
29972de
to
847e0f5
Compare
No description provided.