-
Notifications
You must be signed in to change notification settings - Fork 43
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
feat!: upgrade to libp2p@0.45 #1400
Merged
Merged
Changes from 23 commits
Commits
Show all changes
49 commits
Select commit
Hold shift + click to select a range
92a404d
upgrade libp2p version, partially update protocols, rename to IBasePr…
weboko fd9dfd8
complete transition for protocols
weboko 54ebf65
complete transition of connection maanger
weboko e1f56be
finish sdk
weboko 65917c8
complete core
weboko c02f224
complete relay
weboko 6634606
complete peer-exchange
weboko 483dc19
complete dns-discovery
weboko d52ed53
add components field to Libp2p interface and use it in core
weboko 548cf5b
add type hack for Libp2p creation:
weboko 866a6ac
finish waku node test
weboko 209021f
complete relay test
weboko 235a1c4
complete peer exchange
weboko 00b6275
complete dns peer discovery test
weboko 3ebca37
add missing dependency to relay
weboko b18fb90
fix new peer store integration
weboko 10c59bb
improve initialization of pubsub
weboko 644cf9d
add catch for missing peer
weboko 021ae09
update test and remove extra dependency
weboko db56010
prevent error throw
weboko 4730efe
merge with master
weboko ddc6656
fix edge case with peerStore
weboko f0cf4de
fix peer exchange
weboko 8b11025
fix protocols used
weboko 07f6590
Merge branch 'master' of github.com:waku-org/js-waku into weboko/libp…
weboko 2c0350c
fix test with another evnet
weboko 7acf23e
bump libp2p and interfaces
weboko 06b3a88
add missing package
weboko 4bf192d
fix peer-exchange problem
weboko 6aa0cbf
merge with master
weboko d30888c
prefer libp2p peerDiscovery for integration tests
weboko aea44f9
Merge branch 'master' into weboko/libp2p.45
weboko e2db579
fix import
weboko e3b90a3
increate timeout
weboko b48b042
return test against Test fleet
weboko 4575d06
Merge branch 'master' into weboko/libp2p.45
weboko 70fd07c
remove await for peer:update
weboko 1a634ff
increase timeout
weboko 18aee0c
add await for peerStore
weboko ac2e900
comment event for testing
weboko 33e5df8
merge with develop
weboko 10e8f75
merge with master
weboko d15f34a
fix lint
weboko 02dfd29
remove bind
weboko 3a940ae
fix stub
weboko 1b37fc5
decouple to separate test case
weboko cb83d54
move back to explicit build
weboko b037080
remove only
weboko 32f6650
do not test event
weboko File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
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.
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.
context: Now all methods on
PersistentPeerStore
thatlibp2p
uses are throwing so it is up to us how we handle that.