Skip to content

Commit 2641e50

Browse files
authored
chore: release main (#887)
1 parent 95d95da commit 2641e50

33 files changed

+269
-71
lines changed

.release-please-manifest.json

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"packages/block-brokers": "5.0.5",
3-
"packages/bitswap": "3.0.5",
4-
"packages/car": "5.2.1",
5-
"packages/dag-cbor": "5.0.1",
6-
"packages/dag-json": "5.0.1",
2+
"packages/block-brokers": "5.0.6",
3+
"packages/bitswap": "3.0.6",
4+
"packages/car": "5.2.2",
5+
"packages/dag-cbor": "5.0.2",
6+
"packages/dag-json": "5.0.2",
77
"packages/dnslink": "1.1.1",
8-
"packages/helia": "6.0.6",
9-
"packages/interface": "6.0.0",
10-
"packages/interop": "9.0.6",
11-
"packages/ipns": "9.1.1",
12-
"packages/json": "5.0.1",
13-
"packages/mfs": "6.0.1",
14-
"packages/strings": "5.0.1",
15-
"packages/unixfs": "6.0.1",
16-
"packages/utils": "2.2.1",
17-
"packages/http": "3.0.6",
18-
"packages/routers": "4.0.1"
8+
"packages/helia": "6.0.7",
9+
"packages/interface": "6.0.1",
10+
"packages/interop": "9.0.7",
11+
"packages/ipns": "9.1.2",
12+
"packages/json": "5.0.2",
13+
"packages/mfs": "6.0.2",
14+
"packages/strings": "5.0.2",
15+
"packages/unixfs": "6.0.2",
16+
"packages/utils": "2.2.2",
17+
"packages/http": "3.0.7",
18+
"packages/routers": "4.0.2"
1919
}

packages/bitswap/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Changelog
22

