-
-
Notifications
You must be signed in to change notification settings - Fork 77
chore(deps): Add missing resolved and integrity fields in package-lock.json #3178
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
chore(deps): Add missing resolved and integrity fields in package-lock.json #3178
Conversation
…k.json Signed-off-by: provokateurin <[email protected]>
|
/backport to stable32 |
|
/backport to stable31 |
|
/backport to stable30 |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## master #3178 +/- ##
======================================
Coverage 2.23% 2.23%
======================================
Files 107 107
Lines 6519 6519
Branches 121 121
======================================
Hits 146 146
Misses 6368 6368
Partials 5 5 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
szaimen
left a comment
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.
🐘
|
The backport to # Switch to the target branch and update it
git checkout stable30
git pull origin stable30
# Create the new backport branch
git checkout -b backport/3178/stable30
# Cherry pick the change from the commit sha1 of the change against the default branch
# This might cause conflicts, resolve them
git cherry-pick a7e1a6db
# Push the cherry pick commit to the remote repository and open a pull request
git push origin backport/3178/stable30Error: Failed to check for changes with origin/stable30: No changes found in backport branch Learn more about backports at https://docs.nextcloud.com/server/stable/go.php?to=developer-backports. |
|
Apparently stable30 isn't affected, so no manual backport either. |
Currently it is not possible to install the dependencies in offline mode:
Having the resolved and integrity fields is important to ensure the app can be built reproducible and that all dependencies are not corrupted. I added the missing fields using https://www.npmjs.com/package/npm-package-lock-add-resolved.
Also see npm/cli#4460.