Skip to content

Commit

Permalink
chore(release): 3.0.0-rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 15, 2020
1 parent 8a5db7f commit 0ce5b4c
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 3 deletions.
25 changes: 25 additions & 0 deletions 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)


Expand Down
6 changes: 3 additions & 3 deletions 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",
Expand All @@ -13,7 +13,7 @@
],
"files": [
"dist/",
"./wrapper.mjs"
"wrapper.mjs"
],
"type": "commonjs",
"main": "./dist/index.js",
Expand All @@ -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": {
Expand Down

0 comments on commit 0ce5b4c

Please sign in to comment.