-
Notifications
You must be signed in to change notification settings - Fork 42
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 [email protected] #1400
Conversation
size-limit report 📦
|
Apart from the There is still one test failing for |
); | ||
return tags; | ||
try { | ||
const peer = await this.libp2p.peerStore.get(peerId); |
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
that libp2p
uses are throwing so it is up to us how we handle that.
...pubsubService, | ||
...options?.services, | ||
}, | ||
}) as any as Libp2p; // TODO: make libp2p include it; |
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.
Still need to check if it is possible to get rid of.
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.
Do not see any way of removing it. Merging with it for now
6a310c1
to
18aee0c
Compare
bd5c617
to
ac2e900
Compare
Problem
We have to update
libp2p
to a newer version to bring new things such asservices
(#1392) and unlock us to useWebRTC
transport for our experiments (#1181).Solution
Update the lib.
Notes