@libp2p/daemon-client 9.0.2 → 9.0.3

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 +4 -2
  2. package/package.json +99 -14
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/daemon-client
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-daemon.svg?style=flat-square)](https://codecov.io/gh/libp2p/js-libp2p-daemon)
@@ -53,8 +55,8 @@ await client.close()
53
55
 
54
56
  Licensed under either of
55
57
 
56
- - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
57
- - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
58
+ - Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-client/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
59
+ - MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-client/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
58
60
 
59
61
  # Contribution
60
62
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/daemon-client",
3
- "version": "9.0.2",
3
+ "version": "9.0.3",
4
4
  "description": "libp2p-daemon client implementation",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-client#readme",
@@ -39,6 +39,91 @@
39
39
  "sourceType": "module"
40
40
  }
41
41
  },
42
+ "release": {
43
+ "branches": [
44
+ "main"
45
+ ],
46
+ "plugins": [
47
+ [
48
+ "@semantic-release/commit-analyzer",
49
+ {
50
+ "preset": "conventionalcommits",
51
+ "releaseRules": [
52
+ {
53
+ "breaking": true,
54
+ "release": "major"
55
+ },
56
+ {
57
+ "revert": true,
58
+ "release": "patch"
59
+ },
60
+ {
61
+ "type": "feat",
62
+ "release": "minor"
63
+ },
64
+ {
65
+ "type": "fix",
66
+ "release": "patch"
67
+ },
68
+ {
69
+ "type": "docs",
70
+ "release": "patch"
71
+ },
72
+ {
73
+ "type": "test",
74
+ "release": "patch"
75
+ },
76
+ {
77
+ "type": "deps",
78
+ "release": "patch"
79
+ },
80
+ {
81
+ "scope": "no-release",
82
+ "release": false
83
+ }
84
+ ]
85
+ }
86
+ ],
87
+ [
88
+ "@semantic-release/release-notes-generator",
89
+ {
90
+ "preset": "conventionalcommits",
91
+ "presetConfig": {
92
+ "types": [
93
+ {
94
+ "type": "feat",
95
+ "section": "Features"
96
+ },
97
+ {
98
+ "type": "fix",
99
+ "section": "Bug Fixes"
100
+ },
101
+ {
102
+ "type": "chore",
103
+ "section": "Trivial Changes"
104
+ },
105
+ {
106
+ "type": "docs",
107
+ "section": "Documentation"
108
+ },
109
+ {
110
+ "type": "deps",
111
+ "section": "Dependencies"
112
+ },
113
+ {
114
+ "type": "test",
115
+ "section": "Tests"
116
+ }
117
+ ]
118
+ }
119
+ }
120
+ ],
121
+ "@semantic-release/changelog",
122
+ "@semantic-release/npm",
123
+ "@semantic-release/github",
124
+ "@semantic-release/git"
125
+ ]
126
+ },
42
127
  "scripts": {
43
128
  "clean": "aegir clean",
44
129
  "lint": "aegir lint",
@@ -50,26 +135,26 @@
50
135
  "release": "aegir release"
51
136
  },
52
137
  "dependencies": {
53
- "@libp2p/daemon-protocol": "^6.0.0",
54
- "@libp2p/interface": "^2.0.0",
55
- "@libp2p/logger": "^5.0.0",
56
- "@libp2p/peer-id": "^5.0.0",
57
- "@libp2p/tcp": "^10.0.0",
58
- "@multiformats/multiaddr": "^12.1.14",
59
- "it-protobuf-stream": "^1.1.2",
60
- "multiformats": "^13.0.1"
138
+ "@libp2p/daemon-protocol": "^7.0.2",
139
+ "@libp2p/interface": "^2.2.0",
140
+ "@libp2p/logger": "^5.1.3",
141
+ "@libp2p/peer-id": "^5.0.7",
142
+ "@libp2p/tcp": "^10.0.11",
143
+ "@multiformats/multiaddr": "^12.3.1",
144
+ "it-protobuf-stream": "^1.1.5",
145
+ "multiformats": "^13.3.1"
61
146
  },
62
147
  "devDependencies": {
63
- "@chainsafe/libp2p-gossipsub": "^14.0.0",
64
- "@libp2p/daemon-server": "^7.0.0",
65
- "@libp2p/interface-compliance-tests": "^6.0.0",
148
+ "@chainsafe/libp2p-gossipsub": "^14.1.0",
149
+ "@libp2p/daemon-server": "^8.0.2",
150
+ "@libp2p/interface-compliance-tests": "^6.1.8",
66
151
  "@libp2p/kad-dht": "^14.1.0",
67
152
  "aegir": "^45.0.1",
68
- "it-all": "^3.0.4",
153
+ "it-all": "^3.0.6",
69
154
  "it-pipe": "^3.0.1",
70
155
  "sinon": "^19.0.2",
71
156
  "sinon-ts": "^2.0.0",
72
157
  "uint8arraylist": "^2.4.8",
73
- "uint8arrays": "^5.0.1"
158
+ "uint8arrays": "^5.1.0"
74
159
  }
75
160
  }