chore(release): 0.2.0

Diff: https://github.com/socketio/socket.io-cluster-adapter/compare/0.1.0...0.2.0
This commit is contained in:
Damien Arrachequesne
2022-04-28 16:16:13 +02:00
parent 055b7840d8
commit 43f9ee8d23
3 changed files with 22 additions and 3 deletions

View File

@@ -1,3 +1,22 @@
# [0.2.0](https://github.com/socketio/socket.io-cluster-adapter/compare/0.1.0...0.2.0) (2022-04-28)
### Features
* broadcast and expect multiple acks ([055b784](https://github.com/socketio/socket.io-cluster-adapter/commit/055b7840d8cf88173d8299041ef3fafa9791c97a))
This feature was added in `socket.io@4.5.0`:
```js
io.timeout(1000).emit("some-event", (err, responses) => {
// ...
});
```
Thanks to this change, it will now work within a Node.js cluster.
# 0.1.0 (2021-06-22)
Initial commit

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{
"name": "@socket.io/cluster-adapter",
"version": "0.1.0",
"version": "0.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "@socket.io/cluster-adapter",
"version": "0.1.0",
"version": "0.2.0",
"license": "MIT",
"dependencies": {
"debug": "~4.3.1",

View File

@@ -1,6 +1,6 @@
{
"name": "@socket.io/cluster-adapter",
"version": "0.1.0",
"version": "0.2.0",
"description": "The Socket.IO cluster adapter, allowing to broadcast events between several Socket.IO servers",
"license": "MIT",
"repository": {