Skip to content

Commit d20e3f0

Browse files
feat: add support for Express v5 (#691) (#692)
* feat: upgrade to the [email protected] (#691) * upgraded to the [email protected], * adjusted the ServerlessRequest to the [email protected] implementation, * ran: npm audit and npm audit fix, * feat: upgrade to the [email protected] (#691) * removed unnecessary workflows for the node.js 14 and 16, * updated the Node.js engine version to >= 18 --------- Co-authored-by: pantyporowicz <[email protected]>
1 parent f05b3ab commit d20e3f0

File tree

6 files changed

+1562
-1237
lines changed

6 files changed

+1562
-1237
lines changed

.github/workflows/release-on-push-to-mainline.yml

+1-8
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
node-version: [14.x, 16.x, 18.x, 20.x]
13+
node-version: [18.x, 20.x, 22.x]
1414
steps:
1515
- name: Checkout
1616
uses: actions/checkout@v4
@@ -20,14 +20,7 @@ jobs:
2020
with:
2121
node-version: ${{ matrix.node-version }}
2222

23-
# 14.x fails with "npm ERR! Cannot read property '@commitlint/config-conventional' of undefined"
24-
# when running `npm ci` due to the new package-lock.json format. Run `npm i` instead
25-
- name: Install (14.x)
26-
if: matrix.node-version == '14.x'
27-
run: npm i
28-
2923
- name: Install
30-
if: matrix.node-version != '14.x'
3124
run: npm ci
3225

3326
- name: Test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,4 @@ examples/nextjs
1111
typescript-out
1212
.build
1313
.serverless
14+
.idea

0 commit comments

Comments
 (0)