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

File tree

22 files changed

+196
-34
lines changed

22 files changed

+196
-34
lines changed

packages/interface-ipfs-core/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.142.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.142.0) (2020-11-09)
7+
8+
9+
### Features
10+
11+
* pass file name to add/addAll progress handler ([#3372](https://github.com/ipfs/js-ipfs/issues/3372)) ([69681a7](https://github.com/ipfs/js-ipfs/commit/69681a7d7a8434c11f6f10e370e324f5a3d31042)), closes [ipfs/js-ipfs-unixfs#87](https://github.com/ipfs/js-ipfs-unixfs/issues/87)
12+
13+
14+
15+
16+
617
# [0.141.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.141.0) (2020-10-28)
718

819

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.141.0",
3+
"version": "0.142.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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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.2.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.2.0) (2020-11-09)
7+
8+
9+
### Bug Fixes
10+
11+
* remove electron-webrtc dependency ([#3378](https://github.com/ipfs/js-ipfs/issues/3378)) ([2bd5368](https://github.com/ipfs/js-ipfs/commit/2bd53686003527a102db9df92cedad4c6d9164f9)), closes [#3376](https://github.com/ipfs/js-ipfs/issues/3376)
12+
13+
14+
### BREAKING CHANGES
15+
16+
* electron-webrtc was accidentally bundled with ipfs, now it needs installing separately
17+
18+
19+
20+
21+
622
# 0.1.0 (2020-10-28)
723

824

packages/ipfs-cli/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -38,11 +38,11 @@
3838
"err-code": "^2.0.3",
3939
"execa": "^4.0.3",
4040
"get-folder-size": "^2.0.1",
41-
"ipfs-core": "^0.1.0",
42-
"ipfs-core-utils": "^0.5.0",
43-
"ipfs-http-client": "^48.0.0",
44-
"ipfs-http-gateway": "^0.1.0",
45-
"ipfs-http-server": "^0.1.0",
41+
"ipfs-core": "^0.2.0",
42+
"ipfs-core-utils": "^0.5.1",
43+
"ipfs-http-client": "^48.1.0",
44+
"ipfs-http-gateway": "^0.1.1",
45+
"ipfs-http-server": "^0.1.1",
4646
"ipfs-repo": "^7.0.0",
4747
"ipfs-utils": "^4.0.0",
4848
"ipld-dag-cbor": "^0.17.0",

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.5.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.5.1) (2020-11-09)
7+
8+
9+
### Bug Fixes
10+
11+
* typedef resolution & add examples that use types ([#3359](https://github.com/ipfs/js-ipfs/issues/3359)) ([dc2795a](https://github.com/ipfs/js-ipfs/commit/dc2795a4f3b515683d09967ce611bf87d5e67f86)), closes [#3356](https://github.com/ipfs/js-ipfs/issues/3356) [#3358](https://github.com/ipfs/js-ipfs/issues/3358)
12+
13+
14+
15+
16+
617
# [0.5.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.5.0) (2020-10-28)
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.5.0",
3+
"version": "0.5.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: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,29 @@
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.2.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.2.0) (2020-11-09)
7+
8+
9+
### Bug Fixes
10+
11+
* cache preloaded CIDs ([#3363](https://github.com/ipfs/js-ipfs/issues/3363)) ([b5ea76a](https://github.com/ipfs/js-ipfs/commit/b5ea76ad29082fb40e9fc72ef6223039f1ea3be4)), closes [#3307](https://github.com/ipfs/js-ipfs/issues/3307)
12+
* typedef resolution & add examples that use types ([#3359](https://github.com/ipfs/js-ipfs/issues/3359)) ([dc2795a](https://github.com/ipfs/js-ipfs/commit/dc2795a4f3b515683d09967ce611bf87d5e67f86)), closes [#3356](https://github.com/ipfs/js-ipfs/issues/3356) [#3358](https://github.com/ipfs/js-ipfs/issues/3358)
13+
14+
15+
### Features
16+
17+
* pass file name to add/addAll progress handler ([#3372](https://github.com/ipfs/js-ipfs/issues/3372)) ([69681a7](https://github.com/ipfs/js-ipfs/commit/69681a7d7a8434c11f6f10e370e324f5a3d31042)), closes [ipfs/js-ipfs-unixfs#87](https://github.com/ipfs/js-ipfs-unixfs/issues/87)
18+
* remove all esoteric ipld formats ([#3360](https://github.com/ipfs/js-ipfs/issues/3360)) ([a542882](https://github.com/ipfs/js-ipfs/commit/a5428820a5b157fbb298b8eb49978e08157beca3)), closes [#3347](https://github.com/ipfs/js-ipfs/issues/3347)
19+
20+
21+
### BREAKING CHANGES
22+
23+
* only dag-pb, dag-cbor and raw formats are supported out of the box, any others will need to be configured during node startup.
24+
25+
26+
27+
28+
629
# 0.1.0 (2020-10-28)
730

831

packages/ipfs-core/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.1.0",
3+
"version": "0.2.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -71,7 +71,7 @@
7171
"interface-datastore": "^2.0.0",
7272
"ipfs-bitswap": "^4.0.0",
7373
"ipfs-block-service": "^0.18.0",
74-
"ipfs-core-utils": "^0.5.0",
74+
"ipfs-core-utils": "^0.5.1",
7575
"ipfs-repo": "^7.0.0",
7676
"ipfs-unixfs": "^2.0.3",
7777
"ipfs-unixfs-exporter": "^3.0.4",
@@ -123,7 +123,7 @@
123123
"devDependencies": {
124124
"aegir": "^28.0.0",
125125
"delay": "^4.4.0",
126-
"interface-ipfs-core": "^0.141.0",
126+
"interface-ipfs-core": "^0.142.0",
127127
"ipfsd-ctl": "^7.0.2",
128128
"ipld-git": "^0.6.1",
129129
"iso-random-stream": "^1.1.1",

packages/ipfs-http-client/CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,22 @@
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+
# [48.1.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@48.1.0) (2020-11-09)
7+
8+
9+
### Bug Fixes
10+
11+
* typedef resolution & add examples that use types ([#3359](https://github.com/ipfs/js-ipfs/issues/3359)) ([dc2795a](https://github.com/ipfs/js-ipfs/commit/dc2795a4f3b515683d09967ce611bf87d5e67f86)), closes [#3356](https://github.com/ipfs/js-ipfs/issues/3356) [#3358](https://github.com/ipfs/js-ipfs/issues/3358)
12+
13+
14+
### Features
15+
16+
* pass file name to add/addAll progress handler ([#3372](https://github.com/ipfs/js-ipfs/issues/3372)) ([69681a7](https://github.com/ipfs/js-ipfs/commit/69681a7d7a8434c11f6f10e370e324f5a3d31042)), closes [ipfs/js-ipfs-unixfs#87](https://github.com/ipfs/js-ipfs-unixfs/issues/87)
17+
18+
19+
20+
21+
622
# [48.0.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@48.0.0) (2020-10-28)
723

824

packages/ipfs-http-client/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "48.0.0",
3+
"version": "48.1.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -55,7 +55,7 @@
5555
"cids": "^1.0.0",
5656
"debug": "^4.1.1",
5757
"form-data": "^3.0.0",
58-
"ipfs-core-utils": "^0.5.0",
58+
"ipfs-core-utils": "^0.5.1",
5959
"ipfs-utils": "^4.0.0",
6060
"ipld-block": "^0.11.0",
6161
"ipld-dag-cbor": "^0.17.0",
@@ -83,8 +83,8 @@
8383
"aegir": "^28.0.0",
8484
"cross-env": "^7.0.0",
8585
"go-ipfs": "^0.7.0",
86-
"interface-ipfs-core": "^0.141.0",
87-
"ipfs-core": "^0.1.0",
86+
"interface-ipfs-core": "^0.142.0",
87+
"ipfs-core": "^0.2.0",
8888
"ipfsd-ctl": "^7.0.2",
8989
"it-all": "^1.0.4",
9090
"it-concat": "^1.0.1",

0 commit comments

Comments
 (0)