dependabot-common 0.180.2 → 0.180.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: ac9e012745f0fea5e47eda90f3c6ed888b6aaea281d8467d5e7db0c70c822510
4
- data.tar.gz: aea88499b949b0b6f4b4b7fa3dc071566589497d9a70f25b61c32aceef59a9e8
3
+ metadata.gz: 0b4c1b2ea482de6dfe3ed2f5d528b9d955af8b8003a6b2ee0a525e7684bffb74
4
+ data.tar.gz: 5b3965c5bbb71869e057f04a20e561ba4ccef3b985133dfefb0ed48654d62d41
5
5
  SHA512:
6
- metadata.gz: 2989802bd0a6e6aafafb367c6280be61ef838287dc6f4bf43ee3c8c08901705ae1c39d533368ee39deaca9a90f21826ea11c50ccea448d7374d59be4a0d48f69
7
- data.tar.gz: 6e8d0658b12140c6f57c1a7b0629382f9ae5fd558d33684c1a63f0408ba1735ce5edc807b894857923d3a3a66f308bef735d6d67a502ad62bf68d30d9b0a9b91
6
+ metadata.gz: ebc82fe32f383fea95e3ae56f56f6d49b3fef6d483e548db131a8a8f02a93bfbf804ab26121b38fe75384aad2d23f53ebefef510bd286c9a5433d88f37ef5522
7
+ data.tar.gz: 2a88f5f5c1c021e7607fbc43b9300ceba2b8f31a1126dfc2f15df60978190d532c7f14e5a615bf86b226e0f0bffd18d8d69903182a4807c5407c18550bbe9bcb
@@ -271,6 +271,7 @@ module Dependabot
271
271
  end
272
272
 
273
273
  def fetch_gitlab_file_list
274
+ branch = default_gitlab_branch
274
275
  gitlab_client.repo_tree(source.repo).map do |file|
275
276
  type = case file.type
276
277
  when "blob" then "file"
@@ -281,8 +282,8 @@ module Dependabot
281
282
  name: file.name,
282
283
  type: type,
283
284
  size: 100, # GitLab doesn't return file size
284
- html_url: "#{source.url}/blob/master/#{file.path}",
285
- download_url: "#{source.url}/raw/master/#{file.path}"
285
+ html_url: "#{source.url}/blob/#{branch}/#{file.path}",
286
+ download_url: "#{source.url}/raw/#{branch}/#{file.path}"
286
287
  )
287
288
  end
288
289
  rescue Gitlab::Error::NotFound
@@ -355,6 +356,11 @@ module Dependabot
355
356
  @default_bitbucket_branch ||=
356
357
  bitbucket_client.fetch_default_branch(source.repo)
357
358
  end
359
+
360
+ def default_gitlab_branch
361
+ @default_gitlab_branch ||=
362
+ gitlab_client.fetch_default_branch(source.repo)
363
+ end
358
364
  end
359
365
  end
360
366
  end
@@ -210,7 +210,7 @@ module Dependabot
210
210
  elsif new_tag
211
211
  "commits/#{new_tag}"
212
212
  else
213
- "commits/master"
213
+ "commits/#{default_gitlab_branch}"
214
214
  end
215
215
  end
216
216
 
@@ -321,6 +321,11 @@ module Dependabot
321
321
  MetadataFinders::Base::PACKAGE_MANAGERS_WITH_RELIABLE_DIRECTORIES.
322
322
  include?(dependency.package_manager)
323
323
  end
324
+
325
+ def default_gitlab_branch
326
+ @default_gitlab_branch ||=
327
+ gitlab_client.fetch_default_branch(source.repo)
328
+ end
324
329
  end
325
330
  end
326
331
  end
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.180.2"
4
+ VERSION = "0.180.3"
5
5
  end
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.180.2
4
+ version: 0.180.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-28 00:00:00.000000000 Z
11
+ date: 2022-04-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport