Skip to content

Commit

Permalink
chore: release main
Browse files Browse the repository at this point in the history
  • Loading branch information
achingbrain committed Jan 18, 2024
1 parent 031519c commit d8bad98
Show file tree
Hide file tree
Showing 31 changed files with 374 additions and 62 deletions.
28 changes: 15 additions & 13 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,17 @@
{
"packages/block-brokers": "1.0.0",
"packages/car": "2.0.1",
"packages/dag-cbor": "2.0.1",
"packages/dag-json": "2.0.1",
"packages/helia": "3.0.1",
"packages/interface": "3.0.1",
"packages/interop": "3.0.1",
"packages/ipns": "4.0.0",
"packages/json": "2.0.1",
"packages/mfs": "2.0.1",
"packages/strings": "2.0.1",
"packages/unixfs": "2.0.1",
"packages/utils": "0.0.0"
"packages/block-brokers": "2.0.0",
"packages/car": "3.0.0",
"packages/dag-cbor": "3.0.0",
"packages/dag-json": "3.0.0",
"packages/helia": "4.0.0",
"packages/interface": "4.0.0",
"packages/interop": "4.0.0",
"packages/ipns": "5.0.0",
"packages/json": "3.0.0",
"packages/mfs": "3.0.0",
"packages/strings": "3.0.0",
"packages/unixfs": "3.0.0",
"packages/utils": "0.0.1",
"packages/http": "1.0.0",
"packages/routers": "1.0.0"
}
19 changes: 19 additions & 0 deletions packages/block-brokers/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

