Skip to content

Commit ab188c5

Browse files
authored
chore: release main (#912)
1 parent 71f9c4e commit ab188c5

File tree

19 files changed

+126
-34
lines changed

19 files changed

+126
-34
lines changed

.release-please-manifest.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
2-
"packages/block-brokers": "5.0.10",
3-
"packages/bitswap": "3.0.10",
4-
"packages/car": "5.3.0",
2+
"packages/block-brokers": "5.0.11",
3+
"packages/bitswap": "3.0.11",
4+
"packages/car": "5.3.1",
55
"packages/dag-cbor": "5.0.3",
66
"packages/dag-json": "5.0.3",
77
"packages/dnslink": "1.1.3",
8-
"packages/helia": "6.0.11",
8+
"packages/helia": "6.0.12",
99
"packages/interface": "6.0.2",
10-
"packages/interop": "9.0.12",
11-
"packages/ipns": "9.1.3",
10+
"packages/interop": "9.0.13",
11+
"packages/ipns": "9.1.4",
1212
"packages/json": "5.0.3",
1313
"packages/mfs": "6.0.3",
1414
"packages/strings": "5.0.3",
1515
"packages/unixfs": "6.0.3",
16-
"packages/utils": "2.3.0",
17-
"packages/http": "3.0.11",
18-
"packages/routers": "4.0.4"
16+
"packages/utils": "2.3.1",
17+
"packages/http": "3.0.12",
18+
"packages/routers": "4.0.5"
1919
}

packages/bitswap/CHANGELOG.md

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

3+
## [3.0.11](https://github.com/ipfs/helia/compare/bitswap-v3.0.10...bitswap-v3.0.11) (2025-12-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/utils bumped from ^2.3.0 to ^2.3.1
11+
312
## [3.0.10](https://github.com/ipfs/helia/compare/bitswap-v3.0.9...bitswap-v3.0.10) (2025-11-20)
413

514

packages/bitswap/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/bitswap",
3-
"version": "3.0.10",
3+
"version": "3.0.11",
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",
@@ -52,7 +52,7 @@
5252
},
5353
"dependencies": {
5454
"@helia/interface": "^6.0.2",
55-
"@helia/utils": "^2.3.0",
55+
"@helia/utils": "^2.3.1",
5656
"@libp2p/interface": "^3.1.0",
5757
"@libp2p/logger": "^6.0.5",
5858
"@libp2p/peer-collections": "^7.0.5",

packages/block-brokers/CHANGELOG.md

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

3+
## [5.0.11](https://github.com/ipfs/helia/compare/block-brokers-v5.0.10...block-brokers-v5.0.11) (2025-12-12)
4+
5+
6+
### Bug Fixes
7+
8+
* improve error reporting ([#896](https://github.com/ipfs/helia/issues/896)) ([71f9c4e](https://github.com/ipfs/helia/commit/71f9c4ef2c8557d92e5769675a69da2679c8b7d2))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/bitswap bumped from ^3.0.10 to ^3.0.11
16+
* @helia/utils bumped from ^2.3.0 to ^2.3.1
17+
318
## [5.0.10](https://github.com/ipfs/helia/compare/block-brokers-v5.0.9...block-brokers-v5.0.10) (2025-11-20)
419

520

packages/block-brokers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/block-brokers",
3-
"version": "5.0.10",
3+
"version": "5.0.11",
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.10",
50+
"@helia/bitswap": "^3.0.11",
5151
"@helia/interface": "^6.0.2",
52-
"@helia/utils": "^2.3.0",
52+
"@helia/utils": "^2.3.1",
5353
"@libp2p/interface": "^3.1.0",
5454
"@libp2p/utils": "^7.0.5",
5555
"@multiformats/multiaddr": "^13.0.1",

packages/car/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.3.1](https://github.com/ipfs/helia/compare/car-v5.3.0...car-v5.3.1) (2025-12-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/utils bumped from ^2.3.0 to ^2.3.1
11+
312
## [5.3.0](https://github.com/ipfs/helia/compare/car-v5.2.5...car-v5.3.0) (2025-11-20)
413

514

packages/car/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/car",
3-
"version": "5.3.0",
3+
"version": "5.3.1",
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",
@@ -48,7 +48,7 @@
4848
},
4949
"dependencies": {
5050
"@helia/interface": "^6.0.2",
51-
"@helia/utils": "^2.3.0",
51+
"@helia/utils": "^2.3.1",
5252
"@ipld/car": "^5.4.2",
5353
"@ipld/dag-pb": "^4.1.5",
5454
"@libp2p/interface": "^3.1.0",

packages/helia/CHANGELOG.md

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

3+
## [6.0.12](https://github.com/ipfs/helia/compare/helia-v6.0.11...helia-v6.0.12) (2025-12-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/block-brokers bumped from ^5.0.10 to ^5.0.11
11+
* @helia/routers bumped from ^4.0.4 to ^4.0.5
12+
* @helia/utils bumped from ^2.3.0 to ^2.3.1
13+
314
## [6.0.11](https://github.com/ipfs/helia/compare/helia-v6.0.10...helia-v6.0.11) (2025-11-20)
415

516

packages/helia/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "helia",
3-
"version": "6.0.11",
3+
"version": "6.0.12",
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",
@@ -50,11 +50,11 @@
5050
"dependencies": {
5151
"@chainsafe/libp2p-noise": "^17.0.0",
5252
"@chainsafe/libp2p-yamux": "^8.0.0",
53-
"@helia/block-brokers": "^5.0.10",
53+
"@helia/block-brokers": "^5.0.11",
5454
"@helia/delegated-routing-v1-http-api-client": "^5.1.2",
5555
"@helia/interface": "^6.0.2",
56-
"@helia/routers": "^4.0.4",
57-
"@helia/utils": "^2.3.0",
56+
"@helia/routers": "^4.0.5",
57+
"@helia/utils": "^2.3.1",
5858
"@ipshipyard/libp2p-auto-tls": "^2.0.1",
5959
"@libp2p/autonat": "^3.0.5",
6060
"@libp2p/bootstrap": "^12.0.6",

packages/http/CHANGELOG.md

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

3+
## [3.0.12](https://github.com/ipfs/helia/compare/http-v3.0.11...http-v3.0.12) (2025-12-12)
4+
5+
6+
### Dependencies
7+
8+
* The following workspace dependencies were updated
9+
* dependencies
10+
* @helia/block-brokers bumped from ^5.0.10 to ^5.0.11
11+
* @helia/routers bumped from ^4.0.4 to ^4.0.5
12+
* @helia/utils bumped from ^2.3.0 to ^2.3.1
13+
314
## [3.0.11](https://github.com/ipfs/helia/compare/http-v3.0.10...http-v3.0.11) (2025-11-20)
415

516

0 commit comments

Comments
 (0)