Skip to content

Commit 6cc9d2f

Browse files
committed
chore: release main
1 parent 87aa9b4 commit 6cc9d2f

33 files changed

+266
-70
lines changed

.release-please-manifest.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
{
2-
"packages/block-brokers": "4.0.2",
3-
"packages/bitswap": "2.0.2",
4-
"packages/car": "4.0.1",
5-
"packages/dag-cbor": "4.0.1",
6-
"packages/dag-json": "4.0.1",
7-
"packages/helia": "5.1.1",
8-
"packages/interface": "5.1.0",
9-
"packages/interop": "7.0.3",
10-
"packages/ipns": "8.0.1",
11-
"packages/json": "4.0.1",
12-
"packages/mfs": "4.0.1",
13-
"packages/strings": "4.0.1",
14-
"packages/unixfs": "4.0.1",
15-
"packages/utils": "1.1.0",
16-
"packages/http": "2.0.2",
17-
"packages/routers": "2.2.0"
2+
"packages/block-brokers": "4.0.3",
3+
"packages/bitswap": "2.0.3",
4+
"packages/car": "4.0.2",
5+
"packages/dag-cbor": "4.0.2",
6+
"packages/dag-json": "4.0.2",
7+
"packages/helia": "5.2.0",
8+
"packages/interface": "5.2.0",
9+
"packages/interop": "7.1.0",
10+
"packages/ipns": "8.0.2",
11+
"packages/json": "4.0.2",
12+
"packages/mfs": "4.0.2",
13+
"packages/strings": "4.0.2",
14+
"packages/unixfs": "4.0.2",
15+
"packages/utils": "1.2.0",
16+
"packages/http": "2.0.3",
17+
"packages/routers": "3.0.0"
1818
}