3+
## [3.0.6](https://github.com/ipfs/helia/compare/bitswap-v3.0.5...bitswap-v3.0.6) (2025-10-27)
4+
5+
6+
### Bug Fixes
7+
8+
* add provider events to bitswap and trustless gateways ([#888](https://github.com/ipfs/helia/issues/888)) ([95d95da](https://github.com/ipfs/helia/commit/95d95dad7ff2a1e462b5a8a4f57ac40c4503f4ef))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/interface bumped from ^6.0.0 to ^6.0.1
16+
* @helia/utils bumped from ^2.2.1 to ^2.2.2
17+
318
## [3.0.5](https://github.com/ipfs/helia/compare/bitswap-v3.0.4...bitswap-v3.0.5) (2025-10-22)
419

520

packages/bitswap/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/bitswap",
3-
"version": "3.0.5",
3+
"version": "3.0.6",
44
"description": "JavaScript implementation of the Bitswap data exchange protocol used by Helia",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/bitswap#readme",
@@ -51,8 +51,8 @@
5151
"docs": "aegir docs"
5252
},
5353
"dependencies": {
54-
"@helia/interface": "^6.0.0",
55-
"@helia/utils": "^2.2.1",
54+
"@helia/interface": "^6.0.1",
55+
"@helia/utils": "^2.2.2",
5656
"@libp2p/interface": "^3.0.2",
5757
"@libp2p/logger": "^6.0.5",
5858
"@libp2p/peer-collections": "^7.0.5",

packages/block-brokers/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [5.0.6](https://github.com/ipfs/helia/compare/block-brokers-v5.0.5...block-brokers-v5.0.6) (2025-10-27)
4+
5+
6+
### Bug Fixes
7+
8+
* add provider events to bitswap and trustless gateways ([#888](https://github.com/ipfs/helia/issues/888)) ([95d95da](https://github.com/ipfs/helia/commit/95d95dad7ff2a1e462b5a8a4f57ac40c4503f4ef))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/bitswap bumped from ^3.0.5 to ^3.0.6
16+
* @helia/interface bumped from ^6.0.0 to ^6.0.1
17+
* @helia/utils bumped from ^2.2.1 to ^2.2.2
18+
319
## [5.0.5](https://github.com/ipfs/helia/compare/block-brokers-v5.0.4...block-brokers-v5.0.5) (2025-10-22)
420

521

packages/block-brokers/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/block-brokers",
3-
"version": "5.0.5",
3+
"version": "5.0.6",
44
"description": "Block brokers for Helia",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/block-brokers#readme",
@@ -47,9 +47,9 @@
4747
"test:electron-main": "aegir test -t electron-main"
4848
},
4949
"dependencies": {
50-
"@helia/bitswap": "^3.0.5",
51-
"@helia/interface": "^6.0.0",
52-
"@helia/utils": "^2.2.1",
50+
"@helia/bitswap": "^3.0.6",
51+
"@helia/interface": "^6.0.1",
52+
"@helia/utils": "^2.2.2",
5353
"@libp2p/interface": "^3.0.2",
5454
"@libp2p/utils": "^7.0.5",
5555
"@multiformats/multiaddr": "^13.0.1",

packages/car/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [5.2.2](https://github.com/ipfs/helia/compare/car-v5.2.1...car-v5.2.2) (2025-10-27)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^6.0.0 to ^6.0.1
11+
* @helia/utils bumped from ^2.2.1 to ^2.2.2
12+
* devDependencies
13+
* @helia/mfs bumped from ^6.0.1 to ^6.0.2
14+
* @helia/unixfs bumped from ^6.0.1 to ^6.0.2
15+
316
## [5.2.1](https://github.com/ipfs/helia/compare/car-v5.2.0...car-v5.2.1) (2025-10-22)
417

518

packages/car/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/car",
3-
"version": "5.2.1",
3+
"version": "5.2.2",
44
"description": "Import/export car files from Helia",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/car#readme",
@@ -47,8 +47,8 @@
4747
"test:electron-main": "aegir test -t electron-main"
4848
},
4949
"dependencies": {
50-
"@helia/interface": "^6.0.0",
51-
"@helia/utils": "^2.2.1",
50+
"@helia/interface": "^6.0.1",
51+
"@helia/utils": "^2.2.2",
5252
"@ipld/car": "^5.4.2",
5353
"@ipld/dag-pb": "^4.1.5",
5454
"@libp2p/interface": "^3.0.2",
@@ -65,8 +65,8 @@
6565
"race-signal": "^2.0.0"
6666
},
6767
"devDependencies": {
68-
"@helia/mfs": "^6.0.1",
69-
"@helia/unixfs": "^6.0.1",
68+
"@helia/mfs": "^6.0.2",
69+
"@helia/unixfs": "^6.0.2",
7070
"@ipld/dag-cbor": "^9.2.5",
7171
"@libp2p/logger": "^6.0.5",
7272
"aegir": "^47.0.22",

packages/dag-cbor/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [5.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v5.0.1...dag-cbor-v5.0.2) (2025-10-27)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^6.0.0 to ^6.0.1
11+
312
## [5.0.1](https://github.com/ipfs/helia/compare/dag-cbor-v5.0.0...dag-cbor-v5.0.1) (2025-10-09)
413

514

packages/dag-cbor/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/dag-cbor",
3-
"version": "5.0.1",
3+
"version": "5.0.2",
44
"description": "Add/get IPLD blocks containing dag-cbor with your Helia node",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-cbor#readme",
@@ -48,7 +48,7 @@
4848
"test:electron-main": "aegir test -t electron-main"
4949
},
5050
"dependencies": {
51-
"@helia/interface": "^6.0.0",
51+
"@helia/interface": "^6.0.1",
5252
"@ipld/dag-cbor": "^9.2.5",
5353
"@libp2p/interface": "^3.0.2",
5454
"interface-blockstore": "^6.0.1",

packages/dag-json/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [5.0.2](https://github.com/ipfs/helia/compare/dag-json-v5.0.1...dag-json-v5.0.2) (2025-10-27)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^6.0.0 to ^6.0.1
11+
312
## [5.0.1](https://github.com/ipfs/helia/compare/dag-json-v5.0.0...dag-json-v5.0.1) (2025-10-09)
413

514

0 commit comments

Comments
 (0)