summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTimothy J Fontaine <tjfontaine@gmail.com>2014-06-09 11:05:29 -0700
committerTimothy J Fontaine <tjfontaine@gmail.com>2014-06-09 11:05:29 -0700
commiteeb08ca496c1401b295385d53ffa1f853133eeb6 (patch)
treeae6c653acc6fa7e2966e258664112078774bb907
parentf82652e68eebdc513ebb78137ecce9e1393c2c4c (diff)
downloadnode-eeb08ca496c1401b295385d53ffa1f853133eeb6.tar.gz
2014.06.09, Version 0.8.27 (maintenance)
* openssl: update to 1.0.0m (CVE-2014-0224) * utf8: Prevent Node from sending invalid UTF-8 (Felix Geisendörfer) - *NOTE* this introduces a breaking change, previously you could construct invalid UTF-8 and invoke an error in a client that was expecting valid UTF-8, now unmatched surrogate pairs are replaced with the unknown UTF-8 character. To restore the old functionality simply have NODE_INVALID_UTF8 environment variable set. * tls: fix pool usage race (Fedor Indutny) * fs: close file if fstat() fails in readFile() (cjihrig)
-rw-r--r--AUTHORS2
-rw-r--r--ChangeLog18
-rw-r--r--src/node_version.h2
3 files changed, 20 insertions, 2 deletions
diff --git a/AUTHORS b/AUTHORS
index 47e149abd..36b05c5db 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -384,3 +384,5 @@ Timothy J Fontaine <tjfontaine@gmail.com>
Eugene Girshov <eugene.girshov@nixu.com>
Raymond Feng <enjoyjava@gmail.com>
Tobias Müllerleile <tobias@muellerleile.net>
+Daniel Chatfield <chatfielddaniel@gmail.com>
+cjihrig <cjihrig@gmail.com>
diff --git a/ChangeLog b/ChangeLog
index ea87c4cd4..8042a2038 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2013.10.13, Version 0.8.26 (maintenance)
+2014.06.09, Version 0.8.27 (maintenance)
+
+* openssl: update to 1.0.0m (CVE-2014-0224)
+
+* utf8: Prevent Node from sending invalid UTF-8 (Felix Geisendörfer)
+ - *NOTE* this introduces a breaking change, previously you could construct
+ invalid UTF-8 and invoke an error in a client that was expecting valid
+ UTF-8, now unmatched surrogate pairs are replaced with the unknown UTF-8
+ character. To restore the old functionality simply have NODE_INVALID_UTF8
+ environment variable set.
+
+* tls: fix pool usage race (Fedor Indutny)
+
+* fs: close file if fstat() fails in readFile() (cjihrig)
+
+
+2013.10.13, Version 0.8.26 (maintenance), 6d391bbbe18217ce20c15c3da2bad71ef836922c
* v8: Upgrade to 3.11.10.26
diff --git a/src/node_version.h b/src/node_version.h
index 18c85fbfa..8c25dd792 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -30,7 +30,7 @@
# define NODE_TAG ""
#endif
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)