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

Commit 87893a6

Browse files
author
Alan Shaw
committed
chore: release version v0.35.0-rc.0
1 parent 1c4985c commit 87893a6

File tree

1 file changed

+51
-0
lines changed

1 file changed

+51
-0
lines changed

CHANGELOG.md

Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,54 @@
1+
<a name="0.35.0-rc.0"></a>
2+
# [0.35.0-rc.0](https://github.com/ipfs/js-ipfs/compare/v0.35.0-pre.0...v0.35.0-rc.0) (2019-03-06)
3+
4+
5+
### Bug Fixes
6+
7+
* add support for resolving to the middle of an IPLD block ([#1841](https://github.com/ipfs/js-ipfs/issues/1841)) ([fc08243](https://github.com/ipfs/js-ipfs/commit/fc08243))
8+
* dht browser disabled ([#1879](https://github.com/ipfs/js-ipfs/issues/1879)) ([7c5a843](https://github.com/ipfs/js-ipfs/commit/7c5a843))
9+
* ipv6 multiaddr in stdout ([#1854](https://github.com/ipfs/js-ipfs/issues/1854)) ([35fd541](https://github.com/ipfs/js-ipfs/commit/35fd541)), closes [#1853](https://github.com/ipfs/js-ipfs/issues/1853)
10+
* make clear pins function in tests serial ([#1910](https://github.com/ipfs/js-ipfs/issues/1910)) ([503e5ac](https://github.com/ipfs/js-ipfs/commit/503e5ac)), closes [#1890](https://github.com/ipfs/js-ipfs/issues/1890)
11+
* pin.rm test EPERM rename ([#1889](https://github.com/ipfs/js-ipfs/issues/1889)) ([c60de74](https://github.com/ipfs/js-ipfs/commit/c60de74))
12+
* temporarily disable random walk dht discovery ([#1907](https://github.com/ipfs/js-ipfs/issues/1907)) ([3fff46a](https://github.com/ipfs/js-ipfs/commit/3fff46a))
13+
14+
15+
### Code Refactoring
16+
17+
* export types and utilities statically ([#1908](https://github.com/ipfs/js-ipfs/issues/1908)) ([79d7fef](https://github.com/ipfs/js-ipfs/commit/79d7fef))
18+
19+
20+
### Features
21+
22+
* add `--enable-preload` to enable/disable preloading for daemons ([#1909](https://github.com/ipfs/js-ipfs/issues/1909)) ([9470900](https://github.com/ipfs/js-ipfs/commit/9470900))
23+
* limit connections number ([#1872](https://github.com/ipfs/js-ipfs/issues/1872)) ([bebce7f](https://github.com/ipfs/js-ipfs/commit/bebce7f))
24+
25+
26+
### BREAKING CHANGES
27+
28+
* `ipfs.util.isIPFS` and `ipfs.util.crypto` have moved to static exports and should be accessed via `const { isIPFS, crypto } = require('ipfs')`.
29+
30+
The modules available under `ipfs.types.*` have also become static exports.
31+
32+
License: MIT
33+
Signed-off-by: Alan Shaw <[email protected]>
34+
* `ipfs.resolve` now supports resolving to the middle of an IPLD block instead of erroring.
35+
36+
Given:
37+
38+
```js
39+
b = {"c": "some value"}
40+
a = {"b": {"/": cidOf(b) }}
41+
```
42+
43+
`ipfs resolve /ipld/cidOf(a)/b/c` should return `/ipld/cidOf(b)/c`. That is, it resolves the path as much as it can.
44+
45+
Previously it would simply fail with an error.
46+
47+
License: MIT
48+
Signed-off-by: Alan Shaw <[email protected]>
49+
50+
51+
152
<a name="0.35.0-pre.0"></a>
253
# [0.35.0-pre.0](https://github.com/ipfs/js-ipfs/compare/v0.34.4...v0.35.0-pre.0) (2019-02-11)
354

0 commit comments

Comments
 (0)