| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
There was a problem hiding this comment.
I think this should be unicode/uversion.h?
Sorry, something went wrong.
There was a problem hiding this comment.
Ah good call
Sorry, something went wrong.
There was a problem hiding this comment.
Sorry, something went wrong.
Sorry, something went wrong.
|
Ah, linter wasn't happy. Fixed |
Sorry, something went wrong.
Sorry, something went wrong.
|
.. But otherwise +1 and lgtm- I actually wondered about this before. There are other versions here: Unicode, time zone, cldr data. Only Unicode |
Sorry, something went wrong.
|
The last CI run had some issues (nodejs/build#204) on ARM unrelated to this change. New CI run: https://ci.nodejs.org/job/node-test-pull-request/394/ |
Sorry, something went wrong.
|
Updated to use unicode/uvernum.h |
Sorry, something went wrong.
|
SGTM |
Sorry, something went wrong.
|
Looks to be working great, thanks. Could you also update the example in the docs? |
Sorry, something went wrong.
|
Updated docs as well |
Sorry, something went wrong.
There was a problem hiding this comment.
Not sure that comment is necessary. Strictly speaking, it'd also have to be there for openssl. I'd remove it, given that the default is to build with ICU now.
Sorry, something went wrong.
There was a problem hiding this comment.
"default" is slightly misleading here. Just calling ./configure won't install ICU, but the [default] release builds you download and use will.
Sorry, something went wrong.
There was a problem hiding this comment.
Yeah, of course I mean the user-facing 'default' ;)
Sorry, something went wrong.
There was a problem hiding this comment.
i agree re openssl, just removing the comment will probably be the best scenario.
Sorry, something went wrong.
|
LGTM |
Sorry, something went wrong.
|
LGTM here also |
Sorry, something went wrong.
|
Awesome. Will land tomorrow if there are no objections :] |
Sorry, something went wrong.
|
lgtm |
Sorry, something went wrong.
|
tagged as semver-minor, any objections? |
Sorry, something went wrong.
|
works for me :] |
Sorry, something went wrong.
If i18n support is present, add the icu version to process.versions Fixes: nodejs#3089 PR-URL: nodejs#3102 Reviewed-By: Steven R Loomis <srloomis@us.ibm.com> Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Rod Vagg <rod@vagg.org>
|
By the way: How do you mark your manual commits as merged on Github? |
Sorry, something went wrong.
|
The branch for this one was addicu $ git remote -v mine git@github.com:evanlucas/io.js (fetch) mine git@github.com:evanlucas/io.js (push) origin git@github.com:nodejs/io.js (fetch) origin git@github.com:nodejs/io.js (push) $ git push mine +HEAD:addicu && git push origin master && git push mine :addicu |
Sorry, something went wrong.
|
I'll try that next time, thanks. Won't work for PRs where others are the author, I assume? |
Sorry, something went wrong.
|
I don't believe so. I haven't been able to anyways |
Sorry, something went wrong.
|
@silverwind if you force-push the (final) commit to the branch a PR is tracking GH will mark the branch as merged when you fast-forward and push to master. |
Sorry, something went wrong.
The first Node.js LTS release! See https://github.com/nodejs/LTS/ for details of the LTS process. * **icu**: Updated to version 56 with significant performance improvements (Steven R. Loomis) #3281 * **node**: - Added new `-c` (or `--check`) command line argument for checking script syntax without executing the code (Dave Eddy) #2411 - Added `process.versions.icu` to hold the current ICU library version (Evan Lucas) #3102 - Added `process.release.lts` to hold the current LTS codename when the binary is from an active LTS release line (Rod Vagg) #3212 * **npm**: Upgraded to npm 2.14.7 from 2.14.4, see release notes: https://github.com/npm/npm/releases/tag/v2.14.7 for full details (Kat Marchán) #3299 PR-URL: #3258
The first Node.js LTS release! See https://github.com/nodejs/LTS/ for details of the LTS process. * **icu**: Updated to version 56 with significant performance improvements (Steven R. Loomis) #3281 * **node**: - Added new `-c` (or `--check`) command line argument for checking script syntax without executing the code (Dave Eddy) #2411 - Added `process.versions.icu` to hold the current ICU library version (Evan Lucas) #3102 - Added `process.release.lts` to hold the current LTS codename when the binary is from an active LTS release line (Rod Vagg) #3212 * **npm**: Upgraded to npm 2.14.7 from 2.14.4, see release notes: https://github.com/npm/npm/releases/tag/v2.14.7 for full details (Kat Marchán) #3299 PR-URL: #3258
The first Node.js LTS release! See https://github.com/nodejs/LTS/ for details of the LTS process. * **icu**: Updated to version 56 with significant performance improvements (Steven R. Loomis) #3281 * **node**: - Added new `-c` (or `--check`) command line argument for checking script syntax without executing the code (Dave Eddy) #2411 - Added `process.versions.icu` to hold the current ICU library version (Evan Lucas) #3102 - Added `process.release.lts` to hold the current LTS codename when the binary is from an active LTS release line (Rod Vagg) #3212 * **npm**: Upgraded to npm 2.14.7 from 2.14.4, see release notes: https://github.com/npm/npm/releases/tag/v2.14.7 for full details (Kat Marchán) #3299 PR-URL: #3258
The first Node.js LTS release! See https://github.com/nodejs/LTS/ for details of the LTS process. * **icu**: Updated to version 56 with significant performance improvements (Steven R. Loomis) #3281 * **node**: - Added new `-c` (or `--check`) command line argument for checking script syntax without executing the code (Dave Eddy) #2411 - Added `process.versions.icu` to hold the current ICU library version (Evan Lucas) #3102 - Added `process.release.lts` to hold the current LTS codename when the binary is from an active LTS release line (Rod Vagg) #3212 * **npm**: Upgraded to npm 2.14.7 from 2.14.4, see release notes: https://github.com/npm/npm/releases/tag/v2.14.7 for full details (Kat Marchán) #3299 PR-URL: #3258
| Back | FazBrowse Home | New Git URL |
If i18n support is present, add the icu version
to process.versions
Fixes: #3089
R= @silverwind / @srl295 ?