Compare commits

..

5 Commits

4 changed files with 34 additions and 12 deletions

View File

@ -1,3 +1,23 @@
<a name="0.14.1"></a>
## [0.14.1](https://github.com/libp2p/js-peer-id/compare/v0.13.13...v0.14.1) (2020-09-03)
### Bug Fixes
* privKey possible undefined ([#129](https://github.com/libp2p/js-peer-id/issues/129)) ([224b30c](https://github.com/libp2p/js-peer-id/commit/224b30c))
* replace node buffers with uint8arrays ([#127](https://github.com/libp2p/js-peer-id/issues/127)) ([d16ce9c](https://github.com/libp2p/js-peer-id/commit/d16ce9c))
* ts constructor types ([#130](https://github.com/libp2p/js-peer-id/issues/130)) ([d40d588](https://github.com/libp2p/js-peer-id/commit/d40d588))
* typo in readme ([#128](https://github.com/libp2p/js-peer-id/issues/128)) ([6d571ae](https://github.com/libp2p/js-peer-id/commit/6d571ae))
### BREAKING CHANGES
* - Where node Buffers were returned, now Uint8Arrays are
* chore: remove gh dep
<a name="0.14.0"></a>
# [0.14.0](https://github.com/libp2p/js-peer-id/compare/v0.13.13...v0.14.0) (2020-08-07)

View File

@ -157,7 +157,7 @@ Returns `Promise<PeerId>`.
Creates a Peer ID from hex string representing the key's multihash.
Returns `PeerId.
Returns `PeerId`.
### `createFromBytes(buf)`

View File

@ -1,6 +1,6 @@
{
"name": "peer-id",
"version": "0.14.0",
"version": "0.14.1",
"description": "IPFS Peer Id implementation in Node.js",
"leadMaintainer": "Vasco Santos <santos.vasco10@gmail.com>",
"main": "src/index.js",
@ -65,19 +65,21 @@
"Hugo Dias <hugomrdias@gmail.com>",
"Maciej Krüger <mkg20001@gmail.com>",
"Alex Potsides <alex@achingbrain.net>",
"Robert Kiel <robert.kiel@validitylabs.org>",
"Nate Foss <npfoss@gmail.com>",
"Robert Kiel <robert.kiel@validitylabs.org>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <victorbjelkholm@gmail.com>",
"Arve Knudsen <arve.knudsen@gmail.com>",
"Carson Farmer <carson.farmer@gmail.com>",
"Christian Paul <info@jaller.de>",
"Henrique Dias <hacdias@gmail.com>",
"Marcin Rataj <lidel@lidel.org>",
"Michael Garvin <gar+gh@danger.computer>",
"Prashanth Chandra <coolshanth94@gmail.com>",
"Richard Littauer <richard.littauer@gmail.com>",
"Richard Schneider <makaretu@gmail.com>",
"Marcin Rataj <lidel@lidel.org>",
"Topper Bowers <topper@quorumcontrol.com>",
"Henrique Dias <hacdias@gmail.com>",
"Vojtech Simetka <vojtech@simetka.cz>",
"Yahya <ya7yaz@gmail.com>",
"Christian Paul <info@jaller.de>",
"Carson Farmer <carson.farmer@gmail.com>",
"Arve Knudsen <arve.knudsen@gmail.com>",
"Michael Garvin <gar+gh@danger.computer>",
"Prashanth Chandra <coolshanth94@gmail.com>"
"Adam Uhlíř <adam@uhlir.dev>"
]
}

4
src/index.d.ts vendored
View File

@ -31,7 +31,7 @@ declare namespace PeerId {
/**
* Private key.
*/
privKey: string;
privKey?: string;
};
/**
@ -100,7 +100,7 @@ declare namespace PeerId {
* PeerId is an object representation of a peer identifier.
*/
declare class PeerId {
constructor(id: Uint8Array | string, privKey?: PrivateKey, pubKey?: PublicKey);
constructor(id: Uint8Array, privKey?: PrivateKey, pubKey?: PublicKey);
/**
* Raw id.