@libp2p/tls 1.1.5-df330695a → 1.1.5-e1ca9cced

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
@@ -34,7 +34,7 @@ import { tls } from '@libp2p/tls'
34
34
 
35
35
  const node = await createLibp2p({
36
36
  // ...other options
37
- connectionEncryption: [
37
+ connectionEncrypters: [
38
38
  tls()
39
39
  ]
40
40
  })
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })
package/dist/src/index.js CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })
package/dist/src/tls.d.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })
package/dist/src/tls.js CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/tls",
3
- "version": "1.1.5-df330695a",
3
+ "version": "1.1.5-e1ca9cced",
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",
@@ -48,9 +48,9 @@
48
48
  "doc-check": "aegir doc-check"
49
49
  },
50
50
  "dependencies": {
51
- "@libp2p/crypto": "4.1.9-df330695a",
52
- "@libp2p/interface": "1.7.0-df330695a",
53
- "@libp2p/peer-id": "4.2.4-df330695a",
51
+ "@libp2p/crypto": "4.1.9-e1ca9cced",
52
+ "@libp2p/interface": "1.7.0-e1ca9cced",
53
+ "@libp2p/peer-id": "4.2.4-e1ca9cced",
54
54
  "@peculiar/asn1-schema": "^2.3.8",
55
55
  "@peculiar/asn1-x509": "^2.3.8",
56
56
  "@peculiar/webcrypto": "^1.4.6",
@@ -63,8 +63,8 @@
63
63
  "uint8arrays": "^5.1.0"
64
64
  },
65
65
  "devDependencies": {
66
- "@libp2p/interface-compliance-tests": "5.4.12-df330695a",
67
- "@libp2p/logger": "4.0.20-df330695a",
66
+ "@libp2p/interface-compliance-tests": "5.4.12-e1ca9cced",
67
+ "@libp2p/logger": "4.0.20-e1ca9cced",
68
68
  "@multiformats/multiaddr": "^12.2.3",
69
69
  "aegir": "^44.0.1",
70
70
  "protons": "^7.5.0",
package/src/index.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })
package/src/tls.ts CHANGED
@@ -11,7 +11,7 @@
11
11
  *
12
12
  * const node = await createLibp2p({
13
13
  * // ...other options
14
- * connectionEncryption: [
14
+ * connectionEncrypters: [
15
15
  * tls()
16
16
  * ]
17
17
  * })