From 1ad0f2daaad19564f9a3dc7aa1fa315e3d1aec30 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Fri, 10 Jul 2026 14:21:02 +0200 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 36 +++++++++---------- packages/bitswap/CHANGELOG.md | 11 ++++++ packages/bitswap/package.json | 8 ++--- packages/car/CHANGELOG.md | 13 +++++++ packages/car/package.json | 10 +++--- packages/dag-cbor/CHANGELOG.md | 9 +++++ packages/dag-cbor/package.json | 4 +-- packages/dag-json/CHANGELOG.md | 9 +++++ packages/dag-json/package.json | 4 +-- .../delegated-routing-client/CHANGELOG.md | 9 +++++ .../delegated-routing-client/package.json | 4 +-- packages/fallback-router/CHANGELOG.md | 14 ++++++++ packages/fallback-router/package.json | 4 +-- packages/helia/CHANGELOG.md | 18 ++++++++++ packages/helia/package.json | 12 +++---- packages/http/CHANGELOG.md | 12 +++++++ packages/http/package.json | 10 +++--- packages/interface/CHANGELOG.md | 7 ++++ packages/interface/package.json | 2 +- packages/interop/CHANGELOG.md | 26 ++++++++++++++ packages/interop/package.json | 28 +++++++-------- packages/ipns/CHANGELOG.md | 9 +++++ packages/ipns/package.json | 4 +-- packages/json/CHANGELOG.md | 9 +++++ packages/json/package.json | 4 +-- packages/libp2p/CHANGELOG.md | 10 ++++++ packages/libp2p/package.json | 6 ++-- packages/mfs/CHANGELOG.md | 9 +++++ packages/mfs/package.json | 4 +-- packages/strings/CHANGELOG.md | 9 +++++ packages/strings/package.json | 4 +-- .../trustless-gateway-client/CHANGELOG.md | 10 ++++++ .../trustless-gateway-client/package.json | 6 ++-- packages/unixfs/CHANGELOG.md | 9 +++++ packages/unixfs/package.json | 4 +-- packages/utils/CHANGELOG.md | 9 +++++ packages/utils/package.json | 4 +-- 37 files changed, 281 insertions(+), 79 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 593530669..881e97594 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,21 +1,21 @@ { - "packages/bitswap": "4.0.5", - "packages/car": "6.0.3", - "packages/dag-cbor": "6.0.3", - "packages/dag-json": "6.0.3", + "packages/bitswap": "4.0.6", + "packages/car": "6.0.4", + "packages/dag-cbor": "6.0.4", + "packages/dag-json": "6.0.4", "packages/dnslink": "2.0.2", - "packages/helia": "7.0.5", - "packages/interface": "7.0.3", - "packages/interop": "11.0.7", - "packages/ipns": "10.0.4", - "packages/json": "6.0.3", - "packages/mfs": "8.0.3", - "packages/strings": "6.0.3", - "packages/unixfs": "8.0.3", - "packages/utils": "3.0.3", - "packages/http": "4.0.4", - "packages/delegated-routing-client": "1.0.4", - "packages/fallback-router": "1.0.3", - "packages/libp2p": "1.0.5", - "packages/trustless-gateway-client": "1.0.3" + "packages/helia": "7.1.0", + "packages/interface": "7.1.0", + "packages/interop": "11.0.8", + "packages/ipns": "10.0.5", + "packages/json": "6.0.4", + "packages/mfs": "8.0.4", + "packages/strings": "6.0.4", + "packages/unixfs": "8.0.4", + "packages/utils": "3.0.4", + "packages/http": "4.0.5", + "packages/delegated-routing-client": "1.0.5", + "packages/fallback-router": "1.1.0", + "packages/libp2p": "1.0.6", + "packages/trustless-gateway-client": "1.0.4" } diff --git a/packages/bitswap/CHANGELOG.md b/packages/bitswap/CHANGELOG.md index 24aa70027..dd0531fa2 100644 --- a/packages/bitswap/CHANGELOG.md +++ b/packages/bitswap/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [4.0.6](https://github.com/ipfs/helia/compare/bitswap-v4.0.5...bitswap-v4.0.6) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/libp2p bumped from ^1.0.5 to ^1.0.6 + * @helia/utils bumped from ^3.0.3 to ^3.0.4 + ## [4.0.5](https://github.com/ipfs/helia/compare/bitswap-v4.0.4...bitswap-v4.0.5) (2026-07-04) diff --git a/packages/bitswap/package.json b/packages/bitswap/package.json index 317c4e12d..45592210b 100644 --- a/packages/bitswap/package.json +++ b/packages/bitswap/package.json @@ -1,6 +1,6 @@ { "name": "@helia/bitswap", - "version": "4.0.5", + "version": "4.0.6", "description": "JavaScript implementation of the Bitswap data exchange protocol used by Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/bitswap#readme", @@ -52,9 +52,9 @@ "docs": "aegir docs" }, "dependencies": { - "@helia/interface": "^7.0.3", - "@helia/libp2p": "^1.0.5", - "@helia/utils": "^3.0.3", + "@helia/interface": "^7.1.0", + "@helia/libp2p": "^1.0.6", + "@helia/utils": "^3.0.4", "@libp2p/interface": "^3.2.3", "@libp2p/logger": "^6.2.8", "@libp2p/peer-collections": "^7.0.21", diff --git a/packages/car/CHANGELOG.md b/packages/car/CHANGELOG.md index a2a22dc3b..e884f6f58 100644 --- a/packages/car/CHANGELOG.md +++ b/packages/car/CHANGELOG.md @@ -1,5 +1,18 @@ # Changelog +## [6.0.4](https://github.com/ipfs/helia/compare/car-v6.0.3...car-v6.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/utils bumped from ^3.0.3 to ^3.0.4 + * devDependencies + * @helia/mfs bumped from ^8.0.3 to ^8.0.4 + * @helia/unixfs bumped from ^8.0.3 to ^8.0.4 + ## [6.0.3](https://github.com/ipfs/helia/compare/car-v6.0.2...car-v6.0.3) (2026-07-04) diff --git a/packages/car/package.json b/packages/car/package.json index c9ca26d92..4d127fc5a 100644 --- a/packages/car/package.json +++ b/packages/car/package.json @@ -1,6 +1,6 @@ { "name": "@helia/car", - "version": "6.0.3", + "version": "6.0.4", "description": "Import/export car files from Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/car#readme", @@ -48,8 +48,8 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", - "@helia/utils": "^3.0.3", + "@helia/interface": "^7.1.0", + "@helia/utils": "^3.0.4", "@ipld/car": "^5.4.6", "@ipld/dag-pb": "^4.1.7", "@libp2p/interface": "^3.2.3", @@ -66,8 +66,8 @@ "race-signal": "^2.0.0" }, "devDependencies": { - "@helia/mfs": "^8.0.3", - "@helia/unixfs": "^8.0.3", + "@helia/mfs": "^8.0.4", + "@helia/unixfs": "^8.0.4", "@ipld/dag-cbor": "^10.0.1", "@libp2p/logger": "^6.2.8", "aegir": "^48.0.11", diff --git a/packages/dag-cbor/CHANGELOG.md b/packages/dag-cbor/CHANGELOG.md index 6e9b8190c..88e7fb201 100644 --- a/packages/dag-cbor/CHANGELOG.md +++ b/packages/dag-cbor/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [6.0.4](https://github.com/ipfs/helia/compare/dag-cbor-v6.0.3...dag-cbor-v6.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [6.0.3](https://github.com/ipfs/helia/compare/dag-cbor-v6.0.2...dag-cbor-v6.0.3) (2026-07-04) diff --git a/packages/dag-cbor/package.json b/packages/dag-cbor/package.json index 71a446e85..6fb03aa53 100644 --- a/packages/dag-cbor/package.json +++ b/packages/dag-cbor/package.json @@ -1,6 +1,6 @@ { "name": "@helia/dag-cbor", - "version": "6.0.3", + "version": "6.0.4", "description": "Add/get IPLD blocks containing dag-cbor with your Helia node", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-cbor#readme", @@ -49,7 +49,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@ipld/dag-cbor": "^10.0.1", "@libp2p/interface": "^3.2.3", "interface-blockstore": "^7.0.1", diff --git a/packages/dag-json/CHANGELOG.md b/packages/dag-json/CHANGELOG.md index 3e02691cb..fdfff8d6f 100644 --- a/packages/dag-json/CHANGELOG.md +++ b/packages/dag-json/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [6.0.4](https://github.com/ipfs/helia/compare/dag-json-v6.0.3...dag-json-v6.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [6.0.3](https://github.com/ipfs/helia/compare/dag-json-v6.0.2...dag-json-v6.0.3) (2026-07-04) diff --git a/packages/dag-json/package.json b/packages/dag-json/package.json index 2c7a3171b..19570ccbe 100644 --- a/packages/dag-json/package.json +++ b/packages/dag-json/package.json @@ -1,6 +1,6 @@ { "name": "@helia/dag-json", - "version": "6.0.3", + "version": "6.0.4", "description": "Add/get IPLD blocks containing dag-json with your Helia node", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-json#readme", @@ -48,7 +48,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@ipld/dag-json": "^11.0.0", "@libp2p/interface": "^3.2.3", "interface-blockstore": "^7.0.1", diff --git a/packages/delegated-routing-client/CHANGELOG.md b/packages/delegated-routing-client/CHANGELOG.md index e96cf1173..92380c904 100644 --- a/packages/delegated-routing-client/CHANGELOG.md +++ b/packages/delegated-routing-client/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.0.5](https://github.com/ipfs/helia/compare/delegated-routing-client-v1.0.4...delegated-routing-client-v1.0.5) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [1.0.4](https://github.com/ipfs/helia/compare/delegated-routing-client-v1.0.3...delegated-routing-client-v1.0.4) (2026-07-04) diff --git a/packages/delegated-routing-client/package.json b/packages/delegated-routing-client/package.json index d1e3e822e..d28bf5a76 100644 --- a/packages/delegated-routing-client/package.json +++ b/packages/delegated-routing-client/package.json @@ -1,6 +1,6 @@ { "name": "@helia/delegated-routing-client", - "version": "1.0.4", + "version": "1.0.5", "description": "Use HTTP Delegated Routers with Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/delegated-routing-client#readme", @@ -49,7 +49,7 @@ }, "dependencies": { "@helia/delegated-routing-v1-http-api-client": "^9.0.0", - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@libp2p/interface": "^3.2.3", "it-first": "^3.0.11", "it-map": "^3.1.6", diff --git a/packages/fallback-router/CHANGELOG.md b/packages/fallback-router/CHANGELOG.md index 873ce5770..2f5142f1c 100644 --- a/packages/fallback-router/CHANGELOG.md +++ b/packages/fallback-router/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.1.0](https://github.com/ipfs/helia/compare/fallback-router-v1.0.3...fallback-router-v1.1.0) (2026-07-10) + + +### Features + +* add router capabilities for fallback routers ([#1084](https://github.com/ipfs/helia/issues/1084)) ([aea1416](https://github.com/ipfs/helia/commit/aea1416dda67a0d76e31efb9e75d0ec287fa63ea)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [1.0.3](https://github.com/ipfs/helia/compare/fallback-router-v1.0.2...fallback-router-v1.0.3) (2026-07-04) diff --git a/packages/fallback-router/package.json b/packages/fallback-router/package.json index f2eef31f5..9ab75bed0 100644 --- a/packages/fallback-router/package.json +++ b/packages/fallback-router/package.json @@ -1,6 +1,6 @@ { "name": "@helia/fallback-router", - "version": "1.0.3", + "version": "1.1.0", "description": "A Helia router that yields hard coded providers", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/fallback-router#readme", @@ -48,7 +48,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@multiformats/uri-to-multiaddr": "^10.0.0", "multiformats": "^14.0.0", "uint8arrays": "^6.1.1" diff --git a/packages/helia/CHANGELOG.md b/packages/helia/CHANGELOG.md index 91abce3e6..e94033e13 100644 --- a/packages/helia/CHANGELOG.md +++ b/packages/helia/CHANGELOG.md @@ -1,5 +1,23 @@ # Changelog +## [7.1.0](https://github.com/ipfs/helia/compare/helia-v7.0.5...helia-v7.1.0) (2026-07-10) + + +### Features + +* add router capabilities for fallback routers ([#1084](https://github.com/ipfs/helia/issues/1084)) ([aea1416](https://github.com/ipfs/helia/commit/aea1416dda67a0d76e31efb9e75d0ec287fa63ea)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/bitswap bumped from ^4.0.5 to ^4.0.6 + * @helia/http bumped from ^4.0.4 to ^4.0.5 + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/libp2p bumped from ^1.0.5 to ^1.0.6 + * @helia/utils bumped from ^3.0.3 to ^3.0.4 + ## [7.0.5](https://github.com/ipfs/helia/compare/helia-v7.0.4...helia-v7.0.5) (2026-07-04) diff --git a/packages/helia/package.json b/packages/helia/package.json index fa13c4f5c..6a2efdd56 100644 --- a/packages/helia/package.json +++ b/packages/helia/package.json @@ -1,6 +1,6 @@ { "name": "helia", - "version": "7.0.5", + "version": "7.1.0", "description": "An implementation of IPFS in JavaScript", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme", @@ -49,11 +49,11 @@ "prepublishOnly": "node scripts/update-version.js && npm run build" }, "dependencies": { - "@helia/bitswap": "^4.0.5", - "@helia/http": "^4.0.4", - "@helia/interface": "^7.0.3", - "@helia/libp2p": "^1.0.5", - "@helia/utils": "^3.0.3", + "@helia/bitswap": "^4.0.6", + "@helia/http": "^4.0.5", + "@helia/interface": "^7.1.0", + "@helia/libp2p": "^1.0.6", + "@helia/utils": "^3.0.4", "@ipld/dag-cbor": "^10.0.1", "@ipld/dag-json": "^11.0.0", "@ipld/dag-pb": "^4.1.7", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md index cc3439f57..871688f01 100644 --- a/packages/http/CHANGELOG.md +++ b/packages/http/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [4.0.5](https://github.com/ipfs/helia/compare/http-v4.0.4...http-v4.0.5) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/delegated-routing-client bumped from ^1.0.4 to ^1.0.5 + * @helia/fallback-router bumped from ^1.0.3 to ^1.1.0 + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/trustless-gateway-client bumped from ^1.0.3 to ^1.0.4 + ## [4.0.4](https://github.com/ipfs/helia/compare/http-v4.0.3...http-v4.0.4) (2026-07-04) diff --git a/packages/http/package.json b/packages/http/package.json index 24d08b4e7..97e510299 100644 --- a/packages/http/package.json +++ b/packages/http/package.json @@ -1,6 +1,6 @@ { "name": "@helia/http", - "version": "4.0.4", + "version": "4.0.5", "description": "A lightweight implementation of IPFS over HTTP in JavaScript", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/http#readme", @@ -48,10 +48,10 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/delegated-routing-client": "^1.0.4", - "@helia/fallback-router": "^1.0.3", - "@helia/interface": "^7.0.3", - "@helia/trustless-gateway-client": "^1.0.3" + "@helia/delegated-routing-client": "^1.0.5", + "@helia/fallback-router": "^1.1.0", + "@helia/interface": "^7.1.0", + "@helia/trustless-gateway-client": "^1.0.4" }, "devDependencies": { "aegir": "^48.0.11", diff --git a/packages/interface/CHANGELOG.md b/packages/interface/CHANGELOG.md index 7a2183e3f..5ff8378ec 100644 --- a/packages/interface/CHANGELOG.md +++ b/packages/interface/CHANGELOG.md @@ -5,6 +5,13 @@ * expose .dns property on @helia/interface ([#465](https://github.com/ipfs/helia/issues/465)) ([8c9bb7d](https://github.com/ipfs/helia/commit/8c9bb7d224a1b786cba1fba18bffe07001a3b95d)) +## [7.1.0](https://github.com/ipfs/helia/compare/interface-v7.0.3...interface-v7.1.0) (2026-07-10) + + +### Features + +* add router capabilities for fallback routers ([#1084](https://github.com/ipfs/helia/issues/1084)) ([aea1416](https://github.com/ipfs/helia/commit/aea1416dda67a0d76e31efb9e75d0ec287fa63ea)) + ## [7.0.3](https://github.com/ipfs/helia/compare/interface-v7.0.2...interface-v7.0.3) (2026-07-04) diff --git a/packages/interface/package.json b/packages/interface/package.json index d33195f36..1dd1adba0 100644 --- a/packages/interface/package.json +++ b/packages/interface/package.json @@ -1,6 +1,6 @@ { "name": "@helia/interface", - "version": "7.0.3", + "version": "7.1.0", "description": "The Helia API", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/interface#readme", diff --git a/packages/interop/CHANGELOG.md b/packages/interop/CHANGELOG.md index b8263f765..6f3485668 100644 --- a/packages/interop/CHANGELOG.md +++ b/packages/interop/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [11.0.8](https://github.com/ipfs/helia/compare/interop-v11.0.7...interop-v11.0.8) (2026-07-10) + + +### Bug Fixes + +* pin kubo interop node to unixfs-v1-2025 ([#1083](https://github.com/ipfs/helia/issues/1083)) ([2520fb9](https://github.com/ipfs/helia/commit/2520fb92559d2f02b10fe46090b37ff414cb80ef)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/bitswap bumped from ^4.0.5 to ^4.0.6 + * @helia/car bumped from ^6.0.3 to ^6.0.4 + * @helia/dag-cbor bumped from ^6.0.3 to ^6.0.4 + * @helia/dag-json bumped from ^6.0.3 to ^6.0.4 + * @helia/delegated-routing-client bumped from ^1.0.4 to ^1.0.5 + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/ipns bumped from ^10.0.4 to ^10.0.5 + * @helia/json bumped from ^6.0.3 to ^6.0.4 + * @helia/libp2p bumped from ^1.0.5 to ^1.0.6 + * @helia/mfs bumped from ^8.0.3 to ^8.0.4 + * @helia/strings bumped from ^6.0.3 to ^6.0.4 + * @helia/unixfs bumped from ^8.0.3 to ^8.0.4 + * helia bumped from ^7.0.5 to ^7.1.0 + ## [11.0.7](https://github.com/ipfs/helia/compare/interop-v11.0.6...interop-v11.0.7) (2026-07-04) diff --git a/packages/interop/package.json b/packages/interop/package.json index cb0c25a19..6b37c52e8 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -1,6 +1,6 @@ { "name": "@helia/interop", - "version": "11.0.7", + "version": "11.0.8", "description": "Interop tests for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/interop#readme", @@ -52,19 +52,19 @@ "test:electron-main": "aegir test -t electron-main --cov -- --exit" }, "dependencies": { - "@helia/bitswap": "^4.0.5", - "@helia/car": "^6.0.3", - "@helia/dag-cbor": "^6.0.3", - "@helia/dag-json": "^6.0.3", - "@helia/delegated-routing-client": "^1.0.4", + "@helia/bitswap": "^4.0.6", + "@helia/car": "^6.0.4", + "@helia/dag-cbor": "^6.0.4", + "@helia/dag-json": "^6.0.4", + "@helia/delegated-routing-client": "^1.0.5", "@helia/dnslink": "^2.0.2", - "@helia/interface": "^7.0.3", - "@helia/ipns": "^10.0.4", - "@helia/json": "^6.0.3", - "@helia/libp2p": "^1.0.5", - "@helia/mfs": "^8.0.3", - "@helia/strings": "^6.0.3", - "@helia/unixfs": "^8.0.3", + "@helia/interface": "^7.1.0", + "@helia/ipns": "^10.0.5", + "@helia/json": "^6.0.4", + "@helia/libp2p": "^1.0.6", + "@helia/mfs": "^8.0.4", + "@helia/strings": "^6.0.4", + "@helia/unixfs": "^8.0.4", "@ipld/car": "^5.4.6", "@ipld/dag-cbor": "^10.0.1", "@ipld/dag-json": "^11.0.0", @@ -80,7 +80,7 @@ "@multiformats/multiaddr": "^13.0.3", "@multiformats/sha3": "^4.0.0", "aegir": "^48.0.11", - "helia": "^7.0.5", + "helia": "^7.1.0", "ipfs-unixfs-importer": "^17.0.1", "ipfsd-ctl": "^17.0.0", "it-all": "^3.0.11", diff --git a/packages/ipns/CHANGELOG.md b/packages/ipns/CHANGELOG.md index e8bbf347e..a6267b2ee 100644 --- a/packages/ipns/CHANGELOG.md +++ b/packages/ipns/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [10.0.5](https://github.com/ipfs/helia/compare/ipns-v10.0.4...ipns-v10.0.5) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [10.0.4](https://github.com/ipfs/helia/compare/ipns-v10.0.3...ipns-v10.0.4) (2026-07-04) diff --git a/packages/ipns/package.json b/packages/ipns/package.json index 219fa98b8..3011a9c9b 100644 --- a/packages/ipns/package.json +++ b/packages/ipns/package.json @@ -1,6 +1,6 @@ { "name": "@helia/ipns", - "version": "10.0.4", + "version": "10.0.5", "description": "An implementation of IPNS for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/ipns#readme", @@ -50,7 +50,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@ipld/dag-cbor": "^10.0.1", "@ipshipyard/crypto": "^1.1.0", "@ipshipyard/keychain": "^1.0.2", diff --git a/packages/json/CHANGELOG.md b/packages/json/CHANGELOG.md index 1cffb2963..6f00fa7bf 100644 --- a/packages/json/CHANGELOG.md +++ b/packages/json/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [6.0.4](https://github.com/ipfs/helia/compare/json-v6.0.3...json-v6.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [6.0.3](https://github.com/ipfs/helia/compare/json-v6.0.2...json-v6.0.3) (2026-07-04) diff --git a/packages/json/package.json b/packages/json/package.json index 1d900922e..2c0668446 100644 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -1,6 +1,6 @@ { "name": "@helia/json", - "version": "6.0.3", + "version": "6.0.4", "description": "Add/get IPLD blocks containing json with your Helia node", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/json#readme", @@ -48,7 +48,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@libp2p/interface": "^3.2.3", "interface-blockstore": "^7.0.1", "it-to-buffer": "^5.0.0", diff --git a/packages/libp2p/CHANGELOG.md b/packages/libp2p/CHANGELOG.md index 83ad340ef..67c75e102 100644 --- a/packages/libp2p/CHANGELOG.md +++ b/packages/libp2p/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.0.6](https://github.com/ipfs/helia/compare/libp2p-v1.0.5...libp2p-v1.0.6) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/delegated-routing-client bumped from ^1.0.4 to ^1.0.5 + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [1.0.5](https://github.com/ipfs/helia/compare/libp2p-v1.0.4...libp2p-v1.0.5) (2026-07-04) diff --git a/packages/libp2p/package.json b/packages/libp2p/package.json index 8735cfb75..220760aa0 100644 --- a/packages/libp2p/package.json +++ b/packages/libp2p/package.json @@ -1,6 +1,6 @@ { "name": "@helia/libp2p", - "version": "1.0.5", + "version": "1.0.6", "description": "libp2p functionality for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/libp2p#readme", @@ -50,9 +50,9 @@ "dependencies": { "@chainsafe/libp2p-noise": "^17.0.0", "@chainsafe/libp2p-yamux": "^8.0.1", - "@helia/delegated-routing-client": "^1.0.4", + "@helia/delegated-routing-client": "^1.0.5", "@helia/delegated-routing-v1-http-api-client": "^9.0.0", - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@ipshipyard/libp2p-auto-tls": "^2.0.1", "@libp2p/autonat": "^3.0.21", "@libp2p/bootstrap": "^12.0.24", diff --git a/packages/mfs/CHANGELOG.md b/packages/mfs/CHANGELOG.md index 82299cd96..4b85ab898 100644 --- a/packages/mfs/CHANGELOG.md +++ b/packages/mfs/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [8.0.4](https://github.com/ipfs/helia/compare/mfs-v8.0.3...mfs-v8.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/unixfs bumped from ^8.0.3 to ^8.0.4 + ## [8.0.3](https://github.com/ipfs/helia/compare/mfs-v8.0.2...mfs-v8.0.3) (2026-07-04) diff --git a/packages/mfs/package.json b/packages/mfs/package.json index ce035eef2..b20d4ac19 100644 --- a/packages/mfs/package.json +++ b/packages/mfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/mfs", - "version": "8.0.3", + "version": "8.0.4", "description": "A mutable filesystem powered by Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/mfs#readme", @@ -48,7 +48,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/unixfs": "^8.0.3", + "@helia/unixfs": "^8.0.4", "@libp2p/interface": "^3.2.3", "interface-blockstore": "^7.0.1", "interface-datastore": "^10.0.1", diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 67be45a7d..2d51b750a 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [6.0.4](https://github.com/ipfs/helia/compare/strings-v6.0.3...strings-v6.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [6.0.3](https://github.com/ipfs/helia/compare/strings-v6.0.2...strings-v6.0.3) (2026-07-04) diff --git a/packages/strings/package.json b/packages/strings/package.json index f833f19fa..f4c63bd45 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@helia/strings", - "version": "6.0.3", + "version": "6.0.4", "description": "Add/get IPLD blocks containing strings with your Helia node", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/strings#readme", @@ -49,7 +49,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@libp2p/interface": "^3.2.3", "interface-blockstore": "^7.0.1", "it-to-buffer": "^5.0.0", diff --git a/packages/trustless-gateway-client/CHANGELOG.md b/packages/trustless-gateway-client/CHANGELOG.md index a2138a96b..c39e41fd6 100644 --- a/packages/trustless-gateway-client/CHANGELOG.md +++ b/packages/trustless-gateway-client/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [1.0.4](https://github.com/ipfs/helia/compare/trustless-gateway-client-v1.0.3...trustless-gateway-client-v1.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + * @helia/utils bumped from ^3.0.3 to ^3.0.4 + ## [1.0.3](https://github.com/ipfs/helia/compare/trustless-gateway-client-v1.0.2...trustless-gateway-client-v1.0.3) (2026-07-04) diff --git a/packages/trustless-gateway-client/package.json b/packages/trustless-gateway-client/package.json index 18e2990e3..6757f107d 100644 --- a/packages/trustless-gateway-client/package.json +++ b/packages/trustless-gateway-client/package.json @@ -1,6 +1,6 @@ { "name": "@helia/trustless-gateway-client", - "version": "1.0.3", + "version": "1.0.4", "description": "Use Trustless HTTP Gateways with Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/trustless-gateway-client#readme", @@ -48,8 +48,8 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", - "@helia/utils": "^3.0.3", + "@helia/interface": "^7.1.0", + "@helia/utils": "^3.0.4", "@libp2p/utils": "^7.2.2", "@multiformats/multiaddr": "^13.0.3", "@multiformats/multiaddr-matcher": "^3.0.2", diff --git a/packages/unixfs/CHANGELOG.md b/packages/unixfs/CHANGELOG.md index e70e3c5bd..ac6cbf1ac 100644 --- a/packages/unixfs/CHANGELOG.md +++ b/packages/unixfs/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [8.0.4](https://github.com/ipfs/helia/compare/unixfs-v8.0.3...unixfs-v8.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [8.0.3](https://github.com/ipfs/helia/compare/unixfs-v8.0.2...unixfs-v8.0.3) (2026-07-04) diff --git a/packages/unixfs/package.json b/packages/unixfs/package.json index 8c6851f38..2247e42d3 100644 --- a/packages/unixfs/package.json +++ b/packages/unixfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/unixfs", - "version": "8.0.3", + "version": "8.0.4", "description": "A Helia-compatible wrapper for UnixFS", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/unixfs#readme", @@ -69,7 +69,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@ipld/dag-pb": "^4.1.7", "@libp2p/interface": "^3.2.3", "@libp2p/logger": "^6.2.8", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index 593df0b75..09b9e290d 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.0.4](https://github.com/ipfs/helia/compare/utils-v3.0.3...utils-v3.0.4) (2026-07-10) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^7.0.3 to ^7.1.0 + ## [3.0.3](https://github.com/ipfs/helia/compare/utils-v3.0.2...utils-v3.0.3) (2026-07-04) diff --git a/packages/utils/package.json b/packages/utils/package.json index 005ce703d..e0e15b1a1 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@helia/utils", - "version": "3.0.3", + "version": "3.0.4", "description": "Shared code that implements the Helia API", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/utils#readme", @@ -48,7 +48,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^7.0.3", + "@helia/interface": "^7.1.0", "@libp2p/interface": "^3.2.3", "@libp2p/utils": "^7.2.2", "@multiformats/multiaddr": "^13.0.3",