diff --git a/.release-please-manifest.json b/.release-please-manifest.json index e7a399af..49c50851 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/block-brokers": "4.0.5", + "packages/bitswap": "2.0.5", "packages/car": "4.0.2", "packages/dag-cbor": "4.0.2", "packages/dag-json": "4.0.2", - "packages/helia": "5.2.1", + "packages/helia": "5.3.0", "packages/interface": "5.2.0", - "packages/interop": "7.1.2", + "packages/interop": "7.1.3", "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/http": "2.0.5", "packages/routers": "3.0.0" } diff --git a/packages/bitswap/CHANGELOG.md b/packages/bitswap/CHANGELOG.md index 3f89d84b..88fbc4a8 100644 --- a/packages/bitswap/CHANGELOG.md +++ b/packages/bitswap/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [2.0.5](https://github.com/ipfs/helia/compare/bitswap-v2.0.4...bitswap-v2.0.5) (2025-02-19) + + +### 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)) + ## [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 58f5ba73..ec5eef93 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", diff --git a/packages/block-brokers/CHANGELOG.md b/packages/block-brokers/CHANGELOG.md index a147597d..0cdd0eec 100644 --- a/packages/block-brokers/CHANGELOG.md +++ b/packages/block-brokers/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [4.0.5](https://github.com/ipfs/helia/compare/block-brokers-v4.0.4...block-brokers-v4.0.5) (2025-02-19) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/bitswap bumped from ^2.0.4 to ^2.0.5 + ## [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 bdc2fa48..a1b6c9ea 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,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/bitswap": "^2.0.4", + "@helia/bitswap": "^2.0.5", "@helia/interface": "^5.2.0", "@helia/utils": "^1.2.1", "@libp2p/interface": "^2.2.1", diff --git a/packages/helia/CHANGELOG.md b/packages/helia/CHANGELOG.md index 8571be05..84e2f119 100644 --- a/packages/helia/CHANGELOG.md +++ b/packages/helia/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [5.3.0](https://github.com/ipfs/helia/compare/helia-v5.2.1...helia-v5.3.0) (2025-02-19) + + +### Features + +* add WebRTC-Direct listener ([#741](https://github.com/ipfs/helia/issues/741)) ([deb9165](https://github.com/ipfs/helia/commit/deb9165efe92ce9590c400955c073625eb358bb6)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + ## [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 7cd32b2d..1800d463 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,7 +57,7 @@ "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", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md index e7cb3e6b..08fcc6d9 100644 --- a/packages/http/CHANGELOG.md +++ b/packages/http/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [2.0.5](https://github.com/ipfs/helia/compare/http-v2.0.4...http-v2.0.5) (2025-02-19) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + ## [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 c2c7e543..7ac23426 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,7 +54,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/block-brokers": "^4.0.4", + "@helia/block-brokers": "^4.0.5", "@helia/interface": "^5.2.0", "@helia/routers": "^3.0.0", "@helia/utils": "^1.2.1", diff --git a/packages/interop/CHANGELOG.md b/packages/interop/CHANGELOG.md index 085033f2..51bbaf6d 100644 --- a/packages/interop/CHANGELOG.md +++ b/packages/interop/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [7.1.3](https://github.com/ipfs/helia/compare/interop-v7.1.2...interop-v7.1.3) (2025-02-19) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^4.0.4 to ^4.0.5 + * @helia/http bumped from ^2.0.4 to ^2.0.5 + * 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 334820e9..77f4c155 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,11 +59,11 @@ }, "dependencies": { "@chainsafe/libp2p-gossipsub": "^14.1.0", - "@helia/block-brokers": "^4.0.4", + "@helia/block-brokers": "^4.0.5", "@helia/car": "^4.0.2", "@helia/dag-cbor": "^4.0.2", "@helia/dag-json": "^4.0.2", - "@helia/http": "^2.0.4", + "@helia/http": "^2.0.5", "@helia/interface": "^5.2.0", "@helia/ipns": "^8.1.0", "@helia/json": "^4.0.2", @@ -81,7 +81,7 @@ "@libp2p/websockets": "^9.0.13", "@multiformats/sha3": "^3.0.2", "aegir": "^45.0.6", - "helia": "^5.2.1", + "helia": "^5.3.0", "ipfs-unixfs-importer": "^15.3.1", "ipfsd-ctl": "^15.0.2", "ipns": "^10.0.0",