Skip to content

Commit ed2b0cb

Browse files
chore(release): 5.0.5
Diff: 5.0.4...5.0.5
1 parent 351ba82 commit ed2b0cb

File tree

2 files changed

+34
-6
lines changed

2 files changed

+34
-6
lines changed

CHANGELOG.md

Lines changed: 33 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# History
2+
3+
- [5.0.5](#505-2023-01-06) (Jan 2023)
4+
- [5.0.4](#504-2022-04-30) (Apr 2022)
5+
- [5.0.3](#503-2022-01-17) (Jan 2022)
6+
- [5.0.2](#502-2021-11-14) (Nov 2021)
7+
- [5.0.1](#501-2021-10-15) (Oct 2021)
8+
- [5.0.0](#500-2021-10-04) (Oct 2021)
9+
- [4.0.3](#403-2021-08-29) (Aug 2021)
10+
- [4.0.2](#402-2020-12-07) (Dec 2020)
11+
- [2.2.1](#221-2020-09-30) (Sep 2020) (from the [2.2.x](https://github.com/socketio/engine.io-parser/tree/2.2.x) branch)
12+
- [4.0.1](#401-2020-09-10) (Sep 2020)
13+
- [4.0.0](#400-2020-09-08) (Sep 2020)
14+
- [2.2.0](#220-2019-09-13) (Sep 2019)
15+
16+
17+
18+
# Release notes
19+
20+
## [5.0.5](https://github.com/socketio/engine.io-parser/compare/5.0.4...5.0.5) (2023-01-06)
21+
22+
23+
### Bug Fixes
24+
25+
* properly encode empty buffer in base64 encoding ([#131](https://github.com/socketio/engine.io-parser/issues/131)) ([351ba82](https://github.com/socketio/engine.io-parser/commit/351ba8245b1aac795646d7e7a9001c8e1d0cc9f2))
26+
27+
28+
129
## [5.0.4](https://github.com/socketio/engine.io-parser/compare/5.0.3...5.0.4) (2022-04-30)
230

331

@@ -31,7 +59,7 @@
3159

3260

3361

34-
# [5.0.0](https://github.com/socketio/engine.io-parser/compare/4.0.3...5.0.0) (2021-10-04)
62+
## [5.0.0](https://github.com/socketio/engine.io-parser/compare/4.0.3...5.0.0) (2021-10-04)
3563

3664
This release includes the migration to TypeScript. The major bump is due to the new "exports" field in the package.json file.
3765

@@ -64,7 +92,7 @@ See also: https://nodejs.org/api/packages.html#packages_package_entry_points
6492
* use a terser-compatible representation of the separator ([886f9ea](https://github.com/socketio/engine.io-parser/commit/886f9ea7c4e717573152c31320f6fb6c6664061b))
6593

6694

67-
# [4.0.0](https://github.com/socketio/engine.io-parser/compare/v4.0.0-alpha.1...4.0.0) (2020-09-08)
95+
## [4.0.0](https://github.com/socketio/engine.io-parser/compare/v4.0.0-alpha.1...4.0.0) (2020-09-08)
6896

6997
This major release contains the necessary changes for the version 4 of the Engine.IO protocol. More information about the new version can be found [there](https://github.com/socketio/engine.io-protocol#difference-between-v3-and-v4).
7098

@@ -103,7 +131,7 @@ Please note that the parser is now dependency-free! This should help reduce the
103131

104132

105133

106-
# [4.0.0-alpha.1](https://github.com/socketio/engine.io-parser/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2020-05-19)
134+
## [4.0.0-alpha.1](https://github.com/socketio/engine.io-parser/compare/v4.0.0-alpha.0...v4.0.0-alpha.1) (2020-05-19)
107135

108136

109137
### Features
@@ -112,7 +140,7 @@ Please note that the parser is now dependency-free! This should help reduce the
112140

113141

114142

115-
# [4.0.0-alpha.0](https://github.com/socketio/engine.io-parser/compare/2.2.0...v4.0.0-alpha.0) (2020-02-04)
143+
## [4.0.0-alpha.0](https://github.com/socketio/engine.io-parser/compare/2.2.0...v4.0.0-alpha.0) (2020-02-04)
116144

117145

118146
### Bug Fixes
@@ -134,7 +162,7 @@ Protocol v4: { type: 'message', data: <Buffer 01 02 03> } => <Buffer 01 02 03>
134162

135163

136164

137-
# [2.2.0](https://github.com/socketio/engine.io-parser/compare/2.1.3...2.2.0) (2019-09-13)
165+
## [2.2.0](https://github.com/socketio/engine.io-parser/compare/2.1.3...2.2.0) (2019-09-13)
138166

139167

140168
* [refactor] Use `Buffer.allocUnsafe` instead of `new Buffer` (#104) ([aedf8eb](https://github.com/socketio/engine.io-parser/commit/aedf8eb29e8bf6aeb5c6cc68965d986c4c958ae2)), closes [#104](https://github.com/socketio/engine.io-parser/issues/104)

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "engine.io-parser",
33
"description": "Parser for the client for the realtime Engine",
44
"license": "MIT",
5-
"version": "5.0.4",
5+
"version": "5.0.5",
66
"main": "./build/cjs/index.js",
77
"module": "./build/esm/index.js",
88
"exports": {

0 commit comments

Comments
 (0)