Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3
Commits
80f9f340
Unverified
Commit
80f9f340
authored
May 20, 2019
by
Steven Allen
Committed by
GitHub
May 20, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #6353 from ipfs/feat/release-v0.4.21-rc1
release v0.4.21-rc1
parents
3c000c4c
36e5e9ab
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
99 additions
and
50 deletions
+99
-50
core/node/groups.go
core/node/groups.go
+5
-7
go.mod
go.mod
+16
-15
go.sum
go.sum
+77
-27
version.go
version.go
+1
-1
No files found.
core/node/groups.go
View file @
80f9f340
...
...
@@ -72,13 +72,11 @@ func LibP2P(bcfg *BuildCfg, cfg *config.Config) fx.Option {
ps
:=
fx
.
Options
()
if
bcfg
.
getOpt
(
"pubsub"
)
||
bcfg
.
getOpt
(
"ipnsps"
)
{
var
pubsubOptions
[]
pubsub
.
Option
if
cfg
.
Pubsub
.
DisableSigning
{
pubsubOptions
=
append
(
pubsubOptions
,
pubsub
.
WithMessageSigning
(
false
))
}
if
cfg
.
Pubsub
.
StrictSignatureVerification
{
pubsubOptions
=
append
(
pubsubOptions
,
pubsub
.
WithStrictSignatureVerification
(
true
))
}
pubsubOptions
=
append
(
pubsubOptions
,
pubsub
.
WithMessageSigning
(
!
cfg
.
Pubsub
.
DisableSigning
),
pubsub
.
WithStrictSignatureVerification
(
cfg
.
Pubsub
.
StrictSignatureVerification
),
)
switch
cfg
.
Pubsub
.
Router
{
case
""
:
...
...
go.mod
View file @
80f9f340
...
...
@@ -17,7 +17,7 @@ require (
github.com/hashicorp/golang-lru
v0.5.1
github.com/hsanjuan/go-libp2p-http
v0.0.2
github.com/ipfs/dir-index-html
v1.0.3
github.com/ipfs/go-bitswap
v0.0.
4
github.com/ipfs/go-bitswap
v0.0.
5
github.com/ipfs/go-block-format
v0.0.2
github.com/ipfs/go-blockservice
v0.0.3
github.com/ipfs/go-cid
v0.0.2
...
...
@@ -52,7 +52,7 @@ require (
github.com/ipfs/go-metrics-prometheus
v0.0.2
github.com/ipfs/go-mfs
v0.0.7
github.com/ipfs/go-path
v0.0.4
github.com/ipfs/go-unixfs
v0.0.
5
github.com/ipfs/go-unixfs
v0.0.
6
github.com/ipfs/go-verifcid
v0.0.1
github.com/ipfs/hang-fds
v0.0.1
github.com/ipfs/interface-go-ipfs-core
v0.0.8
...
...
@@ -76,10 +76,10 @@ require (
github.com/libp2p/go-libp2p-metrics
v0.0.1
github.com/libp2p/go-libp2p-net
v0.0.2
github.com/libp2p/go-libp2p-peer
v0.1.1
github.com/libp2p/go-libp2p-peerstore
v0.0.
5
github.com/libp2p/go-libp2p-peerstore
v0.0.
6
github.com/libp2p/go-libp2p-pnet
v0.0.1
github.com/libp2p/go-libp2p-protocol
v0.0.1
github.com/libp2p/go-libp2p-pubsub
v0.0.
1
github.com/libp2p/go-libp2p-pubsub
v0.0.
3
github.com/libp2p/go-libp2p-pubsub-router
v0.0.3
github.com/libp2p/go-libp2p-quic-transport
v0.0.3
github.com/libp2p/go-libp2p-record
v0.0.1
...
...
@@ -88,13 +88,14 @@ require (
github.com/libp2p/go-libp2p-secio
v0.0.3
github.com/libp2p/go-libp2p-swarm
v0.0.3
github.com/libp2p/go-libp2p-tls
v0.0.1
github.com/libp2p/go-maddr-filter
v0.0.1
github.com/libp2p/go-maddr-filter
v0.0.4
github.com/libp2p/go-mplex
v0.0.2 // indirect
github.com/libp2p/go-stream-muxer
v0.0.1
github.com/libp2p/go-testutil
v0.0.1
github.com/mattn/go-isatty
v0.0.7 // indirect
github.com/mattn/go-runewidth
v0.0.4 // indirect
github.com/mgutz/ansi
v0.0.0-20170206155736-9520e82c474b // indirect
github.com/miekg/dns
v1.1.
8
// indirect
github.com/miekg/dns
v1.1.
10
// indirect
github.com/mitchellh/go-homedir
v1.1.0
github.com/mr-tron/base58
v1.1.2
github.com/multiformats/go-multiaddr
v0.0.3
...
...
@@ -102,12 +103,11 @@ require (
github.com/multiformats/go-multiaddr-net
v0.0.1
github.com/multiformats/go-multibase
v0.0.1
github.com/multiformats/go-multihash
v0.0.5
github.com/opentracing/opentracing-go
v1.0.2
github.com/multiformats/go-multistream
v0.0.4 // indirect
github.com/opentracing/opentracing-go
v1.1.0
github.com/pkg/errors
v0.8.1
github.com/prometheus/client_golang
v0.9.3-0.20190127221311-3c4408c8b829
github.com/prometheus/client_model
v0.0.0-20190129233127-fd36f4220a90 // indirect
github.com/prometheus/common
v0.3.0 // indirect
github.com/prometheus/procfs
v0.0.0-20190425082905-87a4384529e0 // indirect
github.com/prometheus/client_golang
v0.9.3
github.com/prometheus/procfs
v0.0.0-20190519111021-9935e8e0588d // indirect
github.com/syndtr/goleveldb
v1.0.0
github.com/whyrusleeping/base32
v0.0.0-20170828182744-c30ac30633cc
github.com/whyrusleeping/go-smux-multiplex
v3.0.16+incompatible
...
...
@@ -115,14 +115,15 @@ require (
github.com/whyrusleeping/go-sysinfo
v0.0.0-20190219211824-4a357d4b90b1
github.com/whyrusleeping/multiaddr-filter
v0.0.0-20160516205228-e903e4adabd7
github.com/whyrusleeping/tar-utils
v0.0.0-20180509141711-8c6c8ba81d5c
go.uber.org/atomic
v1.
3.2
// indirect
go.uber.org/atomic
v1.
4.0
// indirect
go.uber.org/dig
v1.7.0 // indirect
go.uber.org/fx
v1.9.0
go.uber.org/goleak
v0.10.0 // indirect
go.uber.org/multierr
v1.1.0 // indirect
golang.org/x/net
v0.0.0-20190424112056-4829fb13d2c6 // indirect
golang.org/x/sync
v0.0.0-20190423024810-112230192c58 // indirect
golang.org/x/sys
v0.0.0-20190426135247-a129542de9ae
go4.org
v0.0.0-20190313082347-94abd6928b1d // indirect
golang.org/x/crypto
v0.0.0-20190513172903-22d7a77e9e5f // indirect
golang.org/x/net
v0.0.0-20190514140710-3ec191127204 // indirect
golang.org/x/sys
v0.0.0-20190520161452-ad400b127469
golang.org/x/text
v0.3.2 // indirect
gopkg.in/cheggaaa/pb.v1
v1.0.28
gotest.tools/gotestsum
v0.3.4
...
...
go.sum
View file @
80f9f340
This diff is collapsed.
Click to expand it.
version.go
View file @
80f9f340
...
...
@@ -4,6 +4,6 @@ package ipfs
var
CurrentCommit
string
// CurrentVersionNumber is the current application's version literal
const
CurrentVersionNumber
=
"0.4.21-
dev
"
const
CurrentVersionNumber
=
"0.4.21-
rc1
"
const
ApiVersion
=
"/go-ipfs/"
+
CurrentVersionNumber
+
"/"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment