From 1d997975104ac3b0a3e3441e5cce0925e0cfd577 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Tue, 29 Apr 2025 20:24:59 -1000 Subject: [PATCH 1/4] Release v0.30.0 --- CHANGELOG.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 17bfb3f14..efeac4ccc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,19 @@ The following emojis are used to highlight certain changes: ### Added +### Changed + +### Removed + +### Fixed + +### Security + + +## [v0.30.0] + +### Added + - Control over UnixFS DAG Width - We have made some changes to allow setting custom max width of UnixFS DAGs. This enables users to produce DAGs that follow current and future community conventions (see the [related discussion](https://discuss.ipfs.tech/t/should-we-profile-cids/18507)). - `ipld/unixfs`: `DagModifier` now allows specifying file DAG Width (`MaxLinks`) [#898](https://github.com/ipfs/boxo/pull/898) From cad60219b4ed3f0fe5d25c130ea798743cf2b9a1 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Tue, 29 Apr 2025 20:51:53 -1000 Subject: [PATCH 2/4] bump version --- version.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.json b/version.json index a794d2724..6c102bc5c 100644 --- a/version.json +++ b/version.json @@ -1,3 +1,3 @@ { - "version": "v0.29.1" + "version": "v0.30.0" } From 0dfee280c0d4d8af2c427dc61b3283e08e582540 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Tue, 29 Apr 2025 21:01:36 -1000 Subject: [PATCH 3/4] Document additional changes --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index efeac4ccc..c2c1f4593 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -51,6 +51,8 @@ The following emojis are used to highlight certain changes: - `bitswap/network`: Add a new `requests_in_flight` metric gauge that measures how many bitswap streams are being written or read at a given time. - improve speed of data onboarding by batching/bufering provider queue writes [#888](https://github.com/ipfs/boxo/pull/888) - `provider`: providing queue is now independent from reprovides, speeding up initial provides [#907](https://github.com/ipfs/boxo/pull/907) + - renamed `provider.ReproviderStats.TotalProvides` => `provider.ReproviderStats.TotalReprovides` + - renamed `provider.ReproviderStats.AvgProvideDuration` => `provider.ReproviderStats.AvgReprovideDuration` - `provider/queue` deduplicates CIDs [#910](https://github.com/ipfs/boxo/pull/910) ### Removed From b712c6766a871d4fc92e3ad8b5a4d90ddcd70778 Mon Sep 17 00:00:00 2001 From: gammazero <11790789+gammazero@users.noreply.github.com> Date: Tue, 29 Apr 2025 21:05:39 -1000 Subject: [PATCH 4/4] tidy changelog --- CHANGELOG.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2c1f4593..be7fed4bc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,16 +55,12 @@ The following emojis are used to highlight certain changes: - renamed `provider.ReproviderStats.AvgProvideDuration` => `provider.ReproviderStats.AvgReprovideDuration` - `provider/queue` deduplicates CIDs [#910](https://github.com/ipfs/boxo/pull/910) -### Removed - ### Fixed - `gateway`: query parameters are now supported and preserved in redirects triggered by a [`_redirects`](https://specs.ipfs.tech/http-gateways/web-redirects-file/) file [#886](https://github.com/ipfs/boxo/pull/886) - `provider`: adjusted first reprovide timing after node reboot [#890](https://github.com/ipfs/boxo/pull/890) - `gateway`: validate configuration and warn when `UseSubdomains=true` is used with IP-based hostnames [#903](https://github.com/ipfs/boxo/pull/903) -### Security - ## [v0.29.1]