Skip to content

Commit b5c69d1

Browse files
committed
2015-01-20 io.js v1.0.3 Release
Notable changes * V8 upgrade from 3.31 to 4.1, this is not a major upgrade, the version number "4.1" signifies tracking towards Chrome 41. The 3.31 branch is now not tracking towards a stable release. * Re-enable Windows XP / 2003 support * npm upgrade to 2.2.0 * Improved FreeBSD support
1 parent 9419e1f commit b5c69d1

File tree

2 files changed

+51
-1
lines changed

2 files changed

+51
-1
lines changed

CHANGELOG.md

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,55 @@
11
# io.js ChangeLog
22

3+
## 2015-01-20, Version 1.0.3, @rvagg
4+
5+
### Notable changes
6+
7+
* V8 upgrade from 3.31 to 4.1, this is not a major upgrade, the version number "4.1" signifies tracking towards Chrome 41. The 3.31 branch is now not tracking towards a stable release.
8+
* Re-enable Windows XP / 2003 support
9+
* npm upgrade to 2.2.0
10+
* Improved FreeBSD support
11+
12+
### Known issues
13+
14+
* ARMv6 builds still not working, there is a hold-up in V8 on this, issue #283
15+
* Template strings can cause segfaults in V8 4.1, https://codereview.chromium.org/857433004, also issue #333
16+
17+
### Commits
18+
19+
* 9419e1f - src: fix inconsistency between a check and error (toastynerd)
20+
* 03ee4d8 - fs: add error code on null byte paths (cjihrig)
21+
* e2558f0 - net: fix error details in connect() (cjihrig)
22+
* 4af5746 - win,build: remove duplicate definition (Bert Belder)
23+
* e8d0850 - win: bring back xp/2k3 support (Bert Belder)
24+
* 4dd22b9 - cluster: avoid race enabling debugger in worker (Timothy J Fontaine)
25+
* 6b91c78 - test: reland changes from 11c1bae (Ben Noordhuis)
26+
* 992a1e7 - test: debug-signal-cluster should not be racey (Timothy J Fontaine)
27+
* cdf0df1 - test: temporarily back out changes from 11c1bae (Ben Noordhuis)
28+
* 1ea607c - test: move sequential/test-debug-port-from-cmdline (Ben Noordhuis)
29+
* 2f33e00 - test: fix test-debug-port-from-cmdline.js (Julien Gilli)
30+
* b7365c1 - repl: make REPL support multiline template literals (Xiaowei Li)
31+
* 2253d30 - build: remove unused variable (Johan Bergström)
32+
* ab04a43 - doc: add optional sudo to make install in README (Glen Keane)
33+
* 1b1cd1c - build: shorten configurate script print on stdout (Roman Reiss)
34+
* d566ded - deps: fix V8 debugger bugs (Jay Jaeho Lee)
35+
* 6f36630 - doc: fix util.isBuffer examples (Thomas Jensen)
36+
* 3abfb56 - benchmark: fix tcp bench after internal api change (Yosuke Furukawa)
37+
* 50177fb - benchmark: stop v8 benchmark clobbering RegExp (Ben Noordhuis)
38+
* 1952219 - deps: make node-gyp work again on windows (Bert Belder)
39+
* a28de9b - deps: make node-gyp fetch tarballs from iojs.org (Ben Noordhuis)
40+
* 9dc8f59 - deps: upgrade npm to 2.2.0 (Forrest L Norvell)
41+
* e8ad773 - src: remove --noharmony_classes again (Ben Noordhuis)
42+
* 334020e - deps: fix v8 build on FreeBSD (Fedor Indutny)
43+
* 5e7ebc7 - deps: upgrade v8 to 4.1.0.7 (Ben Noordhuis)
44+
* ea7750b - benchmark: add filter option for benchmark (Yosuke Furukawa)
45+
* 4764eef - doc: fixed punctuation (Brenard Cubacub)
46+
* de224d6 - configure: remove --ninja switch (Ben Noordhuis)
47+
* 48774ec0 - configure: print warning for old compilers (Ben Noordhuis)
48+
* daf9562 - doc: change to iojs from node in the usage message (Jongyeol Choi)
49+
* 3fde649 - build: add tools/gflags to PYTHONPATH (Shigeki Ohtsu)
50+
* 8b22df1 - doc: add python-gflags LICENSE block (Shigeki Ohtsu)
51+
* 6242229 - tools: add python-gflags module (Shigeki Ohtsu)
52+
353
## 2015-01-16, Version 1.0.2, @rvagg
454

555
### Notable changes

src/node_version.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#define NODE_MINOR_VERSION 0
66
#define NODE_PATCH_VERSION 3
77

8-
#define NODE_VERSION_IS_RELEASE 0
8+
#define NODE_VERSION_IS_RELEASE 1
99

1010
#ifndef NODE_STRINGIFY
1111
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)