Skip to content

Commit 13daa26

Browse files
authored
chore: release main (#483)
1 parent 9ea934e commit 13daa26

33 files changed

+340
-69
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

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
* improve sessions implementation ([#495](https://github.com/ipfs/helia/issues/495)) ([9ea934e](https://github.com/ipfs/helia/commit/9ea934ed7208e87c28bc65e9090bdedf66ceeffd))
14+
* increase default listers on abort signals ([#484](https://github.com/ipfs/helia/issues/484)) ([7cd012a](https://github.com/ipfs/helia/commit/7cd012aa2ba568845d49d63a71806d20f6ac678f))
15+
* 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))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @helia/interface bumped from ^4.0.0 to ^4.2.0
23+
* @helia/utils bumped from ^0.1.0 to ^0.2.0

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": "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,8 +148,8 @@
148148
"docs": "aegir docs"
149149
},
150150
"dependencies": {
151-
"@helia/interface": "^4.0.0",
152-
"@helia/utils": "^0.1.0",
151+
"@helia/interface": "^4.2.0",
152+
"@helia/utils": "^0.2.0",
153153
"@libp2p/interface": "^1.1.2",
154154
"@libp2p/logger": "^4.0.5",
155155
"@libp2p/peer-collections": "^5.1.6",

packages/block-brokers/CHANGELOG.md

+23
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
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+
### Bug Fixes
14+
15+
* improve sessions implementation ([#495](https://github.com/ipfs/helia/issues/495)) ([9ea934e](https://github.com/ipfs/helia/commit/9ea934ed7208e87c28bc65e9090bdedf66ceeffd))
16+
17+
18+
### Dependencies
19+
20+
* The following workspace dependencies were updated
21+
* dependencies
22+
* @helia/bitswap bumped from ^0.0.0 to ^1.0.0
23+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
24+
* @helia/utils bumped from ^0.1.0 to ^0.2.0
25+
326
## [2.0.3](https://github.com/ipfs/helia/compare/block-brokers-v2.0.2...block-brokers-v2.0.3) (2024-03-14)
427

528

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": "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,9 +53,9 @@
5353
"test:electron-main": "aegir test -t electron-main"
5454
},
5555
"dependencies": {
56-
"@helia/bitswap": "^0.0.0",
57-
"@helia/interface": "^4.1.0",
58-
"@helia/utils": "^0.1.0",
56+
"@helia/bitswap": "^1.0.0",
57+
"@helia/interface": "^4.2.0",
58+
"@helia/utils": "^0.2.0",
5959
"@libp2p/interface": "^1.1.4",
6060
"@libp2p/utils": "^5.2.6",
6161
"@multiformats/multiaddr": "^12.2.1",

packages/car/CHANGELOG.md

+16
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

+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
@@ -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

+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
@@ -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

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

3+
## [4.1.1](https://github.com/ipfs/helia/compare/helia-v4.1.0...helia-v4.1.1) (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/block-brokers bumped from ^2.0.3 to ^2.1.0
16+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
17+
* @helia/routers bumped from ^1.0.2 to ^1.0.3
18+
* @helia/utils bumped from ^0.1.0 to ^0.2.0
19+
320
## [4.1.0](https://github.com/ipfs/helia/compare/helia-v4.0.2...helia-v4.1.0) (2024-03-14)
421

522

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

3+
## [1.0.4](https://github.com/ipfs/helia/compare/http-v1.0.3...http-v1.0.4) (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/block-brokers bumped from ^2.0.3 to ^2.1.0
16+
* @helia/interface bumped from ^4.1.0 to ^4.2.0
17+
* @helia/routers bumped from ^1.0.2 to ^1.0.3
18+
* @helia/utils bumped from ^0.1.0 to ^0.2.0
19+
320
## [1.0.3](https://github.com/ipfs/helia/compare/http-v1.0.2...http-v1.0.3) (2024-03-14)
421

522

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

+13
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,19 @@
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+
## [4.2.0](https://github.com/ipfs/helia/compare/interface-v4.1.0...interface-v4.2.0) (2024-04-15)
9+
10+
11+
### Features
12+
13+
* add block session support to @helia/interface ([#398](https://github.com/ipfs/helia/issues/398)) ([5cf216b](https://github.com/ipfs/helia/commit/5cf216baa6806cd82f8fcddd1f024ef6a506f667))
14+
15+
16+
### Bug Fixes
17+
18+
* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))
19+
* improve sessions implementation ([#495](https://github.com/ipfs/helia/issues/495)) ([9ea934e](https://github.com/ipfs/helia/commit/9ea934ed7208e87c28bc65e9090bdedf66ceeffd))
20+
821
## [4.0.1](https://github.com/ipfs/helia/compare/interface-v4.0.0...interface-v4.0.1) (2024-02-28)
922

1023

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)