dependabot-common 0.255.0 → 0.256.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 +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: dc082c81806a53bfb7d1e93915450e027a6efed4a7d0d8ba32d950c36c49fcec
|
4
|
+
data.tar.gz: 38bdaae60b9d0b3c740f3efa9125f14b0be4b5bbb2523541692a4130e2b74cc9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41ea684e03c5f2b160bee45f88492d7ab47b8b402b839418e8ef874d21618d6021f9005a03fd04fdb1cc6a97075f3880fe9c91f0fd918369ed5116675989f04e
|
7
|
+
data.tar.gz: ab9e34d75abb3097fe6381c05f28925bd2dcd710a1fd06c78e812387538b1e4bb1132d310b8cf4258ecd0cac894676bcaef6dff1fd9fa87d406aac632dbd2532
|
@@ -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.256.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-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-codecommit
|
@@ -597,7 +597,7 @@ licenses:
|
|
597
597
|
- Nonstandard
|
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.256.0
|
601
601
|
post_install_message:
|
602
602
|
rdoc_options: []
|
603
603
|
require_paths:
|