Skip to content

Commit

Permalink
chore(release): 3.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 13, 2020
1 parent b68f816 commit a838ff1
Show file tree
Hide file tree
Showing 13 changed files with 6,101 additions and 12,903 deletions.
1 change: 1 addition & 0 deletions .gitignore
@@ -1,2 +1,3 @@
/node_modules
/coverage
build/
26 changes: 26 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,29 @@
# [3.0.0-rc1](https://github.com/Automattic/socket.io-client/compare/2.3.1...3.0.0-rc1) (2020-10-13)


### Features

* add ES6 module export ([cbabb03](https://github.com/Automattic/socket.io-client/commit/cbabb0308ef4f7d302654755e08fe2103b9f22c8))
* do not reuse the Engine.IO id ([bbe94ad](https://github.com/Automattic/socket.io-client/commit/bbe94adb822a306c6272e977d394e3e203cae25d))
* remove the implicit connection to the default namespace ([249e0be](https://github.com/Automattic/socket.io-client/commit/249e0bef9071e7afd785485961c4eef0094254e8))
* split the events of the Manager and Socket ([132f8ec](https://github.com/Automattic/socket.io-client/commit/132f8ec918a596eec872aee0c61d4ce63714c400))
* throw upon reserved event names ([6494f61](https://github.com/Automattic/socket.io-client/commit/6494f61be0d38d267d77c30ea4f43941f97b1bc0))


### BREAKING CHANGES

* the Socket instance will no longer forward the events
of its Manager

Those events can still be accessed on the Manager instance though:

```js
socket.io.on("reconnect", () => {
// ...
});
```


## [2.3.1](https://github.com/socketio/socket.io-client/compare/2.3.0...2.3.1) (2020-09-30)

The `debug` dependency has been reverted to `~3.1.0`, as the newer versions contains ES6 syntax which breaks in IE
Expand Down

0 comments on commit a838ff1

Please sign in to comment.