Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2011-02-10 12:45:15 +0300
committerRyan Dahl <ry@tinyclouds.org>2011-02-10 13:40:11 +0300
commiteb155ea6f6a6aa341aa8c731dca8da545c6a4008 (patch)
tree0457b3873a7e47c76630ac0c368b1ac4f4e9deed
parentb09c5889bee8388a6710ecf75d76ca242e0684bd (diff)
Bump version to v0.4.0v0.4.0
-rw-r--r--AUTHORS3
-rw-r--r--ChangeLog33
-rw-r--r--Makefile1
-rw-r--r--doc/index.html14
-rw-r--r--doc/v0.4_announcement.html94
-rw-r--r--src/node_version.h2
-rw-r--r--wscript2
7 files changed, 137 insertions, 12 deletions
diff --git a/AUTHORS b/AUTHORS
index 8ac112a9c07..fd81948b704 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -158,3 +158,6 @@ Carter Allen <CarterA@opt-6.com>
Greg Hughes <greg@ghughes.com>
David Trejo <david.daniel.trejo@gmail.com>
Joe Walnes <joe@walnes.com>
+Koichi Kobayashi <koichik@improvement.jp>
+Daniel Gröber <dxld@darkboxed.org>
+Konstantin Käfer <github@kkaefer.com>
diff --git a/ChangeLog b/ChangeLog
index eac25dc97a4..11c29cd3597 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,36 @@
+2011.02.10, Version 0.4.0 (stable)
+
+* require() improvements (isaacs)
+ - understand package.json (isaacs)
+ - look for 'node_modules' dir
+
+* cmake fixes (Daniel Gröber)
+
+* http: fix buffer writes to outgoing messages (Russell Haering)
+
+* Expose UCS-2 Encoding (Konstantin Käfer)
+
+* Support strings for octal modes (isaacs)
+
+* Support array-ish args to Buffer ctor (isaacs)
+
+* cygwin and mingw improvements (Bert Belder)
+
+* TLS improvements
+
+* Fewer syscalls during require (Bert Belder, isaacs)
+
+* More DTrace probes (Bryan Cantrill, Robert Mustacchi)
+
+* 'pipe' event on pipe() (Mikeal Rogers)
+
+* CRL support in TLS (Theo Schlossnagle)
+
+* HTTP header manipulation methods (Tim Caswell, Charlie Robbins)
+
+* Upgrade V8 to 3.1.2
+
+
2011.02.04, Version 0.3.8 (unstable)
* Add req.abort() for client side requests.
diff --git a/Makefile b/Makefile
index 6da2be830f6..7fa52271190 100644
--- a/Makefile
+++ b/Makefile
@@ -63,6 +63,7 @@ apiassets = $(subst api_assets,api/assets,$(addprefix build/,$(wildcard doc/api_
website_files = \
build/doc/index.html \
+ build/doc/v0.4_announcement.html \
build/doc/cla.html \
build/doc/sh_main.js \
build/doc/sh_javascript.min.js \
diff --git a/doc/index.html b/doc/index.html
index 533ccd6c404..797b121b0fd 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -20,8 +20,7 @@
<li><a href="#download">Download</a></li>
<li><a href="https://github.com/ry/node/raw/master/ChangeLog">ChangeLog</a></li>
<li><a href="#about">About</a></li>
- <li><a href="http://nodejs.org/docs/v0.3.8/api">v0.3.8 docs</a></li>
- <li><a href="http://nodejs.org/docs/v0.2.6/api.html">v0.2.6 docs</a></li>
+ <li><a href="http://nodejs.org/docs/v0.4.0/api">v0.4.0 docs</a></li>
<br/>
<li><B><a href="https://github.com/ry/node/wiki">Wiki</a></B></li>
</ol>
@@ -89,16 +88,11 @@ net.createServer(function (socket) {
<p>
<a href="http://github.com/ry/node/tree/master">git repo</a>
</p>
- <p>
- Stable: 2010.12.30
- <a href="http://nodejs.org/dist/node-v0.2.6.tar.gz">node-v0.2.6.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.2.6/api.html">Documentation</a>)
- </p>
<p>
- Unstable: 2011.02.04
- <a href="http://nodejs.org/dist/node-v0.3.8.tar.gz">node-v0.3.8.tar.gz</a>
- (<a href="http://nodejs.org/docs/v0.3.8/api/index.html">Documentation</a>)
+ 2011.02.10
+ <a href="http://nodejs.org/dist/node-v0.4.0.tar.gz">node-v0.4.0.tar.gz</a>
+ (<a href="http://nodejs.org/docs/v0.4.0/api/index.html">Documentation</a>)
</p>
<p>Historical: <a href="http://nodejs.org/dist">versions</a>, <a href="http://nodejs.org/docs">docs</a></p>
diff --git a/doc/v0.4_announcement.html b/doc/v0.4_announcement.html
new file mode 100644
index 00000000000..ddb8f1e5cc0
--- /dev/null
+++ b/doc/v0.4_announcement.html
@@ -0,0 +1,94 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <style type="text/css">
+ ul {
+ padding: 0;
+ margin: 0;
+ }
+ </style>
+ <link type="text/css" rel="stylesheet" href="pipe.css" />
+ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
+ <title>node v0.4 announcement</title>
+ </head>
+ <body>
+ <h2>Second Stable Branch of Node released</h2>
+
+ <p>
+ <a
+ href="https://github.com/ry/node/wiki/Migrating-from-v0.2-to-v0.3">Wiki
+ page detailing API changes between v0.4 and v0.2</a>
+
+ <p>
+ Major changes since v0.2:
+
+ <ul>
+ <li> Major overhaul of TLS/SSL system. Previously the binding to
+ OpenSSL was heavily interwoven into the socket code. This binding was
+ reworked to present each connection as a pair of "streams" instead: a
+ duplex encrypted stream and a duplex cleartext stream. The encrypted
+ stream is piped to a raw TCP socket using the general purpose
+ <code>Stream.prototype.pipe()</code> method. Functionality was
+ enhanced and API simplified.
+
+ <li> Cheaper <code>Buffer</code> allocation. Node uses
+ <code>Buffer</code> objects in many places - it was noticed that they
+ were relatively slow to allocate and difficult to garbage collect. The
+ implementation changed to use pure javascript objects instead of
+ an <code>ObjectWrap</code> which improved performance.
+
+ <li> With a good amount of experience now, some modifications to the
+ module loading system were made to better support package managers.
+ In particular, NPM was forced to resort to deep symlinks and "shim"
+ modules to work around missing features in <code>require()</code>. The main
+ changes are:
+ <ol>
+ <li><code>require()</code> calls realpath. That is,
+ it resolves symbolic links. This allows symlinked modules to make
+ relative requires.
+
+ <li><code>require()</code> now has a primitive understanding of
+ <code>package.json</code>. It looks for the <code>main</code>
+ script. This allows <code>require()</code> to work on package
+ directories directly.
+
+ <li>A specially named directory, <code>node_modules/</code>, is
+ searched in the current directory for any modules. This will
+ hopefully encourage programmers to bundle modules rather than
+ rely on a global namespace.
+ </ol>
+ Read more about these features in <a
+ href="https://github.com/ry/node/blob/01a864a29d64119054401784cd9255c3a813bdbc/doc/api/modules.markdown">the
+ module documentation</a>.
+
+ <li> A half-complete but good start a native windows build with MinGW
+ is underway by Bert Builder. Build instructions can be found <a
+ href="https://github.com/ry/node/wiki/Building-node.js-on-mingw">on
+ the wiki</a>.
+
+ <li> Node upgraded to the latest version of V8, <code>v3.1.2</code>.
+ This includes much work including V8's new compilation infrastructure
+ and a GDB plugin on Linux.
+ Read <a
+ href="https://github.com/ry/node/blob/583f2e599962f2664dbaafa0ae98a8d6c1242441/deps/v8/ChangeLog">the
+ full V8 ChangeLog</a>.
+
+ <li>A new built-in client for V8's debugger was added to Node. It is
+ still very primitive but usable for simple task. There is a <a
+ href="http://vimeo.com/19465332">small introduction video</a> and
+ some <a
+ href="https://github.com/ry/node/blob/01a864a29d64119054401784cd9255c3a813bdbc/doc/api/debugger.markdown">documentation</a>.
+
+ <li>An <code>os</code> module was added by Brian White which exposes
+ a lot of basic but useful system information: <code>os.cpus(),
+ os.freemem(), os.totalmem(), os.loadavg()</code>
+
+ <li> And, of course, many of bug fixes. See the
+ <a
+ href="https://github.com/ry/node/blob/01a864a29d64119054401784cd9255c3a813bdbc/ChangeLog">full
+ changelog</a>.
+
+ </ul>
+
+ </body>
+</html>
diff --git a/src/node_version.h b/src/node_version.h
index 9f65ff32cfd..9400afa7248 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 4
#define NODE_PATCH_VERSION 0
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)
diff --git a/wscript b/wscript
index 08e05005879..a19d89d422a 100644
--- a/wscript
+++ b/wscript
@@ -780,7 +780,7 @@ def build(bld):
, 'CPPFLAGS' : " ".join(program.env["CPPFLAGS"]).replace('"', '\\"')
, 'LIBFLAGS' : " ".join(program.env["LIBFLAGS"]).replace('"', '\\"')
, 'PREFIX' : safe_path(program.env["PREFIX"])
- , 'VERSION' : '0.3.8' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
+ , 'VERSION' : '0.4.0' # FIXME should not be hard-coded, see NODE_VERSION_STRING in src/node_version.
}
return x