dependabot-common 0.255.0 → 0.257.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/dependabot/metadata_finders/base/changelog_finder.rb +1 -0
- data/lib/dependabot/metadata_finders/base/commits_finder.rb +1 -0
- data/lib/dependabot/metadata_finders/base/release_finder.rb +1 -1
- data/lib/dependabot/pull_request_creator/pr_name_prefixer.rb +2 -0
- data/lib/dependabot.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a81e1abddd5e2708ae97726e4e648af6b7a51b3e0c0298cb8323dff6b5448b9a
|
4
|
+
data.tar.gz: 1e355eea1612a8fa3824cb63a5a733f0ef49107c079f761f2e17cc975418c705
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2a165da0127e0fe3cd21618add2c7c1855fdb4ac770353c2f85a772c1020d430142684d5627bd5abd8cbb88c3f634c23e9b5cd9102d3d586cf0875b0c683e468
|
7
|
+
data.tar.gz: daa6ea12c5f4b22cdb6b9918135a3f9f41e6c0002250fd8142699328cb3c630020a0d6664002e3cf4ba2110d16976f25322961e958c87cd23581a2ebe0a4db74
|
@@ -297,6 +297,7 @@ module Dependabot
|
|
297
297
|
when "gitlab" then fetch_gitlab_file_list
|
298
298
|
when "azure" then fetch_azure_file_list
|
299
299
|
when "codecommit" then [] # TODO: Fetch Files from Codecommit
|
300
|
+
when "example" then []
|
300
301
|
else raise "Unexpected repo provider '#{T.must(source).provider}'"
|
301
302
|
end
|
302
303
|
end
|
@@ -51,6 +51,7 @@ module Dependabot
|
|
51
51
|
when "bitbucket" then bitbucket_compare_path(new_tag, previous_tag)
|
52
52
|
when "gitlab" then gitlab_compare_path(new_tag, previous_tag)
|
53
53
|
when "azure" then azure_compare_path(new_tag, previous_tag)
|
54
|
+
when "example" then ""
|
54
55
|
else raise "Unexpected source provider '#{T.must(source).provider}'"
|
55
56
|
end
|
56
57
|
|
@@ -242,7 +242,7 @@ module Dependabot
|
|
242
242
|
when "github" then fetch_github_releases
|
243
243
|
# Bitbucket and CodeCommit don't support releases and
|
244
244
|
# Azure can't list API for annotated tags
|
245
|
-
when "bitbucket", "azure", "codecommit" then []
|
245
|
+
when "bitbucket", "azure", "codecommit", "example" then []
|
246
246
|
when "gitlab" then fetch_gitlab_releases
|
247
247
|
else raise "Unexpected repo provider '#{T.must(source).provider}'"
|
248
248
|
end
|
@@ -317,6 +317,7 @@ module Dependabot
|
|
317
317
|
when "azure" then recent_azure_commit_messages
|
318
318
|
when "bitbucket" then recent_bitbucket_commit_messages
|
319
319
|
when "codecommit" then recent_codecommit_commit_messages
|
320
|
+
when "example" then []
|
320
321
|
else raise "Unsupported provider: #{source.provider}"
|
321
322
|
end
|
322
323
|
end
|
@@ -402,6 +403,7 @@ module Dependabot
|
|
402
403
|
when "azure" then last_azure_dependabot_commit_message
|
403
404
|
when "bitbucket" then last_bitbucket_dependabot_commit_message
|
404
405
|
when "codecommit" then last_codecommit_dependabot_commit_message
|
406
|
+
when "example" then nil
|
405
407
|
else raise "Unsupported provider: #{source.provider}"
|
406
408
|
end,
|
407
409
|
T.nilable(String)
|
data/lib/dependabot.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dependabot-common
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.257.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dependabot
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-05-
|
11
|
+
date: 2024-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-codecommit
|
@@ -594,10 +594,10 @@ files:
|
|
594
594
|
- lib/wildcard_matcher.rb
|
595
595
|
homepage: https://github.com/dependabot/dependabot-core
|
596
596
|
licenses:
|
597
|
-
-
|
597
|
+
- MIT
|
598
598
|
metadata:
|
599
599
|
bug_tracker_uri: https://github.com/dependabot/dependabot-core/issues
|
600
|
-
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.
|
600
|
+
changelog_uri: https://github.com/dependabot/dependabot-core/releases/tag/v0.257.0
|
601
601
|
post_install_message:
|
602
602
|
rdoc_options: []
|
603
603
|
require_paths:
|