dependabot-bundler 0.203.0 → 0.205.1

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: fc07f831a46b49acc8b63d27c3d70d3192c181d8c7263244ae166289f00c7c89
4
- data.tar.gz: 60fd456a830c09f7a6d328e61f136b8ba98050aa3660379a56bb090d137097c1
3
+ metadata.gz: cefb763d020cf79b9e0cd1fe5c773ec412e8ed13c83f950a8d3ea6898d1d55ba
4
+ data.tar.gz: 5a08557ae145a4f567a8fee5cb4bbd05c58ea53f3c1eccb16605e60c57c062f0
5
5
  SHA512:
6
- metadata.gz: bfe276d92e9429ccb276df4118ababb912c856b1d3e415d964d98dd48d5c636d4520a32a79a271ee9c4f8ea2b7ddcb40df5426b70ffb44927732515a575478f9
7
- data.tar.gz: 8462fe675456569962ded19045aca0cbe8dbfedc8361fcb6cc2426d1b56708e4bebaa209e7fb386f35b626c890ca9e76612ef75fab2d865fe5a02239a557661b
6
+ metadata.gz: a5889169ef3afc44072851edd796affccc2cd4ae818e0c4961e475d4a2d78efe7358f9e882871cc2874c4a6beee27817c6fadbc1ecca73c64347888453378dad
7
+ data.tar.gz: 6413f38b2697dc60a1e0f673dc76b9f6319b1d78d1d28556f95eb4d5524cf5440be7a7a9e3a731fe2faad790f75e8f386466962a15e08c5277dd828167cc8c7d
data/helpers/v1/run.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "bundler"
3
+ gem "bundler", "~> 1.17"
4
+ require "bundler/setup"
4
5
  require "json"
5
6
 
6
7
  $LOAD_PATH.unshift(File.expand_path("./lib", __dir__))
data/helpers/v2/build CHANGED
@@ -20,8 +20,6 @@ cp -r \
20
20
 
21
21
  cd "$install_dir"
22
22
 
23
- # NOTE: Sets `BUNDLED WITH` to match the installed v2 version in Gemfile.lock
24
- # forcing specs and native helpers to run with the same version
25
- BUNDLER_VERSION=2.3.18 bundle config --local path ".bundle"
26
- BUNDLER_VERSION=2.3.18 bundle config --local without "test"
27
- BUNDLER_VERSION=2.3.18 bundle install
23
+ bundle config --local path ".bundle"
24
+ bundle config --local without "test"
25
+ bundle install
data/helpers/v2/run.rb CHANGED
@@ -1,6 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require "bundler"
3
+ gem "bundler", "~> 2.3"
4
+ require "bundler/setup"
4
5
  require "json"
5
6
 
6
7
  $LOAD_PATH.unshift(File.expand_path("./lib", __dir__))
@@ -3,8 +3,8 @@
3
3
  module Dependabot
4
4
  module Bundler
5
5
  module Helpers
6
- V1 = "1.17.3"
7
- V2 = "2.3.18"
6
+ V1 = "1"
7
+ V2 = "2"
8
8
  # If we are updating a project with no Gemfile.lock, we default to the
9
9
  # newest version we support
10
10
  DEFAULT = V2
@@ -15,7 +15,7 @@ module Dependabot
15
15
  end
16
16
 
17
17
  def build(script)
18
- [timeout_command, :bundle, :exec, :ruby, script].compact.join(" ")
18
+ [timeout_command, :ruby, script].compact.join(" ")
19
19
  end
20
20
 
21
21
  private
@@ -35,8 +35,7 @@ module Dependabot
35
35
 
36
36
  def self.run_bundler_subprocess(function:, args:, bundler_version:, options: {})
37
37
  # Run helper suprocess with all bundler-related ENV variables removed
38
- bundler_major_version = bundler_version.split(".").first
39
- helpers_path = versioned_helper_path(bundler_major_version)
38
+ helpers_path = versioned_helper_path(bundler_version)
40
39
  ::Bundler.with_original_env do
41
40
  command = BundleCommand.
42
41
  new(options[:timeout_per_operation_seconds]).
@@ -46,8 +45,6 @@ module Dependabot
46
45
  function: function,
47
46
  args: args,
48
47
  env: {
49
- # Bundler will pick the matching installed major version
50
- "BUNDLER_VERSION" => installed_bundler_version(bundler_major_version),
51
48
  "BUNDLE_GEMFILE" => File.join(helpers_path, "Gemfile"),
52
49
  # Prevent the GEM_HOME from being set to a folder owned by root
53
50
  "GEM_HOME" => File.join(helpers_path, ".bundle")
@@ -65,13 +62,6 @@ module Dependabot
65
62
  File.join(native_helpers_root, "v#{bundler_major_version}")
66
63
  end
67
64
 
68
- # Maps the major version unto the specific version we have installed
69
- def self.installed_bundler_version(bundler_major_version)
70
- return Helpers::V1 if bundler_major_version == "1"
71
-
72
- Helpers::V2
73
- end
74
-
75
65
  def self.native_helpers_root
76
66
  helpers_root = ENV["DEPENDABOT_NATIVE_HELPERS_PATH"]
77
67
  return File.join(helpers_root, "bundler") unless helpers_root.nil?
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: dependabot-bundler
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.203.0
4
+ version: 0.205.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Dependabot
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-03 00:00:00.000000000 Z
11
+ date: 2022-08-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: dependabot-common
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - '='
18
18
  - !ruby/object:Gem::Version
19
- version: 0.203.0
19
+ version: 0.205.1
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - '='
25
25
  - !ruby/object:Gem::Version
26
- version: 0.203.0
26
+ version: 0.205.1
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: debase
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -324,7 +324,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
324
324
  - !ruby/object:Gem::Version
325
325
  version: 2.7.0
326
326
  requirements: []
327
- rubygems_version: 3.3.7
327
+ rubygems_version: 3.1.6
328
328
  signing_key:
329
329
  specification_version: 4
330
330
  summary: Ruby (bundler) support for dependabot