Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Releases: ipfs-inactive/js-ipfs-http-client

v33.0.1

10 Jul 13:31
Compare
Choose a tag to compare

Bug Fixes

v33.0.0

10 Jul 09:19
Compare
Choose a tag to compare

Bug Fixes

v32.0.1

21 May 21:13
Compare
Choose a tag to compare

Bug Fixes

v32.0.0

21 May 09:25
Compare
Choose a tag to compare

Bug Fixes

  • handle empty array return value in dht.findProvs (#1003) (15ab7c5)

Chores

BREAKING CHANGES

  • The default string encoding for version 1 CIDs has changed to base32.

IPLD formats have been updated to the latest versions. IPLD nodes returned by ipfs.dag and ipfs.object commands have significant breaking changes. If you are using these commands in your application you are likely to encounter the following changes to dag-pb nodes (the default node type that IPFS creates):

  • DAGNode properties have been renamed as follows:
    • data => Data
    • links => Links
    • size => size (Note: no change)
  • DAGLink properties have been renamed as follows:
    • cid => Hash
    • name => Name
    • size => Tsize

See CHANGELOGs for each IPLD format for it's respective changes, you can read more about the dag-pb changes in the CHANGELOG

License: MIT
Signed-off-by: Alan Shaw alan.shaw@protocol.ai

v31.1.0

16 May 21:43
Compare
Choose a tag to compare

Features

  • add support for File DOM API to files-regular (#986) (7b49f7e)

v31.0.2

16 May 15:50
Compare
Choose a tag to compare

Bug Fixes

v31.0.1

15 May 15:50
Compare
Choose a tag to compare

Bug Fixes

v31.0.0

13 May 12:21
Compare
Choose a tag to compare

Features

BREAKING CHANGES

  • ipfs.refs now returns objects with camelCase properties not PascalCase properties. i.e. { ref, err } not { Ref, Err }

v30.1.4

29 Apr 15:27
Compare
Choose a tag to compare

Bug Fixes

v30.1.3

11 Apr 14:20
Compare
Choose a tag to compare

Bug Fixes

  • fix missing buffer bundling with browserify (#966) (944a64b), closes #964