Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Apr 9, 2024
1 parent b1c761d commit cf836d5
Show file tree
Hide file tree
Showing 33 changed files with 325 additions and 67 deletions.
32 changes: 16 additions & 16 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"packages/block-brokers": "2.0.3",
"packages/bitswap": "0.0.0",
"packages/car": "3.1.2",
"packages/dag-cbor": "3.0.2",
"packages/dag-json": "3.0.2",
"packages/helia": "4.1.0",
"packages/interface": "4.1.0",
"packages/interop": "6.0.2",
"packages/ipns": "7.2.0",
"packages/json": "3.0.2",
"packages/mfs": "3.0.3",
"packages/strings": "3.0.2",
"packages/unixfs": "3.0.3",
"packages/utils": "0.1.0",
"packages/http": "1.0.3",
"packages/routers": "1.0.2"
"packages/block-brokers": "2.1.0",
"packages/bitswap": "1.0.0",
"packages/car": "3.1.3",
"packages/dag-cbor": "3.0.3",
"packages/dag-json": "3.0.3",
"packages/helia": "4.1.1",
"packages/interface": "4.2.0",
"packages/interop": "6.1.0",
"packages/ipns": "7.2.1",
"packages/json": "3.0.3",
"packages/mfs": "3.0.4",
"packages/strings": "3.0.3",
"packages/unixfs": "3.0.4",
"packages/utils": "0.2.0",
"packages/http": "1.0.4",
"packages/routers": "1.0.3"
}
20 changes: 20 additions & 0 deletions packages/bitswap/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,26 @@

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

## 1.0.0 (2024-04-09)


### Features

