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

Commit a64939b

Browse files
committed
1 parent b780935 commit a64939b

File tree

8 files changed

+93
-9
lines changed

8 files changed

+93
-9
lines changed

packages/interface-ipfs-core/CHANGELOG.md

+17
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.138.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.138.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* optional arguments go in the options object ([#3118](https://github.com/ipfs/js-ipfs/issues/3118)) ([8cb8c73](https://github.com/ipfs/js-ipfs/commit/8cb8c73037e44894d756b70f344b3282463206f9))
12+
13+
14+
### Features
15+
16+
* add interface and http client versions to version output ([#3125](https://github.com/ipfs/js-ipfs/issues/3125)) ([65f8b23](https://github.com/ipfs/js-ipfs/commit/65f8b23f550f939e94aaf6939894a513519e6d68)), closes [#2878](https://github.com/ipfs/js-ipfs/issues/2878)
17+
* store blocks by multihash instead of CID ([#3124](https://github.com/ipfs/js-ipfs/issues/3124)) ([03b17f5](https://github.com/ipfs/js-ipfs/commit/03b17f5e2d290e84aa0cb541079b79e468e7d1bd))
18+
19+
20+
21+
22+
623
# [0.137.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.137.0) (2020-06-24)
724

825

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.137.0",
3+
"version": "0.138.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-core-utils/CHANGELOG.md

+17
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.3.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.3.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* optional arguments go in the options object ([#3118](https://github.com/ipfs/js-ipfs/issues/3118)) ([8cb8c73](https://github.com/ipfs/js-ipfs/commit/8cb8c73037e44894d756b70f344b3282463206f9))
12+
* set error code correctly ([#3150](https://github.com/ipfs/js-ipfs/issues/3150)) ([335c13d](https://github.com/ipfs/js-ipfs/commit/335c13d529fc54e4610fc1aa03212126f43c63ec))
13+
14+
15+
### Features
16+
17+
* store blocks by multihash instead of CID ([#3124](https://github.com/ipfs/js-ipfs/issues/3124)) ([03b17f5](https://github.com/ipfs/js-ipfs/commit/03b17f5e2d290e84aa0cb541079b79e468e7d1bd))
18+
19+
20+
21+
22+
623
## [0.2.4](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.2.4) (2020-06-24)
724

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

packages/ipfs-core-utils/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core-utils",
3-
"version": "0.2.4",
3+
"version": "0.3.0",
44
"description": "Package to share code between ipfs and ipfs-http-client",
55
"main": "src/index.js",
66
"author": "Alex Potsides <[email protected]>",

packages/ipfs-http-client/CHANGELOG.md

+24
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
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+
# [45.0.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@45.0.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* optional arguments go in the options object ([#3118](https://github.com/ipfs/js-ipfs/issues/3118)) ([8cb8c73](https://github.com/ipfs/js-ipfs/commit/8cb8c73037e44894d756b70f344b3282463206f9))
12+
* small whitespace change ([0d4604d](https://github.com/ipfs/js-ipfs/commit/0d4604dde995edb69483c03622e38448d31eeb88))
13+
* still load dag-pb, dag-cbor and raw when specifying custom formats ([#3132](https://github.com/ipfs/js-ipfs/issues/3132)) ([a96e3bc](https://github.com/ipfs/js-ipfs/commit/a96e3bc9e3763004beafc24b98efa85ffa665622)), closes [#3129](https://github.com/ipfs/js-ipfs/issues/3129)
14+
15+
16+
### Features
17+
18+
* add interface and http client versions to version output ([#3125](https://github.com/ipfs/js-ipfs/issues/3125)) ([65f8b23](https://github.com/ipfs/js-ipfs/commit/65f8b23f550f939e94aaf6939894a513519e6d68)), closes [#2878](https://github.com/ipfs/js-ipfs/issues/2878)
19+
* store blocks by multihash instead of CID ([#3124](https://github.com/ipfs/js-ipfs/issues/3124)) ([03b17f5](https://github.com/ipfs/js-ipfs/commit/03b17f5e2d290e84aa0cb541079b79e468e7d1bd))
20+
21+
22+
### BREAKING CHANGES
23+
24+
* - not really
25+
26+
27+
28+
29+
630
# [44.3.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@44.3.0) (2020-06-24)
731

832

packages/ipfs-http-client/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "44.3.0",
3+
"version": "45.0.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -46,7 +46,7 @@
4646
"cids": "^0.8.3",
4747
"debug": "^4.1.0",
4848
"form-data": "^3.0.0",
49-
"ipfs-core-utils": "^0.2.4",
49+
"ipfs-core-utils": "^0.3.0",
5050
"ipfs-utils": "^2.2.2",
5151
"ipld-block": "^0.9.1",
5252
"ipld-dag-cbor": "^0.15.2",
@@ -72,7 +72,7 @@
7272
"aegir": "^23.0.0",
7373
"cross-env": "^7.0.0",
7474
"go-ipfs": "^0.6.0",
75-
"interface-ipfs-core": "^0.137.0",
75+
"interface-ipfs-core": "^0.138.0",
7676
"ipfsd-ctl": "^5.0.0",
7777
"it-all": "^1.0.1",
7878
"it-concat": "^1.0.0",

packages/ipfs/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.48.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.48.0) (2020-07-16)
7+
8+
9+
### Bug Fixes
10+
11+
* do not list raw nodes in a dag as directories ([#3155](https://github.com/ipfs/js-ipfs/issues/3155)) ([585a142](https://github.com/ipfs/js-ipfs/commit/585a142d3c2317e80f37d6195ce24ed3146112e5))
12+
* error when no command specified ([#3145](https://github.com/ipfs/js-ipfs/issues/3145)) ([4309e10](https://github.com/ipfs/js-ipfs/commit/4309e1004bb77ee276b57228c35a921fb780a227))
13+
* optional arguments go in the options object ([#3118](https://github.com/ipfs/js-ipfs/issues/3118)) ([8cb8c73](https://github.com/ipfs/js-ipfs/commit/8cb8c73037e44894d756b70f344b3282463206f9))
14+
* peer ids are strings now ([#3162](https://github.com/ipfs/js-ipfs/issues/3162)) ([281bfe6](https://github.com/ipfs/js-ipfs/commit/281bfe60f079011d0ada783a82d1f030d08a89f2))
15+
* still load dag-pb, dag-cbor and raw when specifying custom formats ([#3132](https://github.com/ipfs/js-ipfs/issues/3132)) ([a96e3bc](https://github.com/ipfs/js-ipfs/commit/a96e3bc9e3763004beafc24b98efa85ffa665622)), closes [#3129](https://github.com/ipfs/js-ipfs/issues/3129)
16+
* unhandledpromiserejection in electron tests ([#3146](https://github.com/ipfs/js-ipfs/issues/3146)) ([4c0c67f](https://github.com/ipfs/js-ipfs/commit/4c0c67f023c75bbcb56b0520b31f1334480a5130))
17+
* use post for preloading ([#3149](https://github.com/ipfs/js-ipfs/issues/3149)) ([c9700f7](https://github.com/ipfs/js-ipfs/commit/c9700f78cefc523f6140361a90099c4991b427a7))
18+
19+
20+
### Features
21+
22+
* add interface and http client versions to version output ([#3125](https://github.com/ipfs/js-ipfs/issues/3125)) ([65f8b23](https://github.com/ipfs/js-ipfs/commit/65f8b23f550f939e94aaf6939894a513519e6d68)), closes [#2878](https://github.com/ipfs/js-ipfs/issues/2878)
23+
* add size-only flag to cli repo stat command ([#3143](https://github.com/ipfs/js-ipfs/issues/3143)) ([b4d3bf8](https://github.com/ipfs/js-ipfs/commit/b4d3bf80e7cd5820e2561fc957a9f0f17235df05))
24+
* enable DHT by Routing.Type config key ([#3153](https://github.com/ipfs/js-ipfs/issues/3153)) ([dfe15d7](https://github.com/ipfs/js-ipfs/commit/dfe15d7422579afce8860f6321575454826d1844))
25+
* store blocks by multihash instead of CID ([#3124](https://github.com/ipfs/js-ipfs/issues/3124)) ([03b17f5](https://github.com/ipfs/js-ipfs/commit/03b17f5e2d290e84aa0cb541079b79e468e7d1bd))
26+
* turn on delegate nodes by default ([#3148](https://github.com/ipfs/js-ipfs/issues/3148)) ([3fd2ca8](https://github.com/ipfs/js-ipfs/commit/3fd2ca8c7bb3a907cc74d48516481fae01d47327))
27+
28+
29+
30+
31+
632
# [0.47.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.47.0) (2020-06-24)
733

834

packages/ipfs/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs",
3-
"version": "0.47.0",
3+
"version": "0.48.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -93,8 +93,8 @@
9393
"interface-datastore": "^1.0.2",
9494
"ipfs-bitswap": "^2.0.0",
9595
"ipfs-block-service": "^0.17.1",
96-
"ipfs-core-utils": "^0.2.4",
97-
"ipfs-http-client": "^44.3.0",
96+
"ipfs-core-utils": "^0.3.0",
97+
"ipfs-http-client": "^45.0.0",
9898
"ipfs-http-response": "^0.5.0",
9999
"ipfs-repo": "^4.0.0",
100100
"ipfs-unixfs": "^1.0.3",
@@ -179,7 +179,7 @@
179179
"execa": "^4.0.0",
180180
"form-data": "^3.0.0",
181181
"go-ipfs": "^0.6.0",
182-
"interface-ipfs-core": "^0.137.0",
182+
"interface-ipfs-core": "^0.138.0",
183183
"ipfs-interop": "^2.0.0",
184184
"ipfsd-ctl": "^5.0.0",
185185
"iso-random-stream": "^1.1.1",

0 commit comments

Comments
 (0)