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

File tree

24 files changed

+274
-42
lines changed

24 files changed

+274
-42
lines changed

examples/test-ipfs-example/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
# [2.1.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@2.1.0) (2020-10-28)
7+
8+
9+
### Features
10+
11+
* ipns publish example ([#3207](https://github.com/ipfs/js-ipfs/issues/3207)) ([91faec6](https://github.com/ipfs/js-ipfs/commit/91faec6e3d89b0d9883b8d7815c276d44048e739))
12+
* store pins in datastore instead of a DAG ([#2771](https://github.com/ipfs/js-ipfs/issues/2771)) ([64b7fe4](https://github.com/ipfs/js-ipfs/commit/64b7fe41738cbe96d5a9075f0c01156c6f889c40))
13+
14+
15+
16+
17+
618
## [2.0.3](https://github.com/ipfs/js-ipfs/compare/[email protected]@2.0.3) (2020-05-29)
719

820
**Note:** Version bump only for package test-ipfs-example

examples/test-ipfs-example/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "test-ipfs-example",
3-
"version": "2.0.3",
3+
"version": "2.1.0",
44
"description": "Examples of how to use IPFS",
55
"bin": {
66
"test-ipfs-example": "./test.js"
@@ -12,7 +12,7 @@
1212
"fs-extra": "^9.0.1",
1313
"http-server": "^0.12.3",
1414
"nightwatch": "^1.2.4",
15-
"which": "^2.0.1",
16-
"uint8arrays": "^1.1.0"
15+
"uint8arrays": "^1.1.0",
16+
"which": "^2.0.1"
1717
}
1818
}

packages/interface-ipfs-core/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+
# [0.141.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.141.0) (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* files ls should return string ([#3352](https://github.com/ipfs/js-ipfs/issues/3352)) ([16ecc74](https://github.com/ipfs/js-ipfs/commit/16ecc7485dfbb1f0c827c5f804974bb804f3dafd)), closes [#3345](https://github.com/ipfs/js-ipfs/issues/3345) [#2939](https://github.com/ipfs/js-ipfs/issues/2939) [#3330](https://github.com/ipfs/js-ipfs/issues/3330) [#2948](https://github.com/ipfs/js-ipfs/issues/2948)
12+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
13+
14+
15+
### Features
16+
17+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
18+
19+
20+
### BREAKING CHANGES
21+
22+
* types returned by `ipfs.files.ls` are now strings, in line with the docs but different to previous behaviour
23+
24+
Co-authored-by: Geoffrey Cohler <[email protected]>
25+
26+
27+
28+
29+
630
# [0.140.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.140.0) (2020-09-03)
731

832

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.140.0",
3+
"version": "0.141.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

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* error invalid version triggered in cli pin add/rm ([#3306](https://github.com/ipfs/js-ipfs/issues/3306)) ([69757f3](https://github.com/ipfs/js-ipfs/commit/69757f3c321c5d135ebde7a262c169427e4f1105)), closes [/github.com/ipfs/js-ipfs/blob/master/docs/core-api/PIN.md#returns-1](https://github.com//github.com/ipfs/js-ipfs/blob/master/docs/core-api/PIN.md/issues/returns-1)
12+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
13+
14+
15+
### Features
16+
17+
* enable custom formats for dag put and get ([#3347](https://github.com/ipfs/js-ipfs/issues/3347)) ([3250ff4](https://github.com/ipfs/js-ipfs/commit/3250ff453a1d3275cc4ab746f59f9f70abd5cc5f))
18+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))

packages/ipfs-cli/package.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-cli",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -39,11 +39,11 @@
3939
"err-code": "^2.0.3",
4040
"execa": "^4.0.3",
4141
"get-folder-size": "^2.0.1",
42-
"ipfs-core": "0.0.1",
43-
"ipfs-core-utils": "^0.4.0",
44-
"ipfs-http-client": "^47.0.1",
45-
"ipfs-http-gateway": "0.0.1",
46-
"ipfs-http-server": "0.0.1",
42+
"ipfs-core": "^0.1.0",
43+
"ipfs-core-utils": "^0.5.0",
44+
"ipfs-http-client": "^48.0.0",
45+
"ipfs-http-gateway": "^0.1.0",
46+
"ipfs-http-server": "^0.1.0",
4747
"ipfs-repo": "^6.0.3",
4848
"ipfs-utils": "^4.0.0",
4949
"ipld-dag-cbor": "^0.17.0",
@@ -75,6 +75,7 @@
7575
"yargs": "^16.0.3"
7676
},
7777
"devDependencies": {
78+
"@types/yargs": "^15.0.9",
7879
"aegir": "^28.0.0",
7980
"nanoid": "^3.1.12",
8081
"ncp": "^2.0.0",
@@ -83,8 +84,7 @@
8384
"string-argv": "^0.3.1",
8485
"temp-write": "^4.0.0",
8586
"typescript": "^4.0.3",
86-
"wrtc": "^0.4.6",
87-
"@types/yargs": "^15.0.9"
87+
"wrtc": "^0.4.6"
8888
},
8989
"optionalDependencies": {
9090
"prom-client": "^12.0.0",

packages/ipfs-core-utils/CHANGELOG.md

+16
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.5.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.5.0) (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
12+
13+
14+
### Features
15+
16+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
17+
18+
19+
20+
21+
622
# [0.4.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.4.0) (2020-09-03)
723

824

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.4.0",
3+
"version": "0.5.0",
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

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* files ls should return string ([#3352](https://github.com/ipfs/js-ipfs/issues/3352)) ([16ecc74](https://github.com/ipfs/js-ipfs/commit/16ecc7485dfbb1f0c827c5f804974bb804f3dafd)), closes [#3345](https://github.com/ipfs/js-ipfs/issues/3345) [#2939](https://github.com/ipfs/js-ipfs/issues/2939) [#3330](https://github.com/ipfs/js-ipfs/issues/3330) [#2948](https://github.com/ipfs/js-ipfs/issues/2948)
12+
* remove buffer export from ipfs-core ([#3348](https://github.com/ipfs/js-ipfs/issues/3348)) ([5cc6dfe](https://github.com/ipfs/js-ipfs/commit/5cc6dfebf96ad9509e7ded175291789e32402eec)), closes [#3312](https://github.com/ipfs/js-ipfs/issues/3312)
13+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
14+
15+
16+
### Features
17+
18+
* enable custom formats for dag put and get ([#3347](https://github.com/ipfs/js-ipfs/issues/3347)) ([3250ff4](https://github.com/ipfs/js-ipfs/commit/3250ff453a1d3275cc4ab746f59f9f70abd5cc5f))
19+
* remove support for SECIO ([#3295](https://github.com/ipfs/js-ipfs/issues/3295)) ([5f5ef7e](https://github.com/ipfs/js-ipfs/commit/5f5ef7ee6cc6dc634cc6adbede0602492490a85d))
20+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
21+
22+
23+
### BREAKING CHANGES
24+
25+
* types returned by `ipfs.files.ls` are now strings, in line with the docs but different to previous behaviour
26+
27+
Co-authored-by: Geoffrey Cohler <[email protected]>
28+
* `Buffer` is no longer exported from core
29+
* this removes support for SECIO making Noise the only security transport.
30+
31+
Closes https://github.com/ipfs/js-ipfs/issues/3210
32+
33+
Co-authored-by: achingbrain <[email protected]>

packages/ipfs-core/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-core",
3-
"version": "0.0.1",
3+
"version": "0.1.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": "^3.0.0",
7373
"ipfs-block-service": "^0.18.0",
74-
"ipfs-core-utils": "^0.4.0",
74+
"ipfs-core-utils": "^0.5.0",
7575
"ipfs-repo": "^6.0.3",
7676
"ipfs-unixfs": "^2.0.3",
7777
"ipfs-unixfs-exporter": "^3.0.4",
@@ -127,8 +127,8 @@
127127
"devDependencies": {
128128
"aegir": "^28.0.0",
129129
"delay": "^4.4.0",
130+
"interface-ipfs-core": "^0.141.0",
130131
"ipfsd-ctl": "^7.0.2",
131-
"interface-ipfs-core": "^0.140.0",
132132
"iso-random-stream": "^1.1.1",
133133
"iso-url": "^0.4.7",
134134
"nanoid": "^3.1.12",

packages/ipfs-http-client/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+
# [48.0.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@48.0.0) (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* disable cors by default ([#3275](https://github.com/ipfs/js-ipfs/issues/3275)) ([3ff833d](https://github.com/ipfs/js-ipfs/commit/3ff833db6444a3e931db9b76bf74c3420e57ee02))
12+
* do not double normalise input url ([#3351](https://github.com/ipfs/js-ipfs/issues/3351)) ([4eb196c](https://github.com/ipfs/js-ipfs/commit/4eb196c07129d0ee90a7ad55feca69b6b349d8b7)), closes [#3331](https://github.com/ipfs/js-ipfs/issues/3331)
13+
* files ls should return string ([#3352](https://github.com/ipfs/js-ipfs/issues/3352)) ([16ecc74](https://github.com/ipfs/js-ipfs/commit/16ecc7485dfbb1f0c827c5f804974bb804f3dafd)), closes [#3345](https://github.com/ipfs/js-ipfs/issues/3345) [#2939](https://github.com/ipfs/js-ipfs/issues/2939) [#3330](https://github.com/ipfs/js-ipfs/issues/3330) [#2948](https://github.com/ipfs/js-ipfs/issues/2948)
14+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
15+
16+
17+
### Features
18+
19+
* enable custom formats for dag put and get ([#3347](https://github.com/ipfs/js-ipfs/issues/3347)) ([3250ff4](https://github.com/ipfs/js-ipfs/commit/3250ff453a1d3275cc4ab746f59f9f70abd5cc5f))
20+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
21+
22+
23+
### BREAKING CHANGES
24+
25+
* types returned by `ipfs.files.ls` are now strings, in line with the docs but different to previous behaviour
26+
27+
Co-authored-by: Geoffrey Cohler <[email protected]>
28+
* - CORS origins will need to be [configured manually](https://github.com/ipfs/js-ipfs/blob/master/packages/ipfs-http-client/README.md#cors) before use with ipfs-http-client
29+
30+
31+
32+
33+
634
## [47.0.1](https://github.com/ipfs/js-ipfs/compare/[email protected]@47.0.1) (2020-09-09)
735

836
**Note:** Version bump only for package ipfs-http-client

packages/ipfs-http-client/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "47.0.1",
3+
"version": "48.0.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -54,7 +54,7 @@
5454
"cids": "^1.0.0",
5555
"debug": "^4.1.1",
5656
"form-data": "^3.0.0",
57-
"ipfs-core-utils": "^0.4.0",
57+
"ipfs-core-utils": "^0.5.0",
5858
"ipfs-utils": "^4.0.0",
5959
"ipld-block": "^0.10.1",
6060
"ipld-dag-cbor": "^0.17.0",
@@ -82,13 +82,13 @@
8282
"aegir": "^28.0.0",
8383
"cross-env": "^7.0.0",
8484
"go-ipfs": "^0.7.0",
85-
"interface-ipfs-core": "^0.140.0",
85+
"interface-ipfs-core": "^0.141.0",
86+
"ipfs-core": "^0.1.0",
8687
"ipfsd-ctl": "^7.0.2",
8788
"it-all": "^1.0.4",
8889
"it-concat": "^1.0.1",
8990
"it-pipe": "^1.1.0",
9091
"nock": "^13.0.2",
91-
"ipfs-core": "0.0.1",
9292
"typescript": "^4.0.3"
9393
},
9494
"engines": {
+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2020-10-28)
7+
8+
9+
### Features
10+
11+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))

packages/ipfs-http-gateway/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-gateway",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -35,7 +35,7 @@
3535
"cids": "^1.0.0",
3636
"debug": "^4.1.1",
3737
"hapi-pino": "^8.3.0",
38-
"ipfs-core-utils": "^0.4.0",
38+
"ipfs-core-utils": "^0.5.0",
3939
"ipfs-http-response": "^0.6.0",
4040
"is-ipfs": "^2.0.0",
4141
"it-all": "^1.0.4",
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Change Log
2+
3+
All notable changes to this project will be documented in this file.
4+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5+
6+
# 0.1.0 (2020-10-28)
7+
8+
9+
### Bug Fixes
10+
11+
* files ls should return string ([#3352](https://github.com/ipfs/js-ipfs/issues/3352)) ([16ecc74](https://github.com/ipfs/js-ipfs/commit/16ecc7485dfbb1f0c827c5f804974bb804f3dafd)), closes [#3345](https://github.com/ipfs/js-ipfs/issues/3345) [#2939](https://github.com/ipfs/js-ipfs/issues/2939) [#3330](https://github.com/ipfs/js-ipfs/issues/3330) [#2948](https://github.com/ipfs/js-ipfs/issues/2948)
12+
* use fetch in electron renderer and electron-fetch in main ([#3251](https://github.com/ipfs/js-ipfs/issues/3251)) ([639d71f](https://github.com/ipfs/js-ipfs/commit/639d71f7ac8f66d9633e753a2a6be927e14a5af0))
13+
14+
15+
### Features
16+
17+
* enable custom formats for dag put and get ([#3347](https://github.com/ipfs/js-ipfs/issues/3347)) ([3250ff4](https://github.com/ipfs/js-ipfs/commit/3250ff453a1d3275cc4ab746f59f9f70abd5cc5f))
18+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
19+
* webui v2.11.4 ([#3317](https://github.com/ipfs/js-ipfs/issues/3317)) ([7f32f7f](https://github.com/ipfs/js-ipfs/commit/7f32f7fd1eb3cffc3cd529827e4af7a8a08e36d9))
20+
21+
22+
### BREAKING CHANGES
23+
24+
* types returned by `ipfs.files.ls` are now strings, in line with the docs but different to previous behaviour
25+
26+
Co-authored-by: Geoffrey Cohler <[email protected]>

packages/ipfs-http-server/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-server",
3-
"version": "0.0.1",
3+
"version": "0.1.0",
44
"description": "JavaScript implementation of the IPFS specification",
55
"keywords": [
66
"IPFS"
@@ -37,8 +37,8 @@
3737
"dlv": "^1.1.3",
3838
"err-code": "^2.0.3",
3939
"hapi-pino": "^8.3.0",
40-
"ipfs-core-utils": "^0.4.0",
41-
"ipfs-http-gateway": "0.0.1",
40+
"ipfs-core-utils": "^0.5.0",
41+
"ipfs-http-gateway": "^0.1.0",
4242
"ipfs-unixfs": "^2.0.3",
4343
"ipld-dag-pb": "^0.20.0",
4444
"it-all": "^1.0.4",

packages/ipfs-message-port-client/CHANGELOG.md

+12
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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-10-28)
7+
8+
9+
### Features
10+
11+
* implement message-port ipfs.ls ([#3322](https://github.com/ipfs/js-ipfs/issues/3322)) ([4b8021d](https://github.com/ipfs/js-ipfs/commit/4b8021d389ac01f191d4fe87beead10088e53297))
12+
* type check & generate defs from jsdoc ([#3281](https://github.com/ipfs/js-ipfs/issues/3281)) ([bbcaf34](https://github.com/ipfs/js-ipfs/commit/bbcaf34111251b142273a5675f4754ff68bd9fa0))
13+
14+
15+
16+
17+
618
## [0.2.2](https://github.com/ipfs/js-ipfs/compare/[email protected]@0.2.2) (2020-09-09)
719

820
**Note:** Version bump only for package ipfs-message-port-client

0 commit comments

Comments
 (0)