From 38a293c1ea328ef0d50a891e196cf040251445c0 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Wed, 11 Dec 2024 22:03:30 -1000 Subject: [PATCH] update changelog --- CHANGELOG.md | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ceabbf05..b3a32c852 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,11 @@ The following emojis are used to highlight certain changes: ### Added +- `bitswap/client/messagequeue`: Expose `DontHaveTimeoutConfig` to hold configuration values for dontHaveTimeoutMgr + - Provide function DefaultDontHaveTimeoutConfig to return a DontHaveTimeoutConfig populated with default values + - Bitswap client New has new option for caller to supply a DontHaveTimeoutConfig + - If the required onHaveTimeout function is nil, then disable the dontaHaveTimeoutMgr + ### Changed ### Removed @@ -65,7 +70,7 @@ The following emojis are used to highlight certain changes: provider := provider.New(datastore, provider.Online(contentProvider) // A wrapped providing exchange using the previous exchange and the provider. exch := providing.New(bswap, provider) - + // Finally the blockservice bserv := blockservice.New(blockstore, exch) ...