Skip to content

Latest commit

 

History

History
489 lines (229 loc) · 14.3 KB

CHANGELOG.md

File metadata and controls

489 lines (229 loc) · 14.3 KB

3.2.1 (2021-09-02)

3.2.0 (2021-08-30)

Features

3.1.1 (2021-08-24)

3.1.0 (2021-06-24)

3.0.1 (2021-03-02)

Bug Fixes

3.0.0 (2021-03-02)

Reverts

  • Revert "fix: fix maps types" (b902a59)
  • Revert "fix: update aegir and revert varint" (cf9a68d)

2.1.2 (2021-03-02)

Bug Fixes

2.1.1 (2021-03-02)

Bug Fixes

  • update aegir and revert varint (d0a413f)

Features

  • export tables and dedup code (d26166b)

2.1.0 (2020-12-11)

Reverts

  • Revert "Revert "feat: add ts types (#70)"" (c19b337), closes #70

2.0.4 (2020-12-11)

2.0.3 (2020-12-11)

Features

2.0.2 (2020-12-11)

Features

2.0.1 (2020-09-07)

Bug Fixes

  • getNumber varint decode bug (ce93ceb), closes #50

2.0.0 (2020-07-31)

Bug Fixes

  • replace node buffers with uint8arrays (688a071)

BREAKING CHANGES

    • Where node Buffers were returned, they are now Uint8Arrays

1.0.4 (2020-07-21)

Features

  • npm run update-table script (a3811fb)
  • update table with lots of new entries (1744eb6)

1.0.3 (2020-06-27)

Features

  • add dag-jose, and -cose to table (230d8d3)

1.0.2 (2020-06-16)

1.0.1 (2020-03-16)

Bug Fixes

Features

  • adds blurb about types on definitelytyped (8815d4b)

1.0.0 (2019-12-23)

0.5.7 (2019-12-22)

Bug Fixes

  • name table not hex encoded (88bf273)
  • remove unused table file (f3766e5)

0.5.6 (2019-12-05)

Features

0.5.4 (2019-07-16)

Features

0.5.3 (2019-05-28)

0.5.2 (2019-05-28)

Features

  • add libp2p-key (db71d5c)
  • add method to convert codec names to numbers and back (a18bce9)

0.5.1 (2019-04-19)

Bug Fixes

  • update the multicodec table (2e5367f), closes #40

0.5.0 (2019-01-24)

Features

  • add codes as constants (1c43120)
  • add convenience function for getting the codec code (ab110e3)
  • update scripts (b74f269)

0.4.0 (2019-01-08)

  • Revert "feat: make adding a custom codec possible" (9e251ce)

Chores

  • fully automatic table generation (f3d8c0d)

BREAKING CHANGES

  • multibase is not part of this package anymore

As multibase works differently from multicodec, those codecs were removed from the multicodec table, hence those are also removed from this implementation as we have automatic conversion from the upstream table.

  • the addCodec() function is removed

The addCodec() function is removed as it doesn't work as expected. Things break as soon as the module is loaded several times, which can happen if dependencies require a different version.

Steps to reproduce this problem:

$ mkdir addcodecbug
$ cd addcodecbug
$ npm install cids@0.5.7 multicodec@0.3.0
npm WARN saveError ENOENT: no such file or directory, open '/tmp/addcodecbug/package.json'
npm notice created a lockfile as package-lock.json. You should commit this file.
npm WARN enoent ENOENT: no such file or directory, open '/tmp/addcodecbug/package.json'
npm WARN addcodecbug No description
npm WARN addcodecbug No repository field.
npm WARN addcodecbug No README data
npm WARN addcodecbug No license field.

+ multicodec@0.3.0
+ cids@0.5.7
added 10 packages from 35 contributors and audited 14 packages in 1.363s
found 0 vulnerabilities
$ cat > index.js <<'EOF'
// Uses multicodec v0.2.7
const CID = require('cids')
// Imports multicodec v0.3.0
const multicodec = require('multicodec')

multicodec.addCodec('my-codec', Buffer.from('5566', 'hex'))
// Works, the codec was added
console.log(multicodec.getCodeVarint('my-codec'))

const multihash = Buffer.from(
  '1220b94d27b9934d3e08a52e52d7da7dabfac484efe37a5380ee9088f7ace2efcde9',
  'hex')
const cid = new CID(1, 'my-codec', multihash)
console.log(cid)
// Fails as `my-codec` was only added to the multicodec module loaded by this
// file, and not the one loaded by `cids`.
console.log(cid.toBaseEncodedString())
EOF
$ node index.js
<Buffer e6 aa 01>
CID {
  codec: 'my-codec',
  version: 1,
  multihash:
   <Buffer 12 20 b9 4d 27 b9 93 4d 3e 08 a5 2e 52 d7 da 7d ab fa c4 84 ef e3 7a 53 80 ee 90 88 f7 ac e2 ef cd e9> }
/tmp/addcodecbug/node_modules/cids/node_modules/multicodec/src/index.js:76
    throw new Error('Codec `' + codecName + '` not found')
    ^

Error: Codec `my-codec` not found
    at Object.exports.getCodeVarint (/tmp/addcodecbug/node_modules/cids/node_modules/multicodec/src/index.js:76:11)
    at ClassIsWrapper.get buffer [as buffer] (/tmp/addcodecbug/node_modules/cids/src/index.js:131:22)
    at ClassIsWrapper.toBaseEncodedString (/tmp/addcodecbug/node_modules/cids/src/index.js:202:44)
    at Object.<anonymous> (/tmp/addcodecbug/index.js:17:17)
    at Module._compile (internal/modules/cjs/loader.js:702:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:713:10)
    at Module.load (internal/modules/cjs/loader.js:612:32)
    at tryModuleLoad (internal/modules/cjs/loader.js:551:12)
    at Function.Module._load (internal/modules/cjs/loader.js:543:3)
    at Function.Module.runMain (internal/modules/cjs/loader.js:744:10)

0.3.0 (2018-12-18)

Bug Fixes

Chores

BREAKING CHANGES

  • 'murmur3' is now called 'murmur3-128'

0.2.7 (2018-06-06)

Bug Fixes

  • throw error instead of returning undefined (9859a71)

Features

  • add codec name to codec code helper (46e0e02)
  • make adding a custom codec possible (c6ee55b)

0.2.6 (2018-01-20)

0.2.5 (2017-10-11)

0.2.4 (2017-10-06)

Bug Fixes

0.2.3 (2017-10-06)

0.2.2 (2017-10-06)

0.2.1 (2017-10-06)

0.2.0 (2017-10-06)

Bug Fixes

  • rename "raw" codec to "bin" to match multiformats table (#19) (4f97ded)

0.1.9 (2017-08-29)

0.1.8 (2017-07-12)

0.1.7 (2017-03-16)

0.1.6 (2017-03-15)

Features

0.1.5 (2017-02-09)

0.1.4 (2017-02-09)

0.1.3 (2016-12-30)

0.1.2 (2016-12-06)

Bug Fixes

0.1.1 (2016-12-06)

0.1.0 (2016-10-02)

Bug Fixes

Features

  • add IPLD formats to table (b4ac638)

0.0.1 (2016-09-26)

Features