Skip to content
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

Release proposal: v5.5.1 (Stable) #5141

Closed
wants to merge 15 commits into from
Closed

Release proposal: v5.5.1 (Stable) #5141

wants to merge 15 commits into from

Commits on Feb 8, 2016

  1. doc: add CTC meeting minutes 2016-01-27

    PR-URL: #5057
    Reviewed-By: Roman Reiss <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    Reviewed-By: Sakthipriyan Vairamani <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    9e4f94b View commit details
    Browse the repository at this point in the history
  2. doc: minor improvement in OS docs

    Add links to `process.arch` and `process.platform`.
    
    PR-URL: #5006
    Reviewed-By: Roman Klauke <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    Reviewed-By: Roman Reiss <[email protected]>
    estliberitas authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    e325ece View commit details
    Browse the repository at this point in the history
  3. doc: add CTC meeting minutes 2016-01-20

    PR-URL: #4904
    Reviewed-By: James M Snell <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    Reviewed-By: Roman Reiss <[email protected]>
    rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    28b3928 View commit details
    Browse the repository at this point in the history
  4. doc: fix links order in Buffer doc

    Sort links in lexical order
    
    PR-URL: #5076
    Reviewed-By: Sakthipriyan Vairamani <[email protected]>
    Reviewed-By: Roman Klauke <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    estliberitas authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    6363264 View commit details
    Browse the repository at this point in the history
  5. tools: lint for spacing around unary operators

    Enable `space-unary-ops` in `.eslintrc`. This prohibits things like:
    
        i ++        // use `i++` instead
        typeof(foo) // use `typeof foo` or `typeof (foo)` instead
    
    Ref: #4772 (comment)
    PR-URL: #5063
    Reviewed-By: Colin Ihrig <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Roman Reiss <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    Trott authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    e05bb40 View commit details
    Browse the repository at this point in the history
  6. buffer: remove duplicated code in fromObject

    Add fromArrayLike() to handle logic of copying in values from array-like
    argument.
    
    PR-URL: #4948
    Reviewed-By: Sakthipriyan Vairamani <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    Reviewed-By: Trevor Norris <[email protected]>
    entertainyou authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    d64e6e0 View commit details
    Browse the repository at this point in the history
  7. querystring: check that maxKeys is finite

    There was a very subtle change in behavior introduced with 27def4f
    
    In the past if querystring.parse was given Infinity for maxKeys,
    everything worked as expected.
    
    Check to see is maxKeys is Infinity before forwarding the value to
    String.prototype.split which causes this regression
    
    PR-URL: #5066
    Reviewed-By: Evan Lucas <[email protected]>
    Reviewed By: Sakthipriyan Vairamani <[email protected]>
    Reviewed-By: Rod Vagg <[email protected]>
    Reviewed-By: Jeremiah Senkpiel <[email protected]>
    Myles Borins authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    f8269fe View commit details
    Browse the repository at this point in the history
  8. node_contextify: do not incept debug context

    Currently a debug context is created for various calls to util.
    
    If the node debugger is being run the main context is the debug
    context. In this case node_contextify was freeing the debug context
    and causing everything to explode.
    
    This change moves around the logic and no longer frees the context.
    
    There is a concern about the dangling pointer
    
    The regression test was adapted from code submitted by @3y3 in #4815
    
    Fixes: #4440
    Fixes: #4815
    Fixes: #4597
    Fixes: #4952
    
    PR-URL: #4815
    
    Reviewed-By: Fedor Indutny <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    Reviewed-By: Rich Trott <[email protected]>
    Myles Borins authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    1b49dfb View commit details
    Browse the repository at this point in the history
  9. test: mark flaky tests on Raspberry Pi

    A few tests have started failing on Raspberry Pi devices in CI.
    https://ci.nodejs.org/job/node-test-binary-arm/943/
    
    PR-URL: #5082
    Reviewed-By: Colin Ihrig <[email protected]>
    Reviewed-By: Roman Klauke <[email protected]>
    Ref: #4830
    Ref: #3635
    Ref: #4526
    Trott authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    3effca6 View commit details
    Browse the repository at this point in the history
  10. doc: fix typo in dgram doc

    Remove stray square brackets from dgram documentation.
    
    PR-URL: #5114
    Reviewed-By: Brian White <[email protected]>
    Reviewed By: Sakthipriyan Vairamani <[email protected]>
    Trott authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    3b960af View commit details
    Browse the repository at this point in the history
  11. src: clean up usage of __proto__

    Prefer using Object.setPrototypeOf() instead.
    
    PR-URL: #5069
    Reviewed-By: Trevor Norris <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    JacksonTian authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    853d73b View commit details
    Browse the repository at this point in the history
  12. test: fix flaky test-dgram-pingpong

    There is no guarantee UDP messages will be received. Accommodate the
    occasional dropped message.
    
    This is a functionality test, not a performance benchmark. Speed up the
    test by not sending 1500 messages across three ports.
    
    Fixes: #4526
    PR-URL: #5125
    Reviewed-By: Brian White <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    Trott authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    fc3c32b View commit details
    Browse the repository at this point in the history
  13. tools: lint for empty character classes in regex

    Enable linting rule to forbid empty character classes in regular
    expressions. See http://eslint.org/docs/rules/no-empty-character-class
    
    Organize "Possible Error" rules in .eslintrc in alphabetical order to
    match eslint documentation.
    
    PR-URL: #5115
    Reviewed-By: Roman Reiss <[email protected]>
    Reviewed-By: Jeremiah Senkpiel <[email protected]>
    Reviewed-By: Ben Noordhuis <[email protected]>
    Reviewed-By: James M Snell <[email protected]>
    Trott authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    f513e66 View commit details
    Browse the repository at this point in the history
  14. doc: console is asynchronous unless it's a file

    Mea culpa, looks like I forgot to update console.markdown in commit
    dac1d38 ("doc: stdout/stderr can block when directed to file").
    This commit rectifies that.
    
    Refs: #5131
    PR-URL: #5133
    Reviewed-By: Brian White <[email protected]>
    Reviewed-By: Evan Lucas <[email protected]>
    bnoordhuis authored and rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    6f58bc5 View commit details
    Browse the repository at this point in the history
  15. 2016-02-09, Version 5.5.1 (Stable)

    Notable changes:
    rvagg committed Feb 8, 2016
    Configuration menu
    Copy the full SHA
    7035d21 View commit details
    Browse the repository at this point in the history