From ccdb8bfc7b432c7bf8a0203742d1370dae9c09e2 Mon Sep 17 00:00:00 2001 From: Ilkka Myller Date: Thu, 20 Apr 2017 19:55:34 +0000 Subject: [PATCH] 2017-03-21, Version 6.10.1 'Boron' (LTS) Notable changes * performance: The performance of several APIs has been improved. - `Buffer.compare()` is up to 35% faster on average. (Brian White) https://github.com/nodejs/node/pull/10927 - `buffer.toJSON()` is up to 2859% faster on average. (Brian White) https://github.com/nodejs/node/pull/10895 - `fs.*statSync()` functions are now up to 9.3% faster on average. (Brian White) https://github.com/nodejs/node/pull/11522 - `os.loadavg` is up to 151% faster. (Brian White) https://github.com/nodejs/node/pull/11516 - `process.memoryUsage()` is up to 34% faster. (Brian White) https://github.com/nodejs/node/pull/11497 - `querystring.unescape()` for `Buffer`s is 15% faster on average. (Brian White) https://github.com/nodejs/node/pull/10837 - `querystring.stringify()` is up to 7.8% faster on average. (Brian White) https://github.com/nodejs/node/pull/10852 - `querystring.parse()` is up to 21% faster on average. (Brian White) https://github.com/nodejs/node/pull/10874 * IPC: - Batched writes have been enabled for process IPC on platforms that support Unix Domain Sockets. (Alexey Orlenko) https://github.com/nodejs/node/pull/10677 - Performance gains may be up to 40% for some workloads. * child_process: - `spawnSync` now returns a null `status` when child is terminated by a signal. (cjihrig) https://github.com/nodejs/node/pull/11288 - This fixes the behavior to act like `spawn()` does. * http: - Control characters are now always rejected when using `http.request()`. (Ben Noordhuis) https://github.com/nodejs/node/pull/8923 - Debug messages have been added for cases when headers contain invalid values. (Evan Lucas) https://github.com/nodejs/node/pull/9195 * node: - Heap statistics now support values larger than 4GB. (Ben Noordhuis) https://github.com/nodejs/node/pull/10186 * timers: - Timer callbacks now always maintain order when interacting with domain error handling. (John Barboza) https://github.com/nodejs/node/pull/10522 PR-URL: https://github.com/nodejs/node/pull/11759 Signed-off-by: Ilkka Myller --- README.md | 2 +- recipes-devtools/nodejs/nodejs_6.10.0.bb | 9 --------- recipes-devtools/nodejs/nodejs_6.10.1.bb | 9 +++++++++ 3 files changed, 10 insertions(+), 10 deletions(-) delete mode 100644 recipes-devtools/nodejs/nodejs_6.10.0.bb create mode 100644 recipes-devtools/nodejs/nodejs_6.10.1.bb diff --git a/README.md b/README.md index 66fe55a3..70db38c8 100644 --- a/README.md +++ b/README.md @@ -8,7 +8,7 @@ OpenEmbedded layer for latest [Node.js](https://nodejs.org/ "Node.js") releases. ## Node.js releases * ![Current 7](https://img.shields.io/badge/Node.js%20Current-7.7.3-green.svg) - * ![LTS 6](https://img.shields.io/badge/Node.js%20LTS-6.10.0-blue.svg) + * ![LTS 6](https://img.shields.io/badge/Node.js%20LTS-6.10.1-blue.svg) * ![LTS 4](https://img.shields.io/badge/Node.js%20LTS-4.8.2-blue.svg) * ![End of life 0.12](https://img.shields.io/badge/Node.js%20End%20of%20Life-0.12.18-lightgray.svg) * ![End of life 0.10](https://img.shields.io/badge/Node.js%20End%20of%20Life-0.10.48-lightgray.svg) diff --git a/recipes-devtools/nodejs/nodejs_6.10.0.bb b/recipes-devtools/nodejs/nodejs_6.10.0.bb deleted file mode 100644 index 887917ea..00000000 --- a/recipes-devtools/nodejs/nodejs_6.10.0.bb +++ /dev/null @@ -1,9 +0,0 @@ -require nodejs_6.inc -require nodejs_lts.inc - -INC_PR = "r1" - -LIC_FILES_CHKSUM = "file://LICENSE;md5=41a3a0ccf7f515cac3377389dd8faac8" - -SRC_URI[src.md5sum] = "6ed4e31b3e48843d744587435809e7d1" -SRC_URI[src.sha256sum] = "01dae00dc0faa37a4b7a84098e2f04631827fc42e319eb66ccc3ab1d561ea42d" diff --git a/recipes-devtools/nodejs/nodejs_6.10.1.bb b/recipes-devtools/nodejs/nodejs_6.10.1.bb new file mode 100644 index 00000000..76da808d --- /dev/null +++ b/recipes-devtools/nodejs/nodejs_6.10.1.bb @@ -0,0 +1,9 @@ +require nodejs_6.inc +require nodejs_lts.inc + +INC_PR = "r1" + +LIC_FILES_CHKSUM = "file://LICENSE;md5=41a3a0ccf7f515cac3377389dd8faac8" + +SRC_URI[src.md5sum] = "9078d08b2716abc02fdc3e29dda29fe2" +SRC_URI[src.sha256sum] = "2c7a643b199c63390f4e33359e82f1449b84ec94d647c606fc0f1d1a2b5bdedd"