Skip to content

Commit 83a86e3

Browse files
author
Myles Borins
committedJan 21, 2016
2016-01-20, Version 4.2.6 "Argon" (LTS) Release
Notable changes: * Fix regression in debugger and profiler functionality
1 parent 1f8e147 commit 83a86e3

File tree

2 files changed

+20
-1
lines changed

2 files changed

+20
-1
lines changed
 

‎CHANGELOG.md

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

3+
## 2016-01-20, Version 4.2.6 'Argon' (LTS), @TheAlphaNerd
4+
5+
### Notable changes
6+
7+
* Fix regression in debugger and profiler functionality
8+
9+
### Known issues
10+
11+
* Some problems with unreferenced timers running during `beforeExit` are still to be resolved. See [#1264](https://github.com/nodejs/node/issues/1264).
12+
* Surrogate pair in REPL can freeze terminal. [#690](https://github.com/nodejs/node/issues/690)
13+
* 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)
14+
* `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).
15+
16+
### Commits
17+
18+
* [[`1408f7abb1`](https://github.com/nodejs/node/commit/1408f7abb1)] - **module,src**: do not wrap modules with -1 lineOffset (cjihrig) [#4298](https://github.com/nodejs/node/pull/4298)
19+
* [[`1f8e1472cc`](https://github.com/nodejs/node/commit/1f8e1472cc)] - **test**: add test for debugging one line files (cjihrig) [#4298](https://github.com/nodejs/node/pull/4298)
20+
21+
322
## 2016-01-20, Version 4.2.5 'Argon' (LTS), @TheAlphaNerd
423

524
Maintenance update.

‎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)