Skip to content
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

⚡️ 0.25 RELEASE 🚀 #342

Closed
16 tasks done
jacobheun opened this issue Mar 21, 2019 · 1 comment
Closed
16 tasks done

⚡️ 0.25 RELEASE 🚀 #342

jacobheun opened this issue Mar 21, 2019 · 1 comment
Assignees

Comments

@jacobheun
Copy link
Contributor

jacobheun commented Mar 21, 2019

Save the routers, save the world.

🔦 Highlights

0.25 is already in the imminent js-ipfs 0.35 release. If you're using js-ipfs, you'll get these changes immediately if you upgrade there!

☎️ Auto Dial

Libp2p will now auto dial to discovered peers by default. This can be disabled in configuration if you need to do any specialized dialing. Discovered peers will only be dialed if we are under our min peers threshold, which is configured for the Connection Manager. You can read more about Peer Discovery and Auto Dial here.

✂️ Better Connection Management

The Libp2p Switch was doing a bad job of letting the Connection Manager know just how many connections there were. This resulted in the Connection Manager thinking there were far fewer connections than there actually were. This has been fixed, and now the Connection Manager is back to keeping your router safe from the connection plague.

📔 Blacklisting Undialable Nodes

Libp2p will now blacklist nodes that aren't dialable. The blacklisting includes an exponential backoff with a random jitter. This along with auto dial, help to ensure libp2p is spending its connection resources wisely. You can see the configuration options in the libp2p-switch readme.

🔢 Dial Queues

Libp2p Switch now has better queuing for dials! Previously, the only limiting of dials were done per peer. Now, all dials will enter a global queue so that we can better manage connection attempts. The current default limit is 100 parallel dials, but you can configure this to your needs. If a peer is already connected, any calls to .dial() or .dialProtocol() skip the line and will be executed immediately. Any dials done as a result of Auto Dial will take a back seat.

⚖️ Smaller than ever

Since the 0.24 release, libp2p has dropped some weight. The bundle size is now ~42% smaller!

🏗 API Changes

  • Auto Dial is enabled by default. Applications that previously dialed on peer discovery should either stop doing so, or turn off Auto Dial. We recommend using Auto Dial if you're not customizing your dialing logic when peers are discovered.
  • The DHT no longer lives under EXPERIMENTAL in the config. It is enabled directly in it's own config options. Check out the Peer and Content Routing example to see how to configure a basic Libp2p node with the DHT on.
  • Pubsub now supports unsubscribe all. Check out interface-js-ipfs-core docs if you want to be able to unsubscribe all listeners for a topic.

✅ Release Checklist

  • Robustness and quality
    • Ensure that all tests are passing, this includes:
      • unit
    • Publish a release candidate to npm
      # Minor prerelease (e.g. 0.24.1 -> 0.25.0-rc.0)
      $ npx aegir release --type preminor -t node -t browser --preid rc --dist-tag next
      
      # Increment prerelease (e.g. 0.25.0-rc.0 -> 0.25.0-rc.1)
      $ npx aegir release --type prerelease -t node -t browser --preid rc --dist-tag next
    • Run tests of the following projects with the new release:
  • Documentation
    • Ensure that README.md is up to date
    • Ensure that all the examples run
  • Communication

❤️ Huge thank you to everyone that made this release possible

In alphabetical order, here are all the humans that contributed to the release:

🙌🏽 Want to contribute?

Would you like to contribute to the libp2p project and don't know how? Well, there are a few places you can get started:

⁉️ Do you have questions?

The best place to ask your questions about libp2p, how it works and what you can do with it is at discuss.libp2p.io. We are also available at the #libp2p channel on Freenode.

@jacobheun jacobheun self-assigned this Mar 21, 2019
@jacobheun jacobheun added the status/in-progress In progress label Mar 21, 2019
@jacobheun
Copy link
Contributor Author

It's on npm https://www.npmjs.com/package/libp2p/v/0.25.0 🎉.

@ghost ghost removed the status/in-progress In progress label Apr 14, 2019
jacobheun added a commit to jacobheun/js-libp2p that referenced this issue Aug 8, 2019
* chore: update deps and fix lint

* test: fix tests after webrtc-star upgrade
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant