Skip to content

Commit 978f938

Browse files
committed
fix(test-app-node-express): upgrade express to v5 to fix path-to-regexp >=8.4.0 override
Express 4.x internally calls `pathRegexp` from path-to-regexp, which was removed in 8.4.0. The workspace override forces >=8.4.0 for security; upgrading the test app to express 5 (which uses 8.4+ natively) resolves the TypeError and makes all smoke tests pass.
1 parent 6d92b5f commit 978f938

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

pnpm-lock.yaml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

test-apps/node-express/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
},
99
"dependencies": {
1010
"@logtide/sdk-node": "workspace:*",
11-
"express": "^4.21.0"
11+
"express": "^5.0.0"
1212
},
1313
"devDependencies": {
1414
"@types/express": "^4.17.21",

0 commit comments

Comments
 (0)