pacote 2.7.34 → 2.7.38

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,46 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ <a name="2.7.38"></a>
6
+ ## [2.7.38](https://github.com/zkat/pacote/compare/v2.7.37...v2.7.38) (2017-06-29)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **manifest:** bump npm-pick-manifest for loose semver fix ([b3d45ef](https://github.com/zkat/pacote/commit/b3d45ef))
12
+
13
+
14
+
15
+ <a name="2.7.37"></a>
16
+ ## [2.7.37](https://github.com/zkat/pacote/compare/v2.7.36...v2.7.37) (2017-06-29)
17
+
18
+
19
+ ### Bug Fixes
20
+
21
+ * **deps:** bump deps for fixes ([f156655](https://github.com/zkat/pacote/commit/f156655))
22
+
23
+
24
+
25
+ <a name="2.7.36"></a>
26
+ ## [2.7.36](https://github.com/zkat/pacote/compare/v2.7.35...v2.7.36) (2017-06-10)
27
+
28
+
29
+ ### Bug Fixes
30
+
31
+ * **deps:** update tar-fs with the special characters patch (#102) ([ed43aa3](https://github.com/zkat/pacote/commit/ed43aa3))
32
+
33
+
34
+
35
+ <a name="2.7.35"></a>
36
+ ## [2.7.35](https://github.com/zkat/pacote/compare/v2.7.34...v2.7.35) (2017-06-09)
37
+
38
+
39
+ ### Bug Fixes
40
+
41
+ * **registry:** only print one 199 warning (#100) ([b395138](https://github.com/zkat/pacote/commit/b395138))
42
+
43
+
44
+
5
45
  <a name="2.7.34"></a>
6
46
  ## [2.7.34](https://github.com/zkat/pacote/compare/v2.7.33...v2.7.34) (2017-06-09)
7
47
 
@@ -21,11 +21,12 @@ function checkWarnings (res, registry, opts) {
21
21
  }
22
22
  })
23
23
  BAD_HOSTS.set(registry, true)
24
- if (warnings['199'] && warnings['199'].message.match(/ENOTFOUND/)) {
25
- opts.log.warn('registry', `Using stale data from ${registry} because the host is inaccessible -- are you offline?`)
26
- }
27
24
  if (warnings['199']) {
28
- opts.log.warn('registry', `Unexpected warning for ${registry}: ${warnings['199'].message}`)
25
+ if (warnings['199'].message.match(/ENOTFOUND/)) {
26
+ opts.log.warn('registry', `Using stale data from ${registry} because the host is inaccessible -- are you offline?`)
27
+ } else {
28
+ opts.log.warn('registry', `Unexpected warning for ${registry}: ${warnings['199'].message}`)
29
+ }
29
30
  }
30
31
  if (warnings['111']) {
31
32
  // 111 Revalidation failed -- we're using stale data
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pacote",
3
- "version": "2.7.34",
3
+ "version": "2.7.38",
4
4
  "description": "JavaScript package downloader",
5
5
  "main": "index.js",
6
6
  "files": [
@@ -42,23 +42,23 @@
42
42
  "license": "CC0-1.0",
43
43
  "dependencies": {
44
44
  "bluebird": "^3.5.0",
45
- "cacache": "^9.2.8",
45
+ "cacache": "^9.2.9",
46
46
  "glob": "^7.1.2",
47
- "lru-cache": "^4.0.2",
48
- "make-fetch-happen": "^2.4.12",
47
+ "lru-cache": "^4.1.1",
48
+ "make-fetch-happen": "^2.4.13",
49
49
  "minimatch": "^3.0.4",
50
50
  "mississippi": "^1.2.0",
51
- "normalize-package-data": "^2.3.6",
52
- "npm-package-arg": "^5.1.1",
53
- "npm-pick-manifest": "^1.0.3",
51
+ "normalize-package-data": "^2.4.0",
52
+ "npm-package-arg": "^5.1.2",
53
+ "npm-pick-manifest": "^1.0.4",
54
54
  "osenv": "^0.1.4",
55
55
  "promise-inflight": "^1.0.1",
56
56
  "promise-retry": "^1.1.1",
57
57
  "protoduck": "^4.0.0",
58
- "safe-buffer": "^5.1.0",
58
+ "safe-buffer": "^5.1.1",
59
59
  "semver": "^5.3.0",
60
- "ssri": "^4.1.5",
61
- "tar-fs": "^1.15.1",
60
+ "ssri": "^4.1.6",
61
+ "tar-fs": "^1.15.3",
62
62
  "tar-stream": "^1.5.4",
63
63
  "unique-filename": "^1.1.0",
64
64
  "which": "^1.2.12"
@@ -66,14 +66,14 @@
66
66
  "devDependencies": {
67
67
  "mkdirp": "^0.5.1",
68
68
  "nock": "^9.0.13",
69
- "npmlog": "^4.1.0",
70
- "nyc": "^11.0.2",
71
- "require-inject": "^1.4.0",
69
+ "npmlog": "^4.1.2",
70
+ "nyc": "^11.0.3",
71
+ "require-inject": "^1.4.2",
72
72
  "rimraf": "^2.5.4",
73
73
  "standard": "^10.0.1",
74
- "standard-version": "^4.1.0",
74
+ "standard-version": "^4.2.0",
75
75
  "tacks": "^1.2.6",
76
- "tap": "^10.3.3",
76
+ "tap": "^10.7.0",
77
77
  "weallbehave": "^1.2.0",
78
78
  "weallcontribute": "^1.0.7"
79
79
  }