-
-
Notifications
You must be signed in to change notification settings - Fork 3.1k
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: release 0.5.0 #7238
feat: release 0.5.0 #7238
Conversation
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.
Couple small changes
Co-Authored-By: Peter Rabbitson <[email protected]>
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.
I got to libp2p - shipping suggestions now
CHANGELOG.md
Outdated
be logarithmic in the size of the network to be linear. | ||
- Most peers in the DHT cannot be dialed (e.g., due to firewalls and NATs). Much of a DHT query time is wasted trying to connect to peers that cannot be reached. | ||
- The DHT query logic doesn't properly terminate when it hits the end of the query and, instead, aggressively keeps on searching. | ||
- The routing tables are poorly maintained. This can cause a search that should be logarithmic in the size of the network to be linear. |
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 routing tables are poorly maintained. This can cause a search that should be logarithmic in the size of the network to be linear. | |
- The routing tables were poorly maintained, which could cause a search that _should_ be logarithmic in the size of the network to instead be linear. |
CHANGELOG.md
Outdated
be logarithmic in the size of the network to be linear. | ||
- Most peers in the DHT cannot be dialed (e.g., due to firewalls and NATs). Much of a DHT query time is wasted trying to connect to peers that cannot be reached. | ||
- The DHT query logic doesn't properly terminate when it hits the end of the query and, instead, aggressively keeps on searching. | ||
- The routing tables are poorly maintained. This can cause a search that should be logarithmic in the size of the network to be linear. | ||
|
||
###### Reachable |
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.
###### Reachable | |
###### Reachability |
CHANGELOG.md
Outdated
|
||
What this means for users: | ||
Continuing on with the of improving our core data handling subsystems, both of the datastores used in go-ipfs, badger and flatfs, have received important updates in this release: |
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.
Continuing on with the of improving our core data handling subsystems, both of the datastores used in go-ipfs, badger and flatfs, have received important updates in this release: | |
Continuing on with the theme of improving our core data handling subsystems, both of the datastores used in go-ipfs, badger and flatfs, have received important updates in this release: |
…twork upgrading to the Changelog
Co-Authored-By: MollyM <[email protected]> Co-Authored-By: Jacob Heun <[email protected]>
Co-Authored-By: Jacob Heun <[email protected]> Co-Authored-By: MollyM <[email protected]> Co-Authored-By: Michael Burns <[email protected]>
CHANGELOG.md
Outdated
|
||
#### Badger Datastore | ||
1. Pubsub now more aggressively finds and connects to other peers peers subscribing to the same topic. |
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.
1. Pubsub now more aggressively finds and connects to other peers peers subscribing to the same topic. | |
1. Pubsub now more aggressively finds and connects to other peers subscribing to the same topic. |
Co-Authored-By: MollyM <[email protected]>
CHANGELOG.md
Outdated
|
||
#### Badger Datastore | ||
1. Pubsub now more aggressively finds and connects to other peers peers subscribing to the same topic. | ||
2. Go-ipfs has switched its the default pubsub router from "floodsub", an inefficient but simple "flooding" pubsub implementation, to "gossipsub". |
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.
2. Go-ipfs has switched its the default pubsub router from "floodsub", an inefficient but simple "flooding" pubsub implementation, to "gossipsub". | |
2. Go-ipfs has switched the default pubsub router from "floodsub", an inefficient but simple "flooding" pubsub implementation, to "gossipsub". |
Co-Authored-By: Jacob Heun <[email protected]>
closes #6776