Skip to content

Commit 5bb63e1

Browse files
zkatFishrock123
authored andcommitted
deps: upgrade npm to 3.10.3
Contains the following npm release: - https://github.com/npm/npm/releases/tag/v3.10.3 PR-URL: #7515 Reviewed-By: Jeremiah Senkpiel <[email protected]>
1 parent 581e6de commit 5bb63e1

File tree

169 files changed

+379
-686
lines changed

Some content is hidden

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

169 files changed

+379
-686
lines changed

deps/npm/AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -406,3 +406,5 @@ Elliot Lee <[email protected]>
406406
Dmitry Kirilyuk <[email protected]>
407407
Aaron Tribou <[email protected]>
408408
Tapani Moilanen <[email protected]>
409+
Han Seoul-Oh <[email protected]>
410+
Aleksey Shvayka <[email protected]>

deps/npm/CHANGELOG.md

Lines changed: 77 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,78 @@
1+
### v3.10.3 (2016-06-23)
2+
3+
Given that we had not one, but two updates to our RC this past week, it
4+
should come as no surprise that this week's full release is a bit
5+
lighter. We have some documentation patches and a couple of bug fixes via
6+
dependency updates.
7+
8+
If you haven't yet checked out last week's release,
9+
[v3.10.0](https://github.com/npm/npm/releases/tag/v3.10.0)
10+
and the two follow up releases
11+
[v3.10.1](https://github.com/npm/npm/releases/tag/v3.10.1)
12+
and
13+
[v3.10.2](https://github.com/npm/npm/releases/tag/v3.10.2),
14+
you really should do so. They're the most important releases we've had in
15+
quite a while, fixing a bunch of critical bugs (including an issue
16+
impacting publishing with Node.js 6.x) and of course, bringing in the new
17+
and improved progress bar.
18+
19+
#### BUM SYMLINKS BURN NO MORE
20+
21+
There's been a bug lurking where broken symlinks in your `node_modules`
22+
folder could cause all manner of mischief, from crashes to empty `npm ls`
23+
results. The intrepid [@watilde](https://github.com/watilde) tracked this
24+
down for us.
25+
26+
This addresses the root cause of the outdated crasher we protected
27+
against earlier this week in
28+
[#13115](https://github.com/npm/npm/issues/13115).
29+
30+
This also fixes [#9564](https://github.com/npm/npm/issues/9564), the
31+
problem where a bad symlink in your global modules would result in an
32+
empty result when you ran `npm ls -g`.
33+
34+
This ALSO likely fixes numerous "Missing argument #1" errors. (But surely
35+
not all of them as that's actually just a generic arity and
36+
type-validation failure.)
37+
38+
* [`ca92ac4`](https://github.com/npm/npm/commit/ca92ac455b841a708dd89262ff88d503b125d717)
39+
[npm/read-package-tree#6](https://github.com/npm/read-package-tree/pull/6)
40+
41+
Make bad symlinks be non-fatal errors when reading the tree off disk.
42+
([@watilde](https://github.com/watilde))
43+
44+
#### BETTER UNICODE DETECTION
45+
46+
* [`6c3f7f0`](https://github.com/npm/npm/commit/6c3f7f043f09fc2aa19ffd3f956787635fa6f4d0)
47+
48+
Fix unicode detection on a number of Linux distributions.
49+
([@Darkhogg](https://github.com/Darkhogg)) ([@gagern](https://github.com/gagern))
50+
51+
52+
#### DOCUMENTATION FIXES
53+
54+
* [`b9243ee`](https://github.com/npm/npm/commit/b9243ee60a3d60505c2502dc8633811b42c8aaea)
55+
[#13127](https://github.com/npm/npm/pull/13127)
56+
Remove extra backtick from `npm ls` documentation.
57+
([@shvaikalesh](https://github.com/shvaikalesh))
58+
* [`e05c0c2`](https://github.com/npm/npm/commit/e05c0c243cc702f9c392c001f668a90b57eaeb0e)
59+
[iarna/has-unicode#3](https://github.com/iarna/has-unicode/pull/3)
60+
[iarna/has-unicode#4](https://github.com/iarna/has-unicode/pull/4)
61+
[#13084](https://github.com/npm/npm/pull/13084)
62+
Correct changelog entry for shrinkwrap lifecycle order.
63+
([@SimenB](https://github.com/SimenB))
64+
* [`823994f`](https://github.com/npm/npm/commit/823994f100a0e59e1dd109e312811f971968ec75)
65+
[#13080](https://github.com/npm/npm/pull/13080)
66+
Describe using `npm pack` to see a dry run of publication results in
67+
the `npm publish` documentation.
68+
([@laughinghan](https://github.com/laughinghan))
69+
70+
#### DEPENDENCY UPDATES
71+
72+
* [`e44d2db`](https://github.com/npm/npm/commit/e44d2db1ad0d860ca08e99c81135bd399fb733b1)
73+
`[email protected]`: Documentation updates and minor refactoring.
74+
([@iarna](https://github.com/iarna))
75+
176
### v3.10.2 (2016-06-17):
277

378
This is a quick hotfix release with two small bug fixes. First, there was
@@ -198,8 +273,8 @@ status.
198273
scripts section. They are run when you run `npm shrinkwrap` or `npm install --save` with
199274
an `npm-shrinkwrap.json` present in your module directory.
200275

201-
`preshrinkwrap` is run prior to generating the new `npm-shrinkwrap.json` and the other two
202-
are run after.
276+
`preshrinkwrap` and `shrinkwrap` is run prior to generating the new `npm-shrinkwrap.json`
277+
and `postshrinkwrap` is run after.
203278
([@SimenB](https://github.com/SimenB))
204279

205280
#### NEW PROGRESS BAR

deps/npm/doc/cli/npm-ls.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ Display only the dependency tree for packages in `devDependencies`.
8989

9090
When "dev" or "development", is an alias to `dev`.
9191

92-
When "prod" or "production", is an alias to `production`.`
92+
When "prod" or "production", is an alias to `production`.
9393

9494
## SEE ALSO
9595

deps/npm/doc/cli/npm-publish.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,10 @@ Once a package is published with a given name and version, that
4848
specific name and version combination can never be used again, even if
4949
it is removed with npm-unpublish(1).
5050

51+
For a "dry run" that does everything except actually publishing to the
52+
registry, see `npm-pack(1)`, which figures out the files to be included and
53+
packs them into a tarball to be uploaded to the registry.
54+
5155
## SEE ALSO
5256

5357
* npm-registry(7)
@@ -56,3 +60,4 @@ it is removed with npm-unpublish(1).
5660
* npm-owner(1)
5761
* npm-deprecate(1)
5862
* npm-tag(1)
63+
* npm-pack(1)

deps/npm/html/doc/README.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,5 +126,5 @@ <h2 id="see-also">SEE ALSO</h2>
126126
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
127127
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
128128
</table>
129-
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].2</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; [email protected].3</p>
130130

deps/npm/html/doc/cli/npm-access.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,5 @@ <h2 id="see-also">SEE ALSO</h2>
8484
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
8585
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
8686
</table>
87-
<p id="footer">npm-access &mdash; [email protected].2</p>
87+
<p id="footer">npm-access &mdash; [email protected].3</p>
8888

deps/npm/html/doc/cli/npm-adduser.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ <h2 id="see-also">SEE ALSO</h2>
7272
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
7373
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
7474
</table>
75-
<p id="footer">npm-adduser &mdash; [email protected].2</p>
75+
<p id="footer">npm-adduser &mdash; [email protected].3</p>
7676

deps/npm/html/doc/cli/npm-bin.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ <h2 id="see-also">SEE ALSO</h2>
3535
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
3636
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
3737
</table>
38-
<p id="footer">npm-bin &mdash; [email protected].2</p>
38+
<p id="footer">npm-bin &mdash; [email protected].3</p>
3939

deps/npm/html/doc/cli/npm-bugs.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,5 +55,5 @@ <h2 id="see-also">SEE ALSO</h2>
5555
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
5656
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
5757
</table>
58-
<p id="footer">npm-bugs &mdash; [email protected].2</p>
58+
<p id="footer">npm-bugs &mdash; [email protected].3</p>
5959

deps/npm/html/doc/cli/npm-build.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,5 @@ <h2 id="description">DESCRIPTION</h2>
4040
<tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
4141
<tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
4242
</table>
43-
<p id="footer">npm-build &mdash; [email protected].2</p>
43+
<p id="footer">npm-build &mdash; [email protected].3</p>
4444

0 commit comments

Comments
 (0)