packages/bitswap/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [2.0.3](https://github.com/ipfs/helia/compare/bitswap-v2.0.2...bitswap-v2.0.3) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
11+
* @helia/utils bumped from ^1.1.0 to ^1.2.0
12+
313
## [2.0.2](https://github.com/ipfs/helia/compare/bitswap-v2.0.1...bitswap-v2.0.2) (2024-11-18)
414

515

packages/bitswap/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/bitswap",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
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",
@@ -62,8 +62,8 @@
6262
"docs": "aegir docs"
6363
},
6464
"dependencies": {
65-
"@helia/interface": "^5.1.0",
66-
"@helia/utils": "^1.1.0",
65+
"@helia/interface": "^5.2.0",
66+
"@helia/utils": "^1.2.0",
6767
"@libp2p/interface": "^2.2.1",
6868
"@libp2p/logger": "^5.1.4",
6969
"@libp2p/peer-collections": "^6.0.12",

packages/block-brokers/CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changelog
22

3+
## [4.0.3](https://github.com/ipfs/helia/compare/block-brokers-v4.0.2...block-brokers-v4.0.3) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/bitswap bumped from ^2.0.2 to ^2.0.3
11+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
12+
* @helia/utils bumped from ^1.1.0 to ^1.2.0
13+
314
## [4.0.2](https://github.com/ipfs/helia/compare/block-brokers-v4.0.1...block-brokers-v4.0.2) (2024-11-18)
415

516

packages/block-brokers/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/block-brokers",
3-
"version": "4.0.2",
3+
"version": "4.0.3",
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",
@@ -54,9 +54,9 @@
5454
"test:electron-main": "aegir test -t electron-main"
5555
},
5656
"dependencies": {
57-
"@helia/bitswap": "^2.0.2",
58-
"@helia/interface": "^5.1.0",
59-
"@helia/utils": "^1.1.0",
57+
"@helia/bitswap": "^2.0.3",
58+
"@helia/interface": "^5.2.0",
59+
"@helia/utils": "^1.2.0",
6060
"@libp2p/interface": "^2.2.1",
6161
"@libp2p/utils": "^6.2.1",
6262
"@multiformats/multiaddr": "^12.3.3",

packages/car/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [4.0.2](https://github.com/ipfs/helia/compare/car-v4.0.1...car-v4.0.2) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
11+
* devDependencies
12+
* @helia/mfs bumped from ^4.0.1 to ^4.0.2
13+
* @helia/unixfs bumped from ^4.0.1 to ^4.0.2
14+
315
## [4.0.1](https://github.com/ipfs/helia/compare/car-v4.0.0...car-v4.0.1) (2024-11-18)
416

517

packages/car/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/car",
3-
"version": "4.0.1",
3+
"version": "4.0.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",
@@ -54,7 +54,7 @@
5454
"test:electron-main": "aegir test -t electron-main"
5555
},
5656
"dependencies": {
57-
"@helia/interface": "^5.1.0",
57+
"@helia/interface": "^5.2.0",
5858
"@ipld/car": "^5.3.3",
5959
"@libp2p/interface": "^2.2.1",
6060
"@libp2p/utils": "^6.2.1",
@@ -67,8 +67,8 @@
6767
"progress-events": "^1.0.1"
6868
},
6969
"devDependencies": {
70-
"@helia/mfs": "^4.0.1",
71-
"@helia/unixfs": "^4.0.1",
70+
"@helia/mfs": "^4.0.2",
71+
"@helia/unixfs": "^4.0.2",
7272
"@ipld/dag-pb": "^4.1.3",
7373
"aegir": "^45.0.6",
7474
"blockstore-core": "^5.0.2",

packages/dag-cbor/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [4.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v4.0.1...dag-cbor-v4.0.2) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
11+
312
## [4.0.1](https://github.com/ipfs/helia/compare/dag-cbor-v4.0.0...dag-cbor-v4.0.1) (2024-11-18)
413

514

packages/dag-cbor/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/dag-cbor",
3-
"version": "4.0.1",
3+
"version": "4.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",
@@ -55,7 +55,7 @@
5555
"test:electron-main": "aegir test -t electron-main"
5656
},
5757
"dependencies": {
58-
"@helia/interface": "^5.1.0",
58+
"@helia/interface": "^5.2.0",
5959
"@ipld/dag-cbor": "^9.2.2",
6060
"@libp2p/interface": "^2.2.1",
6161
"interface-blockstore": "^5.3.1",

packages/dag-json/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Changelog
22

3+
## [4.0.2](https://github.com/ipfs/helia/compare/dag-json-v4.0.1...dag-json-v4.0.2) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
11+
312
## [4.0.1](https://github.com/ipfs/helia/compare/dag-json-v4.0.0...dag-json-v4.0.1) (2024-11-18)
413

514

packages/dag-json/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/dag-json",
3-
"version": "4.0.1",
3+
"version": "4.0.2",
44
"description": "Add/get IPLD blocks containing dag-json with your Helia node",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-json#readme",
@@ -54,7 +54,7 @@
5454
"test:electron-main": "aegir test -t electron-main"
5555
},
5656
"dependencies": {
57-
"@helia/interface": "^5.1.0",
57+
"@helia/interface": "^5.2.0",
5858
"@ipld/dag-json": "^10.2.3",
5959
"@libp2p/interface": "^2.2.1",
6060
"interface-blockstore": "^5.3.1",

packages/helia/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## [5.2.0](https://github.com/ipfs/helia/compare/helia-v5.1.1...helia-v5.2.0) (2025-01-14)
4+
5+
6+
### Features
7+
8+
* add auto-tls support ([#716](https://github.com/ipfs/helia/issues/716)) ([e45e1de](https://github.com/ipfs/helia/commit/e45e1dea40120b993f009f8fbb81a9737742196c))
9+
10+
11+
### Bug Fixes
12+
13+
* use @libp2p/config to load private key from keystore ([#714](https://github.com/ipfs/helia/issues/714)) ([b4f9d4f](https://github.com/ipfs/helia/commit/b4f9d4fc234cc66e9cdf444900e365b1c63b9920))
14+
15+
16+
### Dependencies
17+
18+
* bump the helia-deps group across 2 directories with 1 update ([#717](https://github.com/ipfs/helia/issues/717)) ([1c8583c](https://github.com/ipfs/helia/commit/1c8583c89bbf47bfbe10636a9e226aabb61e20da))
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* @helia/block-brokers bumped from ^4.0.2 to ^4.0.3
22+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
23+
* @helia/routers bumped from ^2.2.0 to ^3.0.0
24+
* @helia/utils bumped from ^1.1.0 to ^1.2.0
25+
326
## [5.1.1](https://github.com/ipfs/helia/compare/helia-v5.1.0...helia-v5.1.1) (2024-11-18)
427

528

packages/helia/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "helia",
3-
"version": "5.1.1",
3+
"version": "5.2.0",
44
"description": "An implementation of IPFS in JavaScript",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme",
@@ -57,11 +57,11 @@
5757
"dependencies": {
5858
"@chainsafe/libp2p-noise": "^16.0.0",
5959
"@chainsafe/libp2p-yamux": "^7.0.1",
60-
"@helia/block-brokers": "^4.0.2",
60+
"@helia/block-brokers": "^4.0.3",
6161
"@helia/delegated-routing-v1-http-api-client": "^4.2.1",
62-
"@helia/interface": "^5.1.0",
63-
"@helia/routers": "^2.2.0",
64-
"@helia/utils": "^1.1.0",
62+
"@helia/interface": "^5.2.0",
63+
"@helia/routers": "^3.0.0",
64+
"@helia/utils": "^1.2.0",
6565
"@libp2p/auto-tls": "^1.0.4",
6666
"@libp2p/autonat": "^2.0.12",
6767
"@libp2p/bootstrap": "^11.0.13",

packages/http/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [2.0.3](https://github.com/ipfs/helia/compare/http-v2.0.2...http-v2.0.3) (2025-01-14)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/block-brokers bumped from ^4.0.2 to ^4.0.3
11+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
12+
* @helia/routers bumped from ^2.2.0 to ^3.0.0
13+
* @helia/utils bumped from ^1.1.0 to ^1.2.0
14+
315
## [2.0.2](https://github.com/ipfs/helia/compare/http-v2.0.1...http-v2.0.2) (2024-11-18)
416

517

packages/http/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/http",
3-
"version": "2.0.2",
3+
"version": "2.0.3",
44
"description": "A lightweight implementation of IPFS over HTTP in JavaScript",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/http#readme",
@@ -54,10 +54,10 @@
5454
"test:electron-main": "aegir test -t electron-main"
5555
},
5656
"dependencies": {
57-
"@helia/block-brokers": "^4.0.2",
58-
"@helia/interface": "^5.1.0",
59-
"@helia/routers": "^2.2.0",
60-
"@helia/utils": "^1.1.0",
57+
"@helia/block-brokers": "^4.0.3",
58+
"@helia/interface": "^5.2.0",
59+
"@helia/routers": "^3.0.0",
60+
"@helia/utils": "^1.2.0",
6161
"blockstore-core": "^5.0.2",
6262
"datastore-core": "^10.0.2"
6363
},

packages/interface/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,13 @@
55

66
* expose .dns property on @helia/interface ([#465](https://github.com/ipfs/helia/issues/465)) ([8c9bb7d](https://github.com/ipfs/helia/commit/8c9bb7d224a1b786cba1fba18bffe07001a3b95d))
77

8+
## [5.2.0](https://github.com/ipfs/helia/compare/interface-v5.1.0...interface-v5.2.0) (2025-01-14)
9+
10+
11+
### Features
12+
13+
* add method tracing to routing ([#715](https://github.com/ipfs/helia/issues/715)) ([5784ceb](https://github.com/ipfs/helia/commit/5784cebb3225157d6220668d4f58481f046debf2))
14+
815
## [5.1.0](https://github.com/ipfs/helia/compare/interface-v5.0.0...interface-v5.1.0) (2024-11-18)
916

1017

packages/interface/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/interface",
3-
"version": "5.1.0",
3+
"version": "5.2.0",
44
"description": "The Helia API",
55
"license": "Apache-2.0 OR MIT",
66
"homepage": "https://github.com/ipfs/helia/tree/main/packages/interface#readme",

packages/interop/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,31 @@
11
# Changelog
22

3+
## [7.1.0](https://github.com/ipfs/helia/compare/interop-v7.0.3...interop-v7.1.0) (2025-01-14)
4+
5+
6+
### Features
7+
8+
* add auto-tls support ([#716](https://github.com/ipfs/helia/issues/716)) ([e45e1de](https://github.com/ipfs/helia/commit/e45e1dea40120b993f009f8fbb81a9737742196c))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/block-brokers bumped from ^4.0.2 to ^4.0.3
16+
* @helia/car bumped from ^4.0.1 to ^4.0.2
17+
* @helia/dag-cbor bumped from ^4.0.1 to ^4.0.2
18+
* @helia/dag-json bumped from ^4.0.1 to ^4.0.2
19+
* @helia/http bumped from ^2.0.2 to ^2.0.3
20+
* @helia/interface bumped from ^5.1.0 to ^5.2.0
21+
* @helia/ipns bumped from ^8.0.1 to ^8.0.2
22+
* @helia/json bumped from ^4.0.1 to ^4.0.2
23+
* @helia/mfs bumped from ^4.0.1 to ^4.0.2
24+
* @helia/routers bumped from ^2.2.0 to ^3.0.0
25+
* @helia/strings bumped from ^4.0.1 to ^4.0.2
26+
* @helia/unixfs bumped from ^4.0.1 to ^4.0.2
27+
* helia bumped from ^5.1.1 to ^5.2.0
28+
329
## [7.0.3](https://github.com/ipfs/helia/compare/interop-v7.0.2...interop-v7.0.3) (2024-11-18)
430

531

0 commit comments

Comments
 (0)