File tree Expand file tree Collapse file tree 3 files changed +27
-12
lines changed
packages/socket.io-cluster-adapter Expand file tree Collapse file tree 3 files changed +27
-12
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ Here are the detailed changelogs for each package in this monorepo:
1010| ` socket.io ` | [ link] ( packages/socket.io/CHANGELOG.md ) |
1111| ` socket.io-adapter ` | [ link] ( packages/socket.io-adapter/CHANGELOG.md ) |
1212| ` socket.io-client ` | [ link] ( packages/socket.io-client/CHANGELOG.md ) |
13+ | ` @socket.io/cluster-adapter ` | [ link] ( packages/socket.io-cluster-adapter/CHANGELOG.md ) |
1314| ` @socket.io/cluster-engine ` | [ link] ( packages/socket.io-cluster-engine/CHANGELOG.md ) |
1415| ` @socket.io/component-emitter ` | [ link] ( packages/socket.io-component-emitter/History.md ) |
1516| ` socket.io-parser ` | [ link] ( packages/socket.io-parser/CHANGELOG.md ) |
Original file line number Diff line number Diff line change 1- # History
1+ # Changelog
22
3- - [ 0.2.2] ( #022-2023-03-24 ) (Mar 2023)
4- - [ 0.2.1] ( #021-2022-10-13 ) (Oct 2022)
5- - [ 0.2.0] ( #020-2022-04-28 ) (Apr 2022)
6- - [ 0.1.0] ( #010-2021-06-22 ) (Jun 2021)
3+ | Version | Release date |
4+ | --------------------------| --------------|
5+ | [ 0.3.0] ( #030-2025-10-16 ) | October 2025 |
6+ | [ 0.2.2] ( #022-2023-03-24 ) | March 2023 |
7+ | [ 0.2.1] ( #021-2022-10-13 ) | October 2022 |
8+ | [ 0.2.0] ( #020-2022-04-28 ) | April 2022 |
9+ | [ 0.1.0] ( #010-2021-06-22 ) | June 2021 |
710
811
912
10- # Release notes
13+ ## [ 0.3.0] ( https://github.com/socketio/socket.io-cluster-adapter/compare/0.2.2...0.3.0 ) (2025-10-16)
14+
15+ This release contains an important refactor of the adapter ([ this commit] ( https://github.com/socketio/socket.io-cluster-adapter/commit/0c431243e28913fdd2a4a3de3e67a9f38d67a3aa ) ), as most of the logic has been moved in the ` ClusterAdapter ` class of the ` socket.io-adapter ` package.
16+
17+ Besides, the ` @socket.io/cluster-adapter ` package is now part of the ` socket.io ` monorepo.
18+
19+
1120
1221## [ 0.2.2] ( https://github.com/socketio/socket.io-cluster-adapter/compare/0.2.1...0.2.2 ) (2023-03-24)
1322
Original file line number Diff line number Diff line change 11{
22 "name" : " @socket.io/cluster-adapter" ,
3- "version" : " 0.2.2 " ,
3+ "version" : " 0.3.0 " ,
44 "description" : " The Socket.IO cluster adapter, allowing to broadcast events between several Socket.IO servers" ,
55 "license" : " MIT" ,
6+ "homepage" : " https://github.com/socketio/socket.io/tree/main/packages/socket.io-cluster-adapter#readme" ,
67 "repository" : {
78 "type" : " git" ,
8- "url" : " git@github.com:socketio/socket.io-cluster-adapter.git"
9+ "url" : " git+https://github.com/socketio/socket.io.git"
10+ },
11+ "bugs" : {
12+ "url" : " https://github.com/socketio/socket.io/issues"
913 },
1014 "files" : [
1115 " dist/"
1216 ],
1317 "main" : " ./dist/index.js" ,
1418 "types" : " ./dist/index.d.ts" ,
1519 "scripts" : {
16- "test" : " npm run format:check && tsc && nyc mocha --import=tsx test/index.ts" ,
17- "format:check" : " prettier --check 'lib/**/*.ts' 'test/**/*.ts'" ,
18- "format:fix" : " prettier --write 'lib/**/*.ts' 'test/**/*.ts'" ,
19- "prepack" : " tsc"
20+ "compile" : " rimraf ./dist && tsc" ,
21+ "test" : " npm run format:check && npm run compile && nyc mocha --import=tsx test/index.ts" ,
22+ "format:check" : " prettier --check \" lib/**/*.ts' \" test/**/*.ts\" " ,
23+ "format:fix" : " prettier --write \" lib/**/*.ts\" \" test/**/*.ts\" " ,
24+ "prepack" : " npm run compile"
2025 },
2126 "dependencies" : {
2227 "debug" : " ~4.4.1"
You can’t perform that action at this time.
0 commit comments