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

Commit ef41f92

Browse files
committedJul 27, 2021
chore: publish
- interface-ipfs-core@0.148.0 - ipfs-cli@0.7.0 - ipfs-client@0.5.0 - ipfs-core-types@0.6.0 - ipfs-core-utils@0.9.0 - ipfs-core@0.9.0 - ipfs-daemon@0.8.0 - ipfs-grpc-client@0.4.0 - ipfs-grpc-server@0.4.0 - ipfs-http-client@51.0.0 - ipfs-http-gateway@0.5.0 - ipfs-http-server@0.6.0 - ipfs-message-port-client@0.7.0 - ipfs-message-port-protocol@0.8.0 - ipfs-message-port-server@0.8.0 - ipfs@0.56.0
1 parent 1bed859 commit ef41f92

File tree

32 files changed

+422
-59
lines changed

32 files changed

+422
-59
lines changed
 

‎packages/interface-ipfs-core/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.148.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.147.0...interface-ipfs-core@0.148.0) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* fix flaky pubsub test ([#3761](https://github.com/ipfs/js-ipfs/issues/3761)) ([8bcf56f](https://github.com/ipfs/js-ipfs/commit/8bcf56fbec7324dc13d3ec5dce08806a6ef2f974))
12+
* flaky timeout test ([#3767](https://github.com/ipfs/js-ipfs/issues/3767)) ([55afc2f](https://github.com/ipfs/js-ipfs/commit/55afc2f8ee483f4b2807598b7371561d39229e17))
13+
* make "ipfs resolve" cli command recursive by default ([#3707](https://github.com/ipfs/js-ipfs/issues/3707)) ([399ce36](https://github.com/ipfs/js-ipfs/commit/399ce367a1dbc531b52fe228ee4212008c9a1091)), closes [#3692](https://github.com/ipfs/js-ipfs/issues/3692)
14+
15+
16+
### Features
17+
18+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
19+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
20+
21+
22+
### BREAKING CHANGES
23+
24+
* resolve is now recursive by default
25+
26+
Co-authored-by: Alex Potsides <alex@achingbrain.net>
27+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
28+
29+
Co-authored-by: Rod Vagg <rod@vagg.org>
30+
Co-authored-by: achingbrain <alex@achingbrain.net>
31+
32+
33+
34+
35+
636
# [0.147.0](https://github.com/ipfs/js-ipfs/compare/interface-ipfs-core@0.146.1...interface-ipfs-core@0.147.0) (2021-06-18)
737

838

‎packages/interface-ipfs-core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interface-ipfs-core",
3-
"version": "0.147.0",
3+
"version": "0.148.0",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
55
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
66
"main": "src/index.js",

‎packages/ipfs-cli/CHANGELOG.md

+28
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,34 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.7.0](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.6.2...ipfs-cli@0.7.0) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* make "ipfs resolve" cli command recursive by default ([#3707](https://github.com/ipfs/js-ipfs/issues/3707)) ([399ce36](https://github.com/ipfs/js-ipfs/commit/399ce367a1dbc531b52fe228ee4212008c9a1091)), closes [#3692](https://github.com/ipfs/js-ipfs/issues/3692)
12+
13+
14+
### Features
15+
16+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
17+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* resolve is now recursive by default
23+
24+
Co-authored-by: Alex Potsides <alex@achingbrain.net>
25+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
26+
27+
Co-authored-by: Rod Vagg <rod@vagg.org>
28+
Co-authored-by: achingbrain <alex@achingbrain.net>
29+
30+
31+
32+
33+
634
## [0.6.2](https://github.com/ipfs/js-ipfs/compare/ipfs-cli@0.6.1...ipfs-cli@0.6.2) (2021-06-18)
735

836
**Note:** Version bump only for package ipfs-cli

‎packages/ipfs-cli/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -37,11 +37,11 @@
3737
"err-code": "^3.0.1",
3838
"execa": "^5.0.0",
3939
"get-folder-size": "^2.0.1",
40-
"ipfs-core": "^0.8.0",
41-
"ipfs-core-types": "^0.5.2",
42-
"ipfs-core-utils": "^0.8.3",
43-
"ipfs-daemon": "^0.7.2",
44-
"ipfs-http-client": "^50.1.2",
40+
"ipfs-core": "^0.9.0",
41+
"ipfs-core-types": "^0.6.0",
42+
"ipfs-core-utils": "^0.9.0",
43+
"ipfs-daemon": "^0.8.0",
44+
"ipfs-http-client": "^51.0.0",
4545
"ipfs-repo": "^11.0.1",
4646
"ipfs-utils": "^8.1.4",
4747
"it-all": "^1.0.4",

‎packages/ipfs-client/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.5.0](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.4.3...ipfs-client@0.5.0) (2021-07-27)
7+
8+
9+
### Features
10+
11+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
17+
18+
Co-authored-by: Rod Vagg <rod@vagg.org>
19+
Co-authored-by: achingbrain <alex@achingbrain.net>
20+
21+
22+
23+
24+
625
## [0.4.3](https://github.com/ipfs/js-ipfs/compare/ipfs-client@0.4.2...ipfs-client@0.4.3) (2021-06-18)
726

827
**Note:** Version bump only for package ipfs-client

‎packages/ipfs-client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-client",
3-
"version": "0.4.3",
3+
"version": "0.5.0",
44
"description": "A client library to talk to local IPFS daemons",
55
"keywords": [
66
"ipfs"
@@ -32,8 +32,8 @@
3232
"dep-check": "aegir dep-check -i aegir -i rimraf"
3333
},
3434
"dependencies": {
35-
"ipfs-grpc-client": "^0.3.3",
36-
"ipfs-http-client": "^50.1.2",
35+
"ipfs-grpc-client": "^0.4.0",
36+
"ipfs-http-client": "^51.0.0",
3737
"merge-options": "^3.0.4"
3838
},
3939
"devDependencies": {

‎packages/ipfs-core-types/CHANGELOG.md

+26
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,32 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.6.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.5.2...ipfs-core-types@0.6.0) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* export ipfs http client type and use option extension for client ([#3763](https://github.com/ipfs/js-ipfs/issues/3763)) ([31bddd4](https://github.com/ipfs/js-ipfs/commit/31bddd40ab85848cd283ec66001fb7555b4f2d88)), closes [#3749](https://github.com/ipfs/js-ipfs/issues/3749) [#3736](https://github.com/ipfs/js-ipfs/issues/3736)
12+
* **ipfs-core-types:** wrong extension ([#3753](https://github.com/ipfs/js-ipfs/issues/3753)) ([4bad1c6](https://github.com/ipfs/js-ipfs/commit/4bad1c61f5946e32cf75196cd2c45c5316500b0f))
13+
14+
15+
### Features
16+
17+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
18+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
19+
20+
21+
### BREAKING CHANGES
22+
23+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
24+
25+
Co-authored-by: Rod Vagg <rod@vagg.org>
26+
Co-authored-by: achingbrain <alex@achingbrain.net>
27+
28+
29+
30+
31+
632
## [0.5.2](https://github.com/ipfs/js-ipfs/compare/ipfs-core-types@0.5.1...ipfs-core-types@0.5.2) (2021-06-18)
733

834
**Note:** Version bump only for package ipfs-core-types

‎packages/ipfs-core-types/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-types",
3-
"version": "0.5.2",
3+
"version": "0.6.0",
44
"description": "IPFS interface definitions used by implementations for API compatibility.",
55
"leadMaintainer": "Alex Potsides <alex@achingbrain.net>",
66
"types": "src/index.d.ts",

‎packages/ipfs-core-utils/CHANGELOG.md

+25
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,31 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.8.3...ipfs-core-utils@0.9.0) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* support @web-std/file in normalize input ([#3750](https://github.com/ipfs/js-ipfs/issues/3750)) ([6fd7776](https://github.com/ipfs/js-ipfs/commit/6fd777679d0aa80bbb784d16585456e54b5cf294))
12+
13+
14+
### Features
15+
16+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
17+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
23+
24+
Co-authored-by: Rod Vagg <rod@vagg.org>
25+
Co-authored-by: achingbrain <alex@achingbrain.net>
26+
27+
28+
29+
30+
631
## [0.8.3](https://github.com/ipfs/js-ipfs/compare/ipfs-core-utils@0.8.2...ipfs-core-utils@0.8.3) (2021-06-18)
732

833
**Note:** Version bump only for package ipfs-core-utils

‎packages/ipfs-core-utils/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-utils",
3-
"version": "0.8.3",
3+
"version": "0.9.0",
44
"description": "Package to share code between ipfs and ipfs-http-client",
55
"author": "Alex Potsides <alex@achingbrain.net>",
66
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",
@@ -45,7 +45,7 @@
4545
"blob-to-it": "^1.0.1",
4646
"browser-readablestream-to-it": "^1.0.1",
4747
"err-code": "^3.0.1",
48-
"ipfs-core-types": "^0.5.2",
48+
"ipfs-core-types": "^0.6.0",
4949
"ipfs-unixfs": "^5.0.0",
5050
"ipfs-utils": "^8.1.4",
5151
"it-all": "^1.0.4",

‎packages/ipfs-core/CHANGELOG.md

+30
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,36 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.9.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.8.0...ipfs-core@0.9.0) (2021-07-27)
7+
8+
9+
### Bug Fixes
10+
11+
* make "ipfs resolve" cli command recursive by default ([#3707](https://github.com/ipfs/js-ipfs/issues/3707)) ([399ce36](https://github.com/ipfs/js-ipfs/commit/399ce367a1dbc531b52fe228ee4212008c9a1091)), closes [#3692](https://github.com/ipfs/js-ipfs/issues/3692)
12+
* root datastore extension ([#3768](https://github.com/ipfs/js-ipfs/issues/3768)) ([62311f8](https://github.com/ipfs/js-ipfs/commit/62311f8ffa90ff5d88a23e2da9fabb0841f1b0f5))
13+
* round bandwidth stats ([#3735](https://github.com/ipfs/js-ipfs/issues/3735)) ([58fb802](https://github.com/ipfs/js-ipfs/commit/58fb802a05f7ea44ef595f118130952176f7190d)), closes [#3726](https://github.com/ipfs/js-ipfs/issues/3726)
14+
15+
16+
### Features
17+
18+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
19+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
20+
21+
22+
### BREAKING CHANGES
23+
24+
* resolve is now recursive by default
25+
26+
Co-authored-by: Alex Potsides <alex@achingbrain.net>
27+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
28+
29+
Co-authored-by: Rod Vagg <rod@vagg.org>
30+
Co-authored-by: achingbrain <alex@achingbrain.net>
31+
32+
33+
34+
35+
636
# [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-core@0.7.1...ipfs-core@0.8.0) (2021-06-18)
737

838

‎packages/ipfs-core/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.8.0",
3+
"version": "0.9.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -74,9 +74,9 @@
7474
"interface-blockstore": "^1.0.0",
7575
"interface-datastore": "^5.0.0",
7676
"ipfs-bitswap": "^6.0.0",
77-
"ipfs-core-types": "^0.5.2",
78-
"ipfs-core-utils": "^0.8.3",
79-
"ipfs-http-client": "^50.1.2",
77+
"ipfs-core-types": "^0.6.0",
78+
"ipfs-core-utils": "^0.9.0",
79+
"ipfs-http-client": "^51.0.0",
8080
"ipfs-repo": "^11.0.1",
8181
"ipfs-unixfs": "^5.0.0",
8282
"ipfs-unixfs-exporter": "^6.0.0",
@@ -129,7 +129,7 @@
129129
"delay": "^5.0.0",
130130
"go-ipfs": "0.8.0",
131131
"interface-blockstore-tests": "^1.0.0",
132-
"interface-ipfs-core": "^0.147.0",
132+
"interface-ipfs-core": "^0.148.0",
133133
"ipfsd-ctl": "^9.0.0",
134134
"iso-url": "^1.0.0",
135135
"nanoid": "^3.1.12",

‎packages/ipfs-daemon/CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,25 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.8.0](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.7.2...ipfs-daemon@0.8.0) (2021-07-27)
7+
8+
9+
### Features
10+
11+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
12+
13+
14+
### BREAKING CHANGES
15+
16+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
17+
18+
Co-authored-by: Rod Vagg <rod@vagg.org>
19+
Co-authored-by: achingbrain <alex@achingbrain.net>
20+
21+
22+
23+
24+
625
## [0.7.2](https://github.com/ipfs/js-ipfs/compare/ipfs-daemon@0.7.1...ipfs-daemon@0.7.2) (2021-06-18)
726

827
**Note:** Version bump only for package ipfs-daemon

‎packages/ipfs-daemon/package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-daemon",
3-
"version": "0.7.2",
3+
"version": "0.8.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -32,11 +32,11 @@
3232
"dependencies": {
3333
"@mapbox/node-pre-gyp": "^1.0.5",
3434
"debug": "^4.1.1",
35-
"ipfs-core": "^0.8.0",
36-
"ipfs-core-types": "^0.5.2",
37-
"ipfs-grpc-server": "^0.3.4",
38-
"ipfs-http-gateway": "^0.4.3",
39-
"ipfs-http-server": "^0.5.2",
35+
"ipfs-core": "^0.9.0",
36+
"ipfs-core-types": "^0.6.0",
37+
"ipfs-grpc-server": "^0.4.0",
38+
"ipfs-http-gateway": "^0.5.0",
39+
"ipfs-http-server": "^0.6.0",
4040
"ipfs-utils": "^8.1.4",
4141
"just-safe-set": "^2.2.1",
4242
"libp2p": "^0.32.0",

‎packages/ipfs-grpc-client/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,26 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [0.4.0](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.3.3...ipfs-grpc-client@0.4.0) (2021-07-27)
7+
8+
9+
### Features
10+
11+
* implement dag import/export ([#3728](https://github.com/ipfs/js-ipfs/issues/3728)) ([700765b](https://github.com/ipfs/js-ipfs/commit/700765be2634fa5d2d71d8b87cf68c9cd328d2c4)), closes [#2953](https://github.com/ipfs/js-ipfs/issues/2953) [#2745](https://github.com/ipfs/js-ipfs/issues/2745)
12+
* upgrade to the new multiformats ([#3556](https://github.com/ipfs/js-ipfs/issues/3556)) ([d13d15f](https://github.com/ipfs/js-ipfs/commit/d13d15f022a87d04a35f0f7822142f9cb898479c))
13+
14+
15+
### BREAKING CHANGES
16+
17+
* ipld-formats no longer supported, use multiformat BlockCodecs instead
18+
19+
Co-authored-by: Rod Vagg <rod@vagg.org>
20+
Co-authored-by: achingbrain <alex@achingbrain.net>
21+
22+
23+
24+
25+
626
## [0.3.3](https://github.com/ipfs/js-ipfs/compare/ipfs-grpc-client@0.3.2...ipfs-grpc-client@0.3.3) (2021-06-18)
727

828
**Note:** Version bump only for package ipfs-grpc-client

0 commit comments

Comments
 (0)
This repository has been archived.