Skip to content

Commit

Permalink
Merge pull request #73 from MatthewWid/node-20
Browse files Browse the repository at this point in the history
Target Node 20. Drop support for Node <18. Update all dependencies to latest.
  • Loading branch information
MatthewWid authored Oct 17, 2024
2 parents 5a66707 + c1a6621 commit 0900911
Show file tree
Hide file tree
Showing 8 changed files with 1,855 additions and 1,329 deletions.
2 changes: 1 addition & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"extends": ["eslint:recommended", "plugin:@typescript-eslint/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaVersion": 11,
"ecmaVersion": "latest",
"sourceType": "module"
},
"plugins": ["@typescript-eslint", "eslint-plugin-tsdoc"],
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* Fixed default state type when creating sessions and channels with `createSession` and `createChannel` being set to `unknown` instead of `DefaultSessionState` and `DefaultChannelState`, respectively.

### Removed

* Dropped support for Node 17 and below.

## 0.13.0 - 2024-08-23

### Added
Expand Down
150 changes: 81 additions & 69 deletions examples/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
},
"dependencies": {
"benchmark": "^2.1.4",
"better-sse": "^0.12.1",
"better-sse": "^0.13.0",
"easy-server-sent-events": "^1.0.14",
"eventsource": "^2.0.2",
"express": "^4.19.2",
"express": "^4.21.1",
"node-os-utils": "^1.3.7",
"pem": "^1.14.8",
"sse-channel": "^4.0.0",
Expand All @@ -21,8 +21,8 @@
},
"devDependencies": {
"@types/benchmark": "^2.1.5",
"@types/express": "^4.17.21",
"@types/node": "^18.19.45",
"@types/express": "^5.0.0",
"@types/node": "^20.16.12",
"@types/node-os-utils": "^1.3.4",
"@types/pem": "^1.14.4"
}
Expand Down
Loading

0 comments on commit 0900911

Please sign in to comment.