Skip to content

Commit cf836d5

Browse files
committed
chore: release main
1 parent b1c761d commit cf836d5

33 files changed

+325
-67
lines changed

.release-please-manifest.json

Lines changed: 16 additions & 16 deletions
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

Lines changed: 20 additions & 0 deletions
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

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": "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

Lines changed: 17 additions & 0 deletions
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

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": "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

Lines changed: 16 additions & 0 deletions
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

Lines changed: 3 additions & 3 deletions
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

Lines changed: 14 additions & 0 deletions
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

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": "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

Lines changed: 14 additions & 0 deletions
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

0 commit comments

Comments
 (0)