Skip to content

Commit bb207c2

Browse files
committed
Merge remote-tracking branch 'ry/v0.8' into master
Conflicts: ChangeLog src/node_version.h test/simple/test-util-inspect.js
2 parents d3fa0dc + 451ff15 commit bb207c2

File tree

698 files changed

+44230
-375
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

698 files changed

+44230
-375
lines changed

ChangeLog

Lines changed: 46 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,52 @@
8686
* Fix #3521 Make process.env more like a regular Object (isaacs)
8787

8888

89-
2012.08.22, Version 0.8.8 (Stable)
89+
2012.09.11, Version 0.8.9 (Stable), b88c3902b241cf934e75443b934f2033ad3915b1
90+
91+
* v8: upgrade to 3.11.10.22
92+
93+
* GYP: upgrade to r1477
94+
95+
* npm: Upgrade to 1.1.61
96+
97+
* npm: Don't create world-writable files (isaacs)
98+
99+
* windows: fix single-accept mode for shared server sockets (Bert Belder)
100+
101+
* windows: fix uninitialized memory access in uv_update_time() (Bert Belder)
102+
103+
* windows: don't throw when a signal handler is attached (Bert Belder)
104+
105+
* unix: fix memory leak in udp (Ben Noordhuis)
106+
107+
* unix: map errno ESPIPE (Ben Noordhuis)
108+
109+
* unix, windows: fix memory corruption in fs-poll.c (Ben Noordhuis)
110+
111+
* sunos: fix os.cpus() on x86_64 (Ben Noordhuis)
112+
113+
* child process: fix processes with IPC channel don't emit 'close' (Bert Belder)
114+
115+
* build: add a "--dest-os" option to force a gyp "flavor" (Nathan Rajlich)
116+
117+
* build: set `process.platform` to "sunos" on SunOS (Nathan Rajlich)
118+
119+
* build: fix `make -j` fails after `make clean` (Bearice Ren)
120+
121+
* build: fix openssl configuration for "arm" builds (Nathan Rajlich)
122+
123+
* tls: support unix domain socket/named pipe in tls.connect (Shigeki Ohtsu)
124+
125+
* https: make https.get() accept a URL (koichik)
126+
127+
* http: respect HTTP/1.0 TE header (Ben Noordhuis)
128+
129+
* crypto, tls: Domainify setSNICallback, pbkdf2, randomBytes (Ben Noordhuis)
130+
131+
* stream.pipe: Don't call destroy() unless it's a function (isaacs)
132+
133+
134+
2012.08.22, Version 0.8.8 (Stable), a299c97bbc701f4d460e91214d7bfe7a9589d361
90135

91136
* V8: upgrade to 3.11.10.19
92137

configure

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,12 @@ parser.add_option("--dest-cpu",
154154
dest="dest_cpu",
155155
help="CPU architecture to build for. Valid values are: arm, ia32, x64")
156156

157+
parser.add_option("--dest-os",
158+
action="store",
159+
dest="dest_os",
160+
help="Operating system to build for. Valid values are: "
161+
"win, mac, solaris, freebsd, linux")
162+
157163
parser.add_option("--no-ifaddrs",
158164
action="store_true",
159165
dest="no_ifaddrs",
@@ -472,6 +478,8 @@ if options.use_ninja:
472478
gyp_args = ['-f', 'ninja']
473479
elif os.name == 'nt':
474480
gyp_args = ['-f', 'msvs', '-G', 'msvs_version=2010']
481+
elif options.dest_os:
482+
gyp_args = ['-f', 'make-' + options.dest_os]
475483
else:
476484
gyp_args = ['-f', 'make']
477485

deps/npm/doc/cli/faq.md

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -211,20 +211,29 @@ means that publishes go over HTTP by default in those versions of node.
211211

212212
## I forgot my password, and can't publish. How do I reset it?
213213

214-
Go to <http://admin.npmjs.org/reset>.
214+
Go to <https://npmjs.org/forgot>.
215215

216216
## I get ECONNREFUSED a lot. What's up?
217217

218218
Either the registry is down, or node's DNS isn't able to reach out.
219219

220-
To check if the registry is down, open up
221-
<http://registry.npmjs.org/>
220+
To check if the registry is down, open up <http://registry.npmjs.org/>
222221
in a web browser. This will also tell you if you are just unable to
223222
access the internet for some reason.
224223

225224
If the registry IS down, let me know by emailing or posting an issue.
226225
We'll have someone kick it or something.
227226

227+
## Why no namespaces?
228+
229+
Please see this discussion: <https://github.com/isaacs/npm/issues/798>
230+
231+
tl;dr - It doesn't actually make things better, and can make them worse.
232+
233+
If you want to namespace your own packages, you may: simply use the
234+
`-` character to separate the names. npm is a mostly anarchic system.
235+
There is not sufficient need to impose namespace rules on everyone.
236+
228237
## Who does npm?
229238

230239
`npm view npm author`

deps/npm/doc/cli/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ npm-index(1) -- Index of all npm documentation
106106

107107
Symlink a package folder
108108

109-
## npm-list(1)
109+
## npm-ls(1)
110110

111111
List installed packages
112112

File renamed without changes.

deps/npm/html/api/bin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
1919
<p>This function should not be used programmatically. Instead, just refer
2020
to the <code>npm.bin</code> member.</p>
2121
</div>
22-
<p id="footer">bin &mdash; [email protected].59</p>
22+
<p id="footer">bin &mdash; [email protected].61</p>
2323
<script>
2424
;(function () {
2525
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/bugs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ <h2 id="DESCRIPTION">DESCRIPTION</h2>
2525
<p>This command will launch a browser, so this command may not be the most
2626
friendly for programmatic use.</p>
2727
</div>
28-
<p id="footer">bugs &mdash; [email protected].59</p>
28+
<p id="footer">bugs &mdash; [email protected].61</p>
2929
<script>
3030
;(function () {
3131
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/commands.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
2828

2929
<ul><li><a href="../doc/index.html">index(1)</a></li></ul>
3030
</div>
31-
<p id="footer">commands &mdash; [email protected].59</p>
31+
<p id="footer">commands &mdash; [email protected].61</p>
3232
<script>
3333
;(function () {
3434
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/config.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3333

3434
<ul><li><a href="../api/npm.html">npm(3)</a></li></ul>
3535
</div>
36-
<p id="footer">config &mdash; [email protected].59</p>
36+
<p id="footer">config &mdash; [email protected].61</p>
3737
<script>
3838
;(function () {
3939
var wrapper = document.getElementById("wrapper")

deps/npm/html/api/deprecate.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ <h2 id="SEE-ALSO">SEE ALSO</h2>
3030

3131
<ul><li><a href="../api/publish.html">publish(3)</a></li><li><a href="../api/unpublish.html">unpublish(3)</a></li><li><a href="../doc/registry.html">registry(1)</a></li></ul>
3232
</div>
33-
<p id="footer">deprecate &mdash; [email protected].59</p>
33+
<p id="footer">deprecate &mdash; [email protected].61</p>
3434
<script>
3535
;(function () {
3636
var wrapper = document.getElementById("wrapper")

0 commit comments

Comments
 (0)