diff --git a/packages/interface-ipfs-core/CHANGELOG.md b/packages/interface-ipfs-core/CHANGELOG.md index 90be065d32..2212e69e3b 100644 --- a/packages/interface-ipfs-core/CHANGELOG.md +++ b/packages/interface-ipfs-core/CHANGELOG.md @@ -3,6 +3,23 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.150.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.149.0...interface-ipfs-core@0.150.0) (2021-08-17) + + +### Bug Fixes + +* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f)) +* throw error on missing input to add/addAll ([#3818](https://github.com/ipfs/js-ipfs/issues/3818)) ([1343708](https://github.com/ipfs/js-ipfs/commit/1343708f70d7298b6677555803d68ff282d89439)), closes [#3788](https://github.com/ipfs/js-ipfs/issues/3788) + + +### Features + +* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741) + + + + + # [0.149.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.148.0...interface-ipfs-core@0.149.0) (2021-08-11) diff --git a/packages/interface-ipfs-core/package.json b/packages/interface-ipfs-core/package.json index 2fabaa5842..e0fa46448b 100644 --- a/packages/interface-ipfs-core/package.json +++ b/packages/interface-ipfs-core/package.json @@ -1,6 +1,6 @@ { "name": "interface-ipfs-core", - "version": "0.149.0", + "version": "0.150.0", "description": "A test suite and interface you can use to implement a IPFS core interface.", "leadMaintainer": "Alex Potsides ", "main": "src/index.js", diff --git a/packages/ipfs-cli/CHANGELOG.md b/packages/ipfs-cli/CHANGELOG.md index f3072b1ef2..6034f386d0 100644 --- a/packages/ipfs-cli/CHANGELOG.md +++ b/packages/ipfs-cli/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.1](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.8.0...ipfs-cli@0.8.1) (2021-08-17) + + +### Bug Fixes + +* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f)) + + + + + # [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.7.1...ipfs-cli@0.8.0) (2021-08-11) diff --git a/packages/ipfs-cli/package.json b/packages/ipfs-cli/package.json index a1b2f12d0c..bdb68f27b2 100644 --- a/packages/ipfs-cli/package.json +++ b/packages/ipfs-cli/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-cli", - "version": "0.8.0", + "version": "0.8.1", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -37,11 +37,11 @@ "err-code": "^3.0.1", "execa": "^5.0.0", "get-folder-size": "^2.0.1", - "ipfs-core": "^0.10.0", + "ipfs-core": "^0.10.1", "ipfs-core-types": "^0.7.0", - "ipfs-core-utils": "^0.10.0", - "ipfs-daemon": "^0.9.0", - "ipfs-http-client": "^52.0.0", + "ipfs-core-utils": "^0.10.1", + "ipfs-daemon": "^0.9.1", + "ipfs-http-client": "^52.0.1", "ipfs-repo": "^11.0.1", "ipfs-utils": "^8.1.4", "it-all": "^1.0.4", diff --git a/packages/ipfs-client/CHANGELOG.md b/packages/ipfs-client/CHANGELOG.md index bdec48d883..1dad74dba4 100644 --- a/packages/ipfs-client/CHANGELOG.md +++ b/packages/ipfs-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.6.1](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.6.0...ipfs-client@0.6.1) (2021-08-17) + +**Note:** Version bump only for package ipfs-client + + + + + # [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.5.1...ipfs-client@0.6.0) (2021-08-11) diff --git a/packages/ipfs-client/package.json b/packages/ipfs-client/package.json index 871927d085..e1fbc1bbcf 100644 --- a/packages/ipfs-client/package.json +++ b/packages/ipfs-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-client", - "version": "0.6.0", + "version": "0.6.1", "description": "A client library to talk to local IPFS daemons", "keywords": [ "ipfs" @@ -32,8 +32,8 @@ "dep-check": "aegir dep-check -i aegir -i rimraf" }, "dependencies": { - "ipfs-grpc-client": "^0.5.0", - "ipfs-http-client": "^52.0.0", + "ipfs-grpc-client": "^0.6.0", + "ipfs-http-client": "^52.0.1", "merge-options": "^3.0.4" }, "devDependencies": { diff --git a/packages/ipfs-core-utils/CHANGELOG.md b/packages/ipfs-core-utils/CHANGELOG.md index c12e984b6b..b568c27597 100644 --- a/packages/ipfs-core-utils/CHANGELOG.md +++ b/packages/ipfs-core-utils/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.10.0...ipfs-core-utils@0.10.1) (2021-08-17) + + +### Bug Fixes + +* throw error on missing input to add/addAll ([#3818](https://github.com/ipfs/js-ipfs/issues/3818)) ([1343708](https://github.com/ipfs/js-ipfs/commit/1343708f70d7298b6677555803d68ff282d89439)), closes [#3788](https://github.com/ipfs/js-ipfs/issues/3788) + + + + + # [0.10.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.9.1...ipfs-core-utils@0.10.0) (2021-08-11) diff --git a/packages/ipfs-core-utils/package.json b/packages/ipfs-core-utils/package.json index 51aceb52ff..080f9d61da 100644 --- a/packages/ipfs-core-utils/package.json +++ b/packages/ipfs-core-utils/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-core-utils", - "version": "0.10.0", + "version": "0.10.1", "description": "Package to share code between ipfs and ipfs-http-client", "author": "Alex Potsides ", "homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme", diff --git a/packages/ipfs-core/CHANGELOG.md b/packages/ipfs-core/CHANGELOG.md index 5b7fbdcfa2..e2bbcd9ba4 100644 --- a/packages/ipfs-core/CHANGELOG.md +++ b/packages/ipfs-core/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.10.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.10.0...ipfs-core@0.10.1) (2021-08-17) + + +### Bug Fixes + +* pass correct types to libp2p dht methods ([#3806](https://github.com/ipfs/js-ipfs/issues/3806)) ([5c8da9a](https://github.com/ipfs/js-ipfs/commit/5c8da9a703b8b043ebc670c6c5dcc7df4f687df7)), closes [#3502](https://github.com/ipfs/js-ipfs/issues/3502) +* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f)) +* use correct datastores ([#3820](https://github.com/ipfs/js-ipfs/issues/3820)) ([479e09e](https://github.com/ipfs/js-ipfs/commit/479e09e73c936c5770aa83e4d097b62c3987cf6f)) + + + + + # [0.10.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.9.1...ipfs-core@0.10.0) (2021-08-11) diff --git a/packages/ipfs-core/package.json b/packages/ipfs-core/package.json index 1f151bb629..776d1818c7 100644 --- a/packages/ipfs-core/package.json +++ b/packages/ipfs-core/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-core", - "version": "0.10.0", + "version": "0.10.1", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -76,8 +76,8 @@ "interface-datastore": "^5.0.0", "ipfs-bitswap": "^6.0.0", "ipfs-core-types": "^0.7.0", - "ipfs-core-utils": "^0.10.0", - "ipfs-http-client": "^52.0.0", + "ipfs-core-utils": "^0.10.1", + "ipfs-http-client": "^52.0.1", "ipfs-repo": "^11.0.1", "ipfs-unixfs": "^5.0.0", "ipfs-unixfs-exporter": "^6.0.2", @@ -135,7 +135,7 @@ "delay": "^5.0.0", "go-ipfs": "0.9.1", "interface-blockstore-tests": "^1.0.0", - "interface-ipfs-core": "^0.149.0", + "interface-ipfs-core": "^0.150.0", "ipfsd-ctl": "^10.0.3", "iso-url": "^1.0.0", "nanoid": "^3.1.12", diff --git a/packages/ipfs-daemon/CHANGELOG.md b/packages/ipfs-daemon/CHANGELOG.md index afe1bd8814..7203edc46d 100644 --- a/packages/ipfs-daemon/CHANGELOG.md +++ b/packages/ipfs-daemon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.9.1](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.9.0...ipfs-daemon@0.9.1) (2021-08-17) + +**Note:** Version bump only for package ipfs-daemon + + + + + # [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.8.1...ipfs-daemon@0.9.0) (2021-08-11) diff --git a/packages/ipfs-daemon/package.json b/packages/ipfs-daemon/package.json index 8b0d85deb4..7dea222036 100644 --- a/packages/ipfs-daemon/package.json +++ b/packages/ipfs-daemon/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-daemon", - "version": "0.9.0", + "version": "0.9.1", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -32,11 +32,11 @@ "dependencies": { "@mapbox/node-pre-gyp": "^1.0.5", "debug": "^4.1.1", - "ipfs-core": "^0.10.0", + "ipfs-core": "^0.10.1", "ipfs-core-types": "^0.7.0", - "ipfs-grpc-server": "^0.5.0", + "ipfs-grpc-server": "^0.6.0", "ipfs-http-gateway": "^0.6.0", - "ipfs-http-server": "^0.7.0", + "ipfs-http-server": "^0.7.1", "ipfs-utils": "^8.1.4", "just-safe-set": "^2.2.1", "libp2p": "^0.32.0", diff --git a/packages/ipfs-grpc-client/CHANGELOG.md b/packages/ipfs-grpc-client/CHANGELOG.md index a6c281d805..6e340d54e3 100644 --- a/packages/ipfs-grpc-client/CHANGELOG.md +++ b/packages/ipfs-grpc-client/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.5.0...ipfs-grpc-client@0.6.0) (2021-08-17) + + +### Features + +* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741) + + + + + # [0.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.4.1...ipfs-grpc-client@0.5.0) (2021-08-11) diff --git a/packages/ipfs-grpc-client/package.json b/packages/ipfs-grpc-client/package.json index 72b533e379..2da6d764cb 100644 --- a/packages/ipfs-grpc-client/package.json +++ b/packages/ipfs-grpc-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-grpc-client", - "version": "0.5.0", + "version": "0.6.0", "description": "A client library for the IPFS gRPC API", "keywords": [ "ipfs" @@ -37,8 +37,8 @@ "debug": "^4.1.1", "err-code": "^3.0.1", "ipfs-core-types": "^0.7.0", - "ipfs-core-utils": "^0.10.0", - "ipfs-grpc-protocol": "^0.3.0", + "ipfs-core-utils": "^0.10.1", + "ipfs-grpc-protocol": "^0.4.0", "ipfs-unixfs": "^5.0.0", "it-first": "^1.0.4", "it-pushable": "^1.4.2", diff --git a/packages/ipfs-grpc-protocol/CHANGELOG.md b/packages/ipfs-grpc-protocol/CHANGELOG.md index b5b48f9539..4941818408 100644 --- a/packages/ipfs-grpc-protocol/CHANGELOG.md +++ b/packages/ipfs-grpc-protocol/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.4.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-protocol@0.3.0...ipfs-grpc-protocol@0.4.0) (2021-08-17) + + +### Features + +* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741) + + + + + # [0.3.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-protocol@0.2.0...ipfs-grpc-protocol@0.3.0) (2021-05-10) diff --git a/packages/ipfs-grpc-protocol/package.json b/packages/ipfs-grpc-protocol/package.json index a6c427a478..62b837f2b0 100644 --- a/packages/ipfs-grpc-protocol/package.json +++ b/packages/ipfs-grpc-protocol/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-grpc-protocol", - "version": "0.3.0", + "version": "0.4.0", "description": "Protobuf definitions for the IPFS gRPC API", "keywords": [ "ipfs" diff --git a/packages/ipfs-grpc-server/CHANGELOG.md b/packages/ipfs-grpc-server/CHANGELOG.md index 48ef2acffb..bce42e1ce5 100644 --- a/packages/ipfs-grpc-server/CHANGELOG.md +++ b/packages/ipfs-grpc-server/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.5.0...ipfs-grpc-server@0.6.0) (2021-08-17) + + +### Features + +* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741) + + + + + # [0.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-server@0.4.1...ipfs-grpc-server@0.5.0) (2021-08-11) diff --git a/packages/ipfs-grpc-server/package.json b/packages/ipfs-grpc-server/package.json index 9bad04f233..353a7eda76 100644 --- a/packages/ipfs-grpc-server/package.json +++ b/packages/ipfs-grpc-server/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-grpc-server", - "version": "0.5.0", + "version": "0.6.0", "description": "A server library for the IPFS gRPC API", "keywords": [ "ipfs" @@ -35,7 +35,7 @@ "coercer": "^1.1.2", "debug": "^4.1.1", "ipfs-core-types": "^0.7.0", - "ipfs-grpc-protocol": "^0.3.0", + "ipfs-grpc-protocol": "^0.4.0", "it-first": "^1.0.4", "it-map": "^1.0.4", "it-peekable": "^1.0.2", @@ -49,7 +49,7 @@ "devDependencies": { "@types/ws": "^7.4.0", "aegir": "^34.0.2", - "ipfs-core": "^0.10.0", + "ipfs-core": "^0.10.1", "it-all": "^1.0.4", "it-drain": "^1.0.3", "rimraf": "^3.0.2", diff --git a/packages/ipfs-http-client/CHANGELOG.md b/packages/ipfs-http-client/CHANGELOG.md index d96c70dda1..fbc3ed9238 100644 --- a/packages/ipfs-http-client/CHANGELOG.md +++ b/packages/ipfs-http-client/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [52.0.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@52.0.0...ipfs-http-client@52.0.1) (2021-08-17) + + +### Bug Fixes + +* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f)) + + + + + # [52.0.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@51.0.1...ipfs-http-client@52.0.0) (2021-08-11) diff --git a/packages/ipfs-http-client/package.json b/packages/ipfs-http-client/package.json index 28d4ec5efa..a95eeab886 100644 --- a/packages/ipfs-http-client/package.json +++ b/packages/ipfs-http-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-http-client", - "version": "52.0.0", + "version": "52.0.1", "description": "A client library for the IPFS HTTP API", "keywords": [ "ipfs" @@ -52,7 +52,7 @@ "err-code": "^3.0.1", "form-data": "^4.0.0", "ipfs-core-types": "^0.7.0", - "ipfs-core-utils": "^0.10.0", + "ipfs-core-utils": "^0.10.1", "ipfs-utils": "^8.1.4", "it-first": "^1.0.6", "it-last": "^1.0.4", diff --git a/packages/ipfs-http-server/CHANGELOG.md b/packages/ipfs-http-server/CHANGELOG.md index 946c98609a..abd36154ab 100644 --- a/packages/ipfs-http-server/CHANGELOG.md +++ b/packages/ipfs-http-server/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.7.1](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.7.0...ipfs-http-server@0.7.1) (2021-08-17) + +**Note:** Version bump only for package ipfs-http-server + + + + + # [0.7.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.6.1...ipfs-http-server@0.7.0) (2021-08-11) diff --git a/packages/ipfs-http-server/package.json b/packages/ipfs-http-server/package.json index 87b3fbd3f5..61d83117ce 100644 --- a/packages/ipfs-http-server/package.json +++ b/packages/ipfs-http-server/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-http-server", - "version": "0.7.0", + "version": "0.7.1", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -40,7 +40,7 @@ "err-code": "^3.0.1", "hapi-pino": "^8.3.0", "ipfs-core-types": "^0.7.0", - "ipfs-core-utils": "^0.10.0", + "ipfs-core-utils": "^0.10.1", "ipfs-http-gateway": "^0.6.0", "ipfs-unixfs": "^5.0.0", "it-all": "^1.0.4", @@ -69,7 +69,7 @@ "@types/hapi__hapi": "^20.0.5", "aegir": "^34.0.2", "form-data": "^4.0.0", - "ipfs-http-client": "^52.0.0", + "ipfs-http-client": "^52.0.1", "iso-random-stream": "^2.0.0", "it-to-buffer": "^2.0.0", "qs": "^6.9.4", diff --git a/packages/ipfs-message-port-client/CHANGELOG.md b/packages/ipfs-message-port-client/CHANGELOG.md index 5112e523b9..c748c62d62 100644 --- a/packages/ipfs-message-port-client/CHANGELOG.md +++ b/packages/ipfs-message-port-client/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [0.8.1](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.8.0...ipfs-message-port-client@0.8.1) (2021-08-17) + +**Note:** Version bump only for package ipfs-message-port-client + + + + + # [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.7.1...ipfs-message-port-client@0.8.0) (2021-08-11) diff --git a/packages/ipfs-message-port-client/package.json b/packages/ipfs-message-port-client/package.json index 4e6e02d32f..d984361e09 100644 --- a/packages/ipfs-message-port-client/package.json +++ b/packages/ipfs-message-port-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-message-port-client", - "version": "0.8.0", + "version": "0.8.1", "description": "IPFS client library for accessing IPFS node over message port", "keywords": [ "ipfs", @@ -41,8 +41,8 @@ }, "devDependencies": { "aegir": "^34.0.2", - "interface-ipfs-core": "^0.149.0", - "ipfs-core": "^0.10.0", + "interface-ipfs-core": "^0.150.0", + "ipfs-core": "^0.10.1", "ipfs-message-port-server": "^0.9.0", "rimraf": "^3.0.2" }, diff --git a/packages/ipfs/CHANGELOG.md b/packages/ipfs/CHANGELOG.md index 77a9dee9c6..632f1e9055 100644 --- a/packages/ipfs/CHANGELOG.md +++ b/packages/ipfs/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.58.0](https://github.com/ipfs/js-ipfs/compare/ipfs@0.57.0...ipfs@0.58.0) (2021-08-17) + + +### Features + +* pubsub over gRPC ([#3813](https://github.com/ipfs/js-ipfs/issues/3813)) ([e7d5509](https://github.com/ipfs/js-ipfs/commit/e7d5509c87e87aed6be3c1d0b2a01ab74cdc1ed9)), closes [#3741](https://github.com/ipfs/js-ipfs/issues/3741) + + + + + # [0.57.0](https://github.com/ipfs/js-ipfs/compare/ipfs@0.56.1...ipfs@0.57.0) (2021-08-11) diff --git a/packages/ipfs/package.json b/packages/ipfs/package.json index ed92890aba..307b6c2031 100644 --- a/packages/ipfs/package.json +++ b/packages/ipfs/package.json @@ -1,6 +1,6 @@ { "name": "ipfs", - "version": "0.57.0", + "version": "0.58.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -39,8 +39,8 @@ }, "dependencies": { "debug": "^4.1.1", - "ipfs-cli": "^0.8.0", - "ipfs-core": "^0.10.0", + "ipfs-cli": "^0.8.1", + "ipfs-core": "^0.10.1", "semver": "^7.3.2", "update-notifier": "^5.0.0" }, @@ -52,10 +52,10 @@ "cross-env": "^7.0.0", "electron-webrtc": "^0.3.0", "go-ipfs": "0.9.1", - "interface-ipfs-core": "^0.149.0", - "ipfs-client": "^0.6.0", + "interface-ipfs-core": "^0.150.0", + "ipfs-client": "^0.6.1", "ipfs-core-types": "^0.7.0", - "ipfs-http-client": "^52.0.0", + "ipfs-http-client": "^52.0.1", "ipfs-interop": "^6.0.1", "ipfs-utils": "^8.1.4", "ipfsd-ctl": "^10.0.3",