dependabot-nuget 0.340.0 → 0.341.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
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7b73d4a42347022cae5ab99eeaa086518cdb540b5eb3abec8bab4cc84e165927
|
4
|
+
data.tar.gz: 027bc2de484a8724567e9901a88f3dac47acba9aca76fa1edec8a521a5ed1078
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bb7309cabae8e30b2a997ad5dc9ef223838a70fa75be559dc4edbe4ea01b7b1df1a14cecbee0571a28f7c0740a4075788afdf4effe2a31113ec472a15051369e
|
7
|
+
data.tar.gz: d6509ec9845d2540cdf3823b94587dd386adc72ddbcaaa12670bfa9a9624bdb9dbd7b5b7ae0fe176a98b9d140f818c6c776e3bd3125d4fe0f37726577853fc9a
|
@@ -18,7 +18,6 @@ internal static class RunCommand
|
|
18
18
|
CustomParser = (argumentResult) => Uri.TryCreate(argumentResult.Tokens.Single().Value, UriKind.Absolute, out var uri) ? uri : throw new ArgumentException("Invalid API URL format.")
|
19
19
|
};
|
20
20
|
internal static readonly Option<string> JobIdOption = new("--job-id") { Required = true };
|
21
|
-
internal static readonly Option<FileInfo> OutputPathOption = new("--output-path") { Required = true };
|
22
21
|
internal static readonly Option<string> BaseCommitShaOption = new("--base-commit-sha") { Required = true };
|
23
22
|
|
24
23
|
internal static Command GetCommand(Action<int> setExitCode)
|
@@ -30,7 +29,6 @@ internal static class RunCommand
|
|
30
29
|
CaseInsensitiveRepoContentsPathOption,
|
31
30
|
ApiUrlOption,
|
32
31
|
JobIdOption,
|
33
|
-
OutputPathOption,
|
34
32
|
BaseCommitShaOption
|
35
33
|
};
|
36
34
|
|
@@ -43,7 +41,6 @@ internal static class RunCommand
|
|
43
41
|
var caseInsensitiveRepoContentsPath = parseResult.GetValue(CaseInsensitiveRepoContentsPathOption);
|
44
42
|
var apiUrl = parseResult.GetValue(ApiUrlOption);
|
45
43
|
var jobId = parseResult.GetValue(JobIdOption);
|
46
|
-
var outputPath = parseResult.GetValue(OutputPathOption);
|
47
44
|
var baseCommitSha = parseResult.GetValue(BaseCommitShaOption);
|
48
45
|
|
49
46
|
var apiHandler = new HttpApiHandler(apiUrl!.ToString(), jobId!);
|
@@ -53,7 +50,7 @@ internal static class RunCommand
|
|
53
50
|
var analyzeWorker = new AnalyzeWorker(jobId!, experimentsManager, logger);
|
54
51
|
var updateWorker = new UpdaterWorker(jobId!, experimentsManager, logger);
|
55
52
|
var worker = new RunWorker(jobId!, apiHandler, discoverWorker, analyzeWorker, updateWorker, logger);
|
56
|
-
await worker.RunAsync(jobPath!, repoContentsPath!, caseInsensitiveRepoContentsPath, baseCommitSha
|
53
|
+
await worker.RunAsync(jobPath!, repoContentsPath!, caseInsensitiveRepoContentsPath, baseCommitSha!);
|
57
54
|
return 0;
|
58
55
|
});
|
59
56
|
|
@@ -40,7 +40,7 @@ public class RunWorker
|
|
40
40
|
_updaterWorker = updateWorker;
|
41
41
|
}
|
42
42
|
|
43
|
-
public async Task RunAsync(FileInfo jobFilePath, DirectoryInfo repoContentsPath, DirectoryInfo? caseInsensitiveRepoContentsPath, string baseCommitSha
|
43
|
+
public async Task RunAsync(FileInfo jobFilePath, DirectoryInfo repoContentsPath, DirectoryInfo? caseInsensitiveRepoContentsPath, string baseCommitSha)
|
44
44
|
{
|
45
45
|
var jobFileContent = await File.ReadAllTextAsync(jobFilePath.FullName);
|
46
46
|
var jobWrapper = Deserialize(jobFileContent);
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dependabot-nuget
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.341.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
@@ -15,14 +15,14 @@ dependencies:
|
|
15
15
|
requirements:
|
16
16
|
- - '='
|
17
17
|
- !ruby/object:Gem::Version
|
18
|
-
version: 0.
|
18
|
+
version: 0.341.0
|
19
19
|
type: :runtime
|
20
20
|
prerelease: false
|
21
21
|
version_requirements: !ruby/object:Gem::Requirement
|
22
22
|
requirements:
|
23
23
|
- - '='
|
24
24
|
- !ruby/object:Gem::Version
|
25
|
-
version: 0.
|
25
|
+
version: 0.341.0
|
26
26
|
- !ruby/object:Gem::Dependency
|
27
27
|
name: debug
|
28
28
|
requirement: !ruby/object:Gem::Requirement
|
@@ -551,7 +551,7 @@ licenses:
|
|
551
551
|
- MIT
|
552
552
|
metadata:
|
553
553
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
554
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
554
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.341.0
|
555
555
|
rdoc_options: []
|
556
556
|
require_paths:
|
557
557
|
- lib
|