-
-
Notifications
You must be signed in to change notification settings - Fork 18
fix incompatible fast-xml-parser #1731
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -29,7 +29,6 @@ | |
| "lodash@>=4.0.0 <=4.17.23": ">=4.18.0", | ||
| "lodash@<=4.17.23": ">=4.18.0", | ||
| "@nestjs/core@<=11.1.17": ">=11.1.18", | ||
| "fast-xml-parser@<5.7.0": ">=5.7.0", | ||
| "uuid@<14.0.0": ">=14.0.0" | ||
|
Comment on lines
29
to
32
|
||
| }, | ||
| "packageExtensions": { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Given the PR title ('fix incompatible fast-xml-parser'), removing the override entirely may make installs drift over time (depending on transitive dependency resolution) and can allow reintroducing the previously-problematic version range. Consider pinning
fast-xml-parserto a known-compatible range (either viaoverridesor an explicit direct dependency where it's used) and/or document in the PR description which versions are incompatible and why.