From ac0a3141a31fcdd05620e79f1fc3a62e76b6f284 Mon Sep 17 00:00:00 2001 From: Alex Potsides Date: Mon, 22 Apr 2024 08:33:42 +0100 Subject: [PATCH] chore: release main (#508) --- .release-please-manifest.json | 16 ++++++++-------- packages/bitswap/CHANGELOG.md | 8 ++++++++ packages/bitswap/package.json | 2 +- packages/block-brokers/CHANGELOG.md | 14 ++++++++++++++ packages/block-brokers/package.json | 4 ++-- packages/car/CHANGELOG.md | 9 +++++++++ packages/car/package.json | 4 ++-- packages/helia/CHANGELOG.md | 9 +++++++++ packages/helia/package.json | 4 ++-- packages/http/CHANGELOG.md | 9 +++++++++ packages/http/package.json | 4 ++-- packages/interop/CHANGELOG.md | 15 +++++++++++++++ packages/interop/package.json | 14 +++++++------- packages/mfs/CHANGELOG.md | 9 +++++++++ packages/mfs/package.json | 4 ++-- packages/unixfs/CHANGELOG.md | 7 +++++++ packages/unixfs/package.json | 2 +- 17 files changed, 107 insertions(+), 27 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index b97441b11..f4531713f 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,18 +1,18 @@ { - "packages/block-brokers": "2.1.0", - "packages/bitswap": "1.0.0", - "packages/car": "3.1.3", + "packages/block-brokers": "2.1.1", + "packages/bitswap": "1.0.1", + "packages/car": "3.1.4", "packages/dag-cbor": "3.0.3", "packages/dag-json": "3.0.3", - "packages/helia": "4.1.1", + "packages/helia": "4.1.2", "packages/interface": "4.2.0", - "packages/interop": "6.1.0", + "packages/interop": "6.1.1", "packages/ipns": "7.2.1", "packages/json": "3.0.3", - "packages/mfs": "3.0.4", + "packages/mfs": "3.0.5", "packages/strings": "3.0.3", - "packages/unixfs": "3.0.4", + "packages/unixfs": "3.0.5", "packages/utils": "0.2.0", - "packages/http": "1.0.4", + "packages/http": "1.0.5", "packages/routers": "1.0.3" } diff --git a/packages/bitswap/CHANGELOG.md b/packages/bitswap/CHANGELOG.md index 2bedfd9fe..b93cbbe13 100644 --- a/packages/bitswap/CHANGELOG.md +++ b/packages/bitswap/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## [1.0.1](https://github.com/ipfs/helia/compare/bitswap-v1.0.0...bitswap-v1.0.1) (2024-04-22) + + +### Bug Fixes + +* define max bitswap message sizes ([#510](https://github.com/ipfs/helia/issues/510)) ([58d7ddf](https://github.com/ipfs/helia/commit/58d7ddf19cd965a8a5cc1d8148fa073a6b44d8ae)) +* split bitswap messages ([#507](https://github.com/ipfs/helia/issues/507)) ([59de059](https://github.com/ipfs/helia/commit/59de0599367c828998069ac37dc93e10ddb565a1)) + ## 1.0.0 (2024-04-15) diff --git a/packages/bitswap/package.json b/packages/bitswap/package.json index 0b8c3d413..8d15ab6e2 100644 --- a/packages/bitswap/package.json +++ b/packages/bitswap/package.json @@ -1,6 +1,6 @@ { "name": "@helia/bitswap", - "version": "1.0.0", + "version": "1.0.1", "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 0219281fc..1dff811d4 100644 --- a/packages/block-brokers/CHANGELOG.md +++ b/packages/block-brokers/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## [2.1.1](https://github.com/ipfs/helia/compare/block-brokers-v2.1.0...block-brokers-v2.1.1) (2024-04-22) + + +### Bug Fixes + +* prevent duplicate trustless-gateway reqs ([#503](https://github.com/ipfs/helia/issues/503)) ([338885f](https://github.com/ipfs/helia/commit/338885f20277a25277ba9192d8e15cca95e640e4)) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/bitswap bumped from ^1.0.0 to ^1.0.1 + ## [2.1.0](https://github.com/ipfs/helia/compare/block-brokers-v2.0.3...block-brokers-v2.1.0) (2024-04-15) diff --git a/packages/block-brokers/package.json b/packages/block-brokers/package.json index e0e1a42f4..003ce99bb 100644 --- a/packages/block-brokers/package.json +++ b/packages/block-brokers/package.json @@ -1,6 +1,6 @@ { "name": "@helia/block-brokers", - "version": "2.1.0", + "version": "2.1.1", "description": "Block brokers for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/block-brokers#readme", @@ -53,7 +53,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/bitswap": "^1.0.0", + "@helia/bitswap": "^1.0.1", "@helia/interface": "^4.2.0", "@helia/utils": "^0.2.0", "@libp2p/interface": "^1.1.4", diff --git a/packages/car/CHANGELOG.md b/packages/car/CHANGELOG.md index 20fdbdf34..df2e43aa3 100644 --- a/packages/car/CHANGELOG.md +++ b/packages/car/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.1.4](https://github.com/ipfs/helia/compare/car-v3.1.3...car-v3.1.4) (2024-04-22) + + +### Dependencies + +* The following workspace dependencies were updated + * devDependencies + * @helia/unixfs bumped from ^3.0.4 to ^3.0.5 + ## [3.1.3](https://github.com/ipfs/helia/compare/car-v3.1.2...car-v3.1.3) (2024-04-15) diff --git a/packages/car/package.json b/packages/car/package.json index 4557374ab..ab160067f 100644 --- a/packages/car/package.json +++ b/packages/car/package.json @@ -1,6 +1,6 @@ { "name": "@helia/car", - "version": "3.1.3", + "version": "3.1.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", @@ -151,7 +151,7 @@ "progress-events": "^1.0.0" }, "devDependencies": { - "@helia/unixfs": "^3.0.4", + "@helia/unixfs": "^3.0.5", "@ipld/dag-pb": "^4.1.0", "aegir": "^42.2.5", "blockstore-core": "^4.4.0", diff --git a/packages/helia/CHANGELOG.md b/packages/helia/CHANGELOG.md index c380dd4a3..ec70cf266 100644 --- a/packages/helia/CHANGELOG.md +++ b/packages/helia/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [4.1.2](https://github.com/ipfs/helia/compare/helia-v4.1.1...helia-v4.1.2) (2024-04-22) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^2.1.0 to ^2.1.1 + ## [4.1.1](https://github.com/ipfs/helia/compare/helia-v4.1.0...helia-v4.1.1) (2024-04-15) diff --git a/packages/helia/package.json b/packages/helia/package.json index 9b1dc7385..2f254188d 100644 --- a/packages/helia/package.json +++ b/packages/helia/package.json @@ -1,6 +1,6 @@ { "name": "helia", - "version": "4.1.1", + "version": "4.1.2", "description": "An implementation of IPFS in JavaScript", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme", @@ -56,7 +56,7 @@ "dependencies": { "@chainsafe/libp2p-noise": "^15.0.0", "@chainsafe/libp2p-yamux": "^6.0.2", - "@helia/block-brokers": "^2.1.0", + "@helia/block-brokers": "^2.1.1", "@helia/delegated-routing-v1-http-api-client": "^3.0.0", "@helia/interface": "^4.2.0", "@helia/routers": "^1.0.3", diff --git a/packages/http/CHANGELOG.md b/packages/http/CHANGELOG.md index aab6d2277..e27dfaed0 100644 --- a/packages/http/CHANGELOG.md +++ b/packages/http/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [1.0.5](https://github.com/ipfs/helia/compare/http-v1.0.4...http-v1.0.5) (2024-04-22) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^2.1.0 to ^2.1.1 + ## [1.0.4](https://github.com/ipfs/helia/compare/http-v1.0.3...http-v1.0.4) (2024-04-15) diff --git a/packages/http/package.json b/packages/http/package.json index 0514e3a97..f73f84be2 100644 --- a/packages/http/package.json +++ b/packages/http/package.json @@ -1,6 +1,6 @@ { "name": "@helia/http", - "version": "1.0.4", + "version": "1.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", @@ -53,7 +53,7 @@ "test:electron-main": "aegir test -t electron-main" }, "dependencies": { - "@helia/block-brokers": "^2.1.0", + "@helia/block-brokers": "^2.1.1", "@helia/interface": "^4.2.0", "@helia/routers": "^1.0.3", "@helia/utils": "^0.2.0", diff --git a/packages/interop/CHANGELOG.md b/packages/interop/CHANGELOG.md index a400123fb..f4000e4aa 100644 --- a/packages/interop/CHANGELOG.md +++ b/packages/interop/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## [6.1.1](https://github.com/ipfs/helia/compare/interop-v6.1.0...interop-v6.1.1) (2024-04-22) + + +### Dependencies + +* bump ipfsd-ctl from 13.0.0 to 14.0.0 ([#505](https://github.com/ipfs/helia/issues/505)) ([97fb1a7](https://github.com/ipfs/helia/commit/97fb1a78a2e585a66861a2d0fdc4eabf8b28bd04)) +* The following workspace dependencies were updated + * dependencies + * @helia/block-brokers bumped from ^2.1.0 to ^2.1.1 + * @helia/car bumped from ^3.1.3 to ^3.1.4 + * @helia/http bumped from ^1.0.4 to ^1.0.5 + * @helia/mfs bumped from ^3.0.4 to ^3.0.5 + * @helia/unixfs bumped from ^3.0.4 to ^3.0.5 + * helia bumped from ^4.1.1 to ^4.1.2 + ## [6.1.0](https://github.com/ipfs/helia/compare/interop-v6.0.2...interop-v6.1.0) (2024-04-15) diff --git a/packages/interop/package.json b/packages/interop/package.json index f7d4519e6..8b30c46eb 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -1,6 +1,6 @@ { "name": "@helia/interop", - "version": "6.1.0", + "version": "6.1.1", "description": "Interop tests for Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/interop#readme", @@ -58,18 +58,18 @@ }, "dependencies": { "@chainsafe/libp2p-gossipsub": "^13.0.0", - "@helia/block-brokers": "^2.1.0", - "@helia/car": "^3.1.3", + "@helia/block-brokers": "^2.1.1", + "@helia/car": "^3.1.4", "@helia/dag-cbor": "^3.0.3", "@helia/dag-json": "^3.0.3", - "@helia/http": "^1.0.4", + "@helia/http": "^1.0.5", "@helia/interface": "^4.2.0", "@helia/ipns": "^7.2.1", "@helia/json": "^3.0.3", - "@helia/mfs": "^3.0.4", + "@helia/mfs": "^3.0.5", "@helia/routers": "^1.0.3", "@helia/strings": "^3.0.3", - "@helia/unixfs": "^3.0.4", + "@helia/unixfs": "^3.0.5", "@ipld/car": "^5.3.0", "@ipld/dag-cbor": "^9.2.0", "@libp2p/interface": "^1.1.4", @@ -80,7 +80,7 @@ "@libp2p/websockets": "^8.0.16", "@multiformats/sha3": "^3.0.2", "aegir": "^42.2.5", - "helia": "^4.1.1", + "helia": "^4.1.2", "ipfs-unixfs-importer": "^15.2.4", "ipfsd-ctl": "^14.0.0", "it-all": "^3.0.4", diff --git a/packages/mfs/CHANGELOG.md b/packages/mfs/CHANGELOG.md index 17dff7bfb..066ecc63b 100644 --- a/packages/mfs/CHANGELOG.md +++ b/packages/mfs/CHANGELOG.md @@ -1,5 +1,14 @@ # Changelog +## [3.0.5](https://github.com/ipfs/helia/compare/mfs-v3.0.4...mfs-v3.0.5) (2024-04-22) + + +### Dependencies + +* The following workspace dependencies were updated + * dependencies + * @helia/unixfs bumped from ^3.0.4 to ^3.0.5 + ## [3.0.4](https://github.com/ipfs/helia/compare/mfs-v3.0.3...mfs-v3.0.4) (2024-04-15) diff --git a/packages/mfs/package.json b/packages/mfs/package.json index f02aa3b51..0a0997811 100644 --- a/packages/mfs/package.json +++ b/packages/mfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/mfs", - "version": "3.0.4", + "version": "3.0.5", "description": "A mutable filesystem powered by Helia", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/mfs#readme", @@ -139,7 +139,7 @@ "release": "aegir release" }, "dependencies": { - "@helia/unixfs": "^3.0.4", + "@helia/unixfs": "^3.0.5", "@libp2p/interfaces": "^3.3.2", "@libp2p/logger": "^4.0.7", "interface-blockstore": "^5.2.10", diff --git a/packages/unixfs/CHANGELOG.md b/packages/unixfs/CHANGELOG.md index b34e3e589..fc3458488 100644 --- a/packages/unixfs/CHANGELOG.md +++ b/packages/unixfs/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [3.0.5](https://github.com/ipfs/helia/compare/unixfs-v3.0.4...unixfs-v3.0.5) (2024-04-22) + + +### Bug Fixes + +* relax unixfs blockstore input type ([#509](https://github.com/ipfs/helia/issues/509)) ([5d62dfb](https://github.com/ipfs/helia/commit/5d62dfb3dd520e6d557b273e446e63b76f57144e)) + ## [3.0.4](https://github.com/ipfs/helia/compare/unixfs-v3.0.3...unixfs-v3.0.4) (2024-04-15) diff --git a/packages/unixfs/package.json b/packages/unixfs/package.json index fcad6509d..5423a4d24 100644 --- a/packages/unixfs/package.json +++ b/packages/unixfs/package.json @@ -1,6 +1,6 @@ { "name": "@helia/unixfs", - "version": "3.0.4", + "version": "3.0.5", "description": "A Helia-compatible wrapper for UnixFS", "license": "Apache-2.0 OR MIT", "homepage": "https://github.com/ipfs/helia/tree/main/packages/unixfs#readme",