Skip to content

Commit 0e1daca

Browse files
committed
chore: release main
1 parent b67ac5f commit 0e1daca

33 files changed

+326
-67
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": "2.0.3",
3-
"packages/bitswap": "0.0.0",
4-
"packages/car": "3.1.2",
5-
"packages/dag-cbor": "3.0.2",
6-
"packages/dag-json": "3.0.2",
7-
"packages/helia": "4.1.0",
8-
"packages/interface": "4.1.0",
9-
"packages/interop": "6.0.2",
10-
"packages/ipns": "7.2.0",
11-
"packages/json": "3.0.2",
12-
"packages/mfs": "3.0.3",
13-
"packages/strings": "3.0.2",
14-
"packages/unixfs": "3.0.3",
15-
"packages/utils": "0.1.0",
16-
"packages/http": "1.0.3",
17-
"packages/routers": "1.0.2"
2+
"packages/block-brokers": "2.1.0",
3+
"packages/bitswap": "1.0.0",
4+
"packages/car": "3.1.3",
5+
"packages/dag-cbor": "3.0.3",
6+
"packages/dag-json": "3.0.3",
7+
"packages/helia": "4.1.1",
8+
"packages/interface": "4.2.0",
9+
"packages/interop": "6.1.0",
10+
"packages/ipns": "7.2.1",
11+
"packages/json": "3.0.3",
12+
"packages/mfs": "3.0.4",
13+
"packages/strings": "3.0.3",
14+
"packages/unixfs": "3.0.4",
15+
"packages/utils": "0.2.0",
16+
"packages/http": "1.0.4",
17+
"packages/routers": "1.0.3"
1818
}

packages/bitswap/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,26 @@
99

