Skip to content

Commit 659291c

Browse files
committed
2015-10-13, Version 4.2.1 'Argon' (LTS) Release
* Includes fixes for two regressions - Assertion error in WeakCallback - see [#3329](#3329) - Undefined timeout regression - see [#3331](#3331) * Document an additional known issue with pipelined requests - See: #3332 and #3342
1 parent 102cb72 commit 659291c

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

CHANGELOG.md

+22
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Node.js ChangeLog
22

3+
## 2015-10-13, Version 4.2.1 'Argon' (Stable), @jasnell
4+
5+
### Notable changes
6+
7+
* Includes fixes for two regressions
8+
- Assertion error in WeakCallback - see [#3329](https://github.com/nodejs/node/pull/3329)
9+
- Undefined timeout regression - see [#3331](https://github.com/nodejs/node/pull/3331)
10+
11+
### Known issues
12+
13+
* When a server queues a large amount of data to send to a client over a pipelined HTTP connection, the underlying socket may be destroyed. See [#3332](https://github.com/nodejs/node/issues/3332) and [#3342](https://github.com/nodejs/node/pull/3342).
14+
* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https://github.com/nodejs/node/issues/1264).
15+
* Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690)
16+
* Calling `dns.setServers()` while a DNS query is in progress can cause the process to crash on a failed assertion. [#894](https://github.com/nodejs/node/issues/894)
17+
* `url.resolve` may transfer the auth portion of the url when resolving between two full hosts, see [#1435](https://github.com/nodejs/node/issues/1435).
18+
19+
### Commits
20+
21+
* [[`b3cbd13340`](https://github.com/nodejs/node/commit/b3cbd13340)] - **buffer**: fix assertion error in WeakCallback (Fedor Indutny) [#3329](https://github.com/nodejs/node/pull/3329)
22+
* [[`102cb7288c`](https://github.com/nodejs/node/commit/102cb7288c)] - **doc**: label v4.2.0 as LTS in changelog heading (Rod Vagg) [#3343](https://github.com/nodejs/node/pull/3343)
23+
* [[`c245a199a7`](https://github.com/nodejs/node/commit/c245a199a7)] - **lib**: fix undefined timeout regression (Ryan Graham) [#3331](https://github.com/nodejs/node/pull/3331
24+
325
## 2015-10-07, Version 4.2.0 'Argon' (LTS), @jasnell
426

527
### Notable changes

src/node_version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#define NODE_VERSION_IS_LTS 1
99
#define NODE_VERSION_LTS_CODENAME "Argon"
1010

11-
#define NODE_VERSION_IS_RELEASE 0
11+
#define NODE_VERSION_IS_RELEASE 1
1212

1313
#ifndef NODE_STRINGIFY
1414
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)

0 commit comments

Comments
 (0)