Skip to content

Commit e2b39b6

Browse files
chore(release): 6.3.0
Diff: 6.2.3...6.3.0
1 parent 047f420 commit e2b39b6

8 files changed

+340
-633
lines changed

Diff for: CHANGELOG.md

+46-2
Original file line numberDiff line numberDiff line change
@@ -1,37 +1,81 @@
11
# History
22

3+
## 2023
4+
5+
- [6.3.0](#63O-2023-01-10) (2023-01-10)
6+
7+
## 2022
8+
39
- [6.2.3](#623-2022-10-13) (2022-10-13)
410
- [6.2.2](#622-2022-05-02) (2022-05-02)
511
- [6.2.1](#621-2022-04-17) (2022-04-17)
612
- [6.2.0](#620-2022-04-17) (2022-04-17)
13+
14+
## 2021
15+
716
- [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)
817
- [6.1.1](#611-2021-11-14) (2021-11-14)
918
- [6.1.0](#610-2021-11-08) (2021-11-08)
1019
- [6.0.2](#602-2021-10-15) (2021-10-15)
1120
- [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)
1322
- [5.2.0](#520-2021-08-29) (2021-08-29)
1423
- [5.1.2](#512-2021-06-24) (2021-06-24)
1524
- [5.1.1](#511-2021-05-11) (2021-05-11)
1625
- [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)
1726
- [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)
1827
- [5.1.0](#510-2021-05-04) (2021-05-04)
1928
- [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)
2130
- [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)
2231
- [4.1.2](#412-2021-02-25) (2021-02-25)
2332
- [4.1.1](#411-2021-02-02) (2021-02-02)
2433
- [4.1.0](#410-2021-01-14) (2021-01-14)
2534

2635
# Release notes
2736

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+
2868
## [6.2.3](https://github.com/socketio/engine.io-client/compare/6.2.2...6.2.3) (2022-10-13)
2969

3070

3171
### Bug Fixes
3272

3373
* properly clear "beforeunload" event listener ([99925a4](https://github.com/socketio/engine.io-client/commit/99925a47750f66d2ad36313243545181512579ee))
3474

75+
### Dependencies
76+
77+
- [`ws@~8.2.3`](https://github.com/websockets/ws/releases/tag/8.2.3) (no change)
78+
3579

3680

3781
## [6.2.2](https://github.com/socketio/engine.io-client/compare/6.2.1...6.2.2) (2022-05-02)

Diff for: dist/engine.io.esm.min.js

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: dist/engine.io.esm.min.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)