## [2.0.0](https://github.com/ipfs/helia/compare/block-brokers-v1.0.0...block-brokers-v2.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))
* expose configured dag walkers and hashers on helia interface ([#381](https://github.com/ipfs/helia/issues/381)) ([843fba4](https://github.com/ipfs/helia/commit/843fba467ebb032907c888da499147a5349ec10e)), closes [#375](https://github.com/ipfs/helia/issues/375)


### Dependencies

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

## 1.0.0 (2024-01-09)


Expand Down
4 changes: 2 additions & 2 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": "1.0.0",
"version": "2.0.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,7 +53,7 @@
"test:electron-main": "aegir test -t electron-main"
},
"dependencies": {
"@helia/interface": "^3.0.1",
"@helia/interface": "^4.0.0",
"@libp2p/interface": "^1.1.1",
"interface-blockstore": "^5.2.7",
"ipfs-bitswap": "^20.0.0",
Expand Down
21 changes: 21 additions & 0 deletions packages/car/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,27 @@
* devDependencies
* @helia/unixfs bumped from ^2.0.0 to ^2.0.1

## [3.0.0](https://github.com/ipfs/helia/compare/car-v2.0.1...car-v3.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))
* expose configured dag walkers and hashers on helia interface ([#381](https://github.com/ipfs/helia/issues/381)) ([843fba4](https://github.com/ipfs/helia/commit/843fba467ebb032907c888da499147a5349ec10e)), closes [#375](https://github.com/ipfs/helia/issues/375)


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/interface bumped from ^3.0.1 to ^4.0.0
* devDependencies
* @helia/unixfs bumped from ^2.0.1 to ^3.0.0

## [@helia/car-v1.0.4](https://github.com/ipfs/helia-car/compare/@helia/car-v1.0.3...@helia/car-v1.0.4) (2023-10-07)


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": "2.0.1",
"version": "3.0.0",
"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": "^3.0.1",
"@helia/interface": "^4.0.0",
"@ipld/car": "^5.2.5",
"@libp2p/interfaces": "^3.3.1",
"it-drain": "^3.0.5",
Expand All @@ -150,7 +150,7 @@
"progress-events": "^1.0.0"
},
"devDependencies": {
"@helia/unixfs": "^2.0.1",
"@helia/unixfs": "^3.0.0",
"@ipld/dag-pb": "^4.0.8",
"aegir": "^42.1.0",
"blockstore-core": "^4.3.10",
Expand Down
18 changes: 18 additions & 0 deletions packages/dag-cbor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@
* dependencies
* @helia/interface bumped from ^3.0.0 to ^3.0.1

## [3.0.0](https://github.com/ipfs/helia/compare/dag-cbor-v2.0.1...dag-cbor-v3.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))


### Dependencies

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

## [@helia/dag-cbor-v1.0.3](https://github.com/ipfs/helia-dag-cbor/compare/@helia/dag-cbor-v1.0.2...@helia/dag-cbor-v1.0.3) (2023-10-07)


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": "2.0.1",
"version": "3.0.0",
"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": "^3.0.1",
"@helia/interface": "^4.0.0",
"@ipld/dag-cbor": "^9.0.7",
"@libp2p/interfaces": "^3.3.1",
"multiformats": "^13.0.0",
Expand Down
18 changes: 18 additions & 0 deletions packages/dag-json/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,24 @@
* dependencies
* @helia/interface bumped from ^3.0.0 to ^3.0.1

## [3.0.0](https://github.com/ipfs/helia/compare/dag-json-v2.0.1...dag-json-v3.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))


### Dependencies

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

## [@helia/dag-json-v1.0.3](https://github.com/ipfs/helia-dag-json/compare/@helia/dag-json-v1.0.2...@helia/dag-json-v1.0.3) (2023-10-07)


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": "2.0.1",
"version": "3.0.0",
"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": "^3.0.1",
"@helia/interface": "^4.0.0",
"@ipld/dag-json": "^10.1.5",
"@libp2p/interfaces": "^3.3.1",
"multiformats": "^13.0.0",
Expand Down
28 changes: 28 additions & 0 deletions packages/helia/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,34 @@
* **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))
* update sibling dependencies ([beb10b5](https://github.com/ipfs/helia/commit/beb10b5590d66d1d5bef9b5e890b888263df2c92))

## [4.0.0](https://github.com/ipfs/helia/compare/helia-v3.0.1...helia-v4.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))


### Bug Fixes

* ignore libp2p start param in helia factory ([#382](https://github.com/ipfs/helia/issues/382)) ([c8d2fac](https://github.com/ipfs/helia/commit/c8d2fac002ef73fc3eba83914de12d2e73074c64)), closes [#344](https://github.com/ipfs/helia/issues/344)
* update ipns module to v9 and fix double verification of records ([#396](https://github.com/ipfs/helia/issues/396)) ([f2853f8](https://github.com/ipfs/helia/commit/f2853f8bd5bdcee8ab7a685355b0be47f29620e0))


### Dependencies

* bump @chainsafe/libp2p-noise from 14.1.0 to 15.0.0 ([#393](https://github.com/ipfs/helia/issues/393)) ([4943c5b](https://github.com/ipfs/helia/commit/4943c5b7e8779bc326ee156b1d80152225189343))
* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^1.0.0 to ^2.0.0
* @helia/interface bumped from ^3.0.1 to ^4.0.0
* @helia/routers bumped from ^0.0.0 to ^1.0.0
* @helia/utils bumped from ^0.0.0 to ^0.0.1

## [3.0.1](https://github.com/ipfs/helia/compare/helia-v3.0.0...helia-v3.0.1) (2024-01-09)


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": "3.0.1",
"version": "4.0.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 @@
"@chainsafe/libp2p-gossipsub": "^11.0.0",
"@chainsafe/libp2p-noise": "^15.0.0",
"@chainsafe/libp2p-yamux": "^6.0.1",
"@helia/block-brokers": "^1.0.0",
"@helia/block-brokers": "^2.0.0",
"@helia/delegated-routing-v1-http-api-client": "^3.0.0",
"@helia/interface": "^3.0.1",
"@helia/routers": "^0.0.0",
"@helia/utils": "^0.0.0",
"@helia/interface": "^4.0.0",
"@helia/routers": "^1.0.0",
"@helia/utils": "^0.0.1",
"@libp2p/autonat": "^1.0.1",
"@libp2p/bootstrap": "^10.0.2",
"@libp2p/circuit-relay-v2": "^1.0.2",
Expand Down
22 changes: 22 additions & 0 deletions packages/http/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Changelog

## 1.0.0 (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^1.0.0 to ^2.0.0
* @helia/interface bumped from ^3.0.1 to ^4.0.0
* @helia/routers bumped from ^0.0.0 to ^1.0.0
* @helia/utils bumped from ^0.0.0 to ^0.0.1
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": "0.9.0",
"version": "1.0.0",
"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": "^1.0.0",
"@helia/interface": "^3.0.1",
"@helia/routers": "^0.0.0",
"@helia/utils": "^0.0.0",
"@helia/block-brokers": "^2.0.0",
"@helia/interface": "^4.0.0",
"@helia/routers": "^1.0.0",
"@helia/utils": "^0.0.1",
"blockstore-core": "^4.3.8",
"datastore-core": "^9.2.6"
},
Expand Down
17 changes: 17 additions & 0 deletions packages/interface/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,23 @@

* **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.0.0](https://github.com/ipfs/helia/compare/interface-v3.0.1...interface-v4.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))
* expose configured dag walkers and hashers on helia interface ([#381](https://github.com/ipfs/helia/issues/381)) ([843fba4](https://github.com/ipfs/helia/commit/843fba467ebb032907c888da499147a5349ec10e)), closes [#375](https://github.com/ipfs/helia/issues/375)


### Bug Fixes

* update ipns module to v9 and fix double verification of records ([#396](https://github.com/ipfs/helia/issues/396)) ([f2853f8](https://github.com/ipfs/helia/commit/f2853f8bd5bdcee8ab7a685355b0be47f29620e0))

## [3.0.1](https://github.com/ipfs/helia/compare/interface-v3.0.0...interface-v3.0.1) (2024-01-09)


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": "3.0.1",
"version": "4.0.0",
"description": "The Helia API",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/helia/tree/main/packages/interface#readme",
Expand Down
39 changes: 39 additions & 0 deletions packages/interop/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,44 @@
# Changelog

## [4.0.0](https://github.com/ipfs/helia/compare/interop-v3.0.1...interop-v4.0.0) (2024-01-18)


### ⚠ BREAKING CHANGES

* `helia.routing` is the default routing used, the `libp2p` routing has been removed as it is redundant
* the `libp2p` property has been removed from the `Helia` interface in `@helia/interface` - it is still present on the return type of `createHelia` from the `helia` module

### Features

* add @helia/http to monorepo ([#372](https://github.com/ipfs/helia/issues/372)) ([76220cd](https://github.com/ipfs/helia/commit/76220cd5adf45af7fa61fd0a1321de4722b744d6))
* export binary from @helia/interop ([#384](https://github.com/ipfs/helia/issues/384)) ([3477b27](https://github.com/ipfs/helia/commit/3477b2748d44a862e8afeae1a7a2668cdd8a7100))
* use helia router for IPNS put/get ([#387](https://github.com/ipfs/helia/issues/387)) ([ce74026](https://github.com/ipfs/helia/commit/ce740268e83f50e6f144b74969a98d54005cd852))


### Bug Fixes

* include aegir config in interop and run from install dir ([#389](https://github.com/ipfs/helia/issues/389)) ([a2229bd](https://github.com/ipfs/helia/commit/a2229bd79d5c8b805604bb24bad222462a9ed8cc))
* update ipns module to v9 and fix double verification of records ([#396](https://github.com/ipfs/helia/issues/396)) ([f2853f8](https://github.com/ipfs/helia/commit/f2853f8bd5bdcee8ab7a685355b0be47f29620e0))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* @helia/block-brokers bumped from ^1.0.0 to ^2.0.0
* @helia/car bumped from ^2.0.1 to ^3.0.0
* @helia/dag-cbor bumped from ^2.0.1 to ^3.0.0
* @helia/dag-json bumped from ^2.0.1 to ^3.0.0
* @helia/http bumped from ^0.9.0 to ^1.0.0
* @helia/interface bumped from ^3.0.1 to ^4.0.0
* @helia/ipns bumped from ^4.0.0 to ^5.0.0
* @helia/json bumped from ^2.0.1 to ^3.0.0
* @helia/mfs bumped from ^2.0.1 to ^3.0.0
* @helia/routers bumped from ^0.0.0 to ^1.0.0
* @helia/strings bumped from ^2.0.1 to ^3.0.0
* @helia/unixfs bumped from ^2.0.1 to ^3.0.0
* helia bumped from ^3.0.1 to ^4.0.0

## [3.0.1](https://github.com/ipfs/helia/compare/interop-v3.0.0...interop-v3.0.1) (2024-01-16)


Expand Down
Loading

0 comments on commit d8bad98

Please sign in to comment.