Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: release master (#4252)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
github-actions[bot] committed Jan 12, 2023
1 parent d1c3abb commit 6e94067
Show file tree
Hide file tree
Showing 39 changed files with 460 additions and 70 deletions.
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{"packages/interface-ipfs-core":"0.157.0","packages/ipfs":"0.65.0","packages/ipfs-cli":"0.15.0","packages/ipfs-client":"0.9.2","packages/ipfs-core":"0.17.0","packages/ipfs-core-config":"0.6.0","packages/ipfs-core-types":"0.13.0","packages/ipfs-core-utils":"0.17.0","packages/ipfs-daemon":"0.15.0","packages/ipfs-grpc-client":"0.12.0","packages/ipfs-grpc-protocol":"0.7.0","packages/ipfs-grpc-server":"0.11.0","packages/ipfs-http-client":"59.0.0","packages/ipfs-http-gateway":"0.12.0","packages/ipfs-http-response":"5.0.0","packages/ipfs-http-server":"0.14.0","packages/ipfs-message-port-client":"0.14.0","packages/ipfs-message-port-protocol":"0.14.0","packages/ipfs-message-port-server":"0.14.0"}
{"packages/interface-ipfs-core":"0.158.0","packages/ipfs":"0.66.0","packages/ipfs-cli":"0.16.0","packages/ipfs-client":"0.10.0","packages/ipfs-core":"0.18.0","packages/ipfs-core-config":"0.7.0","packages/ipfs-core-types":"0.14.0","packages/ipfs-core-utils":"0.18.0","packages/ipfs-daemon":"0.16.0","packages/ipfs-grpc-client":"0.13.0","packages/ipfs-grpc-protocol":"0.8.0","packages/ipfs-grpc-server":"0.12.0","packages/ipfs-http-client":"60.0.0","packages/ipfs-http-gateway":"0.13.0","packages/ipfs-http-response":"6.0.0","packages/ipfs-http-server":"0.15.0","packages/ipfs-message-port-client":"0.15.0","packages/ipfs-message-port-protocol":"0.15.0","packages/ipfs-message-port-server":"0.15.0"}
22 changes: 22 additions & 0 deletions packages/interface-ipfs-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,28 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.158.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.157.0...interface-ipfs-core-v0.158.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* allow reading rawLeaves in MFS ([#4282](https://www.github.com/ipfs/js-ipfs/issues/4282)) ([0cfcaf6](https://www.github.com/ipfs/js-ipfs/commit/0cfcaf65998bdc2af0cc29ac48229bb3bc35c5b8))
* disallow publishing pubsub messages to zero peers ([#4286](https://www.github.com/ipfs/js-ipfs/issues/4286)) ([fa578ba](https://www.github.com/ipfs/js-ipfs/commit/fa578bace93e459849a0ffcebbd6f222dc05652d))
* mfs blob import for files larger than 262144b ([#4251](https://www.github.com/ipfs/js-ipfs/issues/4251)) ([6be5906](https://www.github.com/ipfs/js-ipfs/commit/6be59068cc99c517526bfa123ad475ae05fcbaef)), closes [#3601](https://www.github.com/ipfs/js-ipfs/issues/3601) [#3576](https://www.github.com/ipfs/js-ipfs/issues/3576)
* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-core-types bumped from ^0.13.0 to ^0.14.0

## [0.157.0](https://www.github.com/ipfs/js-ipfs/compare/interface-ipfs-core-v0.156.1...interface-ipfs-core-v0.157.0) (2022-10-24)


Expand Down
4 changes: 2 additions & 2 deletions packages/interface-ipfs-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "interface-ipfs-core",
"version": "0.157.0",
"version": "0.158.0",
"description": "A test suite and interface you can use to implement a IPFS core interface.",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/interface-ipfs-core#readme",
Expand Down Expand Up @@ -84,7 +84,7 @@
"delay": "^5.0.0",
"did-jwt": "^6.2.0",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.13.0",
"ipfs-core-types": "^0.14.0",
"ipfs-unixfs": "^9.0.0",
"ipfs-unixfs-importer": "^12.0.0",
"ipfs-utils": "^9.0.13",
Expand Down
23 changes: 23 additions & 0 deletions packages/ipfs-cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.16.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-cli-v0.15.0...ipfs-cli-v0.16.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-core bumped from ^0.17.0 to ^0.18.0
* ipfs-core-types bumped from ^0.13.0 to ^0.14.0
* ipfs-core-utils bumped from ^0.17.0 to ^0.18.0
* ipfs-daemon bumped from ^0.15.0 to ^0.16.0
* ipfs-http-client bumped from ^59.0.0 to ^60.0.0

## [0.15.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-cli-v0.14.2...ipfs-cli-v0.15.0) (2022-10-24)


Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-cli",
"version": "0.15.0",
"version": "0.16.0",
"description": "JavaScript implementation of the IPFS specification",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-cli#readme",
Expand Down Expand Up @@ -78,11 +78,11 @@
"byteman": "^1.3.5",
"execa": "^6.1.0",
"get-folder-size": "^4.0.0",
"ipfs-core": "^0.17.0",
"ipfs-core-types": "^0.13.0",
"ipfs-core-utils": "^0.17.0",
"ipfs-daemon": "^0.15.0",
"ipfs-http-client": "^59.0.0",
"ipfs-core": "^0.18.0",
"ipfs-core-types": "^0.14.0",
"ipfs-core-utils": "^0.18.0",
"ipfs-daemon": "^0.16.0",
"ipfs-http-client": "^60.0.0",
"ipfs-utils": "^9.0.13",
"it-concat": "^3.0.1",
"it-merge": "^2.0.0",
Expand Down
22 changes: 21 additions & 1 deletion packages/ipfs-client/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.10.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-client-v0.9.2...ipfs-client-v0.10.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-grpc-client bumped from ^0.12.0 to ^0.13.0
* ipfs-http-client bumped from ^59.0.0 to ^60.0.0

### [0.9.2](https://www.github.com/ipfs/js-ipfs/compare/ipfs-client-v0.9.1...ipfs-client-v0.9.2) (2022-10-24)


Expand Down Expand Up @@ -396,4 +416,4 @@ Co-authored-by: achingbrain <alex@achingbrain.net>
### Features

* add grpc server and client ([#3403](https://github.com/ipfs/js-ipfs/issues/3403)) ([a9027e0](https://github.com/ipfs/js-ipfs/commit/a9027e0ec0cea9a4f34b4f2f52e09abb35237384)), closes [#2519](https://github.com/ipfs/js-ipfs/issues/2519) [#2838](https://github.com/ipfs/js-ipfs/issues/2838) [#2943](https://github.com/ipfs/js-ipfs/issues/2943) [#2854](https://github.com/ipfs/js-ipfs/issues/2854) [#2864](https://github.com/ipfs/js-ipfs/issues/2864)
* allow passing a http.Agent to the grpc client ([#3477](https://github.com/ipfs/js-ipfs/issues/3477)) ([c5f0bc5](https://github.com/ipfs/js-ipfs/commit/c5f0bc5eeee15369b7d02901035b04184a8608d2)), closes [#3474](https://github.com/ipfs/js-ipfs/issues/3474)
* allow passing a http.Agent to the grpc client ([#3477](https://github.com/ipfs/js-ipfs/issues/3477)) ([c5f0bc5](https://github.com/ipfs/js-ipfs/commit/c5f0bc5eeee15369b7d02901035b04184a8608d2)), closes [#3474](https://github.com/ipfs/js-ipfs/issues/3474)
6 changes: 3 additions & 3 deletions packages/ipfs-client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-client",
"version": "0.9.2",
"version": "0.10.0",
"description": "A client library to talk to local IPFS daemons",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-client#readme",
Expand Down Expand Up @@ -61,8 +61,8 @@
"dep-check": "aegir dep-check -i aegir"
},
"dependencies": {
"ipfs-grpc-client": "^0.12.0",
"ipfs-http-client": "^59.0.0",
"ipfs-grpc-client": "^0.13.0",
"ipfs-http-client": "^60.0.0",
"merge-options": "^3.0.4"
},
"devDependencies": {
Expand Down
20 changes: 20 additions & 0 deletions packages/ipfs-core-config/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,26 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.7.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-config-v0.6.0...ipfs-core-config-v0.7.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* disallow publishing pubsub messages to zero peers ([#4286](https://www.github.com/ipfs/js-ipfs/issues/4286)) ([fa578ba](https://www.github.com/ipfs/js-ipfs/commit/fa578bace93e459849a0ffcebbd6f222dc05652d))
* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* devDependencies
* ipfs-core-utils bumped from ^0.17.0 to ^0.18.0

## [0.6.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-config-v0.5.1...ipfs-core-config-v0.6.0) (2022-10-24)


Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-config",
"version": "0.6.0",
"version": "0.7.0",
"description": "Package to store node and browser specific config for ipfs-core",
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "Apache-2.0 OR MIT",
Expand Down Expand Up @@ -119,6 +119,6 @@
},
"devDependencies": {
"aegir": "^37.11.0",
"ipfs-core-utils": "^0.17.0"
"ipfs-core-utils": "^0.18.0"
}
}
12 changes: 12 additions & 0 deletions packages/ipfs-core-types/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.


## [0.14.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-types-v0.13.0...ipfs-core-types-v0.14.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))

## [0.13.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-types-v0.12.1...ipfs-core-types-v0.13.0) (2022-10-24)


Expand Down
2 changes: 1 addition & 1 deletion packages/ipfs-core-types/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-types",
"version": "0.13.0",
"version": "0.14.0",
"description": "IPFS interface definitions used by implementations for API compatibility.",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-types#readme",
Expand Down
19 changes: 19 additions & 0 deletions packages/ipfs-core-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.


## [0.18.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-utils-v0.17.0...ipfs-core-utils-v0.18.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-core-types bumped from ^0.13.0 to ^0.14.0

## [0.17.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-utils-v0.16.1...ipfs-core-utils-v0.17.0) (2022-10-24)


Expand Down
4 changes: 2 additions & 2 deletions packages/ipfs-core-utils/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core-utils",
"version": "0.17.0",
"version": "0.18.0",
"description": "Package to share code between ipfs and ipfs-http-client",
"author": "Alex Potsides <alex@achingbrain.net>",
"license": "Apache-2.0 OR MIT",
Expand Down Expand Up @@ -147,7 +147,7 @@
"blob-to-it": "^2.0.0",
"browser-readablestream-to-it": "^2.0.0",
"err-code": "^3.0.1",
"ipfs-core-types": "^0.13.0",
"ipfs-core-types": "^0.14.0",
"ipfs-unixfs": "^9.0.0",
"ipfs-utils": "^9.0.13",
"it-all": "^2.0.0",
Expand Down
26 changes: 26 additions & 0 deletions packages/ipfs-core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,32 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.18.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-v0.17.0...ipfs-core-v0.18.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* allow reading rawLeaves in MFS ([#4282](https://www.github.com/ipfs/js-ipfs/issues/4282)) ([0cfcaf6](https://www.github.com/ipfs/js-ipfs/commit/0cfcaf65998bdc2af0cc29ac48229bb3bc35c5b8))
* mfs blob import for files larger than 262144b ([#4251](https://www.github.com/ipfs/js-ipfs/issues/4251)) ([6be5906](https://www.github.com/ipfs/js-ipfs/commit/6be59068cc99c517526bfa123ad475ae05fcbaef)), closes [#3601](https://www.github.com/ipfs/js-ipfs/issues/3601) [#3576](https://www.github.com/ipfs/js-ipfs/issues/3576)
* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-core-config bumped from ^0.6.0 to ^0.7.0
* ipfs-core-types bumped from ^0.13.0 to ^0.14.0
* ipfs-core-utils bumped from ^0.17.0 to ^0.18.0
* ipfs-http-client bumped from ^59.0.0 to ^60.0.0
* devDependencies
* interface-ipfs-core bumped from ^0.157.0 to ^0.158.0

## [0.17.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-core-v0.16.1...ipfs-core-v0.17.0) (2022-10-24)


Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-core",
"version": "0.17.0",
"version": "0.18.0",
"description": "JavaScript implementation of the IPFS specification",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core#readme",
Expand Down Expand Up @@ -113,10 +113,10 @@
"interface-blockstore": "^4.0.0",
"interface-datastore": "^7.0.0",
"ipfs-bitswap": "^15.0.0",
"ipfs-core-config": "^0.6.0",
"ipfs-core-types": "^0.13.0",
"ipfs-core-utils": "^0.17.0",
"ipfs-http-client": "^59.0.0",
"ipfs-core-config": "^0.7.0",
"ipfs-core-types": "^0.14.0",
"ipfs-core-utils": "^0.18.0",
"ipfs-http-client": "^60.0.0",
"ipfs-repo": "^17.0.0",
"ipfs-unixfs": "^9.0.0",
"ipfs-unixfs-exporter": "^10.0.0",
Expand Down Expand Up @@ -157,7 +157,7 @@
"delay": "^5.0.0",
"go-ipfs": "^0.12.0",
"interface-blockstore-tests": "^4.0.0",
"interface-ipfs-core": "^0.157.0",
"interface-ipfs-core": "^0.158.0",
"ipfsd-ctl": "^12.0.3",
"iso-url": "^1.0.0",
"it-all": "^2.0.0",
Expand Down
23 changes: 23 additions & 0 deletions packages/ipfs-daemon/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,29 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [0.16.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-daemon-v0.15.0...ipfs-daemon-v0.16.0) (2023-01-11)


### ⚠ BREAKING CHANGES

* update multiformats to v11.x.x and related depenendcies (#4277)

### Bug Fixes

* update multiformats to v11.x.x and related depenendcies ([#4277](https://www.github.com/ipfs/js-ipfs/issues/4277)) ([521c84a](https://www.github.com/ipfs/js-ipfs/commit/521c84a958b04d61702577a5adce28519c1b2a3b))
* use aegir to publish RCs ([#4284](https://www.github.com/ipfs/js-ipfs/issues/4284)) ([6d90cbf](https://www.github.com/ipfs/js-ipfs/commit/6d90cbf321a7dbf4b1084ba20f0c514dc08d8d0a))


### Dependencies

* The following workspace dependencies were updated
* dependencies
* ipfs-core bumped from ^0.17.0 to ^0.18.0
* ipfs-core-types bumped from ^0.13.0 to ^0.14.0
* ipfs-grpc-server bumped from ^0.11.0 to ^0.12.0
* ipfs-http-gateway bumped from ^0.12.0 to ^0.13.0
* ipfs-http-server bumped from ^0.14.0 to ^0.15.0

## [0.15.0](https://www.github.com/ipfs/js-ipfs/compare/ipfs-daemon-v0.14.2...ipfs-daemon-v0.15.0) (2022-10-24)


Expand Down
12 changes: 6 additions & 6 deletions packages/ipfs-daemon/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ipfs-daemon",
"version": "0.15.0",
"version": "0.16.0",
"description": "JavaScript implementation of the IPFS specification",
"license": "Apache-2.0 OR MIT",
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-daemon#readme",
Expand Down Expand Up @@ -66,11 +66,11 @@
"@libp2p/logger": "^2.0.0",
"@libp2p/webrtc-star": "^6.0.0",
"@mapbox/node-pre-gyp": "^1.0.5",
"ipfs-core": "^0.17.0",
"ipfs-core-types": "^0.13.0",
"ipfs-grpc-server": "^0.11.0",
"ipfs-http-gateway": "^0.12.0",
"ipfs-http-server": "^0.14.0",
"ipfs-core": "^0.18.0",
"ipfs-core-types": "^0.14.0",
"ipfs-grpc-server": "^0.12.0",
"ipfs-http-gateway": "^0.13.0",
"ipfs-http-server": "^0.15.0",
"ipfs-utils": "^9.0.13",
"libp2p": "^0.42.0"
},
Expand Down

0 comments on commit 6e94067

Please sign in to comment.