@libp2p/tls 1.0.1-fb7c51c3c → 1.0.2

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/tls
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
  Implements the spec at <https://github.com/libp2p/specs/blob/master/tls/tls.md>
11
28
 
12
29
  ## Example
@@ -0,0 +1,10 @@
1
+ {
2
+ "TLSComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_tls.TLSComponents.html",
3
+ ".:TLSComponents": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_tls.TLSComponents.html",
4
+ "TLSInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_tls.TLSInit.html",
5
+ ".:TLSInit": "https://libp2p.github.io/js-libp2p/interfaces/_libp2p_tls.TLSInit.html",
6
+ "PROTOCOL": "https://libp2p.github.io/js-libp2p/variables/_libp2p_tls.PROTOCOL.html",
7
+ ".:PROTOCOL": "https://libp2p.github.io/js-libp2p/variables/_libp2p_tls.PROTOCOL.html",
8
+ "tls": "https://libp2p.github.io/js-libp2p/functions/_libp2p_tls.tls.html",
9
+ ".:tls": "https://libp2p.github.io/js-libp2p/functions/_libp2p_tls.tls.html"
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/tls",
3
- "version": "1.0.1-fb7c51c3c",
3
+ "version": "1.0.2",
4
4
  "description": "A connection encrypter that uses TLS 1.3",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p/tree/main/packages/connection-encrypter-tls#readme",
@@ -44,12 +44,13 @@
44
44
  "generate": "protons ./src/pb/index.proto",
45
45
  "lint": "aegir lint",
46
46
  "test:node": "aegir test -t node --cov",
47
- "dep-check": "aegir dep-check"
47
+ "dep-check": "aegir dep-check",
48
+ "doc-check": "aegir doc-check"
48
49
  },
49
50
  "dependencies": {
50
- "@libp2p/crypto": "4.0.2-fb7c51c3c",
51
- "@libp2p/interface": "1.1.3-fb7c51c3c",
52
- "@libp2p/peer-id": "4.0.6-fb7c51c3c",
51
+ "@libp2p/crypto": "^4.0.3",
52
+ "@libp2p/interface": "^1.1.4",
53
+ "@libp2p/peer-id": "^4.0.7",
53
54
  "@peculiar/asn1-schema": "^2.3.8",
54
55
  "@peculiar/asn1-x509": "^2.3.8",
55
56
  "@peculiar/webcrypto": "^1.4.5",
@@ -59,14 +60,14 @@
59
60
  "it-stream-types": "^2.0.1",
60
61
  "protons-runtime": "^5.4.0",
61
62
  "uint8arraylist": "^2.4.8",
62
- "uint8arrays": "^5.0.1"
63
+ "uint8arrays": "^5.0.2"
63
64
  },
64
65
  "devDependencies": {
65
- "@libp2p/interface-compliance-tests": "5.3.1-fb7c51c3c",
66
- "@libp2p/logger": "4.0.6-fb7c51c3c",
67
- "@libp2p/peer-id-factory": "4.0.6-fb7c51c3c",
66
+ "@libp2p/interface-compliance-tests": "^5.3.2",
67
+ "@libp2p/logger": "^4.0.7",
68
+ "@libp2p/peer-id-factory": "^4.0.7",
68
69
  "@multiformats/multiaddr": "^12.1.14",
69
- "aegir": "^42.2.3",
70
+ "aegir": "^42.2.4",
70
71
  "protons": "^7.5.0",
71
72
  "sinon": "^17.0.1"
72
73
  },