@cryptotaxi247 / kubo / commits / b34c7a367

chore: update changelog for v0.19

galargh committed Apr 5, 2023 at 15:52 UTC b34c7a367ed8c672a0dd7d5136c52ca6c098cd82
1 file changed +38 -5
docs/changelogs/v0.19.md
+38 -5
@@ -1,13 +1,49 @@
1 <!-- omit in toc -->
2 # Kubo changelog v0.19
3
4 +## v0.19.1
5 +
6 +### 🔦 Highlights
7 +
8 +#### DHT Timeouts
9 +In v0.16.0, Kubo added the ability to configure custom content routers and DHTs with the `custom` router type, and as part of this added a default 5 minute timeout to all DHT operations. In some cases with large repos ([example](https://github.com/ipfs/kubo/issues/9722)), this can cause provide and reprovide operations to fail because the timeout is reached. This release removes these timeouts on DHT operations. If users desire these timeouts, they can be added back using [the `custom` router type](https://github.com/ipfs/kubo/blob/master/docs/config.md#routingrouters-parameters).
10 +
11 +### Changelog
12 +
13 +<details><summary>Full Changelog</summary>
14 +
15 +- github.com/ipfs/kubo:
16 + - chore: update version
17 + - fix: remove timeout on default DHT operations (#9783) ([ipfs/kubo#9783](https://github.com/ipfs/kubo/pull/9783))
18 + - chore: update version
19 +- github.com/ipfs/go-blockservice (v0.5.0 -> v0.5.1):
20 + - chore: release v0.5.1
21 + - fix: remove busyloop in getBlocks by removing batching
22 +- github.com/libp2p/go-libp2p (v0.26.3 -> v0.26.4):
23 + - release v0.26.4
24 + - autorelay: fix busy loop bug and flaky tests in relay finder (#2208) ([libp2p/go-libp2p#2208](https://github.com/libp2p/go-libp2p/pull/2208))
25 +- github.com/libp2p/go-libp2p-routing-helpers (v0.6.1 -> v0.6.2):
26 + - Release v0.6.2 (#73) ([libp2p/go-libp2p-routing-helpers#73](https://github.com/libp2p/go-libp2p-routing-helpers/pull/73))
27 + - feat: zero timeout on composed routers should disable timeout (#72) ([libp2p/go-libp2p-routing-helpers#72](https://github.com/libp2p/go-libp2p-routing-helpers/pull/72))
28 +
29 +</details>
30 +
31 +### Contributors
32 +
33 +| Contributor | Commits | Lines ± | Files Changed |
34 +|-------------|---------|---------|---------------|
35 +| Marco Munizaga | 1 | +347/-46 | 5 |
36 +| Gus Eggert | 3 | +119/-93 | 8 |
37 +| Jorropo | 2 | +20/-32 | 2 |
38 +| galargh | 2 | +2/-2 | 2 |
39 +| Marten Seemann | 1 | +2/-2 | 1 |
40 +
41 <!-- omit in toc -->
42 ## v0.19.0
43
44 - [Overview](#overview)
45 - [🔦 Highlights](#-highlights)
46 - [Improving the libp2p resource management integration](#improving-the-libp2p-resource-management-integration)
10 - - [PubSub message caching improvements](#pubsub-message-caching-improvements)
47 - [Gateways](#gateways)
48 - [Signed IPNS Record response format](#signed-ipns-record-response-format)
49 - [Example fetch and inspect IPNS record](#example-fetch-and-inspect-ipns-record)
@@ -21,6 +57,7 @@
57 ### 🔦 Highlights
58
59 #### Improving the libp2p resource management integration
60 +
61 There are further followups up on libp2p resource manager improvements in Kubo [0.18.0](https://github.com/ipfs/kubo/blob/master/docs/changelogs/v0.18.md#improving-libp2p-resource-management-integration-1)
62 and [0.18.1](https://github.com/ipfs/kubo/blob/master/docs/changelogs/v0.18.md#improving-libp2p-resource-management-integration):
63 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.
@@ -28,10 +65,6 @@ and [0.18.1](https://github.com/ipfs/kubo/blob/master/docs/changelogs/v0.18.md#i
65 - Note: we don't expect most users to need these capablities, but they are there if so.
66 1. [Doc updates](https://github.com/ipfs/kubo/blob/master/docs/libp2p-resource-management.md).
67
31 -#### PubSub message caching improvements
32 -
33 -The PubSub message cache will now [prune messages after TTL is exhausted](https://github.com/ipfs/kubo/blob/master/docs/config.md#pubsubseenmessagesttl), [either based on the last time a message was seen or the first time it was seen](https://github.com/ipfs/kubo/blob/master/docs/config.md#pubsubseenmessagesstrategy).
34 -
68 #### Gateways
69
70 ##### Signed IPNS Record response format