From f4bfbc8a3df99d139523c14324665873919c5010 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Tue, 4 Mar 2025 18:35:31 +0100 Subject: [PATCH] chore: release main --- .release-please-manifest.json | 32 ++++++++++++++--------------- packages/bitswap/CHANGELOG.md | 16 +++++++++++++++ packages/bitswap/package.json | 6 +++--- packages/block-brokers/CHANGELOG.md | 16 +++++++++++++++ packages/block-brokers/package.json | 8 ++++---- packages/car/CHANGELOG.md | 17 +++++++++++++++ packages/car/package.json | 8 ++++---- packages/dag-cbor/CHANGELOG.md | 14 +++++++++++++ packages/dag-cbor/package.json | 4 ++-- packages/dag-json/CHANGELOG.md | 14 +++++++++++++ packages/dag-json/package.json | 4 ++-- packages/helia/CHANGELOG.md | 22 ++++++++++++++++++++ packages/helia/package.json | 10 ++++----- packages/http/CHANGELOG.md | 17 +++++++++++++++ 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 | 19 +++++++++++++++++ packages/ipns/package.json | 4 ++-- packages/json/CHANGELOG.md | 14 +++++++++++++ packages/json/package.json | 4 ++-- packages/mfs/CHANGELOG.md | 14 +++++++++++++ packages/mfs/package.json | 4 ++-- packages/routers/CHANGELOG.md | 14 +++++++++++++ packages/routers/package.json | 4 ++-- packages/strings/CHANGELOG.md | 14 +++++++++++++ packages/strings/package.json | 4 ++-- packages/unixfs/CHANGELOG.md | 14 +++++++++++++ packages/unixfs/package.json | 4 ++-- packages/utils/CHANGELOG.md | 14 +++++++++++++ packages/utils/package.json | 4 ++-- 33 files changed, 322 insertions(+), 70 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7a399af..f626ec4e 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,18 +1,18 @@ { - "packages/block-brokers": "4.0.4", - "packages/bitswap": "2.0.4", - "packages/car": "4.0.2", - "packages/dag-cbor": "4.0.2", - "packages/dag-json": "4.0.2", - "packages/helia": "5.2.1", - "packages/interface": "5.2.0", - "packages/interop": "7.1.2", - "packages/ipns": "8.1.0", - "packages/json": "4.0.2", - "packages/mfs": "4.0.2", - "packages/strings": "4.0.2", - "packages/unixfs": "4.0.2", - "packages/utils": "1.2.1", - "packages/http": "2.0.4", - "packages/routers": "3.0.0" + "packages/block-brokers": "4.0.5", + "packages/bitswap": "2.0.5", + "packages/car": "4.0.3", + "packages/dag-cbor": "4.0.3", + "packages/dag-json": "4.0.3", + "packages/helia": "5.3.0", + "packages/interface": "5.2.1", + "packages/interop": "7.1.3", + "packages/ipns": "8.1.1", + "packages/json": "4.0.3", + "packages/mfs": "4.0.3", + "packages/strings": "4.0.3", + "packages/unixfs": "4.0.3", + "packages/utils": "1.2.2", + "packages/http": "2.0.5", + "packages/routers": "3.0.1" } diff --git a/packages/bitswap/CHANGELOG.md b/packages/bitswap/CHANGELOG.md index 3f89d84b..9b1efb1d 100644 --- a/packages/bitswap/CHANGELOG.md +++ b/packages/bitswap/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [2.0.5](https://github.com/ipfs/helia/compare/bitswap-v2.0.4...bitswap-v2.0.5) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* bump it-length-prefixed from 9.1.1 to 10.0.1 ([#740](https://github.com/ipfs/helia/issues/740)) ([ac7185a](https://github.com/ipfs/helia/commit/ac7185af8f0da0782f6273fba76ccfe9427d2fa4)) +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * @helia/utils bumped from ^1.2.1 to ^1.2.2 + ## [2.0.4](https://github.com/ipfs/helia/compare/bitswap-v2.0.3...bitswap-v2.0.4) (2025-02-10) diff --git a/packages/bitswap/package.json b/packages/bitswap/package.json index c97fc0a2..65434ed5 100644 --- a/packages/bitswap/package.json +++ b/packages/bitswap/package.json @@ -1,6 +1,6 @@ { "name": "@helia/bitswap", - "version": "2.0.4", + "version": "2.0.5", "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", @@ -62,8 +62,8 @@ "docs": "aegir docs" }, "dependencies": { - "@helia/interface": "^5.2.0", - "@helia/utils": "^1.2.1", + "@helia/interface": "^5.2.1", + "@helia/utils": "^1.2.2", "@libp2p/interface": "^2.2.1", "@libp2p/logger": "^5.1.4", "@libp2p/peer-collections": "^6.0.12", diff --git a/packages/block-brokers/CHANGELOG.md b/packages/block-brokers/CHANGELOG.md index a147597d..3353478c 100644 --- a/packages/block-brokers/CHANGELOG.md +++ b/packages/block-brokers/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [4.0.5](https://github.com/ipfs/helia/compare/block-brokers-v4.0.4...block-brokers-v4.0.5) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/bitswap bumped from ^2.0.4 to ^2.0.5 + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * @helia/utils bumped from ^1.2.1 to ^1.2.2 + ## [4.0.4](https://github.com/ipfs/helia/compare/block-brokers-v4.0.3...block-brokers-v4.0.4) (2025-02-10) diff --git a/packages/block-brokers/package.json b/packages/block-brokers/package.json index a912be63..0dda5429 100644 --- a/packages/block-brokers/package.json +++ b/packages/block-brokers/package.json @@ -1,6 +1,6 @@ { "name": "@helia/block-brokers", - "version": "4.0.4", + "version": "4.0.5", "description": "Block brokers for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/block-brokers#readme", @@ -54,9 +54,9 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/bitswap": "^2.0.4", - "@helia/interface": "^5.2.0", - "@helia/utils": "^1.2.1", + "@helia/bitswap": "^2.0.5", + "@helia/interface": "^5.2.1", + "@helia/utils": "^1.2.2", "@libp2p/interface": "^2.2.1", "@libp2p/utils": "^6.2.1", "@multiformats/multiaddr": "^12.3.3", diff --git a/packages/car/CHANGELOG.md b/packages/car/CHANGELOG.md index 3d849ec4..26ad6371 100644 --- a/packages/car/CHANGELOG.md +++ b/packages/car/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/car-v4.0.2...car-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * devDependencies + * @helia/mfs bumped from ^4.0.2 to ^4.0.3 + * @helia/unixfs bumped from ^4.0.2 to ^4.0.3 + ## [4.0.2](https://github.com/ipfs/helia/compare/car-v4.0.1...car-v4.0.2) (2025-01-14) diff --git a/packages/car/package.json b/packages/car/package.json index 43121c37..3b356b8a 100644 --- a/packages/car/package.json +++ b/packages/car/package.json @@ -1,6 +1,6 @@ { "name": "@helia/car", - "version": "4.0.2", + "version": "4.0.3", "description": "Import/export car files from Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/car#readme", @@ -54,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@ipld/car": "^5.3.3", "@libp2p/interface": "^2.2.1", "@libp2p/utils": "^6.2.1", @@ -67,8 +67,8 @@ "progress-events": "^1.0.1" }, "devDependencies": { - "@helia/mfs": "^4.0.2", - "@helia/unixfs": "^4.0.2", + "@helia/mfs": "^4.0.3", + "@helia/unixfs": "^4.0.3", "@ipld/dag-pb": "^4.1.3", "aegir": "^45.1.1", "blockstore-core": "^5.0.2", diff --git a/packages/dag-cbor/CHANGELOG.md b/packages/dag-cbor/CHANGELOG.md index 46639b4a..5f004c3e 100644 --- a/packages/dag-cbor/CHANGELOG.md +++ b/packages/dag-cbor/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/dag-cbor-v4.0.2...dag-cbor-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [4.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v4.0.1...dag-cbor-v4.0.2) (2025-01-14) diff --git a/packages/dag-cbor/package.json b/packages/dag-cbor/package.json index cc398f28..0f6e712b 100644 --- a/packages/dag-cbor/package.json +++ b/packages/dag-cbor/package.json @@ -1,6 +1,6 @@ { "name": "@helia/dag-cbor", - "version": "4.0.2", + "version": "4.0.3", "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", @@ -55,7 +55,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@ipld/dag-cbor": "^9.2.2", "@libp2p/interface": "^2.2.1", "interface-blockstore": "^5.3.1", diff --git a/packages/dag-json/CHANGELOG.md b/packages/dag-json/CHANGELOG.md index e4454b71..9fdecc19 100644 --- a/packages/dag-json/CHANGELOG.md +++ b/packages/dag-json/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/dag-json-v4.0.2...dag-json-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [4.0.2](https://github.com/ipfs/helia/compare/dag-json-v4.0.1...dag-json-v4.0.2) (2025-01-14) diff --git a/packages/dag-json/package.json b/packages/dag-json/package.json index 3d729eab..1eb22652 100644 --- a/packages/dag-json/package.json +++ b/packages/dag-json/package.json @@ -1,6 +1,6 @@ { "name": "@helia/dag-json", - "version": "4.0.2", + "version": "4.0.3", "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", @@ -54,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@ipld/dag-json": "^10.2.3", "@libp2p/interface": "^2.2.1", "interface-blockstore": "^5.3.1", diff --git a/packages/helia/CHANGELOG.md b/packages/helia/CHANGELOG.md index 8571be05..819a9fcb 100644 --- a/packages/helia/CHANGELOG.md +++ b/packages/helia/CHANGELOG.md @@ -1,5 +1,27 @@ # Changelog +## [5.3.0](https://github.com/ipfs/helia/compare/helia-v5.2.1...helia-v5.3.0) (2025-03-04) + + +### Features + +* add WebRTC-Direct listener ([#741](https://github.com/ipfs/helia/issues/741)) ([deb9165](https://github.com/ipfs/helia/commit/deb9165efe92ce9590c400955c073625eb358bb6)) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * @helia/routers bumped from ^3.0.0 to ^3.0.1 + * @helia/utils bumped from ^1.2.1 to ^1.2.2 + ## [5.2.1](https://github.com/ipfs/helia/compare/helia-v5.2.0...helia-v5.2.1) (2025-02-10) diff --git a/packages/helia/package.json b/packages/helia/package.json index 57eaf3e5..dd74ac05 100644 --- a/packages/helia/package.json +++ b/packages/helia/package.json @@ -1,6 +1,6 @@ { "name": "helia", - "version": "5.2.1", + "version": "5.3.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", @@ -57,11 +57,11 @@ "dependencies": { "@chainsafe/libp2p-noise": "^16.0.1", "@chainsafe/libp2p-yamux": "^7.0.1", - "@helia/block-brokers": "^4.0.4", + "@helia/block-brokers": "^4.0.5", "@helia/delegated-routing-v1-http-api-client": "^4.2.1", - "@helia/interface": "^5.2.0", - "@helia/routers": "^3.0.0", - "@helia/utils": "^1.2.1", + "@helia/interface": "^5.2.1", + "@helia/routers": "^3.0.1", + "@helia/utils": "^1.2.2", "@ipshipyard/libp2p-auto-tls": "^1.0.0", "@libp2p/autonat": "^2.0.19", "@libp2p/bootstrap": "^11.0.20", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md index e7cb3e6b..a273cf85 100644 --- a/packages/http/CHANGELOG.md +++ b/packages/http/CHANGELOG.md @@ -1,5 +1,22 @@ # Changelog +## [2.0.5](https://github.com/ipfs/helia/compare/http-v2.0.4...http-v2.0.5) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * @helia/routers bumped from ^3.0.0 to ^3.0.1 + * @helia/utils bumped from ^1.2.1 to ^1.2.2 + ## [2.0.4](https://github.com/ipfs/helia/compare/http-v2.0.3...http-v2.0.4) (2025-02-10) diff --git a/packages/http/package.json b/packages/http/package.json index cc7c3dc5..4ce467dd 100644 --- a/packages/http/package.json +++ b/packages/http/package.json @@ -1,6 +1,6 @@ { "name": "@helia/http", - "version": "2.0.4", + "version": "2.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", @@ -54,10 +54,10 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/block-brokers": "^4.0.4", - "@helia/interface": "^5.2.0", - "@helia/routers": "^3.0.0", - "@helia/utils": "^1.2.1", + "@helia/block-brokers": "^4.0.5", + "@helia/interface": "^5.2.1", + "@helia/routers": "^3.0.1", + "@helia/utils": "^1.2.2", "blockstore-core": "^5.0.2", "datastore-core": "^10.0.2" }, diff --git a/packages/interface/CHANGELOG.md b/packages/interface/CHANGELOG.md index e49fb39a..519dd8d0 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)) +## [5.2.1](https://github.com/ipfs/helia/compare/interface-v5.2.0...interface-v5.2.1) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + ## [5.2.0](https://github.com/ipfs/helia/compare/interface-v5.1.0...interface-v5.2.0) (2025-01-14) diff --git a/packages/interface/package.json b/packages/interface/package.json index f23e4ca9..c1ea77f5 100644 --- a/packages/interface/package.json +++ b/packages/interface/package.json @@ -1,6 +1,6 @@ { "name": "@helia/interface", - "version": "5.2.0", + "version": "5.2.1", "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 085033f2..84a4973a 100644 --- a/packages/interop/CHANGELOG.md +++ b/packages/interop/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [7.1.3](https://github.com/ipfs/helia/compare/interop-v7.1.2...interop-v7.1.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + * @helia/car bumped from ^4.0.2 to ^4.0.3 + * @helia/dag-cbor bumped from ^4.0.2 to ^4.0.3 + * @helia/dag-json bumped from ^4.0.2 to ^4.0.3 + * @helia/http bumped from ^2.0.4 to ^2.0.5 + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + * @helia/ipns bumped from ^8.1.0 to ^8.1.1 + * @helia/json bumped from ^4.0.2 to ^4.0.3 + * @helia/mfs bumped from ^4.0.2 to ^4.0.3 + * @helia/routers bumped from ^3.0.0 to ^3.0.1 + * @helia/strings bumped from ^4.0.2 to ^4.0.3 + * @helia/unixfs bumped from ^4.0.2 to ^4.0.3 + * helia bumped from ^5.2.1 to ^5.3.0 + ## [7.1.2](https://github.com/ipfs/helia/compare/interop-v7.1.1...interop-v7.1.2) (2025-02-10) diff --git a/packages/interop/package.json b/packages/interop/package.json index b9c0d96b..a34e4ec0 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -1,6 +1,6 @@ { "name": "@helia/interop", - "version": "7.1.2", + "version": "7.1.3", "description": "Interop tests for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/interop#readme", @@ -59,18 +59,18 @@ }, "dependencies": { "@chainsafe/libp2p-gossipsub": "^14.1.0", - "@helia/block-brokers": "^4.0.4", - "@helia/car": "^4.0.2", - "@helia/dag-cbor": "^4.0.2", - "@helia/dag-json": "^4.0.2", - "@helia/http": "^2.0.4", - "@helia/interface": "^5.2.0", - "@helia/ipns": "^8.1.0", - "@helia/json": "^4.0.2", - "@helia/mfs": "^4.0.2", - "@helia/routers": "^3.0.0", - "@helia/strings": "^4.0.2", - "@helia/unixfs": "^4.0.2", + "@helia/block-brokers": "^4.0.5", + "@helia/car": "^4.0.3", + "@helia/dag-cbor": "^4.0.3", + "@helia/dag-json": "^4.0.3", + "@helia/http": "^2.0.5", + "@helia/interface": "^5.2.1", + "@helia/ipns": "^8.1.1", + "@helia/json": "^4.0.3", + "@helia/mfs": "^4.0.3", + "@helia/routers": "^3.0.1", + "@helia/strings": "^4.0.3", + "@helia/unixfs": "^4.0.3", "@ipld/car": "^5.3.3", "@ipld/dag-cbor": "^9.2.2", "@libp2p/crypto": "^5.0.7", @@ -81,7 +81,7 @@ "@libp2p/websockets": "^9.0.13", "@multiformats/sha3": "^3.0.2", "aegir": "^45.1.1", - "helia": "^5.2.1", + "helia": "^5.3.0", "ipfs-unixfs-importer": "^15.3.1", "ipfsd-ctl": "^15.0.2", "ipns": "^10.0.0", diff --git a/packages/ipns/CHANGELOG.md b/packages/ipns/CHANGELOG.md index a24652b0..2923b4ca 100644 --- a/packages/ipns/CHANGELOG.md +++ b/packages/ipns/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [8.1.1](https://github.com/ipfs/helia/compare/ipns-v8.1.0...ipns-v8.1.1) (2025-03-04) + + +### Bug Fixes + +* align implicit default ttl with specs ([#749](https://github.com/ipfs/helia/issues/749)) ([375796a](https://github.com/ipfs/helia/commit/375796aaead36111c4d663b061bf0edfe01c62ca)) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [8.1.0](https://github.com/ipfs/helia/compare/ipns-v8.0.2...ipns-v8.1.0) (2025-01-24) diff --git a/packages/ipns/package.json b/packages/ipns/package.json index 4985cde0..b669e2dc 100644 --- a/packages/ipns/package.json +++ b/packages/ipns/package.json @@ -1,6 +1,6 @@ { "name": "@helia/ipns", - "version": "8.1.0", + "version": "8.1.1", "description": "An implementation of IPNS for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/ipns#readme", @@ -79,7 +79,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@libp2p/interface": "^2.2.1", "@libp2p/kad-dht": "^14.1.3", "@libp2p/logger": "^5.1.4", diff --git a/packages/json/CHANGELOG.md b/packages/json/CHANGELOG.md index 696c2224..b54390bf 100644 --- a/packages/json/CHANGELOG.md +++ b/packages/json/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/json-v4.0.2...json-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [4.0.2](https://github.com/ipfs/helia/compare/json-v4.0.1...json-v4.0.2) (2025-01-14) diff --git a/packages/json/package.json b/packages/json/package.json index 6d8dfd21..3169e182 100644 --- a/packages/json/package.json +++ b/packages/json/package.json @@ -1,6 +1,6 @@ { "name": "@helia/json", - "version": "4.0.2", + "version": "4.0.3", "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", @@ -54,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@libp2p/interface": "^2.2.1", "interface-blockstore": "^5.3.1", "multiformats": "^13.3.1", diff --git a/packages/mfs/CHANGELOG.md b/packages/mfs/CHANGELOG.md index 0b2daced..325216da 100644 --- a/packages/mfs/CHANGELOG.md +++ b/packages/mfs/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/mfs-v4.0.2...mfs-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/unixfs bumped from ^4.0.2 to ^4.0.3 + ## [4.0.2](https://github.com/ipfs/helia/compare/mfs-v4.0.1...mfs-v4.0.2) (2025-01-14) diff --git a/packages/mfs/package.json b/packages/mfs/package.json index 1cb62364..d7a36d51 100644 --- a/packages/mfs/package.json +++ b/packages/mfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/mfs", - "version": "4.0.2", + "version": "4.0.3", "description": "A mutable filesystem powered by Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/mfs#readme", @@ -54,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/unixfs": "^4.0.2", + "@helia/unixfs": "^4.0.3", "@libp2p/interface": "^2.2.1", "@libp2p/logger": "^5.1.4", "interface-blockstore": "^5.3.1", diff --git a/packages/routers/CHANGELOG.md b/packages/routers/CHANGELOG.md index 2b526a89..ec85ab03 100644 --- a/packages/routers/CHANGELOG.md +++ b/packages/routers/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [3.0.1](https://github.com/ipfs/helia/compare/routers-v3.0.0...routers-v3.0.1) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [3.0.0](https://github.com/ipfs/helia/compare/routers-v2.2.0...routers-v3.0.0) (2025-01-14) diff --git a/packages/routers/package.json b/packages/routers/package.json index 3415b8dd..15a8a738 100644 --- a/packages/routers/package.json +++ b/packages/routers/package.json @@ -1,6 +1,6 @@ { "name": "@helia/routers", - "version": "3.0.0", + "version": "3.0.1", "description": "Routers for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/routers#readme", @@ -55,7 +55,7 @@ }, "dependencies": { "@helia/delegated-routing-v1-http-api-client": "^4.2.1", - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@libp2p/interface": "^2.2.1", "@libp2p/peer-id": "^5.0.8", "@multiformats/uri-to-multiaddr": "^8.0.0", diff --git a/packages/strings/CHANGELOG.md b/packages/strings/CHANGELOG.md index 11f4f557..0da98414 100644 --- a/packages/strings/CHANGELOG.md +++ b/packages/strings/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/strings-v4.0.2...strings-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [4.0.2](https://github.com/ipfs/helia/compare/strings-v4.0.1...strings-v4.0.2) (2025-01-14) diff --git a/packages/strings/package.json b/packages/strings/package.json index a52b5bf2..2f71170f 100644 --- a/packages/strings/package.json +++ b/packages/strings/package.json @@ -1,6 +1,6 @@ { "name": "@helia/strings", - "version": "4.0.2", + "version": "4.0.3", "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", @@ -56,7 +56,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@libp2p/interface": "^2.2.1", "interface-blockstore": "^5.3.1", "multiformats": "^13.3.1", diff --git a/packages/unixfs/CHANGELOG.md b/packages/unixfs/CHANGELOG.md index 01fda3d6..0d1a4320 100644 --- a/packages/unixfs/CHANGELOG.md +++ b/packages/unixfs/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [4.0.3](https://github.com/ipfs/helia/compare/unixfs-v4.0.2...unixfs-v4.0.3) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [4.0.2](https://github.com/ipfs/helia/compare/unixfs-v4.0.1...unixfs-v4.0.2) (2025-01-14) diff --git a/packages/unixfs/package.json b/packages/unixfs/package.json index 4d0ff124..d5337f84 100644 --- a/packages/unixfs/package.json +++ b/packages/unixfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/unixfs", - "version": "4.0.2", + "version": "4.0.3", "description": "A Helia-compatible wrapper for UnixFS", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/unixfs#readme", @@ -74,7 +74,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@ipld/dag-pb": "^4.1.3", "@libp2p/interface": "^2.2.1", "@libp2p/logger": "^5.1.4", diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index f76d4ddf..ff3256da 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [1.2.2](https://github.com/ipfs/helia/compare/utils-v1.2.1...utils-v1.2.2) (2025-03-04) + + +### Documentation + +* add spell checker to ci ([#743](https://github.com/ipfs/helia/issues/743)) ([45ca6bc](https://github.com/ipfs/helia/commit/45ca6bc70b1644028500101044595fa0e2199b07)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/interface bumped from ^5.2.0 to ^5.2.1 + ## [1.2.1](https://github.com/ipfs/helia/compare/utils-v1.2.0...utils-v1.2.1) (2025-02-10) diff --git a/packages/utils/package.json b/packages/utils/package.json index 69575d2b..32028ab4 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@helia/utils", - "version": "1.2.1", + "version": "1.2.2", "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", @@ -54,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/interface": "^5.2.0", + "@helia/interface": "^5.2.1", "@ipld/dag-cbor": "^9.2.2", "@ipld/dag-json": "^10.2.3", "@ipld/dag-pb": "^4.1.3",