Compare commits

..

23 Commits

Author SHA1 Message Date
a24fafd570 chore: make metadata optional on addStream 2020-12-10 12:32:34 +01:00
a99b9582dc chore: update interface record per libp2p pr feedback 2020-12-10 11:15:05 +01:00
e73646c893 chore: add listener options 2020-12-04 10:22:30 +01:00
0b4b09ffee chore: enable ts error reporter
Co-authored-by: Hugo Dias <hugomrdias@gmail.com>
2020-12-03 13:58:25 +01:00
56e606ee86 chore: remove record class file 2020-12-03 11:23:24 +01:00
7597875c32 chore: record interface instead of class, transport and stream muxer factory interface and minor pubsub fixes 2020-12-03 11:21:56 +01:00
ef86c87b40 chore: fix latest comments 2020-12-02 21:19:46 +01:00
5cfaf4128f chore: make inboundStream a asyncIterable 2020-12-02 18:16:39 +01:00
5cb2025c2a chore: address review 2020-12-02 17:50:01 +01:00
0801fc3c0b chore: add interface constructors 2020-12-02 16:35:49 +01:00
8fdc05d37d chore: use github actions and remove travis 2020-12-02 16:12:12 +01:00
6f090617aa chore: address review 2020-12-02 16:04:16 +01:00
67a5f51805 fix: type incompatibilities (#75) 2020-12-02 10:33:13 +01:00
bac57b05dc chore: remove generated types from vsc 2020-12-01 14:56:18 -08:00
6a95834570 feat: add types 2020-12-01 23:12:24 +01:00
7fd26cf6b9 fix: optional fields 2020-11-30 22:33:44 -08:00
b7f10727d6 fix: lint issues by disabling valid-jsdoc rules 2020-11-30 20:46:04 -08:00
3143efd7c1 fix: tsconfig to generate optionals correctly 2020-11-30 16:55:33 -08:00
f2d6a76dcf fix: missing type imports 2020-11-30 16:53:39 -08:00
7ccaf27e24 chore: generate fixed types 2020-11-30 15:06:11 -08:00
4e25c6e51c fix: add type annotations to improve innference 2020-11-30 15:05:36 -08:00
cba63941b0 feat: remove is-class that broke typings 2020-11-30 15:05:36 -08:00
c1cb68e043 fix: typedefs for MulticodecTopology 2020-11-27 12:45:31 -08:00
2 changed files with 2 additions and 10 deletions

View File

@ -1,12 +1,3 @@
# [0.8.0](https://github.com/libp2p/js-interfaces/compare/v0.7.2...v0.8.0) (2020-12-10)
### Features
* add types ([#74](https://github.com/libp2p/js-interfaces/issues/74)) ([e2419ea](https://github.com/libp2p/js-interfaces/commit/e2419ea308b5db38966850ba6349602c93ce3b0e))
<a name="0.7.2"></a>
## [0.7.2](https://github.com/libp2p/js-interfaces/compare/v0.7.1...v0.7.2) (2020-11-11)

View File

@ -1,6 +1,6 @@
{
"name": "libp2p-interfaces",
"version": "0.8.0",
"version": "0.7.2",
"description": "Interfaces for JS Libp2p",
"leadMaintainer": "Jacob Heun <jacobheun@gmail.com>",
"main": "src/index.js",
@ -27,6 +27,7 @@
"test": "aegir test",
"test:node": "aegir test --target node",
"test:browser": "aegir test --target browser",
"prepublishOnly": "npm run generate:types",
"release": "aegir release -t node -t browser",
"release-minor": "aegir release --type minor -t node -t browser",
"release-major": "aegir release --type major -t node -t browser"