Skip to content

File tree

26 files changed

+178
-39
lines changed

26 files changed

+178
-39
lines changed

packages/interface-ipfs-core/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@
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.150.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.150.0) (2021-08-17)
7+
8+
9+
### Bug Fixes
10+
11+
* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f))
12+
* 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)
13+
14+
15+
### Features
16+
17+
* 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)
18+
19+
20+
21+
22+
623
# [0.149.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.149.0) (2021-08-11)
724

825

packages/interface-ipfs-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "interface-ipfs-core",
3-
"version": "0.149.0",
3+
"version": "0.150.0",
44
"description": "A test suite and interface you can use to implement a IPFS core interface.",
55
"leadMaintainer": "Alex Potsides <[email protected]>",
66
"main": "src/index.js",

packages/ipfs-cli/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.8.1) (2021-08-17)
7+
8+
9+
### Bug Fixes
10+
11+
* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f))
12+
13+
14+
15+
16+
617
# [0.8.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.8.0) (2021-08-11)
718

819

packages/ipfs-cli/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
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.10.0",
40+
"ipfs-core": "^0.10.1",
4141
"ipfs-core-types": "^0.7.0",
42-
"ipfs-core-utils": "^0.10.0",
43-
"ipfs-daemon": "^0.9.0",
44-
"ipfs-http-client": "^52.0.0",
42+
"ipfs-core-utils": "^0.10.1",
43+
"ipfs-daemon": "^0.9.1",
44+
"ipfs-http-client": "^52.0.1",
4545
"ipfs-repo": "^11.0.1",
4646
"ipfs-utils": "^8.1.4",
4747
"it-all": "^1.0.4",

packages/ipfs-client/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
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.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.6.1) (2021-08-17)
7+
8+
**Note:** Version bump only for package ipfs-client
9+
10+
11+
12+
13+
614
# [0.6.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.6.0) (2021-08-11)
715

816

packages/ipfs-client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-client",
3-
"version": "0.6.0",
3+
"version": "0.6.1",
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.5.0",
36-
"ipfs-http-client": "^52.0.0",
35+
"ipfs-grpc-client": "^0.6.0",
36+
"ipfs-http-client": "^52.0.1",
3737
"merge-options": "^3.0.4"
3838
},
3939
"devDependencies": {

packages/ipfs-core-utils/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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.10.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.10.1) (2021-08-17)
7+
8+
9+
### Bug Fixes
10+
11+
* 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)
12+
13+
14+
15+
16+
617
# [0.10.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.10.0) (2021-08-11)
718

819

packages/ipfs-core-utils/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-utils",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "Package to share code between ipfs and ipfs-http-client",
55
"author": "Alex Potsides <[email protected]>",
66
"homepage": "https://github.com/ipfs/js-ipfs/tree/master/packages/ipfs-core-utils#readme",

packages/ipfs-core/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,19 @@
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.10.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.10.1) (2021-08-17)
7+
8+
9+
### Bug Fixes
10+
11+
* 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)
12+
* pin nanoid version ([#3807](https://github.com/ipfs/js-ipfs/issues/3807)) ([474523a](https://github.com/ipfs/js-ipfs/commit/474523ab8702729f697843d433a7a08baf2d101f))
13+
* use correct datastores ([#3820](https://github.com/ipfs/js-ipfs/issues/3820)) ([479e09e](https://github.com/ipfs/js-ipfs/commit/479e09e73c936c5770aa83e4d097b62c3987cf6f))
14+
15+
16+
17+
18+
619
# [0.10.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.10.0) (2021-08-11)
720

821

packages/ipfs-core/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.10.0",
3+
"version": "0.10.1",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -76,8 +76,8 @@
7676
"interface-datastore": "^5.0.0",
7777
"ipfs-bitswap": "^6.0.0",
7878
"ipfs-core-types": "^0.7.0",
79-
"ipfs-core-utils": "^0.10.0",
80-
"ipfs-http-client": "^52.0.0",
79+
"ipfs-core-utils": "^0.10.1",
80+
"ipfs-http-client": "^52.0.1",
8181
"ipfs-repo": "^11.0.1",
8282
"ipfs-unixfs": "^5.0.0",
8383
"ipfs-unixfs-exporter": "^6.0.2",
@@ -135,7 +135,7 @@
135135
"delay": "^5.0.0",
136136
"go-ipfs": "0.9.1",
137137
"interface-blockstore-tests": "^1.0.0",
138-
"interface-ipfs-core": "^0.149.0",
138+
"interface-ipfs-core": "^0.150.0",
139139
"ipfsd-ctl": "^10.0.3",
140140
"iso-url": "^1.0.0",
141141
"nanoid": "^3.1.12",

0 commit comments

Comments
 (0)