dependabot-common 0.156.6 → 0.157.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: 02ce33c72dc474e777e3501d8595d859ffd3682992a83972815b655720b05c2e
4
- data.tar.gz: 5e142e57878d0d754027055758c8dd48739817572dd53491e14dafbecad491ab
3
+ metadata.gz: 5831bae189a8c8ef6ca3228200619713c26796d12e386366b0adaac8ff780f5c
4
+ data.tar.gz: bc8609335377eb25dc925f5a0989ca38cfb1caf838070b7cd82573e0937ea35d
5
5
  SHA512:
6
- metadata.gz: dd44be8282356dcfaaaa76603730b2cc7a6e5c17ba87be886c015ad30629d86fea8ab29fd0cf5e3889f1f5fd37940656c66c2d3b832f8dd8f17fbafd75b4b1c4
7
- data.tar.gz: bc44087b4f239e53bd327f356f0942fd0c114e4e5027c351a34f8ed3583142faac22d917688297d384bc1fac79e1869582c076b6c569e278287f123ea1617ef6
6
+ metadata.gz: 52142cdea6a769412aae08d5016a93f8cdbcd9a040bc4123fe800b2831d6242cd8f6712b495b0a4e8f7e4c7845a8a9be515fd95b7616fa6c945b7596cb58c20e
7
+ data.tar.gz: fa41e2f269c01215d391c4e537b6a27d39071a3919126e8b0923b1ab301068c441d1fe1676084be728e884e8036c8c9e3ec94c50fb787656d0c1fcf7c47209a8
@@ -157,11 +157,12 @@ module Dependabot
157
157
  path = Pathname.new(File.join(dir)).cleanpath.to_path.gsub(%r{^/*}, "")
158
158
 
159
159
  @repo_contents ||= {}
160
- @repo_contents[dir] ||= _fetch_repo_contents(
161
- path,
162
- raise_errors: raise_errors,
163
- fetch_submodules: fetch_submodules
164
- )
160
+ @repo_contents[dir] ||= if repo_contents_path
161
+ _cloned_repo_contents(path)
162
+ else
163
+ _fetch_repo_contents(path, raise_errors: raise_errors,
164
+ fetch_submodules: fetch_submodules)
165
+ end
165
166
  end
166
167
 
167
168
  #################################################
@@ -225,6 +226,31 @@ module Dependabot
225
226
  github_response.map { |f| _build_github_file_struct(f) }
226
227
  end
227
228
 
229
+ def _cloned_repo_contents(relative_path)
230
+ repo_path = File.join(clone_repo_contents, relative_path)
231
+ return [] unless Dir.exist?(repo_path)
232
+
233
+ Dir.entries(repo_path).map do |name|
234
+ next if [".", ".."].include?(name)
235
+
236
+ absolute_path = File.join(repo_path, name)
237
+ type = if File.symlink?(absolute_path)
238
+ "symlink"
239
+ elsif Dir.exist?(absolute_path)
240
+ "dir"
241
+ else
242
+ "file"
243
+ end
244
+
245
+ OpenStruct.new(
246
+ name: name,
247
+ path: Pathname.new(File.join(relative_path, name)).cleanpath.to_path,
248
+ type: type,
249
+ size: 0 # NOTE: added for parity with github contents API
250
+ )
251
+ end.compact
252
+ end
253
+
228
254
  def update_linked_paths(repo, path, commit, github_response)
229
255
  case github_response.type
230
256
  when "submodule"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Dependabot
4
- VERSION = "0.156.6"
4
+ VERSION = "0.157.0"
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.156.6
4
+ version: 0.157.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-13 00:00:00.000000000 Z
11
+ date: 2021-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -469,7 +469,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
469
469
  - !ruby/object:Gem::Version
470
470
  version: 2.7.3
471
471
  requirements: []
472
- rubygems_version: 3.2.15
472
+ rubygems_version: 3.2.22
473
473
  signing_key:
474
474
  specification_version: 4
475
475
  summary: Shared code used between Dependabot package managers