Skip to content

Commit

Permalink
chore(release): 3.0.0-rc3
Browse files Browse the repository at this point in the history
  • Loading branch information
darrachequesne committed Oct 26, 2020
1 parent 13e1db7 commit a9127ce
Show file tree
Hide file tree
Showing 8 changed files with 180 additions and 66 deletions.
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,32 @@
# [3.0.0-rc3](https://github.com/socketio/socket.io-client/compare/3.0.0-rc2...3.0.0-rc3) (2020-10-26)


### Code Refactoring

* rename ERROR to CONNECT_ERROR ([13e1db7](https://github.com/socketio/socket.io-client/commit/13e1db7c94291c583d843beaa9e06ee041ae4f26))


### Features

* add bundle with msgpack parser ([71d6048](https://github.com/socketio/socket.io-client/commit/71d60480af9ea06d22792540dafb18a76e9362e7))
* add support for catch-all listeners ([55f464f](https://github.com/socketio/socket.io-client/commit/55f464f59ed523fa1c1948ec10752bfdf808262d))
* add volatile events ([7ddad2c](https://github.com/socketio/socket.io-client/commit/7ddad2c09dea0391b20378ef03b40040f0230d3e))


### BREAKING CHANGES

* the Socket instance will now emit a "connect_error" event instead of "error" (which is not a reserved event anymore)

```js
// before
socket.on("error", () => {});

// after
socket.on("connect_error", () => {});
```



# [3.0.0-rc2](https://github.com/socketio/socket.io-client/compare/3.0.0-rc1...3.0.0-rc2) (2020-10-15)


Expand Down
197 changes: 137 additions & 60 deletions dist/socket.io.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/socket.io.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/socket.io.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/socket.io.min.js.map

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions dist/socket.io.msgpack.min.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions dist/socket.io.msgpack.min.js.map

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "socket.io-client",
"version": "3.0.0-rc2",
"version": "3.0.0-rc3",
"keywords": [
"realtime",
"framework",
Expand Down Expand Up @@ -54,7 +54,7 @@
"istanbul": "^0.4.5",
"mocha": "^3.3.0",
"prettier": "^2.1.2",
"socket.io": "3.0.0-rc2",
"socket.io": "3.0.0-rc3",
"socket.io-browsers": "^1.0.0",
"socket.io-msgpack-parser": "^3.0.0",
"text-blob-builder": "0.0.1",
Expand Down

0 comments on commit a9127ce

Please sign in to comment.