Skip to content

Commit 1521603

Browse files
committed
chore: release main
1 parent 5323724 commit 1521603

33 files changed

+327
-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: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
# Changelog
2+
3+
## 1.0.0 (2024-04-15)
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+
10+
11+
### Bug Fixes
12+
13+
* increase default listers on abort signals ([#484](https://github.com/ipfs/helia/issues/484)) ([7cd012a](https://github.com/ipfs/helia/commit/7cd012aa2ba568845d49d63a71806d20f6ac678f))
14+
* 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))
15+
16+
17+
### Dependencies
18+
19+
* The following workspace dependencies were updated
20+
* dependencies
21+
* @helia/interface bumped from ^4.0.0 to ^4.2.0

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-15)
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
@@ -1,5 +1,21 @@
11
# Changelog
22

3+
## [3.1.3](https://github.com/ipfs/helia/compare/car-v3.1.2...car-v3.1.3) (2024-04-15)
4+
5+
6+
### Bug Fixes
7+
8+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
16+
* devDependencies
17+
* @helia/unixfs bumped from ^3.0.3 to ^3.0.4
18+
319
## [3.1.2](https://github.com/ipfs/helia/compare/car-v3.1.1...car-v3.1.2) (2024-04-03)
420

521

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
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [3.0.3](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.2...dag-cbor-v3.0.3) (2024-04-15)
4+
5+
6+
### Bug Fixes
7+
8+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
16+
317
## [3.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.1...dag-cbor-v3.0.2) (2024-03-14)
418

519

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
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [3.0.3](https://github.com/ipfs/helia/compare/dag-json-v3.0.2...dag-json-v3.0.3) (2024-04-15)
4+
5+
6+
### Bug Fixes
7+
8+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
9+
10+
11+
### Dependencies
12+
13+
* The following workspace dependencies were updated
14+
* dependencies
15+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
16+
317
## [3.0.2](https://github.com/ipfs/helia/compare/dag-json-v3.0.1...dag-json-v3.0.2) (2024-03-14)
418

519

0 commit comments

Comments
 (0)