Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Oct 23, 2024
1 parent efc47fa commit da5d7ec
Show file tree
Hide file tree
Showing 15 changed files with 106 additions and 27 deletions.
14 changes: 7 additions & 7 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
{
"packages/block-brokers": "4.0.0",
"packages/bitswap": "2.0.0",
"packages/block-brokers": "4.0.1",
"packages/bitswap": "2.0.1",
"packages/car": "4.0.0",
"packages/dag-cbor": "4.0.0",
"packages/dag-json": "4.0.0",
"packages/helia": "5.0.1",
"packages/helia": "5.1.0",
"packages/interface": "5.0.0",
"packages/interop": "7.0.1",
"packages/interop": "7.0.2",
"packages/ipns": "8.0.0",
"packages/json": "4.0.0",
"packages/mfs": "4.0.0",
"packages/strings": "4.0.0",
"packages/unixfs": "4.0.0",
"packages/utils": "1.0.0",
"packages/http": "2.0.0",
"packages/routers": "2.0.0"
"packages/utils": "1.0.1",
"packages/http": "2.0.1",
"packages/routers": "2.1.0"
}
9 changes: 9 additions & 0 deletions packages/bitswap/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [2.0.1](https://github.com/ipfs/helia/compare/bitswap-v2.0.0...bitswap-v2.0.1) (2024-10-23)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/utils bumped from ^1.0.0 to ^1.0.1

## [2.0.0](https://github.com/ipfs/helia/compare/bitswap-v1.1.4...bitswap-v2.0.0) (2024-10-07)


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": "2.0.0",
"version": "2.0.1",
"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 @@ -149,7 +149,7 @@
},
"dependencies": {
"@helia/interface": "^5.0.0",
"@helia/utils": "^1.0.0",
"@helia/utils": "^1.0.1",
"@libp2p/interface": "^2.0.0",
"@libp2p/logger": "^5.0.0",
"@libp2p/peer-collections": "^6.0.0",
Expand Down
10 changes: 10 additions & 0 deletions packages/block-brokers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [4.0.1](https://github.com/ipfs/helia/compare/block-brokers-v4.0.0...block-brokers-v4.0.1) (2024-10-23)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/bitswap bumped from ^2.0.0 to ^2.0.1
* @helia/utils bumped from ^1.0.0 to ^1.0.1

## [4.0.0](https://github.com/ipfs/helia/compare/block-brokers-v3.0.4...block-brokers-v4.0.0) (2024-10-07)


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": "4.0.0",
"version": "4.0.1",
"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 @@ -54,9 +54,9 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@helia/bitswap": "^2.0.0",
"@helia/bitswap": "^2.0.1",
"@helia/interface": "^5.0.0",
"@helia/utils": "^1.0.0",
"@helia/utils": "^1.0.1",
"@libp2p/interface": "^2.0.0",
"@libp2p/utils": "^6.0.0",
"@multiformats/multiaddr": "^12.2.1",
Expand Down
22 changes: 22 additions & 0 deletions packages/helia/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# Changelog

## [5.1.0](https://github.com/ipfs/helia/compare/helia-v5.0.1...helia-v5.1.0) (2024-10-23)


### Features

* enable filtering in delegated routing client ([#651](https://github.com/ipfs/helia/issues/651)) ([23ebae1](https://github.com/ipfs/helia/commit/23ebae1072fbbda371ee1d68efb5ecd25d6e339e))


### Bug Fixes

* add va1 bootstrapper ([#649](https://github.com/ipfs/helia/issues/649)) ([460853f](https://github.com/ipfs/helia/commit/460853f915661c794e52299529bda41a893f7b5b))


### Dependencies

* update @libp2p/circuit-relay-v2 to 3.x.x ([#661](https://github.com/ipfs/helia/issues/661)) ([0238ed4](https://github.com/ipfs/helia/commit/0238ed47a63a4f51f66010c50659e6f892b212b5))
* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^4.0.0 to ^4.0.1
* @helia/routers bumped from ^2.0.0 to ^2.1.0
* @helia/utils bumped from ^1.0.0 to ^1.0.1

## [5.0.1](https://github.com/ipfs/helia/compare/helia-v5.0.0...helia-v5.0.1) (2024-10-16)


Expand Down
8 changes: 4 additions & 4 deletions packages/helia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "helia",
"version": "5.0.1",
"version": "5.1.0",
"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 @@ -57,11 +57,11 @@
"dependencies": {
"@chainsafe/libp2p-noise": "^16.0.0",
"@chainsafe/libp2p-yamux": "^7.0.0",
"@helia/block-brokers": "^4.0.0",
"@helia/block-brokers": "^4.0.1",
"@helia/delegated-routing-v1-http-api-client": "^4.1.0",
"@helia/interface": "^5.0.0",
"@helia/routers": "^2.0.0",
"@helia/utils": "^1.0.0",
"@helia/routers": "^2.1.0",
"@helia/utils": "^1.0.1",
"@libp2p/autonat": "^2.0.0",
"@libp2p/bootstrap": "^11.0.0",
"@libp2p/circuit-relay-v2": "^3.0.0",
Expand Down
11 changes: 11 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## [2.0.1](https://github.com/ipfs/helia/compare/http-v2.0.0...http-v2.0.1) (2024-10-23)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^4.0.0 to ^4.0.1
* @helia/routers bumped from ^2.0.0 to ^2.1.0
* @helia/utils bumped from ^1.0.0 to ^1.0.1

## [2.0.0](https://github.com/ipfs/helia/compare/http-v1.0.11...http-v2.0.0) (2024-10-07)


Expand Down
8 changes: 4 additions & 4 deletions packages/http/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/http",
"version": "2.0.0",
"version": "2.0.1",
"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 @@ -54,10 +54,10 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@helia/block-brokers": "^4.0.0",
"@helia/block-brokers": "^4.0.1",
"@helia/interface": "^5.0.0",
"@helia/routers": "^2.0.0",
"@helia/utils": "^1.0.0",
"@helia/routers": "^2.1.0",
"@helia/utils": "^1.0.1",
"blockstore-core": "^5.0.0",
"datastore-core": "^10.0.0"
},
Expand Down
13 changes: 13 additions & 0 deletions packages/interop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [7.0.2](https://github.com/ipfs/helia/compare/interop-v7.0.1...interop-v7.0.2) (2024-10-23)


### Dependencies

* bump kubo from 0.30.0 to 0.31.0 ([#656](https://github.com/ipfs/helia/issues/656)) ([8364296](https://github.com/ipfs/helia/commit/83642961c7c6417e58229226048d69a642edcfff))
* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^4.0.0 to ^4.0.1
* @helia/http bumped from ^2.0.0 to ^2.0.1
* @helia/routers bumped from ^2.0.0 to ^2.1.0
* helia bumped from ^5.0.1 to ^5.1.0

## [7.0.1](https://github.com/ipfs/helia/compare/interop-v7.0.0...interop-v7.0.1) (2024-10-16)


Expand Down
10 changes: 5 additions & 5 deletions packages/interop/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/interop",
"version": "7.0.1",
"version": "7.0.2",
"description": "Interop tests for Helia",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/interop#readme",
Expand Down Expand Up @@ -59,16 +59,16 @@
},
"dependencies": {
"@chainsafe/libp2p-gossipsub": "^14.0.0",
"@helia/block-brokers": "^4.0.0",
"@helia/block-brokers": "^4.0.1",
"@helia/car": "^4.0.0",
"@helia/dag-cbor": "^4.0.0",
"@helia/dag-json": "^4.0.0",
"@helia/http": "^2.0.0",
"@helia/http": "^2.0.1",
"@helia/interface": "^5.0.0",
"@helia/ipns": "^8.0.0",
"@helia/json": "^4.0.0",
"@helia/mfs": "^4.0.0",
"@helia/routers": "^2.0.0",
"@helia/routers": "^2.1.0",
"@helia/strings": "^4.0.0",
"@helia/unixfs": "^4.0.0",
"@ipld/car": "^5.3.0",
Expand All @@ -81,7 +81,7 @@
"@libp2p/websockets": "^9.0.0",
"@multiformats/sha3": "^3.0.2",
"aegir": "^44.0.1",
"helia": "^5.0.1",
"helia": "^5.1.0",
"ipfs-unixfs-importer": "^15.2.4",
"ipfsd-ctl": "^15.0.0",
"ipns": "^10.0.0",
Expand Down
7 changes: 7 additions & 0 deletions packages/routers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [2.1.0](https://github.com/ipfs/helia/compare/routers-v2.0.0...routers-v2.1.0) (2024-10-23)


### Features

* enable customising delegated http router ([#654](https://github.com/ipfs/helia/issues/654)) ([693c82d](https://github.com/ipfs/helia/commit/693c82d2117536d89b2e82d9c482ad807af2e1be))

## [2.0.0](https://github.com/ipfs/helia/compare/routers-v1.1.1...routers-v2.0.0) (2024-10-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/routers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/routers",
"version": "2.0.0",
"version": "2.1.0",
"description": "Routers for Helia",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/routers#readme",
Expand Down
7 changes: 7 additions & 0 deletions packages/utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## [1.0.1](https://github.com/ipfs/helia/compare/utils-v1.0.0...utils-v1.0.1) (2024-10-23)


### Bug Fixes

* remove redundant filter ([#663](https://github.com/ipfs/helia/issues/663)) ([efc47fa](https://github.com/ipfs/helia/commit/efc47fa081107d31a8985ed72b36a244385b55ca))

## [1.0.0](https://github.com/ipfs/helia/compare/utils-v0.3.3...utils-v1.0.0) (2024-10-07)


Expand Down
2 changes: 1 addition & 1 deletion packages/utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@helia/utils",
"version": "1.0.0",
"version": "1.0.1",
"description": "Shared code that implements the Helia API",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/utils#readme",
Expand Down

0 comments on commit da5d7ec

Please sign in to comment.