Skip to content

Commit

Permalink
2017-03-21, Version 6.10.1 'Boron' (LTS)
Browse files Browse the repository at this point in the history
    Notable changes

    * performance: The performance of several APIs has been improved.
      - `Buffer.compare()` is up to 35% faster on average. (Brian White)
        nodejs/node#10927
      - `buffer.toJSON()` is up to 2859% faster on average. (Brian White)
        nodejs/node#10895
      - `fs.*statSync()` functions are now up to 9.3% faster on average.
        (Brian White) nodejs/node#11522
      - `os.loadavg` is up to 151% faster. (Brian White)
        nodejs/node#11516
      - `process.memoryUsage()` is up to 34% faster. (Brian White)
        nodejs/node#11497
      - `querystring.unescape()` for `Buffer`s is 15% faster on average.
        (Brian White) nodejs/node#10837
      - `querystring.stringify()` is up to 7.8% faster on average.
        (Brian White) nodejs/node#10852
      - `querystring.parse()` is up to 21% faster on average. (Brian White)
        nodejs/node#10874

    * IPC:
      - Batched writes have been enabled for process IPC on platforms that
        support Unix Domain Sockets. (Alexey Orlenko)
        nodejs/node#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) nodejs/node#11288
      - This fixes the behavior to act like `spawn()` does.

    * http:
      - Control characters are now always rejected when using
        `http.request()`. (Ben Noordhuis)
        nodejs/node#8923
      - Debug messages have been added for cases when headers contain
        invalid values. (Evan Lucas)
        nodejs/node#9195

    * node:
      - Heap statistics now support values larger than 4GB. (Ben Noordhuis)
        nodejs/node#10186

    * timers:
      - Timer callbacks now always maintain order when interacting with
        domain error handling. (John Barboza)
        nodejs/node#10522

    PR-URL: nodejs/node#11759

Signed-off-by: Ilkka Myller <ilkka.myller@nodefield.com>
  • Loading branch information
imyller committed Apr 20, 2017
1 parent eee59a8 commit e47cbbd
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ OpenEmbedded layer for latest [Node.js](https://nodejs.org/ "Node.js") releases.

## Node.js releases

* ![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)
Expand Down
9 changes: 0 additions & 9 deletions recipes-devtools/nodejs/nodejs_6.10.0.bb

This file was deleted.

9 changes: 9 additions & 0 deletions recipes-devtools/nodejs/nodejs_6.10.1.bb
Original file line number Diff line number Diff line change
@@ -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"

0 comments on commit e47cbbd

Please sign in to comment.