diff --git a/packages/interface-ipfs-core/CHANGELOG.md b/packages/interface-ipfs-core/CHANGELOG.md index df29d00234..b0f9736220 100644 --- a/packages/interface-ipfs-core/CHANGELOG.md +++ b/packages/interface-ipfs-core/CHANGELOG.md @@ -3,6 +3,30 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.143.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.142.3...interface-ipfs-core@0.143.0) (2021-01-15) + + +### chore + +* update libp2p to 0.30 ([#3427](https://github.com/ipfs/js-ipfs/issues/3427)) ([a39e6fb](https://github.com/ipfs/js-ipfs/commit/a39e6fb372bf9e7782462b6a4b7530a3f8c9b3f1)) + + +### 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) + + +### BREAKING CHANGES + +* The websocket transport will only dial DNS+WSS addresses - see https://github.com/libp2p/js-libp2p-websockets/releases/tag/v0.15.0 + +Co-authored-by: Hugo Dias + + + + + ## [0.142.3](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.142.2...interface-ipfs-core@0.142.3) (2020-12-16) diff --git a/packages/interface-ipfs-core/package.json b/packages/interface-ipfs-core/package.json index 46c880774f..f0713f9b9d 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.142.3", + "version": "0.143.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 8614cf9b3e..142dd3a893 100644 --- a/packages/ipfs-cli/CHANGELOG.md +++ b/packages/ipfs-cli/CHANGELOG.md @@ -3,6 +3,18 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.3.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.2.3...ipfs-cli@0.3.0) (2021-01-15) + + +### 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) + + + + + ## [0.2.3](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.2.2...ipfs-cli@0.2.3) (2020-12-16) diff --git a/packages/ipfs-cli/package.json b/packages/ipfs-cli/package.json index cb472d96e1..1ed1d240a1 100644 --- a/packages/ipfs-cli/package.json +++ b/packages/ipfs-cli/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-cli", - "version": "0.2.3", + "version": "0.3.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -37,10 +37,10 @@ "err-code": "^2.0.3", "execa": "^5.0.0", "get-folder-size": "^2.0.1", - "ipfs-core": "^0.3.1", - "ipfs-core-utils": "^0.5.4", - "ipfs-daemon": "^0.3.2", - "ipfs-http-client": "^48.1.3", + "ipfs-core": "^0.4.0", + "ipfs-core-utils": "^0.6.0", + "ipfs-daemon": "^0.4.0", + "ipfs-http-client": "^48.2.0", "ipfs-repo": "^7.0.0", "ipfs-utils": "^5.0.0", "ipld-dag-cbor": "^0.17.0", diff --git a/packages/ipfs-client/CHANGELOG.md b/packages/ipfs-client/CHANGELOG.md new file mode 100644 index 0000000000..ec63010151 --- /dev/null +++ b/packages/ipfs-client/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.2.0 (2021-01-15) + + +### 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) diff --git a/packages/ipfs-client/package.json b/packages/ipfs-client/package.json index 1d3816a805..4717014a02 100644 --- a/packages/ipfs-client/package.json +++ b/packages/ipfs-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-client", - "version": "0.1.0", + "version": "0.2.0", "description": "A client library to talk to local IPFS daemons", "keywords": [ "ipfs" @@ -37,8 +37,8 @@ "dep-check": "aegir dep-check -i aegir -i typescript -i rimraf" }, "dependencies": { - "ipfs-grpc-client": "0.0.0", - "ipfs-http-client": "^48.1.0", + "ipfs-grpc-client": "^0.1.0", + "ipfs-http-client": "^48.2.0", "merge-options": "^2.0.0" }, "devDependencies": { diff --git a/packages/ipfs-core-types/CHANGELOG.md b/packages/ipfs-core-types/CHANGELOG.md new file mode 100644 index 0000000000..80edd5481c --- /dev/null +++ b/packages/ipfs-core-types/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.2.0 (2021-01-15) + + +### Features + +* 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) diff --git a/packages/ipfs-core-types/package.json b/packages/ipfs-core-types/package.json index 1061d8c6bc..f6618ac622 100644 --- a/packages/ipfs-core-types/package.json +++ b/packages/ipfs-core-types/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-core-types", - "version": "0.1.0", + "version": "0.2.0", "description": "IPFS interface definitions used by implementations for API compatibility.", "leadMaintainer": "Alex Potsides ", "types": "src/index.ts", @@ -10,7 +10,6 @@ "lint": "aegir lint", "test": "aegir ts -p check" }, - "types": "src/index.ts", "files": [ "src" ], diff --git a/packages/ipfs-core-utils/CHANGELOG.md b/packages/ipfs-core-utils/CHANGELOG.md index f7d6f6e52e..c355c3342d 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.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.5.4...ipfs-core-utils@0.6.0) (2021-01-15) + + +### Features + +* 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) + + + + + ## [0.5.4](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.5.3...ipfs-core-utils@0.5.4) (2020-12-16) diff --git a/packages/ipfs-core-utils/package.json b/packages/ipfs-core-utils/package.json index 13faf44536..a7120ecc09 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.5.4", + "version": "0.6.0", "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", @@ -43,8 +43,8 @@ "browser-readablestream-to-it": "^1.0.1", "cids": "^1.1.5", "err-code": "^2.0.3", + "ipfs-core-types": "^0.2.0", "ipfs-utils": "^5.0.0", - "ipfs-core-types": "^0.1.0", "it-all": "^1.0.4", "it-map": "^1.0.4", "it-peekable": "^1.0.1", diff --git a/packages/ipfs-core/CHANGELOG.md b/packages/ipfs-core/CHANGELOG.md index 95568f0a85..78ae6ce0df 100644 --- a/packages/ipfs-core/CHANGELOG.md +++ b/packages/ipfs-core/CHANGELOG.md @@ -3,6 +3,30 @@ 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-core@0.3.1...ipfs-core@0.4.0) (2021-01-15) + + +### chore + +* update libp2p to 0.30 ([#3427](https://github.com/ipfs/js-ipfs/issues/3427)) ([a39e6fb](https://github.com/ipfs/js-ipfs/commit/a39e6fb372bf9e7782462b6a4b7530a3f8c9b3f1)) + + +### 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) + + +### BREAKING CHANGES + +* The websocket transport will only dial DNS+WSS addresses - see https://github.com/libp2p/js-libp2p-websockets/releases/tag/v0.15.0 + +Co-authored-by: Hugo Dias + + + + + ## [0.3.1](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.3.0...ipfs-core@0.3.1) (2020-12-16) diff --git a/packages/ipfs-core/package.json b/packages/ipfs-core/package.json index 5ce0d92b02..5efb3d93d0 100644 --- a/packages/ipfs-core/package.json +++ b/packages/ipfs-core/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-core", - "version": "0.3.1", + "version": "0.4.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -70,8 +70,8 @@ "interface-datastore": "^2.0.0", "ipfs-bitswap": "^4.0.0", "ipfs-block-service": "^0.18.0", - "ipfs-core-utils": "^0.5.4", - "ipfs-core-types": "^0.1.0", + "ipfs-core-types": "^0.2.0", + "ipfs-core-utils": "^0.6.0", "ipfs-repo": "^7.0.0", "ipfs-unixfs": "^2.0.3", "ipfs-unixfs-exporter": "^3.0.4", @@ -121,7 +121,7 @@ "aegir": "^29.2.2", "delay": "^4.4.0", "go-ipfs": "^0.7.0", - "interface-ipfs-core": "^0.142.3", + "interface-ipfs-core": "^0.143.0", "ipfsd-ctl": "^7.2.0", "ipld-git": "^0.6.1", "iso-url": "^1.0.0", diff --git a/packages/ipfs-daemon/CHANGELOG.md b/packages/ipfs-daemon/CHANGELOG.md index 77ece2beda..ba9842c081 100644 --- a/packages/ipfs-daemon/CHANGELOG.md +++ b/packages/ipfs-daemon/CHANGELOG.md @@ -3,6 +3,30 @@ 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-daemon@0.3.2...ipfs-daemon@0.4.0) (2021-01-15) + + +### chore + +* update libp2p to 0.30 ([#3427](https://github.com/ipfs/js-ipfs/issues/3427)) ([a39e6fb](https://github.com/ipfs/js-ipfs/commit/a39e6fb372bf9e7782462b6a4b7530a3f8c9b3f1)) + + +### 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 ipfs-http-client in node ([#3474](https://github.com/ipfs/js-ipfs/issues/3474)) ([fe93ba0](https://github.com/ipfs/js-ipfs/commit/fe93ba01a0c62cead7cc4e0023de2d2a00adbc02)), closes [/tools.ietf.org/html/rfc2616#section-8](https://github.com//tools.ietf.org/html/rfc2616/issues/section-8) [#3464](https://github.com/ipfs/js-ipfs/issues/3464) + + +### BREAKING CHANGES + +* The websocket transport will only dial DNS+WSS addresses - see https://github.com/libp2p/js-libp2p-websockets/releases/tag/v0.15.0 + +Co-authored-by: Hugo Dias + + + + + ## 0.3.2 (2020-12-16) **Note:** Version bump only for package ipfs-daemon diff --git a/packages/ipfs-daemon/package.json b/packages/ipfs-daemon/package.json index b8ed298f3a..95cd056d1f 100644 --- a/packages/ipfs-daemon/package.json +++ b/packages/ipfs-daemon/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-daemon", - "version": "0.3.2", + "version": "0.4.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -31,11 +31,11 @@ "dependencies": { "debug": "^4.1.1", "dlv": "^1.1.3", - "ipfs-core": "^0.3.1", - "ipfs-grpc-server": "0.0.0", - "ipfs-http-client": "^48.1.3", - "ipfs-http-gateway": "^0.1.4", - "ipfs-http-server": "^0.1.4", + "ipfs-core": "^0.4.0", + "ipfs-grpc-server": "^0.1.0", + "ipfs-http-client": "^48.2.0", + "ipfs-http-gateway": "^0.2.0", + "ipfs-http-server": "^0.2.0", "ipfs-utils": "^5.0.0", "just-safe-set": "^2.1.0", "libp2p": "^0.30.0", diff --git a/packages/ipfs-grpc-client/CHANGELOG.md b/packages/ipfs-grpc-client/CHANGELOG.md new file mode 100644 index 0000000000..060d338e0a --- /dev/null +++ b/packages/ipfs-grpc-client/CHANGELOG.md @@ -0,0 +1,12 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-01-15) + + +### 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) diff --git a/packages/ipfs-grpc-client/package.json b/packages/ipfs-grpc-client/package.json index d901d64748..bed7a9108c 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.0.0", + "version": "0.1.0", "description": "A client library for the IPFS gRPC API", "keywords": [ "ipfs" @@ -45,12 +45,12 @@ "cids": "^1.1.5", "debug": "^4.1.1", "err-code": "^2.0.3", - "ipfs-core-utils": "^0.5.0", - "ipfs-grpc-protocol": "0.0.0", + "ipfs-core-utils": "^0.6.0", + "ipfs-grpc-protocol": "^0.1.0", "it-first": "^1.0.4", "it-pushable": "^1.4.0", - "protobufjs": "^6.10.2", "multiaddr": "^8.0.0", + "protobufjs": "^6.10.2", "wherearewe": "0.0.1", "ws": "^7.3.1" }, diff --git a/packages/ipfs-grpc-protocol/CHANGELOG.md b/packages/ipfs-grpc-protocol/CHANGELOG.md new file mode 100644 index 0000000000..32c4973d7c --- /dev/null +++ b/packages/ipfs-grpc-protocol/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-01-15) + + +### 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) diff --git a/packages/ipfs-grpc-protocol/package.json b/packages/ipfs-grpc-protocol/package.json index ca7c9d1275..d6bbd6c8b8 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.0.0", + "version": "0.1.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 new file mode 100644 index 0000000000..32c4973d7c --- /dev/null +++ b/packages/ipfs-grpc-server/CHANGELOG.md @@ -0,0 +1,11 @@ +# Change Log + +All notable changes to this project will be documented in this file. +See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. + +# 0.1.0 (2021-01-15) + + +### 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) diff --git a/packages/ipfs-grpc-server/package.json b/packages/ipfs-grpc-server/package.json index 117050de84..c5b26de9c0 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.0.0", + "version": "0.1.0", "description": "A server library for the IPFS gRPC API", "keywords": [ "ipfs" @@ -38,16 +38,16 @@ }, "dependencies": { "@grpc/grpc-js": "^1.1.8", - "protobufjs": "^6.10.2", "change-case": "^4.1.1", "coercer": "^1.1.2", "debug": "^4.1.1", - "ipfs-grpc-protocol": "0.0.0", + "ipfs-grpc-protocol": "^0.1.0", "it-first": "^1.0.4", "it-map": "^1.0.4", "it-peekable": "^1.0.1", "it-pipe": "^1.1.0", "it-pushable": "^1.4.0", + "protobufjs": "^6.10.2", "ws": "^7.3.1" }, "devDependencies": { diff --git a/packages/ipfs-http-client/CHANGELOG.md b/packages/ipfs-http-client/CHANGELOG.md index 0d218e7ed1..e3bc75dd67 100644 --- a/packages/ipfs-http-client/CHANGELOG.md +++ b/packages/ipfs-http-client/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. +# [48.2.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@48.1.3...ipfs-http-client@48.2.0) (2021-01-15) + + +### 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 ipfs-http-client in node ([#3474](https://github.com/ipfs/js-ipfs/issues/3474)) ([fe93ba0](https://github.com/ipfs/js-ipfs/commit/fe93ba01a0c62cead7cc4e0023de2d2a00adbc02)), closes [/tools.ietf.org/html/rfc2616#section-8](https://github.com//tools.ietf.org/html/rfc2616/issues/section-8) [#3464](https://github.com/ipfs/js-ipfs/issues/3464) +* 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) + + + + + ## [48.1.3](https://github.com/ipfs/js-ipfs/compare/ipfs-http-client@48.1.2...ipfs-http-client@48.1.3) (2020-12-16) diff --git a/packages/ipfs-http-client/package.json b/packages/ipfs-http-client/package.json index 08138bed6c..27f60a59b2 100644 --- a/packages/ipfs-http-client/package.json +++ b/packages/ipfs-http-client/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-http-client", - "version": "48.1.3", + "version": "48.2.0", "description": "A client library for the IPFS HTTP API", "keywords": [ "ipfs" @@ -56,9 +56,9 @@ "cids": "^1.1.5", "debug": "^4.1.1", "form-data": "^3.0.0", - "ipfs-core-utils": "^0.5.4", + "ipfs-core-types": "^0.2.0", + "ipfs-core-utils": "^0.6.0", "ipfs-utils": "^5.0.0", - "ipfs-core-types": "^0.1.0", "ipld-block": "^0.11.0", "ipld-dag-cbor": "^0.17.0", "ipld-dag-pb": "^0.20.0", @@ -82,7 +82,7 @@ "aegir": "^29.2.2", "delay": "^4.4.0", "go-ipfs": "^0.7.0", - "ipfs-core": "^0.3.1", + "ipfs-core": "^0.4.0", "ipfsd-ctl": "^7.2.0", "it-all": "^1.0.4", "it-concat": "^1.0.1", diff --git a/packages/ipfs-http-gateway/CHANGELOG.md b/packages/ipfs-http-gateway/CHANGELOG.md index ca3624332d..b9de68edc0 100644 --- a/packages/ipfs-http-gateway/CHANGELOG.md +++ b/packages/ipfs-http-gateway/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.2.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.1.4...ipfs-http-gateway@0.2.0) (2021-01-15) + + +### Features + +* 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) + + + + + ## [0.1.4](https://github.com/ipfs/js-ipfs/compare/ipfs-http-gateway@0.1.3...ipfs-http-gateway@0.1.4) (2020-12-16) diff --git a/packages/ipfs-http-gateway/package.json b/packages/ipfs-http-gateway/package.json index ac84fe2f13..7f13085b4d 100644 --- a/packages/ipfs-http-gateway/package.json +++ b/packages/ipfs-http-gateway/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-http-gateway", - "version": "0.1.4", + "version": "0.2.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -35,7 +35,7 @@ "cids": "^1.1.5", "debug": "^4.1.1", "hapi-pino": "^8.3.0", - "ipfs-core-utils": "^0.5.4", + "ipfs-core-utils": "^0.6.0", "ipfs-http-response": "^0.6.0", "is-ipfs": "^2.0.0", "it-last": "^1.0.4", diff --git a/packages/ipfs-http-server/CHANGELOG.md b/packages/ipfs-http-server/CHANGELOG.md index 2c72ca1ac7..26f3e2e90a 100644 --- a/packages/ipfs-http-server/CHANGELOG.md +++ b/packages/ipfs-http-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.2.0](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.1.4...ipfs-http-server@0.2.0) (2021-01-15) + + +### Features + +* 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) + + + + + ## [0.1.4](https://github.com/ipfs/js-ipfs/compare/ipfs-http-server@0.1.3...ipfs-http-server@0.1.4) (2020-12-16) diff --git a/packages/ipfs-http-server/package.json b/packages/ipfs-http-server/package.json index 3367e648d9..bb86bf4e7c 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.1.4", + "version": "0.2.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -37,8 +37,8 @@ "dlv": "^1.1.3", "err-code": "^2.0.3", "hapi-pino": "^8.3.0", - "ipfs-core-utils": "^0.5.4", - "ipfs-http-gateway": "^0.1.4", + "ipfs-core-utils": "^0.6.0", + "ipfs-http-gateway": "^0.2.0", "ipfs-unixfs": "^2.0.3", "ipld-dag-pb": "^0.20.0", "it-all": "^1.0.4", @@ -67,7 +67,7 @@ "devDependencies": { "aegir": "^29.2.2", "form-data": "^3.0.0", - "ipfs-http-client": "^48.1.3", + "ipfs-http-client": "^48.2.0", "iso-random-stream": "^1.1.1", "it-to-buffer": "^1.0.2", "qs": "^6.9.4", diff --git a/packages/ipfs-message-port-client/CHANGELOG.md b/packages/ipfs-message-port-client/CHANGELOG.md index 2e2cae44c6..18da6683eb 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.4.4](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.4.3...ipfs-message-port-client@0.4.4) (2021-01-15) + +**Note:** Version bump only for package ipfs-message-port-client + + + + + ## [0.4.3](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-client@0.4.2...ipfs-message-port-client@0.4.3) (2020-12-16) diff --git a/packages/ipfs-message-port-client/package.json b/packages/ipfs-message-port-client/package.json index bddeab1230..0aaf4096c0 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.4.3", + "version": "0.4.4", "description": "IPFS client library for accessing IPFS node over message port", "keywords": [ "ipfs", @@ -43,15 +43,15 @@ }, "dependencies": { "browser-readablestream-to-it": "^1.0.1", - "ipfs-message-port-protocol": "^0.4.3", - "ipfs-core-types": "^0.1.0" + "ipfs-core-types": "^0.2.0", + "ipfs-message-port-protocol": "^0.5.0" }, "devDependencies": { "aegir": "^29.2.2", - "interface-ipfs-core": "^0.142.3", - "ipfs": "^0.52.3", - "ipfs-core": "^0.3.1", - "ipfs-message-port-server": "^0.4.3", + "interface-ipfs-core": "^0.143.0", + "ipfs": "^0.53.0", + "ipfs-core": "^0.4.0", + "ipfs-message-port-server": "^0.5.0", "rimraf": "^3.0.2", "typescript": "4.0.x" }, diff --git a/packages/ipfs-message-port-protocol/CHANGELOG.md b/packages/ipfs-message-port-protocol/CHANGELOG.md index 40a220b905..68f710f8f8 100644 --- a/packages/ipfs-message-port-protocol/CHANGELOG.md +++ b/packages/ipfs-message-port-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.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-protocol@0.4.3...ipfs-message-port-protocol@0.5.0) (2021-01-15) + + +### Features + +* 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) + + + + + ## [0.4.3](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-protocol@0.4.2...ipfs-message-port-protocol@0.4.3) (2020-12-16) diff --git a/packages/ipfs-message-port-protocol/package.json b/packages/ipfs-message-port-protocol/package.json index 04c7ff98d2..b2abb2dd32 100644 --- a/packages/ipfs-message-port-protocol/package.json +++ b/packages/ipfs-message-port-protocol/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-message-port-protocol", - "version": "0.4.3", + "version": "0.5.0", "description": "IPFS client/server protocol over message port", "keywords": [ "ipfs" diff --git a/packages/ipfs-message-port-server/CHANGELOG.md b/packages/ipfs-message-port-server/CHANGELOG.md index bb7e0b4e3f..20a0fd7eed 100644 --- a/packages/ipfs-message-port-server/CHANGELOG.md +++ b/packages/ipfs-message-port-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.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-server@0.4.3...ipfs-message-port-server@0.5.0) (2021-01-15) + + +### Features + +* 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) + + + + + ## [0.4.3](https://github.com/ipfs/js-ipfs/compare/ipfs-message-port-server@0.4.2...ipfs-message-port-server@0.4.3) (2020-12-16) diff --git a/packages/ipfs-message-port-server/package.json b/packages/ipfs-message-port-server/package.json index ddaef833c1..760eb9a60c 100644 --- a/packages/ipfs-message-port-server/package.json +++ b/packages/ipfs-message-port-server/package.json @@ -1,6 +1,6 @@ { "name": "ipfs-message-port-server", - "version": "0.4.3", + "version": "0.5.0", "description": "IPFS server library for exposing IPFS node over message port", "keywords": [ "ipfs", @@ -44,7 +44,7 @@ "dep-check": "aegir dep-check -i @types/* -i typescript -i rimraf" }, "dependencies": { - "ipfs-message-port-protocol": "^0.4.3", + "ipfs-message-port-protocol": "^0.5.0", "it-all": "^1.0.4" }, "devDependencies": { diff --git a/packages/ipfs/CHANGELOG.md b/packages/ipfs/CHANGELOG.md index 3ce610cbed..70889c8af2 100644 --- a/packages/ipfs/CHANGELOG.md +++ b/packages/ipfs/CHANGELOG.md @@ -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.53.0](https://github.com/ipfs/js-ipfs/compare/ipfs@0.52.3...ipfs@0.53.0) (2021-01-15) + + +### chore + +* update libp2p to 0.30 ([#3427](https://github.com/ipfs/js-ipfs/issues/3427)) ([a39e6fb](https://github.com/ipfs/js-ipfs/commit/a39e6fb372bf9e7782462b6a4b7530a3f8c9b3f1)) + + +### 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) + + +### BREAKING CHANGES + +* The websocket transport will only dial DNS+WSS addresses - see https://github.com/libp2p/js-libp2p-websockets/releases/tag/v0.15.0 + +Co-authored-by: Hugo Dias + + + + + ## [0.52.3](https://github.com/ipfs/js-ipfs/compare/ipfs@0.52.2...ipfs@0.52.3) (2020-12-16) diff --git a/packages/ipfs/package.json b/packages/ipfs/package.json index a0ef37f855..5f1564a173 100644 --- a/packages/ipfs/package.json +++ b/packages/ipfs/package.json @@ -1,6 +1,6 @@ { "name": "ipfs", - "version": "0.52.3", + "version": "0.53.0", "description": "JavaScript implementation of the IPFS specification", "keywords": [ "IPFS" @@ -39,8 +39,8 @@ }, "dependencies": { "debug": "^4.1.1", - "ipfs-cli": "^0.2.3", - "ipfs-core": "^0.3.1", + "ipfs-cli": "^0.3.0", + "ipfs-core": "^0.4.0", "ipfs-repo": "^7.0.0", "semver": "^7.3.2", "update-notifier": "^5.0.0" @@ -50,9 +50,9 @@ "cross-env": "^7.0.0", "electron-webrtc": "^0.3.0", "go-ipfs": "^0.7.0", - "interface-ipfs-core": "^0.142.3", - "ipfs-client": "^0.1.0", - "ipfs-http-client": "^48.1.3", + "interface-ipfs-core": "^0.143.0", + "ipfs-client": "^0.2.0", + "ipfs-http-client": "^48.2.0", "ipfs-interop": "^4.0.1", "ipfs-utils": "^5.0.0", "ipfsd-ctl": "^7.2.0",