@libp2p/plaintext 1.0.15-fb7c51c3c → 1.0.16

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.
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/plaintext
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
  A connection encrypter that does no connection encryption.
11
28
 
12
29
  This should not be used in production should be used for research purposes only.
@@ -0,0 +1,8 @@
1
+ {
2
+ "PlaintextComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_plaintext.PlaintextComponents.html",
3
+ ".:PlaintextComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_plaintext.PlaintextComponents.html",
4
+ "PlaintextInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_plaintext.PlaintextInit.html",
5
+ ".:PlaintextInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_plaintext.PlaintextInit.html",
6
+ "plaintext": "https://libp2p.github.io/js-libp2p/functions/_libp2p_plaintext.plaintext.html",
7
+ ".:plaintext": "https://libp2p.github.io/js-libp2p/functions/_libp2p_plaintext.plaintext.html"
8
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/plaintext",
3
- "version": "1.0.15-fb7c51c3c",
3
+ "version": "1.0.16",
4
4
  "description": "An insecure connection encrypter",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/connection-encrypter-plaintext#readme",
@@ -48,22 +48,23 @@
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-fb7c51c3c",
55
- "@libp2p/peer-id": "4.0.6-fb7c51c3c",
55
+ "@libp2p/interface": "^1.1.4",
56
+ "@libp2p/peer-id": "^4.0.7",
56
57
  "it-protobuf-stream": "^1.1.2",
57
58
  "it-stream-types": "^2.0.1",
58
59
  "protons-runtime": "^5.4.0",
59
60
  "uint8arraylist": "^2.4.8"
60
61
  },
61
62
  "devDependencies": {
62
- "@libp2p/interface-compliance-tests": "5.3.1-fb7c51c3c",
63
- "@libp2p/logger": "4.0.6-fb7c51c3c",
64
- "@libp2p/peer-id-factory": "4.0.6-fb7c51c3c",
63
+ "@libp2p/interface-compliance-tests": "^5.3.2",
64
+ "@libp2p/logger": "^4.0.7",
65
+ "@libp2p/peer-id-factory": "^4.0.7",
65
66
  "@multiformats/multiaddr": "^12.1.14",
66
- "aegir": "^42.2.3",
67
+ "aegir": "^42.2.4",
67
68
  "protons": "^7.5.0",
68
69
  "sinon": "^17.0.1"
69
70
  },