|
1 | 1 | # History
|
2 | 2 |
|
| 3 | +## 2023 |
| 4 | + |
| 5 | +- [6.3.0](#63O-2023-01-10) (2023-01-10) |
| 6 | + |
| 7 | +## 2022 |
| 8 | + |
3 | 9 | - [6.2.3](#623-2022-10-13) (2022-10-13)
|
4 | 10 | - [6.2.2](#622-2022-05-02) (2022-05-02)
|
5 | 11 | - [6.2.1](#621-2022-04-17) (2022-04-17)
|
6 | 12 | - [6.2.0](#620-2022-04-17) (2022-04-17)
|
| 13 | + |
| 14 | +## 2021 |
| 15 | + |
7 | 16 | - [6.0.3](#603-2021-11-14) (2021-11-14) (from the [6.0.x](https://github.com/socketio/engine.io-client/tree/6.0.x) branch)
|
8 | 17 | - [6.1.1](#611-2021-11-14) (2021-11-14)
|
9 | 18 | - [6.1.0](#610-2021-11-08) (2021-11-08)
|
10 | 19 | - [6.0.2](#602-2021-10-15) (2021-10-15)
|
11 | 20 | - [6.0.1](#601-2021-10-14) (2021-10-14)
|
12 |
| -- [6.0.0](#600-2021-10-08) (2021-10-08) |
| 21 | +- [**6.0.0**](#600-2021-10-08) (2021-10-08) |
13 | 22 | - [5.2.0](#520-2021-08-29) (2021-08-29)
|
14 | 23 | - [5.1.2](#512-2021-06-24) (2021-06-24)
|
15 | 24 | - [5.1.1](#511-2021-05-11) (2021-05-11)
|
16 | 25 | - [4.1.4](#414-2021-05-05) (2021-05-05) (from the [4.1.x](https://github.com/socketio/engine.io-client/tree/4.1.x) branch)
|
17 | 26 | - [3.5.2](#352-2021-05-05) (2021-05-05) (from the [3.5.x](https://github.com/socketio/engine.io-client/tree/3.5.x) branch)
|
18 | 27 | - [5.1.0](#510-2021-05-04) (2021-05-04)
|
19 | 28 | - [5.0.1](#501-2021-03-31) (2021-03-31)
|
20 |
| -- [5.0.0](#500-2021-03-10) (2021-03-10) |
| 29 | +- [**5.0.0**](#500-2021-03-10) (2021-03-10) |
21 | 30 | - [3.5.1](#351-2021-03-02) (2021-03-02) (from the [3.5.x](https://github.com/socketio/engine.io-client/tree/3.5.x) branch)
|
22 | 31 | - [4.1.2](#412-2021-02-25) (2021-02-25)
|
23 | 32 | - [4.1.1](#411-2021-02-02) (2021-02-02)
|
24 | 33 | - [4.1.0](#410-2021-01-14) (2021-01-14)
|
25 | 34 |
|
26 | 35 | # Release notes
|
27 | 36 |
|
| 37 | +## [6.3.0](https://github.com/socketio/engine.io-client/compare/6.2.3...6.3.0) (2023-01-10) |
| 38 | + |
| 39 | + |
| 40 | +### Bug Fixes |
| 41 | + |
| 42 | +* properly parse relative URL with a "@" character ([12b7d78](https://github.com/socketio/engine.io-client/commit/12b7d7817e9c0016c970f903de15ed8b4255ea90)) |
| 43 | +* use explicit context for setTimeout function ([#699](https://github.com/socketio/engine.io-client/issues/699)) ([047f420](https://github.com/socketio/engine.io-client/commit/047f420b86a669752536ff425261e7be60a80692)) |
| 44 | + |
| 45 | + |
| 46 | +### Features |
| 47 | + |
| 48 | +* add the "addTrailingSlash" option ([#694](https://github.com/socketio/engine.io-client/issues/694)) ([21a6e12](https://github.com/socketio/engine.io-client/commit/21a6e1219add92157c5442537d24fbe1129a50f5)) |
| 49 | + |
| 50 | +The trailing slash which was added by default can now be disabled: |
| 51 | + |
| 52 | +```js |
| 53 | +import { Socket } from "engine.io-client"; |
| 54 | + |
| 55 | +const socket = new Socket("https://example.com", { |
| 56 | + addTrailingSlash: false |
| 57 | +}); |
| 58 | +``` |
| 59 | + |
| 60 | +In the example above, the request URL will be `https://example.com/engine.io` instead of `https://example.com/engine.io/`. |
| 61 | + |
| 62 | +### Dependencies |
| 63 | + |
| 64 | +- [`ws@~8.11.0`](https://github.com/websockets/ws/releases/tag/8.11.0) ([diff](https://github.com/websockets/ws/compare/8.2.3...8.11.0)) |
| 65 | + |
| 66 | + |
| 67 | + |
28 | 68 | ## [6.2.3](https://github.com/socketio/engine.io-client/compare/6.2.2...6.2.3) (2022-10-13)
|
29 | 69 |
|
30 | 70 |
|
31 | 71 | ### Bug Fixes
|
32 | 72 |
|
33 | 73 | * properly clear "beforeunload" event listener ([99925a4](https://github.com/socketio/engine.io-client/commit/99925a47750f66d2ad36313243545181512579ee))
|
34 | 74 |
|
| 75 | +### Dependencies |
| 76 | + |
| 77 | +- [`ws@~8.2.3`](https://github.com/websockets/ws/releases/tag/8.2.3) (no change) |
| 78 | + |
35 | 79 |
|
36 | 80 |
|
37 | 81 | ## [6.2.2](https://github.com/socketio/engine.io-client/compare/6.2.1...6.2.2) (2022-05-02)
|
|
0 commit comments