dependabot-common 0.95.43 → 0.95.44
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: 1aee385b103e33f29ad43b22111d9ba6aaf949b34f8429a25b99cb9fb2956021
|
|
4
|
+
data.tar.gz: 787e1d372f22b91d1814b713154224e1254f44abce97522769a42deaf9e3477f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d86c89cebd4f41a60abfbc146df274e9a182754aee85d9315b2a3142b67d80b6f74d732305c022ce58f33a14bfddb61111b0a016bfabb6713037572d673e4222
|
|
7
|
+
data.tar.gz: '08cdde24882b3556cb36e87ede0972329287bc57ece2b8965bb4a4f197a89e83ee7f9045142cfe7b6863fb913cf6d4861cfe51b5dc19b7e45f197aab4325827e'
|
|
@@ -196,9 +196,11 @@ module Dependabot
|
|
|
196
196
|
github_client.commits(repo, sha: previous_tag, path: path).
|
|
197
197
|
map(&:sha)
|
|
198
198
|
|
|
199
|
+
# Note: We reverse this so it's consistent with the array we get
|
|
200
|
+
# from `github_client.compare(...)`
|
|
199
201
|
github_client.
|
|
200
202
|
commits(repo, sha: new_tag, path: path).
|
|
201
|
-
reject { |c| previous_commit_shas.include?(c.sha) }
|
|
203
|
+
reject { |c| previous_commit_shas.include?(c.sha) }.reverse
|
|
202
204
|
else
|
|
203
205
|
github_client.compare(source.repo, previous_tag, new_tag).commits
|
|
204
206
|
end
|
data/lib/dependabot/version.rb
CHANGED