-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Backport puppeteer update to Kibana 7.17 #172440
Conversation
2132652
to
631cd0b
Compare
bf26769
to
9a6fe09
Compare
258a7e3
to
84513e6
Compare
1c273bc
to
481158e
Compare
Pinging @elastic/appex-sharedux (Team:SharedUX) |
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.
Please take the addition of wrap-ansi
out :)
"globby/fast-glob": "^3.2.11", | ||
"wrap-ansi": "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.
The changes here may have been unintentionally backported.
"globby/fast-glob": "^3.2.11", | |
"wrap-ansi": "7.0.0" | |
"globby/fast-glob": "^3.2.11" |
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 talked offline with you and found this is an intentional change. Disregard my 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.
For context, the resolution for wrap-ansi
was added to circumvent failing build where the ESM version of the package was being required. See here
x-pack/build_chromium/build_util.py
Outdated
@@ -20,10 +20,10 @@ def mkdir(dir): | |||
if not os.path.exists(dir): | |||
return os.makedirs(dir) | |||
|
|||
def md5_file(filename): | |||
def sha256_file(filename): | |||
"""Builds a hex md5 hash of the given file""" |
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.
"""Builds a hex md5 hash of the given file""" | |
"""Builds a hex sha1 hash of the given file""" |
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.
thanks for the catch!
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.
LGTM
💛 Build succeeded, but was flaky
Failed CI StepsTest Failures
Metrics [docs]
History
To update your PR or re-run it, just comment with: cc @eokoneyo |
Summary
This is a manual back port of #172332 to Kibana 7.17. It's worth pointing out in this PR, for validating archive and binary checksums we now use the sha256 hashing algorithm.