Skip to content

File tree

2 files changed

+34
-3
lines changed

2 files changed

+34
-3
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,37 @@
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+
# [55.0.0](https://github.com/ipfs/js-ipfs/compare/[email protected]@55.0.0) (2021-12-15)
7+
8+
9+
### Bug Fixes
10+
11+
* **pubsub:** multibase in pubsub http rpc ([#3922](https://github.com/ipfs/js-ipfs/issues/3922)) ([6eeaca4](https://github.com/ipfs/js-ipfs/commit/6eeaca452c36fa13be42d704575c577e4ca938f1))
12+
* return nested value from dag.get ([#3966](https://github.com/ipfs/js-ipfs/issues/3966)) ([45ac973](https://github.com/ipfs/js-ipfs/commit/45ac9730d6484e8324acfbc3579fce052b8452d7)), closes [#3957](https://github.com/ipfs/js-ipfs/issues/3957)
13+
14+
15+
### chore
16+
17+
* Bump @ipld/dag-cbor to v7 ([#3977](https://github.com/ipfs/js-ipfs/issues/3977)) ([73476f5](https://github.com/ipfs/js-ipfs/commit/73476f55e39ecfb01eb2b4880637aad658f51bc2))
18+
19+
20+
### Features
21+
22+
* dht client ([#3947](https://github.com/ipfs/js-ipfs/issues/3947)) ([62d8ecb](https://github.com/ipfs/js-ipfs/commit/62d8ecbc723e693a2544e69172d99c576d187c23))
23+
* update DAG API to match [email protected] changes ([#3917](https://github.com/ipfs/js-ipfs/issues/3917)) ([38c01be](https://github.com/ipfs/js-ipfs/commit/38c01be03b4fd5f401cd9b698cfdb4237d835b01))
24+
25+
26+
### BREAKING CHANGES
27+
28+
* **pubsub:** We had to make breaking changes to `pubsub` commands sent over HTTP RPC to fix data corruption caused by topic names and payload bytes that included `\n`. More details in https://github.com/ipfs/go-ipfs/issues/7939 and https://github.com/ipfs/go-ipfs/pull/8183
29+
* On decode of CBOR blocks, `undefined` values will be coerced to `null`
30+
* `ipfs.dag.put` no longer accepts a `format` arg, it is now `storeCodec` and `inputCodec`. `'json'` has become `'dag-json'`, `'cbor'` has become `'dag-cbor'` and so on
31+
* The DHT API has been refactored to return async iterators of query events
32+
33+
34+
35+
36+
637
## [54.0.2](https://github.com/ipfs/js-ipfs/compare/[email protected]@54.0.2) (2021-11-24)
738

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

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ipfs-http-client",
3-
"version": "54.0.2",
3+
"version": "55.0.0",
44
"description": "A client library for the IPFS HTTP API",
55
"keywords": [
66
"ipfs"
@@ -61,8 +61,8 @@
6161
"any-signal": "^2.1.2",
6262
"debug": "^4.1.1",
6363
"err-code": "^3.0.1",
64-
"ipfs-core-types": "^0.8.4",
65-
"ipfs-core-utils": "^0.12.2",
64+
"ipfs-core-types": "^0.9.0",
65+
"ipfs-core-utils": "^0.13.0",
6666
"ipfs-utils": "^9.0.2",
6767
"it-first": "^1.0.6",
6868
"it-last": "^1.0.4",

0 commit comments

Comments
 (0)