diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b42f3a7fd..43fe970913 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# [3.0.0-rc2](https://github.com/socketio/socket.io/compare/3.0.0-rc1...3.0.0-rc2) (2020-10-15) + + +### Bug Fixes + +* close clients with no namespace ([91cd255](https://github.com/socketio/socket.io/commit/91cd255ba76ff6a780c62740f9f5cd3a76f5d7c7)) + + +### Code Refactoring + +* remove duplicate _sockets map ([8a5db7f](https://github.com/socketio/socket.io/commit/8a5db7fa36a075da75cde43cd4fb6382b7659953)) + + +### Features + +* move binary detection back to the parser ([669592d](https://github.com/socketio/socket.io/commit/669592d120409a5cf00f128070dee6d22259ba4f)) + + +### BREAKING CHANGES + +* the "connected" map is renamed to "sockets" +* the Socket#binary() method is removed, as this use case is now covered by the ability to provide your own parser. + + + # [3.0.0-rc1](https://github.com/socketio/socket.io/compare/2.3.0...3.0.0-rc1) (2020-10-13) diff --git a/package.json b/package.json index b3ec23bfb0..6bb75ddfee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "socket.io", - "version": "3.0.0-rc1", + "version": "3.0.0-rc2", "description": "node.js realtime framework server", "keywords": [ "realtime", @@ -13,7 +13,7 @@ ], "files": [ "dist/", - "./wrapper.mjs" + "wrapper.mjs" ], "type": "commonjs", "main": "./dist/index.js", @@ -38,7 +38,7 @@ "debug": "~4.1.0", "engine.io": "~4.0.0", "socket.io-adapter": "2.0.3-rc1", - "socket.io-client": "3.0.0-rc1", + "socket.io-client": "3.0.0-rc2", "socket.io-parser": "4.0.1-rc2" }, "devDependencies": {