Created by: renovate[bot]
This PR contains the following updates:
Package | Change | Age | Adoption | Passing | Confidence |
---|---|---|---|---|---|
socket.io-client | ^2.1.0 -> ^3.0.0 |
||||
socket.io-client | ~0.9.16 -> ~3.1.0 |
Release Notes
socketio/socket.io-client
v3.1.1
Bug Fixes
- include the path in the manager ID (7a0c2b5)
- remove polyfill for process in the bundle (61afc5d)
- typings: add return types and general-case overload signatures (#1440) (47f917a)
- typings: fix the type of the "query" option (#1439) (f02ab3b)
v3.1.0
Bug Fixes
3.0.5 (2021-01-05)
Bug Fixes
- emit a connect_error event upon connection failure (53c7374)
- typings: make sendBuffer and receiveBuffer public (b83f89c)
3.0.4 (2020-12-07)
Bug Fixes
- emit an error when reaching a v2.x server (ec1f8c3), closes /github.com/socketio/engine.io-protocol#difference-between-v3-and-v4 /github.com/socketio/socket.io-protocol#difference-between-v5-and-v4
- keep track of active sockets (f8f60fc)
- typings: export extraHeaders option (#1410) (b3de861)
3.0.3 (2020-11-19)
Bug Fixes
- properly export io in ES modules wrapper (bec1524)
3.0.2 (2020-11-17)
Bug Fixes
- typings: export withCredentials option (7193078)
- typings: export ManagerOptions (#1398) (96cd2c9)
- add io as named exports (7b3ec9f)
3.0.1 (2020-11-09)
Bug Fixes
v3.0.5
Bug Fixes
- emit a connect_error event upon connection failure (53c7374)
- typings: make sendBuffer and receiveBuffer public (b83f89c)
v3.0.4
Bug Fixes
- emit an error when reaching a v2.x server (ec1f8c3), closes /github.com/socketio/engine.io-protocol#difference-between-v3-and-v4 /github.com/socketio/socket.io-protocol#difference-between-v5-and-v4
- keep track of active sockets (f8f60fc)
- typings: export extraHeaders option (#1410) (b3de861)
v3.0.3
Bug Fixes
- properly export io in ES modules wrapper (bec1524)
v3.0.2
Bug Fixes
- typings: export withCredentials option (7193078)
- typings: export ManagerOptions (#1398) (96cd2c9)
- add io as named exports (7b3ec9f)
v3.0.1
Bug Fixes
v3.0.0
Code Refactoring
- rename ERROR to CONNECT_ERROR (13e1db7)
Features
- emit an Error object upon middleware error (0939395)
- add bundle with msgpack parser (71d6048)
- add support for catch-all listeners (55f464f)
- add volatile events (7ddad2c)
- move binary detection back to the parser (1789094)
- add ES6 module export (cbabb03)
- do not reuse the Engine.IO id (bbe94ad)
- remove the implicit connection to the default namespace (249e0be)
- split the events of the Manager and Socket (132f8ec)
- throw upon reserved event names (6494f61)
BREAKING CHANGES
- the Socket instance will now emit a "connect_error" event instead of "error" (which is not a reserved event anymore)
// before
socket.on("error", () => {});
// after
socket.on("connect_error", () => {});
-
the Socket#binary() method is removed, as this use case is now covered by the ability to provide your own parser.
-
the Socket instance will no longer forward the events of its Manager
Those events can still be accessed on the Manager instance though:
socket.io.on("reconnect", () => {
// ...
});
Renovate configuration
-
If you want to rebase/retry this PR, check this box
This PR has been generated by WhiteSource Renovate. View repository job log here.