@libp2p/daemon-server 8.0.2 → 8.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 +100 -15
package/README.md CHANGED
@@ -1,3 +1,5 @@
1
+ # @libp2p/daemon-server
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)
@@ -40,8 +42,8 @@ await server.start()
40
42
 
41
43
  Licensed under either of
42
44
 
43
- - Apache 2.0, ([LICENSE-APACHE](LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
44
- - MIT ([LICENSE-MIT](LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
45
+ - Apache 2.0, ([LICENSE-APACHE](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-server/LICENSE-APACHE) / <http://www.apache.org/licenses/LICENSE-2.0>)
46
+ - MIT ([LICENSE-MIT](https://github.com/libp2p/js-libp2p-daemon/blob/main/packages/libp2p-daemon-server/LICENSE-MIT) / <http://opensource.org/licenses/MIT>)
45
47
 
46
48
  # Contribution
47
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@libp2p/daemon-server",
3
- "version": "8.0.2",
3
+ "version": "8.0.3",
4
4
  "description": "API server for libp2p-daemon instances",
5
5
  "license": "Apache-2.0 OR MIT",
6
6
  "homepage": "https://github.com/libp2p/js-libp2p-daemon/tree/main/packages/libp2p-daemon-server#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,23 +135,23 @@
50
135
  "release": "aegir release"
51
136
  },
52
137
  "dependencies": {
53
- "@chainsafe/libp2p-gossipsub": "^14.0.0",
54
- "@libp2p/crypto": "^5.0.0",
55
- "@libp2p/daemon-protocol": "^6.0.0",
56
- "@libp2p/interface": "^2.0.0",
138
+ "@chainsafe/libp2p-gossipsub": "^14.1.0",
139
+ "@libp2p/crypto": "^5.0.6",
140
+ "@libp2p/daemon-protocol": "^7.0.2",
141
+ "@libp2p/interface": "^2.2.0",
57
142
  "@libp2p/kad-dht": "^14.1.0",
58
- "@libp2p/logger": "^5.0.0",
59
- "@libp2p/peer-id": "^5.0.0",
60
- "@libp2p/tcp": "^10.0.0",
61
- "@multiformats/multiaddr": "^12.1.14",
62
- "it-drain": "^3.0.5",
63
- "it-length-prefixed": "^9.0.4",
64
- "it-length-prefixed-stream": "^1.1.6",
143
+ "@libp2p/logger": "^5.1.3",
144
+ "@libp2p/peer-id": "^5.0.7",
145
+ "@libp2p/tcp": "^10.0.11",
146
+ "@multiformats/multiaddr": "^12.3.1",
147
+ "it-drain": "^3.0.7",
148
+ "it-length-prefixed": "^9.1.0",
149
+ "it-length-prefixed-stream": "^1.2.0",
65
150
  "it-pipe": "^3.0.1",
66
- "it-protobuf-stream": "^1.1.2",
151
+ "it-protobuf-stream": "^1.1.5",
67
152
  "it-pushable": "^3.2.3",
68
- "multiformats": "^13.0.1",
69
- "uint8arrays": "^5.0.1"
153
+ "multiformats": "^13.3.1",
154
+ "uint8arrays": "^5.1.0"
70
155
  },
71
156
  "devDependencies": {
72
157
  "aegir": "^45.0.1",