Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,11 @@
"is-core-module": "<=2.13.1",
"error-ex": "<=1.3.2",
"has-ansi": "<=5.0.1",
"oxc-parser": "0.56.5"
"oxc-parser": "0.56.5",
"node-forge": ">=1.4.0",
"picomatch": ">=4.0.4",
"path-to-regexp": ">=8.4.0",
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Override forces incompatible path-to-regexp on wrangler

Medium Severity

The path-to-regexp override >=8.4.0 forces wrangler@3.81.0 (depends on ^6.3.0) and wrangler@4.25.1 (depends on ^6.2.1) to resolve to 8.4.1. The path-to-regexp API changed significantly between 6.x and 8.x: pathToRegexp() returns { regexp, keys } instead of a RegExp, loose mode was removed, group suffixes were removed, and wildcard syntax changed. This could break wrangler's route matching during local dev and deployment. Similarly affects @opennextjs/aws which also depends on 6.x.

Additional Locations (2)
Fix in Cursor Fix in Web

"fast-xml-parser": ">=5.5.6"
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Override forces incompatible fast-xml-parser on AWS SDK

Medium Severity

The fast-xml-parser override >=5.5.6 forces @aws-sdk/core@3.758.0 (depends on ^4.4.1), @aws-sdk/client-cloudformation, and @aws-sdk/client-s3 (depend on ^4.2.5) from version 4.x to 5.5.9. Version 5.x restructured its internals significantly — XMLBuilder was separated into a standalone fast-xml-builder package, and new dependencies like path-expression-matcher were added. This major version jump could cause XML parsing failures in these older AWS SDK packages used by @opennextjs/aws.

Additional Locations (2)
Fix in Cursor Fix in Web

},
"patchedDependencies": {
"@changesets/assemble-release-plan@6.0.6": "patches/@changesets__assemble-release-plan@6.0.6.patch"
Expand Down
2 changes: 1 addition & 1 deletion packages/siwx/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"devDependencies": {
"@types/react": "19.1.15",
"@vitest/coverage-v8": "2.1.9",
"happy-dom": "15.11.7",
"happy-dom": "20.8.9",
"react": "19.1.2",
"vitest": "3.1.3",
"vue": "3.5.13"
Expand Down
Loading
Loading