-
Notifications
You must be signed in to change notification settings - Fork 29.6k
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: v0.10.43 (Maintenance) #5404
Commits on Feb 11, 2016
-
domains: fix handling of uncaught exceptions
Fix node exiting due to an exception being thrown rather than emitting an 'uncaughtException' event on the process object when: 1. no error handler is set on the domain within which an error is thrown 2. an 'uncaughtException' event listener is set on the process Also fix an issue where the process would not abort in the proper function call if an error is thrown within a domain with no error handler and --abort-on-uncaught-exception is used. Fixes #3607 and #3653. PR: #3887 PR-URL: #3887 Reviewed-By: James M Snell <[email protected]>
Julien Gilli authored and Myles Borins committedFeb 11, 2016 Configuration menu - View commit details
-
Copy full SHA for 563c359 - Browse repository at this point
Copy the full SHA 563c359View commit details
Commits on Feb 24, 2016
-
deps: update http-parser to version 1.2
Fixes http-parser regression with IS_HEADER_CHAR check Add test case for obstext characters (> 0x80) in header PR-URL: #5242 Reviewed-By: Rod Vagg <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 1e45a61 - Browse repository at this point
Copy the full SHA 1e45a61View commit details
Commits on Mar 1, 2016
-
deps: upgrade openssl to 1.0.1s
PR-URL: #5508 Reviewed-By: Fedor Indutny <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 42ded2a - Browse repository at this point
Copy the full SHA 42ded2aView commit details
Commits on Mar 2, 2016
-
test: fix hanging http obstext test
Set the Connection header to 'close' to work around a v0.10 quirk. Prevents the test from timing out due to a still open TCP connection. Test introduced in 1e45a61 ("deps: update http-parser to version 1.2"). PR-URL: #5511 Reviewed-By: James M Snell <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e483f3f - Browse repository at this point
Copy the full SHA e483f3fView commit details -
crypto,tls: remove SSLv2 support
Remove support for SSLv2 because of DROWN (CVE-2016-0800). Use of the `--enable-ssl2` flag is now an error; node will print an error message and exit. Fixes: nodejs/Release#80 PR-URL: #5529 Reviewed-By: Rod Vagg <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for f8cb0dc - Browse repository at this point
Copy the full SHA f8cb0dcView commit details
Commits on Mar 3, 2016
-
doc: remove SSLv2 descriptions
Doc descriptions related to SSLv2 are no longer needed. Fixes: #5529 PR-URL: #5541 Reviewed-By: Ben Noordhuis <[email protected]>
Shigeki Ohtsu committedMar 3, 2016 Configuration menu - View commit details
-
Copy full SHA for 6db377b - Browse repository at this point
Copy the full SHA 6db377bView commit details -
build: update Node.js logo on OSX installer
PR-URL: #5401 Reviewed-By: Johan Bergström <[email protected]> Reviewed-By: kahwee Reviewed-By: fhemberger Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Sakthipriyan Vairamani <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 164157a - Browse repository at this point
Copy the full SHA 164157aView commit details -
2016-03-03 Version 0.10.43 (Maintenance) Release
Notable changes: * http_parser: Update to http-parser 1.2 to fix an unintentionally strict limitation of allowable header characters. (James M Snell) #5242 * domains: - Prevent an exit due to an exception being thrown rather than emitting an 'uncaughtException' event on the `process` object when no error handler is set on the domain within which an error is thrown and an 'uncaughtException' event listener is set on `process`. (Julien Gilli) #3887 - Fix an issue where the process would not abort in the proper function call if an error is thrown within a domain with no error handler and `--abort-on-uncaught-exception` is used. (Julien Gilli) #3887 * openssl: Upgrade from 1.0.1r to 1.0.1s (Ben Noordhuis) #5508 - Fix a double-free defect in parsing malformed DSA keys that may potentially be used for DoS or memory corruption attacks. It is likely to be very difficult to use this defect for a practical attack and is therefore considered low severity for Node.js users. More info is available at https://www.openssl.org/news/vulnerabilities.html#2016-0705 - Fix a defect that can cause memory corruption in certain very rare cases relating to the internal `BN_hex2bn()` and `BN_dec2bn()` functions. It is believed that Node.js is not invoking the code paths that use these functions so practical attacks via Node.js using this defect are _unlikely_ to be possible. More info is available at https://www.openssl.org/news/vulnerabilities.html#2016-0797 - Fix a defect that makes the CacheBleed Attack (https://ssrg.nicta.com.au/projects/TS/cachebleed/) possible. This defect enables attackers to execute side-channel attacks leading to the potential recovery of entire RSA private keys. It only affects the Intel Sandy Bridge (and possibly older) microarchitecture when using hyper-threading. Newer microarchitectures, including Haswell, are unaffected. More info is available at https://www.openssl.org/news/vulnerabilities.html#2016-0702 - Remove SSLv2 support, the `--enable-ssl2` command line argument will now produce an error. The DROWN Attack (https://drownattack.com/) creates a vulnerability where SSLv2 is enabled by a server, even if a client connection is not using SSLv2. The SSLv2 protocol is widely considered unacceptably broken and should not be supported. More information is available at https://www.openssl.org/news/vulnerabilities.html#2016-0800 PR-URL: #5404
Configuration menu - View commit details
-
Copy full SHA for 6278f1d - Browse repository at this point
Copy the full SHA 6278f1dView commit details