Skip to content

Commit 55cd01c

Browse files
isaacsBethGriggs
authored andcommittedOct 18, 2019
deps: update npm to 6.10.3
BUGFIXES * [`27cccfbda`](npm/cli@27cccfb) [#223](npm/cli#223) vulns → vulnerabilities in npm audit output ([@sapegin](https://github.com/sapegin)) * [`d5e865eb7`](npm/cli@d5e865e) [#222](npm/cli#222) [#226](npm/cli#226) install, doctor: don't crash if registry unset ([@dmitrydvorkin](https://github.com/dmitrydvorkin), [@isaacs](https://github.com/isaacs)) * [`5b3890226`](npm/cli@5b38902) [#227](npm/cli#227) [npm.community#9167](https://npm.community/t/npm-err-cb-never-called-permission-denied/9167/5) Handle unhandledRejections, tell user what to do when encountering an `EACCES` error in the cache. ([@isaacs](https://github.com/isaacs)) DEPENDENCIES * [`77516df6e`](npm/cli@77516df) `licensee@7.0.3` ([@isaacs](https://github.com/isaacs)) * [`ceb993590`](npm/cli@ceb9935) `query-string@6.8.2` ([@isaacs](https://github.com/isaacs)) * [`4050b9189`](npm/cli@4050b91) `hosted-git-info@2.8.2` * [#46](npm/hosted-git-info#46) [#43](npm/hosted-git-info#43) [#47](npm/hosted-git-info#47) [#44](npm/hosted-git-info#44) Add support for GitLab subgroups ([@mterrel](https://github.com/mterrel), [@isaacs](https://github.com/isaacs), [@ybiquitous](https://github.com/ybiquitous)) * [`3b1d629`](npm/hosted-git-info@3b1d629) [#48](npm/hosted-git-info#48) fix http protocol using sshurl by default ([@fengmk2](https://github.com/fengmk2)) * [`5d4a8d7`](npm/hosted-git-info@5d4a8d7) ignore noCommittish on tarball url generation ([@isaacs](https://github.com/isaacs)) * [`1692435`](npm/hosted-git-info@1692435) use gist tarball url that works for anonymous gists ([@isaacs](https://github.com/isaacs)) * [`d5cf830`](npm/hosted-git-info@d5cf830) Do not allow invalid gist urls ([@isaacs](https://github.com/isaacs)) * [`e518222`](npm/hosted-git-info@e518222) Use LRU cache to prevent unbounded memory consumption ([@iarna](https://github.com/iarna)) PR-URL: #29023 Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
1 parent e2291cf commit 55cd01c

File tree

182 files changed

+676
-351
lines changed

Some content is hidden

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

182 files changed

+676
-351
lines changed
 

‎deps/npm/AUTHORS

+3
Original file line numberDiff line numberDiff line change
@@ -649,3 +649,6 @@ Iván Reinoso García <ireinoso@plainconcepts.com>
649649
Roy Marples <roy@marples.name>
650650
Robert James Gabriel <robert_gabriel@outlook.com>
651651
John Firebaugh <john.firebaugh@gmail.com>
652+
Kitten King <hi@kittenking.me>
653+
claudiahdz <cghr1990@gmail.com>
654+
Artem Sapegin <artem@sapegin.ru>

‎deps/npm/CHANGELOG.md

+49
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,52 @@
1+
## v6.10.3 (2019-08-06):
2+
3+
### BUGFIXES
4+
5+
* [`27cccfbda`](https://github.com/npm/cli/commit/27cccfbdac8526cc807b07f416355949b1372a9b)
6+
[#223](https://github.com/npm/cli/pull/223) vulns → vulnerabilities in
7+
npm audit output ([@sapegin](https://github.com/sapegin))
8+
* [`d5e865eb7`](https://github.com/npm/cli/commit/d5e865eb79329665a927cc2767b4395c03045dbb)
9+
[#222](https://github.com/npm/cli/pull/222)
10+
[#226](https://github.com/npm/cli/pull/226) install, doctor: don't crash
11+
if registry unset ([@dmitrydvorkin](https://github.com/dmitrydvorkin),
12+
[@isaacs](https://github.com/isaacs))
13+
* [`5b3890226`](https://github.com/npm/cli/commit/5b389022652abeb0e1c278a152550eb95bc6c452)
14+
[#227](https://github.com/npm/cli/pull/227)
15+
[npm.community#9167](https://npm.community/t/npm-err-cb-never-called-permission-denied/9167/5)
16+
Handle unhandledRejections, tell user what to do when encountering an
17+
`EACCES` error in the cache. ([@isaacs](https://github.com/isaacs))
18+
19+
### DEPENDENCIES
20+
21+
* [`77516df6e`](https://github.com/npm/cli/commit/77516df6eac94a6d7acb5e9ca06feaa0868d779b)
22+
`licensee@7.0.3` ([@isaacs](https://github.com/isaacs))
23+
* [`ceb993590`](https://github.com/npm/cli/commit/ceb993590e4e376a9a78264ce7bb4327fbbb37fe)
24+
`query-string@6.8.2` ([@isaacs](https://github.com/isaacs))
25+
* [`4050b9189`](https://github.com/npm/cli/commit/4050b91898c60e9b22998cf82b70b9b822de592a)
26+
`hosted-git-info@2.8.2`
27+
* [#46](https://github.com/npm/hosted-git-info/issues/46)
28+
[#43](https://github.com/npm/hosted-git-info/issues/43)
29+
[#47](https://github.com/npm/hosted-git-info/pull/47)
30+
[#44](https://github.com/npm/hosted-git-info/pull/44) Add support for
31+
GitLab subgroups ([@mterrel](https://github.com/mterrel),
32+
[@isaacs](https://github.com/isaacs),
33+
[@ybiquitous](https://github.com/ybiquitous))
34+
* [`3b1d629`](https://github.com/npm/hosted-git-info/commit/3b1d629)
35+
[#48](https://github.com/npm/hosted-git-info/issues/48) fix http
36+
protocol using sshurl by default
37+
([@fengmk2](https://github.com/fengmk2))
38+
* [`5d4a8d7`](https://github.com/npm/hosted-git-info/commit/5d4a8d7)
39+
ignore noCommittish on tarball url generation
40+
([@isaacs](https://github.com/isaacs))
41+
* [`1692435`](https://github.com/npm/hosted-git-info/commit/1692435)
42+
use gist tarball url that works for anonymous gists
43+
([@isaacs](https://github.com/isaacs))
44+
* [`d5cf830`](https://github.com/npm/hosted-git-info/commit/d5cf8309be7af884032616c63ea302ce49dd321c)
45+
Do not allow invalid gist urls ([@isaacs](https://github.com/isaacs))
46+
* [`e518222`](https://github.com/npm/hosted-git-info/commit/e5182224351183ce619dd5ef00019ae700ed37b7)
47+
Use LRU cache to prevent unbounded memory consumption
48+
([@iarna](https://github.com/iarna))
49+
150
## v6.10.2 (2019-07-23):
251

352
tl;dr - Fixes several issues with the cache when npm is run as `sudo` on

0 commit comments

Comments
 (0)
Please sign in to comment.