1010
* update libp2p to v1 ([#610](https://github.com/ipfs/js-ipfs-bitswap/issues/610)) ([9f8258d](https://github.com/ipfs/js-ipfs-bitswap/commit/9f8258da440f6b2c5064687bf10136c785344234))
1111

12+
## 1.0.0 (2024-04-09)
13+
14+
15+
### Features
16+
17+
* add @helia/bitswap with sessions ([#409](https://github.com/ipfs/helia/issues/409)) ([e582c63](https://github.com/ipfs/helia/commit/e582c63ca296c789312f5fcf5e3e18f267f74c03))
18+
19+
20+
### Bug Fixes
21+
22+
* increase default listers on abort signals ([#484](https://github.com/ipfs/helia/issues/484)) ([7cd012a](https://github.com/ipfs/helia/commit/7cd012aa2ba568845d49d63a71806d20f6ac678f))
23+
* remove wants from wantlist when multiple block retrievers are used ([#491](https://github.com/ipfs/helia/issues/491)) ([b1c761d](https://github.com/ipfs/helia/commit/b1c761db6db7a7aca3044263fdd5e8967204deeb))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* @helia/interface bumped from ^4.0.0 to ^4.2.0
31+
1232
## [19.0.2](https://github.com/ipfs/js-ipfs-bitswap/compare/v19.0.1...v19.0.2) (2023-11-04)
1333

1434

packages/bitswap/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/bitswap",
3-
"version": "0.0.0",
3+
"version": "1.0.0",
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",
@@ -148,7 +148,7 @@
148148
"docs": "aegir docs"
149149
},
150150
"dependencies": {
151-
"@helia/interface": "^4.0.0",
151+
"@helia/interface": "^4.2.0",
152152
"@libp2p/interface": "^1.1.2",
153153
"@libp2p/logger": "^4.0.5",
154154
"@libp2p/peer-collections": "^5.1.6",

packages/block-brokers/CHANGELOG.md

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

3+
## [2.1.0](https://github.com/ipfs/helia/compare/block-brokers-v2.0.3...block-brokers-v2.1.0) (2024-04-09)
4+
5+
6+
### Features
7+
8+
* add @helia/bitswap with sessions ([#409](https://github.com/ipfs/helia/issues/409)) ([e582c63](https://github.com/ipfs/helia/commit/e582c63ca296c789312f5fcf5e3e18f267f74c03))
9+
* add block session support to @helia/interface ([#398](https://github.com/ipfs/helia/issues/398)) ([5cf216b](https://github.com/ipfs/helia/commit/5cf216baa6806cd82f8fcddd1f024ef6a506f667))
10+
* add sessions to trustless gateways ([#459](https://github.com/ipfs/helia/issues/459)) ([6ddefb0](https://github.com/ipfs/helia/commit/6ddefb01154b970f5ab7ec7cb7445d9eedbc5474))
11+
12+
13+
### Dependencies
14+
15+
* The following workspace dependencies were updated
16+
* dependencies
17+
* @helia/bitswap bumped from ^0.0.0 to ^1.0.0
18+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
19+
320
## [2.0.3](https://github.com/ipfs/helia/compare/block-brokers-v2.0.2...block-brokers-v2.0.3) (2024-03-14)
421

522

packages/block-brokers/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/block-brokers",
3-
"version": "2.0.3",
3+
"version": "2.1.0",
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",
@@ -53,8 +53,8 @@
5353
"test:electron-main": "aegir test -t electron-main"
5454
},
5555
"dependencies": {
56-
"@helia/bitswap": "^0.0.0",
57-
"@helia/interface": "^4.1.0",
56+
"@helia/bitswap": "^1.0.0",
57+
"@helia/interface": "^4.2.0",
5858
"@libp2p/interface": "^1.1.4",
5959
"@libp2p/utils": "^5.2.6",
6060
"@multiformats/multiaddr-matcher": "^1.2.0",

packages/car/CHANGELOG.md

+16
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,22 @@
1717
* devDependencies
1818
* @helia/unixfs bumped from ^2.0.0 to ^2.0.1
1919

20+
## [3.1.3](https://github.com/ipfs/helia/compare/car-v3.1.2...car-v3.1.3) (2024-04-09)
21+
22+
23+
### Bug Fixes
24+
25+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
26+
27+
28+
### Dependencies
29+
30+
* The following workspace dependencies were updated
31+
* dependencies
32+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
33+
* devDependencies
34+
* @helia/unixfs bumped from ^3.0.3 to ^3.0.4
35+
2036
## [3.1.2](https://github.com/ipfs/helia/compare/car-v3.1.1...car-v3.1.2) (2024-04-03)
2137

2238

packages/car/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@helia/car",
3-
"version": "3.1.2",
3+
"version": "3.1.3",
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",
@@ -139,7 +139,7 @@
139139
"release": "aegir release"
140140
},
141141
"dependencies": {
142-
"@helia/interface": "^4.1.0",
142+
"@helia/interface": "^4.2.0",
143143
"@ipld/car": "^5.3.0",
144144
"@libp2p/interfaces": "^3.3.2",
145145
"interface-blockstore": "^5.2.10",
@@ -151,7 +151,7 @@
151151
"progress-events": "^1.0.0"
152152
},
153153
"devDependencies": {
154-
"@helia/unixfs": "^3.0.3",
154+
"@helia/unixfs": "^3.0.4",
155155
"@ipld/dag-pb": "^4.1.0",
156156
"aegir": "^42.2.5",
157157
"blockstore-core": "^4.4.0",

packages/dag-cbor/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@
1515
* dependencies
1616
* @helia/interface bumped from ^3.0.0 to ^3.0.1
1717

18+
## [3.0.3](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.2...dag-cbor-v3.0.3) (2024-04-09)
19+
20+
21+
### Bug Fixes
22+
23+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
31+
1832
## [3.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.1...dag-cbor-v3.0.2) (2024-03-14)
1933

2034

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": "3.0.2",
3+
"version": "3.0.3",
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",
@@ -140,7 +140,7 @@
140140
"release": "aegir release"
141141
},
142142
"dependencies": {
143-
"@helia/interface": "^4.1.0",
143+
"@helia/interface": "^4.2.0",
144144
"@ipld/dag-cbor": "^9.2.0",
145145
"@libp2p/interfaces": "^3.3.2",
146146
"interface-blockstore": "^5.2.10",

packages/dag-json/CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@
1515
* dependencies
1616
* @helia/interface bumped from ^3.0.0 to ^3.0.1
1717

18+
## [3.0.3](https://github.com/ipfs/helia/compare/dag-json-v3.0.2...dag-json-v3.0.3) (2024-04-09)
19+
20+
21+
### Bug Fixes
22+
23+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
24+
25+
26+
### Dependencies
27+
28+
* The following workspace dependencies were updated
29+
* dependencies
30+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
31+
1832
## [3.0.2](https://github.com/ipfs/helia/compare/dag-json-v3.0.1...dag-json-v3.0.2) (2024-03-14)
1933

2034

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": "3.0.2",
3+
"version": "3.0.3",
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",
@@ -139,7 +139,7 @@
139139
"release": "aegir release"
140140
},
141141
"dependencies": {
142-
"@helia/interface": "^4.1.0",
142+
"@helia/interface": "^4.2.0",
143143
"@ipld/dag-json": "^10.2.0",
144144
"@libp2p/interfaces": "^3.3.2",
145145
"interface-blockstore": "^5.2.10",

packages/helia/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,23 @@
1212
* dependencies
1313
* @helia/block-brokers bumped from ^2.0.0 to ^2.0.1
1414

15+
## [4.1.1](https://github.com/ipfs/helia/compare/helia-v4.1.0...helia-v4.1.1) (2024-04-09)
16+
17+
18+
### Bug Fixes
19+
20+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
21+
22+
23+
### Dependencies
24+
25+
* The following workspace dependencies were updated
26+
* dependencies
27+
* @helia/block-brokers bumped from ^2.0.3 to ^2.1.0
28+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
29+
* @helia/routers bumped from ^1.0.2 to ^1.0.3
30+
* @helia/utils bumped from ^0.1.0 to ^0.2.0
31+
1532
## [4.1.0](https://github.com/ipfs/helia/compare/helia-v4.0.2...helia-v4.1.0) (2024-03-14)
1633

1734

packages/helia/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "helia",
3-
"version": "4.1.0",
3+
"version": "4.1.1",
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",
@@ -56,11 +56,11 @@
5656
"dependencies": {
5757
"@chainsafe/libp2p-noise": "^15.0.0",
5858
"@chainsafe/libp2p-yamux": "^6.0.2",
59-
"@helia/block-brokers": "^2.0.3",
59+
"@helia/block-brokers": "^2.1.0",
6060
"@helia/delegated-routing-v1-http-api-client": "^3.0.0",
61-
"@helia/interface": "^4.1.0",
62-
"@helia/routers": "^1.0.2",
63-
"@helia/utils": "^0.1.0",
61+
"@helia/interface": "^4.2.0",
62+
"@helia/routers": "^1.0.3",
63+
"@helia/utils": "^0.2.0",
6464
"@libp2p/autonat": "^1.0.13",
6565
"@libp2p/bootstrap": "^10.0.16",
6666
"@libp2p/circuit-relay-v2": "^1.0.16",

packages/http/CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,23 @@
66
* dependencies
77
* @helia/block-brokers bumped from ^2.0.0 to ^2.0.1
88

9+
## [1.0.4](https://github.com/ipfs/helia/compare/http-v1.0.3...http-v1.0.4) (2024-04-09)
10+
11+
12+
### Bug Fixes
13+
14+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* @helia/block-brokers bumped from ^2.0.3 to ^2.1.0
22+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
23+
* @helia/routers bumped from ^1.0.2 to ^1.0.3
24+
* @helia/utils bumped from ^0.1.0 to ^0.2.0
25+
926
## [1.0.3](https://github.com/ipfs/helia/compare/http-v1.0.2...http-v1.0.3) (2024-03-14)
1027

1128

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": "1.0.3",
3+
"version": "1.0.4",
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",
@@ -53,10 +53,10 @@
5353
"test:electron-main": "aegir test -t electron-main"
5454
},
5555
"dependencies": {
56-
"@helia/block-brokers": "^2.0.3",
57-
"@helia/interface": "^4.1.0",
58-
"@helia/routers": "^1.0.2",
59-
"@helia/utils": "^0.1.0",
56+
"@helia/block-brokers": "^2.1.0",
57+
"@helia/interface": "^4.2.0",
58+
"@helia/routers": "^1.0.3",
59+
"@helia/utils": "^0.2.0",
6060
"blockstore-core": "^4.4.0",
6161
"datastore-core": "^9.2.9"
6262
},

packages/interface/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,18 @@
1010

1111
* **dev:** bump aegir from 39.0.13 to 40.0.8 ([#198](https://github.com/ipfs/helia/issues/198)) ([4d75ecf](https://github.com/ipfs/helia/commit/4d75ecffb79e5177da35d3106e42dac7bc63153a))
1212

13+
## [4.2.0](https://github.com/ipfs/helia/compare/interface-v4.1.0...interface-v4.2.0) (2024-04-09)
14+
15+
16+
### Features
17+
18+
* add block session support to @helia/interface ([#398](https://github.com/ipfs/helia/issues/398)) ([5cf216b](https://github.com/ipfs/helia/commit/5cf216baa6806cd82f8fcddd1f024ef6a506f667))
19+
20+
21+
### Bug Fixes
22+
23+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
24+
1325
## [4.1.0](https://github.com/ipfs/helia/compare/interface-v4.0.1...interface-v4.1.0) (2024-03-14)
1426

1527

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": "4.1.0",
3+
"version": "4.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",

0 commit comments

Comments
 (0)