Skip to content

Commit 9e60af8

Browse files
zkatevanlucas
authored andcommitted
deps: upgrade npm to 4.1.2
PR-URL: #11020 Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
1 parent f61c71b commit 9e60af8

File tree

1,035 files changed

+919
-21259
lines changed

Some content is hidden

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

1,035 files changed

+919
-21259
lines changed

deps/npm/.travis.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ matrix:
2020
# then master
2121
- node_js: "7"
2222
env: DEPLOY_VERSION=testing
23-
# then 0.12, which is still in maintenance mode until the end of 2016 I guess?
24-
# https://github.com/nodejs/LTS#lts-schedule
25-
- node_js: "0.12"
26-
env: DEPLOY_VERSION=testing
2723
before_install:
2824
# required by test/tap/registry.js
2925
- "mkdir -p /var/run/couchdb"

deps/npm/CHANGELOG.md

Lines changed: 84 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,86 @@
1+
### v4.1.2 (2017-01-12)
2+
3+
We have a twee little release this week as we come back from the holidays.
4+
5+
#### 0.12 IS UNSUPPORTED NOW (really)
6+
7+
After [jumping the gun a
8+
little](https://github.com/npm/npm/releases/tag/v4.0.2), we can now
9+
officially remove 0.12 from our supported versions list. The Node.js
10+
project has now officially ended even maintenance support for 0.12 and thus,
11+
so will we. To reiterate from the last time we did this:
12+
13+
What this means:
14+
15+
* Your contributions will no longer block on the tests passing on 0.12.
16+
* We will no longer block dependency upgrades on working with 0.12.
17+
* Bugs filed on the npm CLI that are due to incompatibilities with 0.12
18+
(and older versions) will be closed with a strong urging to upgrade to a
19+
supported version of Node.
20+
* On the flip side, we'll continue to (happily!) accept patches that
21+
address regressions seen when running the CLI with Node.js 0.12.
22+
23+
What this doesn't mean:
24+
25+
* The CLI is going to start depending on ES2015+ features. npm continues
26+
to work, in almost all cases, all the way back to Node.js 0.8, and our
27+
long history of backwards compatibility is a source of pride for the
28+
team.
29+
* We aren't concerned about the problems of users who, for whatever
30+
reason, can't update to newer versions of npm. As mentioned above, we're
31+
happy to take community patches intended to address regressions.
32+
33+
We're not super interested in taking sides on what version of Node.js
34+
you "should" be running. We're a workflow tool, and we understand that
35+
you all have a diverse set of operational environments you need to be
36+
able to support. At the same time, we _are_ a small team, and we need
37+
to put some limits on what we support. Tracking what's supported by our
38+
runtime's own team seems most practical, so that's what we're doing.
39+
40+
* [`c7bbba8`](https://github.com/npm/npm/commit/c7bbba8744b62448103a1510c65d9751288abb5d)
41+
Remove 0.12 from our supported versions list.
42+
([@iarna](https://github.com/iarna))
43+
44+
#### WRITING TO SYMLINKED `package.json` (AND OTHER FILES)
45+
46+
If your `package.json`, `npm-shrinkwrap.json` or `.npmrc` were a symlink and
47+
you used an `npm` command that modified one of these (eg `npm config set` or
48+
`npm install --save`) then previously we would have removed your symlink and
49+
replaced it with an ordinary file. While making these files symlinks is pretty
50+
uncommon, this was still surprising behavior. With this fix we now overwrite
51+
the _destination_ of the symlink and preserve the symlink itself.
52+
53+
* [`a583983`](https://github.com/npm/npm/commit/a5839833d3de7072be06884b91902c093aff1aed)
54+
[write-file-atomic/#5](https://github.com/npm/write-file-atomic/issues/5)
55+
[#10223](https://github.com/npm/npm/10223)
56+
`write-file-atomic@1.3.1`:
57+
When the target is a symlink, write-file-atomic now overwrites the
58+
_destination_ of the symlink, instead of replacing the symlink itself. This
59+
makes it's behavior match `fs.writeFile`.
60+
61+
Fixed a bug where it would ALWAYS fs.stat to look up default mode and chown
62+
values even if you'd passed them in. (It still used the values you passed
63+
in, but did a needless stat.)
64+
([@iarna](https://github.com/iarna))
65+
66+
#### DEPENDENCY UPDATES
67+
68+
* [`521f230`](https://github.com/npm/npm/commit/521f230dd57261e64ac9613b3db62f5312971dca)
69+
`node-gyp@3.5.0`:
70+
Improvements to how Python is located. New `--devdir` flag.
71+
([@bnoordhuis](https://github.com/bnoordhuis))
72+
([@mhart](https://github.com/mhart))
73+
* [`ccd83e8`](https://github.com/npm/npm/commit/ccd83e8a70d35fb0904f8a9adb2ff7ac8a6b2706)
74+
`JSONStream@1.3.0`:
75+
Add new emitPath option.
76+
([@nathanwills](https://github.com/nathanwills))
77+
78+
#### TEST IMPROVEMENTS
79+
80+
* [`d76e084`](https://github.com/npm/npm/commit/d76e08463fd65705217624b861a1443811692f34)
81+
Disable metric reporting for test suite even if the user has it enabled.
82+
([@iarna](https://github.com/iarna))
83+
184
### v4.1.1 (2016-12-16)
285

386
This fixes a bug in the metrics reporting where, if you had enabled it then
@@ -10,7 +93,7 @@ Anyway, this is a quick release to fix that bug:
1093

1194
* [`51c393f`](https://github.com/npm/npm/commit/51c393feff5f4908c8a9fb02baef505b1f2259be)
1295
[#15237](https://github.com/npm/npm/pull/15237)
13-
Don't launch a metrics sender process if we're runnning from a metrics
96+
Don't launch a metrics sender process if we're running from a metrics
1497
sender process.
1598
([@iarna](https://github.com/iarna))
1699

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; npm@4.1.1</p>
129+
<p id="footer"><a href="../doc/README.html">README</a> &mdash; npm@4.1.2</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; npm@4.1.1</p>
87+
<p id="footer">npm-access &mdash; npm@4.1.2</p>
8888

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,5 +73,5 @@ <h2 id="see-also">SEE ALSO</h2>
7373
<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>
7474
<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>
7575
</table>
76-
<p id="footer">npm-adduser &mdash; npm@4.1.1</p>
76+
<p id="footer">npm-adduser &mdash; npm@4.1.2</p>
7777

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; npm@4.1.1</p>
38+
<p id="footer">npm-bin &mdash; npm@4.1.2</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; npm@4.1.1</p>
58+
<p id="footer">npm-bugs &mdash; npm@4.1.2</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; npm@4.1.1</p>
43+
<p id="footer">npm-build &mdash; npm@4.1.2</p>
4444

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ <h2 id="see-also">SEE ALSO</h2>
3131
<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>
3232
<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>
3333
</table>
34-
<p id="footer">npm-bundle &mdash; npm@4.1.1</p>
34+
<p id="footer">npm-bundle &mdash; npm@4.1.2</p>
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,5 +82,5 @@ <h2 id="see-also">SEE ALSO</h2>
8282
<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>
8383
<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>
8484
</table>
85-
<p id="footer">npm-cache &mdash; npm@4.1.1</p>
85+
<p id="footer">npm-cache &mdash; npm@4.1.2</p>
8686

0 commit comments

Comments
 (0)