* add @helia/bitswap with sessions ([#409](https://github.com/ipfs/helia/issues/409)) ([e582c63](https://github.com/ipfs/helia/commit/e582c63ca296c789312f5fcf5e3e18f267f74c03))


### Bug Fixes

* increase default listers on abort signals ([#484](https://github.com/ipfs/helia/issues/484)) ([7cd012a](https://github.com/ipfs/helia/commit/7cd012aa2ba568845d49d63a71806d20f6ac678f))
* 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))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/interface bumped from ^4.0.0 to ^4.2.0

## [19.0.2](https://github.com/ipfs/js-ipfs-bitswap/compare/v19.0.1...v19.0.2) (2023-11-04)


Expand Down
4 changes: 2 additions & 2 deletions packages/bitswap/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/bitswap",
"version": "0.0.0",
"version": "1.0.0",
"description": "JavaScript implementation of the Bitswap data exchange protocol used by Helia",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/bitswap#readme",
Expand Down Expand Up @@ -148,7 +148,7 @@
"docs": "aegir docs"
},
"dependencies": {
"@helia/interface": "^4.0.0",
"@helia/interface": "^4.2.0",
"@libp2p/interface": "^1.1.2",
"@libp2p/logger": "^4.0.5",
"@libp2p/peer-collections": "^5.1.6",
Expand Down
17 changes: 17 additions & 0 deletions packages/block-brokers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Changelog

## [2.1.0](https://github.com/ipfs/helia/compare/block-brokers-v2.0.3...block-brokers-v2.1.0) (2024-04-09)


### Features

* add @helia/bitswap with sessions ([#409](https://github.com/ipfs/helia/issues/409)) ([e582c63](https://github.com/ipfs/helia/commit/e582c63ca296c789312f5fcf5e3e18f267f74c03))
* add block session support to @helia/interface ([#398](https://github.com/ipfs/helia/issues/398)) ([5cf216b](https://github.com/ipfs/helia/commit/5cf216baa6806cd82f8fcddd1f024ef6a506f667))
* add sessions to trustless gateways ([#459](https://github.com/ipfs/helia/issues/459)) ([6ddefb0](https://github.com/ipfs/helia/commit/6ddefb01154b970f5ab7ec7cb7445d9eedbc5474))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/bitswap bumped from ^0.0.0 to ^1.0.0
* @helia/interface bumped from ^4.1.0 to ^4.2.0

## [2.0.3](https://github.com/ipfs/helia/compare/block-brokers-v2.0.2...block-brokers-v2.0.3) (2024-03-14)


Expand Down
6 changes: 3 additions & 3 deletions packages/block-brokers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/block-brokers",
"version": "2.0.3",
"version": "2.1.0",
"description": "Block brokers for Helia",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/block-brokers#readme",
Expand Down Expand Up @@ -53,8 +53,8 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@helia/bitswap": "^0.0.0",
"@helia/interface": "^4.1.0",
"@helia/bitswap": "^1.0.0",
"@helia/interface": "^4.2.0",
"@libp2p/interface": "^1.1.4",
"@libp2p/utils": "^5.2.6",
"@multiformats/multiaddr-matcher": "^1.2.0",
Expand Down
16 changes: 16 additions & 0 deletions packages/car/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,22 @@
* devDependencies
* @helia/unixfs bumped from ^2.0.0 to ^2.0.1

## [3.1.3](https://github.com/ipfs/helia/compare/car-v3.1.2...car-v3.1.3) (2024-04-09)


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/interface bumped from ^4.1.0 to ^4.2.0
* devDependencies
* @helia/unixfs bumped from ^3.0.3 to ^3.0.4

## [3.1.2](https://github.com/ipfs/helia/compare/car-v3.1.1...car-v3.1.2) (2024-04-03)


Expand Down
6 changes: 3 additions & 3 deletions packages/car/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/car",
"version": "3.1.2",
"version": "3.1.3",
"description": "Import/export car files from Helia",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/car#readme",
Expand Down Expand Up @@ -139,7 +139,7 @@
"release": "aegir release"
},
"dependencies": {
"@helia/interface": "^4.1.0",
"@helia/interface": "^4.2.0",
"@ipld/car": "^5.3.0",
"@libp2p/interfaces": "^3.3.2",
"interface-blockstore": "^5.2.10",
Expand All @@ -151,7 +151,7 @@
"progress-events": "^1.0.0"
},
"devDependencies": {
"@helia/unixfs": "^3.0.3",
"@helia/unixfs": "^3.0.4",
"@ipld/dag-pb": "^4.1.0",
"aegir": "^42.2.5",
"blockstore-core": "^4.4.0",
Expand Down
14 changes: 14 additions & 0 deletions packages/dag-cbor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@
* dependencies
* @helia/interface bumped from ^3.0.0 to ^3.0.1

## [3.0.3](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.2...dag-cbor-v3.0.3) (2024-04-09)


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/interface bumped from ^4.1.0 to ^4.2.0

## [3.0.2](https://github.com/ipfs/helia/compare/dag-cbor-v3.0.1...dag-cbor-v3.0.2) (2024-03-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/dag-cbor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/dag-cbor",
"version": "3.0.2",
"version": "3.0.3",
"description": "Add/get IPLD blocks containing dag-cbor with your Helia node",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-cbor#readme",
Expand Down Expand Up @@ -140,7 +140,7 @@
"release": "aegir release"
},
"dependencies": {
"@helia/interface": "^4.1.0",
"@helia/interface": "^4.2.0",
"@ipld/dag-cbor": "^9.2.0",
"@libp2p/interfaces": "^3.3.2",
"interface-blockstore": "^5.2.10",
Expand Down
14 changes: 14 additions & 0 deletions packages/dag-json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@
* dependencies
* @helia/interface bumped from ^3.0.0 to ^3.0.1

## [3.0.3](https://github.com/ipfs/helia/compare/dag-json-v3.0.2...dag-json-v3.0.3) (2024-04-09)


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/interface bumped from ^4.1.0 to ^4.2.0

## [3.0.2](https://github.com/ipfs/helia/compare/dag-json-v3.0.1...dag-json-v3.0.2) (2024-03-14)


Expand Down
4 changes: 2 additions & 2 deletions packages/dag-json/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/dag-json",
"version": "3.0.2",
"version": "3.0.3",
"description": "Add/get IPLD blocks containing dag-json with your Helia node",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/dag-json#readme",
Expand Down Expand Up @@ -139,7 +139,7 @@
"release": "aegir release"
},
"dependencies": {
"@helia/interface": "^4.1.0",
"@helia/interface": "^4.2.0",
"@ipld/dag-json": "^10.2.0",
"@libp2p/interfaces": "^3.3.2",
"interface-blockstore": "^5.2.10",
Expand Down
17 changes: 17 additions & 0 deletions packages/helia/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,23 @@
* dependencies
* @helia/block-brokers bumped from ^2.0.0 to ^2.0.1

## [4.1.1](https://github.com/ipfs/helia/compare/helia-v4.1.0...helia-v4.1.1) (2024-04-09)


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^2.0.3 to ^2.1.0
* @helia/interface bumped from ^4.1.0 to ^4.2.0
* @helia/routers bumped from ^1.0.2 to ^1.0.3
* @helia/utils bumped from ^0.1.0 to ^0.2.0

## [4.1.0](https://github.com/ipfs/helia/compare/helia-v4.0.2...helia-v4.1.0) (2024-03-14)


Expand Down
10 changes: 5 additions & 5 deletions packages/helia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "helia",
"version": "4.1.0",
"version": "4.1.1",
"description": "An implementation of IPFS in JavaScript",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/helia#readme",
Expand Down Expand Up @@ -56,11 +56,11 @@
"dependencies": {
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.2",
"@helia/block-brokers": "^2.0.3",
"@helia/block-brokers": "^2.1.0",
"@helia/delegated-routing-v1-http-api-client": "^3.0.0",
"@helia/interface": "^4.1.0",
"@helia/routers": "^1.0.2",
"@helia/utils": "^0.1.0",
"@helia/interface": "^4.2.0",
"@helia/routers": "^1.0.3",
"@helia/utils": "^0.2.0",
"@libp2p/autonat": "^1.0.13",
"@libp2p/bootstrap": "^10.0.16",
"@libp2p/circuit-relay-v2": "^1.0.16",
Expand Down
17 changes: 17 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,23 @@
* dependencies
* @helia/block-brokers bumped from ^2.0.0 to ^2.0.1

## [1.0.4](https://github.com/ipfs/helia/compare/http-v1.0.3...http-v1.0.4) (2024-04-09)


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^2.0.3 to ^2.1.0
* @helia/interface bumped from ^4.1.0 to ^4.2.0
* @helia/routers bumped from ^1.0.2 to ^1.0.3
* @helia/utils bumped from ^0.1.0 to ^0.2.0

## [1.0.3](https://github.com/ipfs/helia/compare/http-v1.0.2...http-v1.0.3) (2024-03-14)


Expand Down
10 changes: 5 additions & 5 deletions packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/http",
"version": "1.0.3",
"version": "1.0.4",
"description": "A lightweight implementation of IPFS over HTTP in JavaScript",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/http#readme",
Expand Down Expand Up @@ -53,10 +53,10 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@helia/block-brokers": "^2.0.3",
"@helia/interface": "^4.1.0",
"@helia/routers": "^1.0.2",
"@helia/utils": "^0.1.0",
"@helia/block-brokers": "^2.1.0",
"@helia/interface": "^4.2.0",
"@helia/routers": "^1.0.3",
"@helia/utils": "^0.2.0",
"blockstore-core": "^4.4.0",
"datastore-core": "^9.2.9"
},
Expand Down
12 changes: 12 additions & 0 deletions packages/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,18 @@

* **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))

## [4.2.0](https://github.com/ipfs/helia/compare/interface-v4.1.0...interface-v4.2.0) (2024-04-09)


### Features

* add block session support to @helia/interface ([#398](https://github.com/ipfs/helia/issues/398)) ([5cf216b](https://github.com/ipfs/helia/commit/5cf216baa6806cd82f8fcddd1f024ef6a506f667))


### Bug Fixes

* add sideEffects: false to package.json ([#485](https://github.com/ipfs/helia/issues/485)) ([8c45267](https://github.com/ipfs/helia/commit/8c45267a474ab10b2faadfebdab33cfe446e8c03))

## [4.1.0](https://github.com/ipfs/helia/compare/interface-v4.0.1...interface-v4.1.0) (2024-03-14)


Expand Down
2 changes: 1 addition & 1 deletion packages/interface/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/interface",
"version": "4.1.0",
"version": "4.2.0",
"description": "The Helia API",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/interface#readme",
Expand Down
Loading

0 comments on commit cf836d5

Please sign in to comment.