Skip to content

File tree

2 files changed

+32
-4
lines changed

2 files changed

+32
-4
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
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

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": "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": {

0 commit comments

Comments
 (0)