Skip to content

Commit 965a567

Browse files
chore(release): 5.0.0
Diff: 4.0.3...5.0.0
1 parent e4d9fce commit 965a567

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# [5.0.0](https://github.com/socketio/engine.io-parser/compare/4.0.3...5.0.0) (2021-10-04)
2+
3+
This release includes the migration to TypeScript. The major bump is due to the new "exports" field in the package.json file.
4+
5+
See also: https://nodejs.org/api/packages.html#packages_package_entry_points
6+
17
## [4.0.3](https://github.com/socketio/engine.io-parser/compare/4.0.2...4.0.3) (2021-08-29)
28

39

lib/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ const decodePayload = (encodedPayload, binaryType?) => {
3333
return packets;
3434
};
3535

36-
export const protocol = 5;
36+
export const protocol = 4;
3737
export { encodePacket, encodePayload, decodePacket, decodePayload };

package-lock.json

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

package.json

+1-1
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": "4.0.3",
5+
"version": "5.0.0",
66
"main": "./build/cjs/index.js",
77
"module": "./build/esm/index.js",
88
"exports": {

0 commit comments

Comments
 (0)