-
Notifications
You must be signed in to change notification settings - Fork 29.8k
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
process.versions.zlib does not include the commit hash #50139
Comments
Seems like |
The version info we are using https://chromium.googlesource.com/chromium/src/third_party/zlib.git/+/refs/heads/main/zlib.h#40 from here. Which is So, seems its working as designed. |
It's clearly insufficient given the updates don't change this constant. It should include the current hash. |
Okay. Could you please suggest which variable should map here? Or do we need to take the latest commit hash shorthand? |
node/tools/dep_updaters/update-zlib.sh Line 82 in ed49722
|
Got it. To accomodate the commit shorthand, we need to create a new header file inside the Then inside the Is this is fine? |
src: add commit hash shorthand in zlib version PR-URL: nodejs#50158 Fixes: nodejs#50139 Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Despite upgrade to the bundled zlib library in #50085 the
process.versions.zlib
output remains the same.The expected output of
process.versions.zlib
would be e.g.1.2.13.1-motley-f5fd0ad
, that is including the commit hash from upstream.The text was updated successfully, but these errors were encountered: