@libp2p/identify 1.0.14 → 1.0.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +17 -0
  2. package/package.json +12 -11
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/identify
2
+
1
3
  [![libp2p.io](https://img.shields.io/badge/project-libp2p-yellow.svg?style=flat-square)](http://libp2p.io/)
2
4
  [![Discuss](https://img.shields.io/discourse/https/discuss.libp2p.io/posts.svg?style=flat-square)](https://discuss.libp2p.io)
3
5
  [![codecov](https://img.shields.io/codecov/c/github/libp2p/js-libp2p.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p)
@@ -7,6 +9,21 @@
7
9
 
8
10
  # About
9
11
 
12
+ <!--
13
+
14
+ !IMPORTANT!
15
+
16
+ Everything in this README between "# About" and "# Install" is automatically
17
+ generated and will be overwritten the next time the doc generator is run.
18
+
19
+ To make changes to this section, please update the @packageDocumentation section
20
+ of src/index.js or src/index.ts
21
+
22
+ To experiment with formatting, please run "npm run docs" from the root of this
23
+ repo and examine the changes made.
24
+
25
+ -->
26
+
10
27
  Use the `identify` function to add support for the [Identify protocol](https://github.com/libp2p/specs/blob/master/identify/README.md) to libp2p.
11
28
 
12
29
  ## Example
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/identify",
3
- "version": "1.0.14",
3
+ "version": "1.0.15",
4
4
  "description": "Implementation of the Identify Protocol",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/protocol-identify#readme",
@@ -48,26 +48,27 @@
48
48
  "test:firefox": "aegir test -t browser -- --browser firefox",
49
49
  "test:firefox-webworker": "aegir test -t webworker -- --browser firefox",
50
50
  "test:node": "aegir test -t node --cov",
51
- "dep-check": "aegir dep-check"
51
+ "dep-check": "aegir dep-check",
52
+ "doc-check": "aegir doc-check"
52
53
  },
53
54
  "dependencies": {
54
- "@libp2p/interface": "^1.1.3",
55
- "@libp2p/interface-internal": "^1.0.8",
56
- "@libp2p/peer-id": "^4.0.6",
57
- "@libp2p/peer-record": "^7.0.9",
55
+ "@libp2p/interface": "^1.1.4",
56
+ "@libp2p/interface-internal": "^1.0.9",
57
+ "@libp2p/peer-id": "^4.0.7",
58
+ "@libp2p/peer-record": "^7.0.10",
58
59
  "@multiformats/multiaddr": "^12.1.14",
59
60
  "@multiformats/multiaddr-matcher": "^1.1.2",
60
61
  "it-protobuf-stream": "^1.1.2",
61
62
  "protons-runtime": "^5.4.0",
62
63
  "uint8arraylist": "^2.4.8",
63
- "uint8arrays": "^5.0.1",
64
+ "uint8arrays": "^5.0.2",
64
65
  "wherearewe": "^2.0.1"
65
66
  },
66
67
  "devDependencies": {
67
- "@libp2p/interface-compliance-tests": "^5.3.1",
68
- "@libp2p/logger": "^4.0.6",
69
- "@libp2p/peer-id-factory": "^4.0.6",
70
- "aegir": "^42.2.3",
68
+ "@libp2p/interface-compliance-tests": "^5.3.2",
69
+ "@libp2p/logger": "^4.0.7",
70
+ "@libp2p/peer-id-factory": "^4.0.7",
71
+ "aegir": "^42.2.4",
71
72
  "delay": "^6.0.0",
72
73
  "it-drain": "^3.0.5",
73
74
  "it-length-prefixed": "^9.0.4",