Skip to content

Commit 440fd8e

Browse files
committed
fix: bump deps, drop node < 18 support
1 parent b803c37 commit 440fd8e

File tree

3 files changed

+14
-15
lines changed

3 files changed

+14
-15
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,8 @@ jobs:
1010
os:
1111
- ubuntu-latest
1212
node_version:
13-
- 14
14-
- 16
1513
- 18
14+
- 20
1615
name: Node ${{ matrix.node_version }} on ${{ matrix.os }}
1716
steps:
1817
- uses: actions/checkout@v3

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
<div align="center">
1414
Cabin is the best self-hosted <a href="https://en.wikipedia.org/wiki/JavaScript" target="_blank">JavaScript</a> and <a href="https://nodejs.org" target="_blank">Node.js</a> <a href="https://en.wikipedia.org/wiki/Logging_as_a_service" target="_blank">logging service</a>.
1515
<br />
16-
<small>Supports Node v14+, Browser Environments, <a href="https://expressjs.com" target="_blank">Express</a>, <a href="https://koajs.com" target="_blank">Koa</a>, and <a href="https://lad.js.org" target="_blank">Lad</a></small>
16+
<small>Supports Node v18+, Browser Environments, <a href="https://expressjs.com" target="_blank">Express</a>, <a href="https://koajs.com" target="_blank">Koa</a>, and <a href="https://lad.js.org" target="_blank">Lad</a></small>
1717
</div>
1818
<hr />
1919
<div align="center">
@@ -192,7 +192,7 @@ Reduce your disk storage costs through Cabin's automatic conversion of Streams,
192192

193193
Cabin works with the most popular Node.js HTTP frameworks (e.g. [Express][] and [Koa][]), request body handling packages (e.g. [multer][] and [body-parser][]), and the [passport][] authentication framework.
194194

195-
It supports **Node v14+** and modern browsers out of the box (its browser-ready bundle **is only 20 KB**).
195+
It supports **Node v18+** and modern browsers out of the box (its browser-ready bundle **is only 20 KB**).
196196

197197
```sh
198198
npx browserslist

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@
2828
"parse-request": "^6.0.3"
2929
},
3030
"devDependencies": {
31-
"@babel/cli": "^7.24.7",
32-
"@babel/core": "^7.24.7",
33-
"@babel/preset-env": "^7.24.7",
34-
"@commitlint/cli": "^19.3.0",
35-
"@commitlint/config-conventional": "^19.2.2",
31+
"@babel/cli": "^7.25.9",
32+
"@babel/core": "^7.26.0",
33+
"@babel/preset-env": "^7.26.0",
34+
"@commitlint/cli": "^19.6.0",
35+
"@commitlint/config-conventional": "^19.6.0",
3636
"ava": "^5.3.1",
37-
"axe": "^12.2.9",
37+
"axe": "^13.0.0",
3838
"babelify": "^10.0.0",
3939
"browserify": "^17.0.0",
4040
"cross-env": "^7.0.3",
4141
"eslint": "^8.49.0",
4242
"eslint-config-xo-lass": "^2.0.1",
4343
"eslint-plugin-compat": "^4.2.0",
4444
"eslint-plugin-node": "^11.1.0",
45-
"express": "^4.19.2",
45+
"express": "^4.21.1",
4646
"express-request-id": "1",
4747
"fixpack": "^4.0.0",
4848
"husky": "^9.0.11",
@@ -51,21 +51,21 @@
5151
"koa-better-request-id": "^1.2.0",
5252
"koa-better-response-time": "^1.2.0",
5353
"koa-router": "^12.0.1",
54-
"lint-staged": "^15.2.7",
54+
"lint-staged": "^15.2.10",
5555
"lodash": "^4.17.21",
56-
"nyc": "^17.0.0",
56+
"nyc": "^17.1.0",
5757
"remark-cli": "11.0.0",
5858
"remark-preset-github": "^4.0.4",
5959
"request-received": "^0.0.3",
60-
"response-time": "^2.3.2",
60+
"response-time": "^2.3.3",
6161
"rimraf": "^5.0.7",
6262
"signale": "^1.4.0",
6363
"supertest": "^7.0.0",
6464
"tinyify": "3.0.0",
6565
"xo": "^0.56.0"
6666
},
6767
"engines": {
68-
"node": ">=14"
68+
"node": ">=18"
6969
},
7070
"files": [
7171
"lib",

0 commit comments

Comments
 (0)