-
Notifications
You must be signed in to change notification settings - Fork 35
[Snyk] Security upgrade bip85 from 0.0.3 to 1.0.0 #28
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
base: master
Are you sure you want to change the base?
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 |
|---|---|---|
|
|
@@ -11,7 +11,7 @@ | |
| "bech32": "1.1.4", | ||
| "bip38": "2.0.2", | ||
| "bip38grs": "git://github.com/Groestlcoin/bip38grs.git#091975b01679b74dc0a4136bb743fe17791b0151", | ||
| "bip85": "0.0.3", | ||
| "bip85": "1.0.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Lock file not updated, will break npm ciHigh Severity The There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Major version bump may break bip85 API usageHigh Severity Upgrading |
||
| "bitcoinjs-lib": "git://github.com/iancoleman/bitcoinjs-lib.git#v3.3.2_16bit", | ||
| "bs58": "^4.0.1", | ||
| "buffer": "^5.4.3", | ||
|
|
||


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.
🔴 package-lock.json not updated to match bip85 version bump to 1.0.0
The
package.jsonbumpsbip85from0.0.3to1.0.0, butlibs/combined/package-lock.jsonstill pinsbip85at version0.0.3(seelibs/combined/package-lock.jsonentries under bothdependenciesandpackages). This meansnpm ci(which respects the lockfile) will still install0.0.3, making the version bump ineffective. Runningnpm installwould update the lockfile, but the lockfile should be committed as part of this PR to ensure deterministic builds.Prompt for agents
Was this helpful? React with 👍 or 👎 to provide feedback.