-
Notifications
You must be signed in to change notification settings - Fork 286
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
fix(security): address CVE-2021-23337 #1820
fix(security): address CVE-2021-23337 #1820
Conversation
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.
@aldousalvarez Please resolve the conflicts and then the CI should run and we'll see if the changes work or not. I am a bit suspicious there though because you only updated the dependencies but not the imports in the code nor the usage of the methods (which may be fine if it's a drop-in replacement for all the methods that we use but I don't know that for sure either from the top of my head)
@aldousalvarez @zondervancalvez If this depends on #1816 (or the other way around) then please make sure to declare that dependency in the PR description so that the robot enforces the merge order correctly. |
346bb36
to
65762dd
Compare
65762dd
to
9c776b6
Compare
d4354d6
to
e271d6c
Compare
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.
@aldousalvarez Please make sure to rebase onto the parent PR once the conflicts are fixed there. Then also make sure that the tests here are also passing.
0d428cb
to
60f7292
Compare
60f7292
to
ee8f703
Compare
ee8f703
to
ed71f42
Compare
@aldousalvarez Please add a commit to this branch that updates the resolutions in the root package.json to specify >=4.17.21 as the lodash version E.g., instead of this: "resolutions": {
"ansi-html": ">0.0.8",
"glob-parent": "5.1.2",
"lodash": "4.17.20",
"minimist": ">=1.2.6",
"node-forge": ">=1.3.0",
"underscore": "1.13.2"
} We need this: "resolutions": {
"ansi-html": ">0.0.8",
"glob-parent": "5.1.2",
"lodash": ">=4.17.21",
"minimist": ">=1.2.6",
"node-forge": ">=1.3.0",
"underscore": "1.13.2"
} Once you add that commit to this branch, the PR can be reopened and merged. |
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.
^^ See my above request
Hello @petermetz I have committed the changes that you requested on to this branch aldousalvarez/issue1778. Will the PR be opened again? Thank you. |
This PR/issue depends on:
|
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.
@aldousalvarez Yes, I reopened it just now. LGTM
Fixes hyperledger-cacti#1778 Signed-off-by: aldousalvarez <aldousss.alvarez@gmail.com>
a68fa49
to
4ce9723
Compare
Fixes #1778 Depends on #1775