-
Notifications
You must be signed in to change notification settings - Fork 1
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
Update NPM packages #981
Update NPM packages #981
Conversation
Outdated Packages
|
Audit Resultsuser-interface has |
Co-authored-by: Fritz Madden <[email protected]> Co-authored-by: Arthur Morrow <[email protected]>
@testing-library/jest-dom has an issue with an import in version 6.6.0. testing-library/jest-dom#641 There is already a pull request to fix this, but for now we can unblock by excluding this broken version.
const isConflict = error.originalError | ||
? isConflictError(error.originalError) | ||
: isConflictError(error); |
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.
Some time back we wrapped up errors in the execute
function on CosmosDbRepository. So here, the call to isConflictError
was returning false (even when it should have been true).
"react-select": "^5.8.1" | ||
}, | ||
"devDependencies": { | ||
"@testing-library/jest-dom": "^6.5.0", | ||
"@testing-library/jest-dom": ">6.4.8 <6.6.0 || >6.6.0 <7.0.0", |
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.
There is an issue with an open PR to fix a problem with version 6.6.0.
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.
I think it looks good.
Problem
Node packages need to be kept up to date.
Major Changes
List major version upgrades and any packages that caused breaking changes.
Testing/Validation
Enumerate on steps to validate the updates.