You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: docs/changelogs/v0.12.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -58,7 +58,7 @@ As usual, this release includes important fixes, some of which may be critical f
58
58
59
59
-`ipfs refs local` will now list all blocks as if they were [raw]() CIDv1 instead of with whatever CID version and IPLD codecs they were stored with. All other functionality should remain the same.
60
60
61
-
Note: This change also effects [ipfs-update](https://github.com/ipfs/ipfs-update) so if you use that tool to mange your go-ipfs installation then grab ipfs-update v1.8.0 from [dist](https://dist.ipfs.tech/#ipfs-update).
61
+
Note: This change also effects [ipfs-update](https://github.com/ipfs/ipfs-update) so if you use that tool to manage your go-ipfs installation then grab ipfs-update v1.8.0 from [dist](https://dist.ipfs.tech/#ipfs-update).
- swarm: fix flaky TestDialExistingConnection test (#1509) ([libp2p/go-libp2p#1509](https://github.com/libp2p/go-libp2p/pull/1509))
174
174
- tcp: limit the number of connections in tcp suite test on non-linux hosts (#1507) ([libp2p/go-libp2p#1507](https://github.com/libp2p/go-libp2p/pull/1507))
175
175
- increase overly short require.Eventually intervals (#1501) ([libp2p/go-libp2p#1501](https://github.com/libp2p/go-libp2p/pull/1501))
176
-
- tls: fix flaky handshake cancelation test (#1503) ([libp2p/go-libp2p#1503](https://github.com/libp2p/go-libp2p/pull/1503))
176
+
- tls: fix flaky handshake cancellation test (#1503) ([libp2p/go-libp2p#1503](https://github.com/libp2p/go-libp2p/pull/1503))
177
177
- merge the transport test suite from go-libp2p-testing here ([libp2p/go-libp2p#1496](https://github.com/libp2p/go-libp2p/pull/1496))
178
178
- fix racy connection comparison in TestDialWorkerLoopBasic (#1499) ([libp2p/go-libp2p#1499](https://github.com/libp2p/go-libp2p/pull/1499))
179
179
- swarm: fix race condition in TestFailFirst (#1490) ([libp2p/go-libp2p#1490](https://github.com/libp2p/go-libp2p/pull/1490))
Copy file name to clipboardexpand all lines: docs/changelogs/v0.19.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -89,7 +89,7 @@ There are further followups up on libp2p resource manager improvements in Kubo [
89
89
and [0.18.1](https://github.com/ipfs/kubo/blob/master/docs/changelogs/v0.18.md#improving-libp2p-resource-management-integration):
90
90
1.`ipfs swarm limits` and `ipfs swarm stats` have been replaced by `ipfs swarm resources` to provide a single/combined view for limits and their current usage in a more intuitive ordering.
91
91
1. Removal of `Swarm.ResourceMgr.Limits` config. Instead [the power user can specify limits in a .json file that are fed directly to go-libp2p](https://github.com/ipfs/kubo/blob/master/docs/libp2p-resource-management.md#user-supplied-override-limits). This allows the power user to take advantage of the [new resource manager types introduced in go-libp2p 0.25](https://github.com/libp2p/go-libp2p/blob/master/CHANGELOG.md#new-resource-manager-types-) including "use default", "unlimited", "block all".
92
-
- Note: we don't expect most users to need these capablities, but they are there if so.
92
+
- Note: we don't expect most users to need these capabilities, but they are there if so.
Copy file name to clipboardexpand all lines: docs/changelogs/v0.23.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -27,7 +27,7 @@
27
27
Mplex is being deprecated, this is because it is unreliable and
28
28
randomly drop streams when sending data *too fast*.
29
29
30
-
New pieces of code rely on backpressure, that means the stream will dynamicaly
30
+
New pieces of code rely on backpressure, that means the stream will dynamically
31
31
slow down the sending rate if data is getting backed up.
32
32
Backpressure is provided by **Yamux** and **QUIC**.
33
33
@@ -111,7 +111,7 @@ the `/quic-v1` addresses only. For more background information, check [issue #94
111
111
112
112
Thanks to [probelab.io's RFM17.1](https://github.com/plprobelab/network-measurements/blob/master/results/rfm17.1-sharing-prs-with-multiaddresses.md) DHT servers will [now cache the addresses of content hosts for the lifetime of the provider record](https://github.com/libp2p/go-libp2p-kad-dht/commit/777160f164b8c187c534debd293157031e9f3a02).
113
113
114
-
This means clients who resolve content from theses servers get a responses which include both peer id and multiaddresses.
114
+
This means clients who resolve content from these servers get a responses which include both peer id and multiaddresses.
115
115
In most cases this enables skipping a second query which resolves the peer id to multiaddresses for stable enough peers.
116
116
117
117
This will improve content fetching lantency in the network overtime as servers updates.
@@ -175,7 +175,7 @@ Thx a lot @bmwiedemann for debugging this issue.
Copy file name to clipboardexpand all lines: docs/changelogs/v0.25.md
+1-1
Original file line number
Diff line number
Diff line change
@@ -44,7 +44,7 @@ After deprecating and removing mplex support by default in [v0.23.0](https://git
44
44
We now fully removed it. If you still need mplex support to talk with other pieces of software,
45
45
please try updating them, and if they don't support yamux or QUIC [talk to us about it](https://github.com/ipfs/kubo/issues/new/choose).
46
46
47
-
Mplex is unreliable by design, it will drop data and generete errors when sending data *too fast*,
47
+
Mplex is unreliable by design, it will drop data and generate errors when sending data *too fast*,
48
48
yamux and QUIC support backpressure, that means if we send data faster than the remote machine can process it, we slows down to match the remote's speed.
- fix: correctly parse ports as uint16 and explicitely fail on overflows (#228) ([multiformats/go-multiaddr#228](https://github.com/multiformats/go-multiaddr/pull/228))
116
+
- fix: correctly parse ports as uint16 and explicitly fail on overflows (#228) ([multiformats/go-multiaddr#228](https://github.com/multiformats/go-multiaddr/pull/228))
117
117
- replace custom random tests with testing.F (#227) ([multiformats/go-multiaddr#227](https://github.com/multiformats/go-multiaddr/pull/227))
0 commit comments