From a5dbe86a08312560d1f82b3ba0270f406d7c02d6 Mon Sep 17 00:00:00 2001 From: Henrique Dias Date: Wed, 31 Jan 2024 15:32:08 +0100 Subject: [PATCH] docs: add changelog entry for DHT commands --- docs/changelogs/v0.27.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/docs/changelogs/v0.27.md b/docs/changelogs/v0.27.md index 26a607f8abbc..21e4bef49236 100644 --- a/docs/changelogs/v0.27.md +++ b/docs/changelogs/v0.27.md @@ -7,6 +7,8 @@ - [Overview](#overview) - [๐Ÿ”ฆ Highlights](#-highlights) - [Gateway: support for `/api/v0` is deprecated](#gateway-support-for-apiv0-is-deprecated) + - [IPNS resolver cache's TTL can now be configured](#ipns-resolver-caches-ttl-can-now-be-configured) + - [Deprecated DHT commands removed from `/api/v0/dht`](#deprecated-dht-commands-removed-from-apiv0dht) - [๐Ÿ“ Changelog](#-changelog) - [๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ Contributors](#-contributors) @@ -24,6 +26,14 @@ If you have a legacy software that relies on this behavior, and want to expose p You can now configure the upper-bound of a cached IPNS entry's Time-To-Live via [`Ipns.MaxCacheTTL`](https://github.com/ipfs/kubo/blob/master/docs/config.md#ipnsmaxcachettl). +#### Deprecated DHT commands removed from `/api/v0/dht` + +All the DHT commands that were deprecated were finally removed from `/api/v0/dht`. You can now use them via `/api/v0/routing`. + +To match this change, the DHT commands in the Go RPC client have been marked as deprecated, and aliased to the Routing interface. All methods previously available under the DHT interface are now available under the Routing interface. + +In the next version, all DHT deprecated methods will be removed from the Go RPC client. + ### ๐Ÿ“ Changelog ### ๐Ÿ‘จโ€๐Ÿ‘ฉโ€๐Ÿ‘งโ€๐Ÿ‘ฆ Contributors