dependabot-core 0.78.0 → 0.79.0
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/helpers/npm/lib/updater.js +11 -5
- data/helpers/npm/package.json +2 -2
- data/helpers/npm/yarn.lock +26 -28
- data/helpers/yarn/lib/replace-lockfile-declaration.js +15 -3
- data/helpers/yarn/lib/updater.js +17 -5
- data/helpers/yarn/package.json +2 -2
- data/helpers/yarn/yarn.lock +24 -31
- data/lib/dependabot/file_fetchers.rb +0 -2
- data/lib/dependabot/file_parsers.rb +0 -2
- data/lib/dependabot/file_updaters.rb +0 -2
- data/lib/dependabot/metadata_finders.rb +0 -2
- data/lib/dependabot/update_checkers.rb +0 -2
- data/lib/dependabot/utils.rb +0 -4
- data/lib/dependabot/version.rb +1 -1
- metadata +3 -34
- data/helpers/python/lib/__init__.py +0 -0
- data/helpers/python/lib/hasher.py +0 -23
- data/helpers/python/lib/parser.py +0 -130
- data/helpers/python/requirements.txt +0 -9
- data/helpers/python/run.py +0 -18
- data/lib/dependabot/file_fetchers/python/pip.rb +0 -305
- data/lib/dependabot/file_parsers/python/pip.rb +0 -223
- data/lib/dependabot/file_parsers/python/pip/pipfile_files_parser.rb +0 -154
- data/lib/dependabot/file_parsers/python/pip/poetry_files_parser.rb +0 -141
- data/lib/dependabot/file_parsers/python/pip/setup_file_parser.rb +0 -164
- data/lib/dependabot/file_updaters/python/pip.rb +0 -147
- data/lib/dependabot/file_updaters/python/pip/pip_compile_file_updater.rb +0 -363
- data/lib/dependabot/file_updaters/python/pip/pipfile_file_updater.rb +0 -397
- data/lib/dependabot/file_updaters/python/pip/pipfile_preparer.rb +0 -125
- data/lib/dependabot/file_updaters/python/pip/poetry_file_updater.rb +0 -289
- data/lib/dependabot/file_updaters/python/pip/pyproject_preparer.rb +0 -105
- data/lib/dependabot/file_updaters/python/pip/requirement_file_updater.rb +0 -166
- data/lib/dependabot/file_updaters/python/pip/requirement_replacer.rb +0 -95
- data/lib/dependabot/file_updaters/python/pip/setup_file_sanitizer.rb +0 -91
- data/lib/dependabot/file_updaters/ruby/.DS_Store +0 -0
- data/lib/dependabot/metadata_finders/python/pip.rb +0 -120
- data/lib/dependabot/update_checkers/python/pip.rb +0 -227
- data/lib/dependabot/update_checkers/python/pip/latest_version_finder.rb +0 -252
- data/lib/dependabot/update_checkers/python/pip/pip_compile_version_resolver.rb +0 -380
- data/lib/dependabot/update_checkers/python/pip/pipfile_version_resolver.rb +0 -559
- data/lib/dependabot/update_checkers/python/pip/poetry_version_resolver.rb +0 -300
- data/lib/dependabot/update_checkers/python/pip/requirements_updater.rb +0 -367
- data/lib/dependabot/utils/python/requirement.rb +0 -130
- data/lib/dependabot/utils/python/version.rb +0 -88
- data/lib/python_requirement_parser.rb +0 -33
- data/lib/python_versions.rb +0 -21
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c0186760e21dffbcb311070f5cbc6fcbe561a8f3393e6e0e1d375bb9abf7ff8b
|
4
|
+
data.tar.gz: 2475ed8f06f7e917068079a655af4e873085e2552fe4f45ddeb8b31c29e19e0e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58088f836f3e1c081e928636cfa52b19b07fc96d84db72edfb85a6f19c6ad8fe17fd1d364dbddc504cc81a44afbac3c3a2c471dd0cc8312bea8b35bf3ab1f76d
|
7
|
+
data.tar.gz: 352a8376aec2d9d842db210aa6810247a88b312360ea94379282a0f3fb5e6984492e02c3fe508d4df84343445e4931189ac3e474cea407f6be3a7004e2b897c2
|
data/CHANGELOG.md
CHANGED
data/helpers/npm/lib/updater.js
CHANGED
@@ -68,15 +68,21 @@ async function updateDependencyFiles(directory, dependencies, lockfileName) {
|
|
68
68
|
return { [lockfileName]: updatedLockfile };
|
69
69
|
}
|
70
70
|
|
71
|
+
function flattenAllDependencies(packageJson) {
|
72
|
+
return Object.assign(
|
73
|
+
{},
|
74
|
+
packageJson.optionalDependencies,
|
75
|
+
packageJson.peerDependencies,
|
76
|
+
packageJson.devDependencies,
|
77
|
+
packageJson.dependencies
|
78
|
+
);
|
79
|
+
}
|
80
|
+
|
71
81
|
function installArgs(depName, desiredVersion, requirements, oldPackage) {
|
72
82
|
const source = (requirements.find(req => req.source) || {}).source;
|
73
83
|
|
74
84
|
if (source && source.type === "git") {
|
75
|
-
let originalVersion =
|
76
|
-
(oldPackage["dependencies"] || {})[depName] ||
|
77
|
-
(oldPackage["devDependencies"] || {})[depName] ||
|
78
|
-
(oldPackage["peerDependencies"] || {})[depName] ||
|
79
|
-
(oldPackage["optionalDependencies"] || {})[depName];
|
85
|
+
let originalVersion = flattenAllDependencies(oldPackage)[depName];
|
80
86
|
|
81
87
|
if (!originalVersion) {
|
82
88
|
originalVersion = source.url;
|
data/helpers/npm/package.json
CHANGED
@@ -7,11 +7,11 @@
|
|
7
7
|
"semver": "5.6.0"
|
8
8
|
},
|
9
9
|
"devDependencies": {
|
10
|
-
"eslint": "5.
|
10
|
+
"eslint": "5.10.0",
|
11
11
|
"eslint-plugin-prettier": "3.0.0",
|
12
12
|
"fs-extra": "7.0.1",
|
13
13
|
"jest": "23.6.0",
|
14
|
-
"nock": "10.0.
|
14
|
+
"nock": "10.0.4",
|
15
15
|
"prettier": "1.15.3"
|
16
16
|
}
|
17
17
|
}
|
data/helpers/npm/yarn.lock
CHANGED
@@ -59,18 +59,21 @@ acorn-globals@^4.1.0:
|
|
59
59
|
dependencies:
|
60
60
|
acorn "^5.0.0"
|
61
61
|
|
62
|
-
acorn-jsx@^
|
63
|
-
version "
|
64
|
-
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-
|
65
|
-
integrity sha512-
|
66
|
-
dependencies:
|
67
|
-
acorn "^5.0.3"
|
62
|
+
acorn-jsx@^5.0.0:
|
63
|
+
version "5.0.1"
|
64
|
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e"
|
65
|
+
integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==
|
68
66
|
|
69
|
-
acorn@^5.0.0, acorn@^5.
|
67
|
+
acorn@^5.0.0, acorn@^5.3.0:
|
70
68
|
version "5.7.1"
|
71
69
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.1.tgz#f095829297706a7c9776958c0afc8930a9b9d9d8"
|
72
70
|
integrity sha512-d+nbxBUGKg7Arpsvbnlq61mc12ek3EY8EQldM3GPAhWJ1UVxC6TDGbIvUMNU6obBX3i1+ptCIzV4vq0gFPEGVQ==
|
73
71
|
|
72
|
+
acorn@^6.0.2:
|
73
|
+
version "6.0.4"
|
74
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.4.tgz#77377e7353b72ec5104550aa2d2097a2fd40b754"
|
75
|
+
integrity sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==
|
76
|
+
|
74
77
|
agent-base@4, agent-base@^4.1.0, agent-base@~4.2.0:
|
75
78
|
version "4.2.1"
|
76
79
|
resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-4.2.1.tgz#d89e5999f797875674c07d87f260fc41e83e8ca9"
|
@@ -1465,10 +1468,10 @@ eslint-visitor-keys@^1.0.0:
|
|
1465
1468
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
1466
1469
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
1467
1470
|
|
1468
|
-
eslint@5.
|
1469
|
-
version "5.
|
1470
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.
|
1471
|
-
integrity sha512-
|
1471
|
+
eslint@5.10.0:
|
1472
|
+
version "5.10.0"
|
1473
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.10.0.tgz#24adcbe92bf5eb1fc2d2f2b1eebe0c5e0713903a"
|
1474
|
+
integrity sha512-HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ==
|
1472
1475
|
dependencies:
|
1473
1476
|
"@babel/code-frame" "^7.0.0"
|
1474
1477
|
ajv "^6.5.3"
|
@@ -1479,7 +1482,7 @@ eslint@5.9.0:
|
|
1479
1482
|
eslint-scope "^4.0.0"
|
1480
1483
|
eslint-utils "^1.3.1"
|
1481
1484
|
eslint-visitor-keys "^1.0.0"
|
1482
|
-
espree "^
|
1485
|
+
espree "^5.0.0"
|
1483
1486
|
esquery "^1.0.1"
|
1484
1487
|
esutils "^2.0.2"
|
1485
1488
|
file-entry-cache "^2.0.0"
|
@@ -1489,7 +1492,6 @@ eslint@5.9.0:
|
|
1489
1492
|
ignore "^4.0.6"
|
1490
1493
|
imurmurhash "^0.1.4"
|
1491
1494
|
inquirer "^6.1.0"
|
1492
|
-
is-resolvable "^1.1.0"
|
1493
1495
|
js-yaml "^3.12.0"
|
1494
1496
|
json-stable-stringify-without-jsonify "^1.0.1"
|
1495
1497
|
levn "^0.3.0"
|
@@ -1509,13 +1511,14 @@ eslint@5.9.0:
|
|
1509
1511
|
table "^5.0.2"
|
1510
1512
|
text-table "^0.2.0"
|
1511
1513
|
|
1512
|
-
espree@^
|
1513
|
-
version "
|
1514
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-
|
1515
|
-
integrity sha512-
|
1514
|
+
espree@^5.0.0:
|
1515
|
+
version "5.0.0"
|
1516
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"
|
1517
|
+
integrity sha512-1MpUfwsdS9MMoN7ZXqAr9e9UKdVHDcvrJpyx7mm1WuQlx/ygErEQBzgi5Nh5qBHIoYweprhtMkTCb9GhcAIcsA==
|
1516
1518
|
dependencies:
|
1517
|
-
acorn "^
|
1518
|
-
acorn-jsx "^
|
1519
|
+
acorn "^6.0.2"
|
1520
|
+
acorn-jsx "^5.0.0"
|
1521
|
+
eslint-visitor-keys "^1.0.0"
|
1519
1522
|
|
1520
1523
|
esprima@^3.1.3:
|
1521
1524
|
version "3.1.3"
|
@@ -2633,11 +2636,6 @@ is-regex@^1.0.4:
|
|
2633
2636
|
dependencies:
|
2634
2637
|
has "^1.0.1"
|
2635
2638
|
|
2636
|
-
is-resolvable@^1.1.0:
|
2637
|
-
version "1.1.0"
|
2638
|
-
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
2639
|
-
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
2640
|
-
|
2641
2639
|
is-retry-allowed@^1.0.0:
|
2642
2640
|
version "1.1.0"
|
2643
2641
|
resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
|
@@ -3733,10 +3731,10 @@ nice-try@^1.0.4:
|
|
3733
3731
|
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4"
|
3734
3732
|
integrity sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==
|
3735
3733
|
|
3736
|
-
nock@10.0.
|
3737
|
-
version "10.0.
|
3738
|
-
resolved "https://registry.yarnpkg.com/nock/-/nock-10.0.
|
3739
|
-
integrity sha512
|
3734
|
+
nock@10.0.4:
|
3735
|
+
version "10.0.4"
|
3736
|
+
resolved "https://registry.yarnpkg.com/nock/-/nock-10.0.4.tgz#44f5dcfe0a6b09f95d541f6b3f057cfabbbd2a3a"
|
3737
|
+
integrity sha512-+kzpiUmJHl2j/ZdJG4Mc3oHJc4F1Tm9j0KV/SLhLKZQGTQkeK2z1XxhVIbM2evP3yn0RVlp7L1xZNIy84J8/1A==
|
3740
3738
|
dependencies:
|
3741
3739
|
chai "^4.1.2"
|
3742
3740
|
debug "^4.1.0"
|
@@ -5,6 +5,8 @@ const stringify = require("@dependabot/yarn-lib/lib/lockfile/stringify")
|
|
5
5
|
// Get an array of a dependency's requested version ranges from a lockfile
|
6
6
|
function getRequestedVersions(depName, lockfileJson) {
|
7
7
|
const requestedVersions = [];
|
8
|
+
// TODO: Rethink this regex matching, for example, we don't currently match:
|
9
|
+
// @dependabot/pack-core@^git+ssh://git@github.com:dependabot/pack-core.git
|
8
10
|
const re = /^(.*)@([^@]*?)$/;
|
9
11
|
|
10
12
|
Object.entries(lockfileJson).forEach(([name, _]) => {
|
@@ -19,7 +21,13 @@ function getRequestedVersions(depName, lockfileJson) {
|
|
19
21
|
return requestedVersions;
|
20
22
|
}
|
21
23
|
|
22
|
-
module.exports = (
|
24
|
+
module.exports = (
|
25
|
+
oldLockfileContent,
|
26
|
+
newLockfileContent,
|
27
|
+
depName,
|
28
|
+
newVersionRequirement,
|
29
|
+
existingVersionRequirement
|
30
|
+
) => {
|
23
31
|
const oldJson = parse(oldLockfileContent).object;
|
24
32
|
const newJson = parse(newLockfileContent).object;
|
25
33
|
|
@@ -35,9 +43,13 @@ module.exports = (oldLockfileContent, newLockfileContent, depName, newReq) => {
|
|
35
43
|
return !oldPackageReqs.includes(pattern);
|
36
44
|
});
|
37
45
|
|
46
|
+
// If the new lockfile has entries that don't exist in the old lockfile,
|
47
|
+
// replace these version requirements with a range (will currently be an
|
48
|
+
// exact version because we tell yarn to install a specific version)
|
38
49
|
if (reqToReplace) {
|
39
|
-
newJson[
|
40
|
-
|
50
|
+
newJson[
|
51
|
+
`${depName}@${newVersionRequirement || existingVersionRequirement}`
|
52
|
+
] = newJson[`${depName}@${reqToReplace}`];
|
41
53
|
delete newJson[`${depName}@${reqToReplace}`];
|
42
54
|
}
|
43
55
|
|
data/helpers/yarn/lib/updater.js
CHANGED
@@ -66,12 +66,12 @@ class LightweightInstall extends Install {
|
|
66
66
|
}
|
67
67
|
}
|
68
68
|
|
69
|
-
async function
|
69
|
+
async function flattenAllDependencies(config) {
|
70
70
|
const manifest = await config.readRootManifest();
|
71
71
|
return Object.assign(
|
72
72
|
{},
|
73
|
-
manifest.peerDependencies,
|
74
73
|
manifest.optionalDependencies,
|
74
|
+
manifest.peerDependencies,
|
75
75
|
manifest.devDependencies,
|
76
76
|
manifest.dependencies
|
77
77
|
);
|
@@ -136,6 +136,9 @@ function installArgsWithVersion(
|
|
136
136
|
) {
|
137
137
|
const source = requirements.source;
|
138
138
|
|
139
|
+
// TODO: Use logic from npm updater to find original version instead of doing
|
140
|
+
// all this mad git shorthand logic
|
141
|
+
// e.g. const originalVersion = flattenAllDependencies(oldPackage)[depName];
|
139
142
|
if (source && source.type === "git") {
|
140
143
|
// Handle packages added using the github shorthand, e.g.
|
141
144
|
// - yarn add discord.js@discordjs/discord.js
|
@@ -219,14 +222,23 @@ async function updateDependencyFile(
|
|
219
222
|
// Despite the innocent-sounding name, this actually does all the hard work
|
220
223
|
await add.init();
|
221
224
|
|
222
|
-
// Dedupe the updated lockfile, and replace the version requirement in it
|
223
|
-
// (which will currently be an exact version, not a requirement range)
|
224
225
|
const dedupedYarnLock = fixDuplicates(readFile("yarn.lock"), depName);
|
226
|
+
|
227
|
+
const newVersionRequirement = requirements.requirement;
|
228
|
+
|
229
|
+
const flattenedDependencies = await flattenAllDependencies(config);
|
230
|
+
const existingVersionRequirement = flattenedDependencies[depName];
|
231
|
+
|
232
|
+
// Replace the version requirement in the lockfile (which will currently be an
|
233
|
+
// exact version, not a requirement range)
|
234
|
+
// If we don't have new requirement (e.g. git source) use the existing version
|
235
|
+
// requirement from the package manifest
|
225
236
|
const replacedDeclarationYarnLock = replaceDeclaration(
|
226
237
|
originalYarnLock,
|
227
238
|
dedupedYarnLock,
|
228
239
|
depName,
|
229
|
-
|
240
|
+
newVersionRequirement,
|
241
|
+
existingVersionRequirement
|
230
242
|
);
|
231
243
|
|
232
244
|
// Do a normal install to ensure the lockfile doesn't change when we do
|
data/helpers/yarn/package.json
CHANGED
@@ -7,11 +7,11 @@
|
|
7
7
|
"semver": "5.6.0"
|
8
8
|
},
|
9
9
|
"devDependencies": {
|
10
|
-
"eslint": "5.
|
10
|
+
"eslint": "5.10.0",
|
11
11
|
"eslint-plugin-prettier": "3.0.0",
|
12
12
|
"fs-extra": "7.0.1",
|
13
13
|
"jest": "23.6.0",
|
14
|
-
"nock": "10.0.
|
14
|
+
"nock": "10.0.4",
|
15
15
|
"prettier": "1.15.3"
|
16
16
|
}
|
17
17
|
}
|
data/helpers/yarn/yarn.lock
CHANGED
@@ -110,22 +110,20 @@ acorn-globals@^4.0.0:
|
|
110
110
|
dependencies:
|
111
111
|
acorn "^5.0.0"
|
112
112
|
|
113
|
-
acorn-jsx@^
|
114
|
-
version "
|
115
|
-
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-
|
116
|
-
integrity sha512-
|
117
|
-
dependencies:
|
118
|
-
acorn "^5.0.3"
|
113
|
+
acorn-jsx@^5.0.0:
|
114
|
+
version "5.0.1"
|
115
|
+
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e"
|
116
|
+
integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==
|
119
117
|
|
120
118
|
acorn@^5.0.0, acorn@^5.1.2:
|
121
119
|
version "5.2.1"
|
122
120
|
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.2.1.tgz#317ac7821826c22c702d66189ab8359675f135d7"
|
123
121
|
integrity sha512-jG0u7c4Ly+3QkkW18V+NRDN+4bWHdln30NL1ZL2AvFZZmQe/BfopYCtghCKKVBUSetZ4QKcyA0pY6/4Gw8Pv8w==
|
124
122
|
|
125
|
-
acorn@^
|
126
|
-
version "
|
127
|
-
resolved "https://registry.yarnpkg.com/acorn/-/acorn-
|
128
|
-
integrity sha512-
|
123
|
+
acorn@^6.0.2:
|
124
|
+
version "6.0.4"
|
125
|
+
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.0.4.tgz#77377e7353b72ec5104550aa2d2097a2fd40b754"
|
126
|
+
integrity sha512-VY4i5EKSKkofY2I+6QLTbTTN/UvEQPCo6eiwzzSaSWfpaDhOmStMCMod6wmuPciNq+XS0faCglFu2lHZpdHUtg==
|
129
127
|
|
130
128
|
ajv@^5.1.0:
|
131
129
|
version "5.5.2"
|
@@ -1283,10 +1281,10 @@ eslint-visitor-keys@^1.0.0:
|
|
1283
1281
|
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
|
1284
1282
|
integrity sha512-qzm/XxIbxm/FHyH341ZrbnMUpe+5Bocte9xkmFMzPMjRaZMcXww+MpBptFvtU+79L362nqiLhekCxCxDPaUMBQ==
|
1285
1283
|
|
1286
|
-
eslint@5.
|
1287
|
-
version "5.
|
1288
|
-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.
|
1289
|
-
integrity sha512-
|
1284
|
+
eslint@5.10.0:
|
1285
|
+
version "5.10.0"
|
1286
|
+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-5.10.0.tgz#24adcbe92bf5eb1fc2d2f2b1eebe0c5e0713903a"
|
1287
|
+
integrity sha512-HpqzC+BHULKlnPwWae9MaVZ5AXJKpkxCVXQHrFaRw3hbDj26V/9ArYM4Rr/SQ8pi6qUPLXSSXC4RBJlyq2Z2OQ==
|
1290
1288
|
dependencies:
|
1291
1289
|
"@babel/code-frame" "^7.0.0"
|
1292
1290
|
ajv "^6.5.3"
|
@@ -1297,7 +1295,7 @@ eslint@5.9.0:
|
|
1297
1295
|
eslint-scope "^4.0.0"
|
1298
1296
|
eslint-utils "^1.3.1"
|
1299
1297
|
eslint-visitor-keys "^1.0.0"
|
1300
|
-
espree "^
|
1298
|
+
espree "^5.0.0"
|
1301
1299
|
esquery "^1.0.1"
|
1302
1300
|
esutils "^2.0.2"
|
1303
1301
|
file-entry-cache "^2.0.0"
|
@@ -1307,7 +1305,6 @@ eslint@5.9.0:
|
|
1307
1305
|
ignore "^4.0.6"
|
1308
1306
|
imurmurhash "^0.1.4"
|
1309
1307
|
inquirer "^6.1.0"
|
1310
|
-
is-resolvable "^1.1.0"
|
1311
1308
|
js-yaml "^3.12.0"
|
1312
1309
|
json-stable-stringify-without-jsonify "^1.0.1"
|
1313
1310
|
levn "^0.3.0"
|
@@ -1327,13 +1324,14 @@ eslint@5.9.0:
|
|
1327
1324
|
table "^5.0.2"
|
1328
1325
|
text-table "^0.2.0"
|
1329
1326
|
|
1330
|
-
espree@^
|
1331
|
-
version "
|
1332
|
-
resolved "https://registry.yarnpkg.com/espree/-/espree-
|
1333
|
-
integrity sha512-
|
1327
|
+
espree@^5.0.0:
|
1328
|
+
version "5.0.0"
|
1329
|
+
resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.0.tgz#fc7f984b62b36a0f543b13fb9cd7b9f4a7f5b65c"
|
1330
|
+
integrity sha512-1MpUfwsdS9MMoN7ZXqAr9e9UKdVHDcvrJpyx7mm1WuQlx/ygErEQBzgi5Nh5qBHIoYweprhtMkTCb9GhcAIcsA==
|
1334
1331
|
dependencies:
|
1335
|
-
acorn "^
|
1336
|
-
acorn-jsx "^
|
1332
|
+
acorn "^6.0.2"
|
1333
|
+
acorn-jsx "^5.0.0"
|
1334
|
+
eslint-visitor-keys "^1.0.0"
|
1337
1335
|
|
1338
1336
|
esprima@^3.1.3:
|
1339
1337
|
version "3.1.3"
|
@@ -2305,11 +2303,6 @@ is-regex@^1.0.4:
|
|
2305
2303
|
dependencies:
|
2306
2304
|
has "^1.0.1"
|
2307
2305
|
|
2308
|
-
is-resolvable@^1.1.0:
|
2309
|
-
version "1.1.0"
|
2310
|
-
resolved "https://registry.yarnpkg.com/is-resolvable/-/is-resolvable-1.1.0.tgz#fb18f87ce1feb925169c9a407c19318a3206ed88"
|
2311
|
-
integrity sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==
|
2312
|
-
|
2313
2306
|
is-stream@^1.1.0:
|
2314
2307
|
version "1.1.0"
|
2315
2308
|
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
|
@@ -3211,10 +3204,10 @@ nice-try@^1.0.4:
|
|
3211
3204
|
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.4.tgz#d93962f6c52f2c1558c0fbda6d512819f1efe1c4"
|
3212
3205
|
integrity sha512-2NpiFHqC87y/zFke0fC0spBXL3bBsoh/p5H1EFhshxjCR5+0g2d6BiXbUFz9v1sAcxsk2htp2eQnNIci2dIYcA==
|
3213
3206
|
|
3214
|
-
nock@10.0.
|
3215
|
-
version "10.0.
|
3216
|
-
resolved "https://registry.yarnpkg.com/nock/-/nock-10.0.
|
3217
|
-
integrity sha512
|
3207
|
+
nock@10.0.4:
|
3208
|
+
version "10.0.4"
|
3209
|
+
resolved "https://registry.yarnpkg.com/nock/-/nock-10.0.4.tgz#44f5dcfe0a6b09f95d541f6b3f057cfabbbd2a3a"
|
3210
|
+
integrity sha512-+kzpiUmJHl2j/ZdJG4Mc3oHJc4F1Tm9j0KV/SLhLKZQGTQkeK2z1XxhVIbM2evP3yn0RVlp7L1xZNIy84J8/1A==
|
3218
3211
|
dependencies:
|
3219
3212
|
chai "^4.1.2"
|
3220
3213
|
debug "^4.1.0"
|
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "dependabot/file_fetchers/ruby/bundler"
|
4
|
-
require "dependabot/file_fetchers/python/pip"
|
5
4
|
require "dependabot/file_fetchers/java_script/npm_and_yarn"
|
6
5
|
require "dependabot/file_fetchers/java/maven"
|
7
6
|
require "dependabot/file_fetchers/java/gradle"
|
@@ -20,7 +19,6 @@ module Dependabot
|
|
20
19
|
"npm_and_yarn" => FileFetchers::JavaScript::NpmAndYarn,
|
21
20
|
"maven" => FileFetchers::Java::Maven,
|
22
21
|
"gradle" => FileFetchers::Java::Gradle,
|
23
|
-
"pip" => FileFetchers::Python::Pip,
|
24
22
|
"composer" => FileFetchers::Php::Composer,
|
25
23
|
"hex" => FileFetchers::Elixir::Hex,
|
26
24
|
"cargo" => FileFetchers::Rust::Cargo,
|
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "dependabot/file_parsers/ruby/bundler"
|
4
|
-
require "dependabot/file_parsers/python/pip"
|
5
4
|
require "dependabot/file_parsers/java_script/npm_and_yarn"
|
6
5
|
require "dependabot/file_parsers/java/maven"
|
7
6
|
require "dependabot/file_parsers/java/gradle"
|
@@ -20,7 +19,6 @@ module Dependabot
|
|
20
19
|
"npm_and_yarn" => FileParsers::JavaScript::NpmAndYarn,
|
21
20
|
"maven" => FileParsers::Java::Maven,
|
22
21
|
"gradle" => FileParsers::Java::Gradle,
|
23
|
-
"pip" => FileParsers::Python::Pip,
|
24
22
|
"composer" => FileParsers::Php::Composer,
|
25
23
|
"hex" => FileParsers::Elixir::Hex,
|
26
24
|
"cargo" => FileParsers::Rust::Cargo,
|
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "dependabot/file_updaters/ruby/bundler"
|
4
|
-
require "dependabot/file_updaters/python/pip"
|
5
4
|
require "dependabot/file_updaters/java_script/npm_and_yarn"
|
6
5
|
require "dependabot/file_updaters/java/maven"
|
7
6
|
require "dependabot/file_updaters/java/gradle"
|
@@ -20,7 +19,6 @@ module Dependabot
|
|
20
19
|
"npm_and_yarn" => FileUpdaters::JavaScript::NpmAndYarn,
|
21
20
|
"maven" => FileUpdaters::Java::Maven,
|
22
21
|
"gradle" => FileUpdaters::Java::Gradle,
|
23
|
-
"pip" => FileUpdaters::Python::Pip,
|
24
22
|
"composer" => FileUpdaters::Php::Composer,
|
25
23
|
"hex" => FileUpdaters::Elixir::Hex,
|
26
24
|
"cargo" => FileUpdaters::Rust::Cargo,
|
@@ -1,7 +1,6 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
2
|
|
3
3
|
require "dependabot/metadata_finders/ruby/bundler"
|
4
|
-
require "dependabot/metadata_finders/python/pip"
|
5
4
|
require "dependabot/metadata_finders/java_script/npm_and_yarn"
|
6
5
|
require "dependabot/metadata_finders/java/maven"
|
7
6
|
require "dependabot/metadata_finders/php/composer"
|
@@ -18,7 +17,6 @@ module Dependabot
|
|
18
17
|
"npm_and_yarn" => MetadataFinders::JavaScript::NpmAndYarn,
|
19
18
|
"maven" => MetadataFinders::Java::Maven,
|
20
19
|
"gradle" => MetadataFinders::Java::Maven,
|
21
|
-
"pip" => MetadataFinders::Python::Pip,
|
22
20
|
"composer" => MetadataFinders::Php::Composer,
|
23
21
|
"hex" => MetadataFinders::Elixir::Hex,
|
24
22
|
"cargo" => MetadataFinders::Rust::Cargo,
|