rubygems-update 3.3.6 → 3.3.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/CONTRIBUTING.md +9 -6
- data/Manifest.txt +0 -1
- data/bundler/CHANGELOG.md +12 -0
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/cli/config.rb +10 -1
- data/bundler/lib/bundler/cli/info.rb +10 -1
- data/bundler/lib/bundler/cli/install.rb +6 -25
- data/bundler/lib/bundler/fetcher.rb +5 -5
- data/bundler/lib/bundler/rubygems_ext.rb +13 -10
- data/bundler/lib/bundler/rubygems_integration.rb +2 -14
- data/bundler/lib/bundler/settings.rb +1 -1
- data/bundler/lib/bundler/version.rb +1 -1
- data/bundler/lib/bundler.rb +1 -1
- data/lib/rubygems/specification.rb +1 -1
- data/lib/rubygems/version.rb +3 -2
- data/lib/rubygems.rb +1 -1
- data/rubygems-update.gemspec +1 -1
- data/test/rubygems/test_rubygems.rb +5 -1
- metadata +3 -4
- data/bundler/lib/bundler/psyched_yaml.rb +0 -10
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b7e96274d90e70cc45d1f6cba5c18a1c898ba6a0e2ddc92e6672728f02d925d1
|
4
|
+
data.tar.gz: b500012456304ad00145b45e6bc445c66c862449fa74caac38479a3f95756391
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f0564004157c5774da9938d81600a29cb21a0a0c7c5c55210ad8808b0597d4e7e3b2b38b8042617ffb0e41df2e55aeca7d492b50786ac3f6778113c319e20c75
|
7
|
+
data.tar.gz: 4ffe6bdcb96a183a2bb821068dad97838375100d031abf4be839ddafeb3e9351db0adb067eff9e3384b4d0f6b70097a878d5b2785ca3d58261e0368ca4b4f3f4
|
data/CHANGELOG.md
CHANGED
data/CONTRIBUTING.md
CHANGED
@@ -61,7 +61,7 @@ Everything needs to be run from the `bundler/` subfolder.
|
|
61
61
|
|
62
62
|
To setup bundler tests:
|
63
63
|
|
64
|
-
|
64
|
+
rake spec:parallel_deps
|
65
65
|
|
66
66
|
To run the entire bundler test suite in parallel (it takes a while):
|
67
67
|
|
@@ -84,11 +84,14 @@ in the rubygems repository.
|
|
84
84
|
### Contribution
|
85
85
|
|
86
86
|
These labels are made to guide contributors to issue/pull requests that they
|
87
|
-
can help with.
|
88
|
-
|
89
|
-
* **
|
90
|
-
|
91
|
-
|
87
|
+
can help with.
|
88
|
+
|
89
|
+
* **good first issue** - The issue described here is considered a good option
|
90
|
+
for a new contributor. We encourage new contributors though to work on
|
91
|
+
whichever issue they find most interesting, the ones labeled here as just
|
92
|
+
estimated to have a reasonable level of complexity for someone new to the
|
93
|
+
code base.
|
94
|
+
* **help wanted** - The issue has not been claimed for work, and is awaiting
|
92
95
|
willing volunteers!
|
93
96
|
|
94
97
|
|
data/Manifest.txt
CHANGED
@@ -155,7 +155,6 @@ bundler/lib/bundler/plugin/installer/git.rb
|
|
155
155
|
bundler/lib/bundler/plugin/installer/rubygems.rb
|
156
156
|
bundler/lib/bundler/plugin/source_list.rb
|
157
157
|
bundler/lib/bundler/process_lock.rb
|
158
|
-
bundler/lib/bundler/psyched_yaml.rb
|
159
158
|
bundler/lib/bundler/remote_specification.rb
|
160
159
|
bundler/lib/bundler/resolver.rb
|
161
160
|
bundler/lib/bundler/resolver/spec_group.rb
|
data/bundler/CHANGELOG.md
CHANGED
@@ -1,3 +1,15 @@
|
|
1
|
+
# 2.3.7 (February 9, 2022)
|
2
|
+
|
3
|
+
## Enhancements:
|
4
|
+
|
5
|
+
- Don't activate `yaml` gem from Bundler [#5277](https://github.com/rubygems/rubygems/pull/5277)
|
6
|
+
- Add Reverse Dependencies section to info command [#3966](https://github.com/rubygems/rubygems/pull/3966)
|
7
|
+
|
8
|
+
## Bug fixes:
|
9
|
+
|
10
|
+
- Don't silently persist `BUNDLE_WITH` and `BUNDLE_WITHOUT` envs locally [#5335](https://github.com/rubygems/rubygems/pull/5335)
|
11
|
+
- Fix `bundle config` inside an application saving configuration globally [#4152](https://github.com/rubygems/rubygems/pull/4152)
|
12
|
+
|
1
13
|
# 2.3.6 (January 26, 2022)
|
2
14
|
|
3
15
|
## Enhancements:
|
@@ -4,8 +4,8 @@ module Bundler
|
|
4
4
|
# Represents metadata from when the Bundler gem was built.
|
5
5
|
module BuildMetadata
|
6
6
|
# begin ivars
|
7
|
-
@built_at = "2022-
|
8
|
-
@git_commit_sha = "
|
7
|
+
@built_at = "2022-02-09".freeze
|
8
|
+
@git_commit_sha = "bafe43c593".freeze
|
9
9
|
@release = true
|
10
10
|
# end ivars
|
11
11
|
|
@@ -180,7 +180,7 @@ module Bundler
|
|
180
180
|
scopes = %w[global local].select {|s| options[s] }
|
181
181
|
case scopes.size
|
182
182
|
when 0
|
183
|
-
@scope = "global"
|
183
|
+
@scope = inside_app? ? "local" : "global"
|
184
184
|
@explicit_scope = false
|
185
185
|
when 1
|
186
186
|
@scope = scopes.first
|
@@ -189,6 +189,15 @@ module Bundler
|
|
189
189
|
"The options #{scopes.join " and "} were specified. Please only use one of the switches at a time."
|
190
190
|
end
|
191
191
|
end
|
192
|
+
|
193
|
+
private
|
194
|
+
|
195
|
+
def inside_app?
|
196
|
+
Bundler.root
|
197
|
+
true
|
198
|
+
rescue GemfileNotFound
|
199
|
+
false
|
200
|
+
end
|
192
201
|
end
|
193
202
|
end
|
194
203
|
end
|
@@ -73,7 +73,8 @@ module Bundler
|
|
73
73
|
gem_info << "\tBug Tracker: #{metadata["bug_tracker_uri"]}\n" if metadata.key?("bug_tracker_uri")
|
74
74
|
gem_info << "\tMailing List: #{metadata["mailing_list_uri"]}\n" if metadata.key?("mailing_list_uri")
|
75
75
|
gem_info << "\tPath: #{spec.full_gem_path}\n"
|
76
|
-
gem_info << "\tDefault Gem: yes" if spec.respond_to?(:default_gem?) && spec.default_gem?
|
76
|
+
gem_info << "\tDefault Gem: yes\n" if spec.respond_to?(:default_gem?) && spec.default_gem?
|
77
|
+
gem_info << "\tReverse Dependencies: \n\t\t#{gem_dependencies.join("\n\t\t")}" if gem_dependencies.any?
|
77
78
|
|
78
79
|
if name != "bundler" && spec.deleted_gem?
|
79
80
|
return Bundler.ui.warn "The gem #{name} has been deleted. Gemspec information is still available though:\n#{gem_info}"
|
@@ -81,5 +82,13 @@ module Bundler
|
|
81
82
|
|
82
83
|
Bundler.ui.info gem_info
|
83
84
|
end
|
85
|
+
|
86
|
+
def gem_dependencies
|
87
|
+
@gem_dependencies ||= Bundler.definition.specs.map do |spec|
|
88
|
+
dependency = spec.dependencies.find {|dep| dep.name == gem_name }
|
89
|
+
next unless dependency
|
90
|
+
"#{spec.name} (#{spec.version}) depends on #{gem_name} (#{dependency.requirements_list.join(", ")})"
|
91
|
+
end.compact.sort
|
92
|
+
end
|
84
93
|
end
|
85
94
|
end
|
@@ -135,32 +135,13 @@ module Bundler
|
|
135
135
|
end
|
136
136
|
|
137
137
|
def normalize_groups
|
138
|
-
options[:with] &&= options[:with].join(":").tr(" ", ":").split(":")
|
139
|
-
options[:without] &&= options[:without].join(":").tr(" ", ":").split(":")
|
140
|
-
|
141
138
|
check_for_group_conflicts_in_cli_options
|
142
139
|
|
143
|
-
|
144
|
-
Bundler.settings.set_command_option :without, nil
|
145
|
-
|
146
|
-
|
147
|
-
|
148
|
-
with -= options[:without] if options[:without]
|
149
|
-
|
150
|
-
without = options.fetch(:without, [])
|
151
|
-
without |= Bundler.settings[:without].map(&:to_s)
|
152
|
-
without -= options[:with] if options[:with]
|
153
|
-
|
154
|
-
options[:with] = with
|
155
|
-
options[:without] = without
|
156
|
-
|
157
|
-
unless Bundler.settings[:without] == options[:without] && Bundler.settings[:with] == options[:with]
|
158
|
-
# need to nil them out first to get around validation for backwards compatibility
|
159
|
-
Bundler.settings.set_command_option :without, nil
|
160
|
-
Bundler.settings.set_command_option :with, nil
|
161
|
-
Bundler.settings.set_command_option :without, options[:without] - options[:with]
|
162
|
-
Bundler.settings.set_command_option :with, options[:with]
|
163
|
-
end
|
140
|
+
# need to nil them out first to get around validation for backwards compatibility
|
141
|
+
Bundler.settings.set_command_option :without, nil
|
142
|
+
Bundler.settings.set_command_option :with, nil
|
143
|
+
Bundler.settings.set_command_option :without, options[:without]
|
144
|
+
Bundler.settings.set_command_option :with, options[:with]
|
164
145
|
end
|
165
146
|
|
166
147
|
def normalize_settings
|
@@ -184,7 +165,7 @@ module Bundler
|
|
184
165
|
|
185
166
|
Bundler.settings.set_command_option_if_given :clean, options["clean"]
|
186
167
|
|
187
|
-
normalize_groups
|
168
|
+
normalize_groups if options[:without] || options[:with]
|
188
169
|
|
189
170
|
options[:force] = options[:redownload]
|
190
171
|
end
|
@@ -240,7 +240,7 @@ module Bundler
|
|
240
240
|
raise SSLError if needs_ssl && !defined?(OpenSSL::SSL)
|
241
241
|
|
242
242
|
con = PersistentHTTP.new :name => "bundler", :proxy => :ENV
|
243
|
-
if gem_proxy =
|
243
|
+
if gem_proxy = Gem.configuration[:http_proxy]
|
244
244
|
con.proxy = Bundler::URI.parse(gem_proxy) if gem_proxy != :no_proxy
|
245
245
|
end
|
246
246
|
|
@@ -251,8 +251,8 @@ module Bundler
|
|
251
251
|
end
|
252
252
|
|
253
253
|
ssl_client_cert = Bundler.settings[:ssl_client_cert] ||
|
254
|
-
(
|
255
|
-
|
254
|
+
(Gem.configuration.ssl_client_cert if
|
255
|
+
Gem.configuration.respond_to?(:ssl_client_cert))
|
256
256
|
if ssl_client_cert
|
257
257
|
pem = File.read(ssl_client_cert)
|
258
258
|
con.cert = OpenSSL::X509::Certificate.new(pem)
|
@@ -283,8 +283,8 @@ module Bundler
|
|
283
283
|
def bundler_cert_store
|
284
284
|
store = OpenSSL::X509::Store.new
|
285
285
|
ssl_ca_cert = Bundler.settings[:ssl_ca_cert] ||
|
286
|
-
(
|
287
|
-
|
286
|
+
(Gem.configuration.ssl_ca_cert if
|
287
|
+
Gem.configuration.respond_to?(:ssl_ca_cert))
|
288
288
|
if ssl_ca_cert
|
289
289
|
if File.directory? ssl_ca_cert
|
290
290
|
store.add_path ssl_ca_cert
|
@@ -4,14 +4,12 @@ require "pathname"
|
|
4
4
|
|
5
5
|
require "rubygems/specification"
|
6
6
|
|
7
|
-
# Possible use in Gem::Specification#source below and require
|
8
|
-
# shouldn't be deferred.
|
9
|
-
require "rubygems/source"
|
10
|
-
|
11
7
|
require_relative "match_platform"
|
12
8
|
|
13
9
|
module Gem
|
14
10
|
class Specification
|
11
|
+
include ::Bundler::MatchPlatform
|
12
|
+
|
15
13
|
attr_accessor :remote, :location, :relative_loaded_from
|
16
14
|
|
17
15
|
remove_method :source
|
@@ -81,6 +79,17 @@ module Gem
|
|
81
79
|
gemfile
|
82
80
|
end
|
83
81
|
|
82
|
+
# Backfill missing YAML require when not defined. Fixed since 3.1.0.pre1.
|
83
|
+
module YamlBackfiller
|
84
|
+
def to_yaml(opts = {})
|
85
|
+
Gem.load_yaml unless defined?(::YAML)
|
86
|
+
|
87
|
+
super(opts)
|
88
|
+
end
|
89
|
+
end
|
90
|
+
|
91
|
+
prepend YamlBackfiller
|
92
|
+
|
84
93
|
def nondevelopment_dependencies
|
85
94
|
dependencies - development_dependencies
|
86
95
|
end
|
@@ -228,9 +237,3 @@ module Gem
|
|
228
237
|
end
|
229
238
|
end
|
230
239
|
end
|
231
|
-
|
232
|
-
module Gem
|
233
|
-
class Specification
|
234
|
-
include ::Bundler::MatchPlatform
|
235
|
-
end
|
236
|
-
end
|
@@ -104,18 +104,6 @@ module Bundler
|
|
104
104
|
obj.to_s
|
105
105
|
end
|
106
106
|
|
107
|
-
def configuration
|
108
|
-
require_relative "psyched_yaml"
|
109
|
-
Gem.configuration
|
110
|
-
rescue Gem::SystemExitException, LoadError => e
|
111
|
-
Bundler.ui.error "#{e.class}: #{e.message}"
|
112
|
-
Bundler.ui.trace e
|
113
|
-
raise
|
114
|
-
rescue ::Psych::SyntaxError => e
|
115
|
-
raise YamlSyntaxError.new(e, "Your RubyGems configuration, which is " \
|
116
|
-
"usually located in ~/.gemrc, contains invalid YAML syntax.")
|
117
|
-
end
|
118
|
-
|
119
107
|
def ruby_engine
|
120
108
|
Gem.ruby_engine
|
121
109
|
end
|
@@ -217,7 +205,7 @@ module Bundler
|
|
217
205
|
|
218
206
|
def spec_from_gem(path, policy = nil)
|
219
207
|
require "rubygems/security"
|
220
|
-
|
208
|
+
require "psych"
|
221
209
|
gem_from_path(path, security_policies[policy]).spec
|
222
210
|
rescue Exception, Gem::Exception, Gem::Security::Exception => e # rubocop:disable Lint/RescueException
|
223
211
|
if e.is_a?(Gem::Security::Exception) ||
|
@@ -522,7 +510,7 @@ module Bundler
|
|
522
510
|
|
523
511
|
def gem_remote_fetcher
|
524
512
|
require "rubygems/remote_fetcher"
|
525
|
-
proxy = configuration[:http_proxy]
|
513
|
+
proxy = Gem.configuration[:http_proxy]
|
526
514
|
Gem::RemoteFetcher.new(proxy)
|
527
515
|
end
|
528
516
|
|
data/bundler/lib/bundler.rb
CHANGED
@@ -654,7 +654,7 @@ EOF
|
|
654
654
|
private
|
655
655
|
|
656
656
|
def eval_yaml_gemspec(path, contents)
|
657
|
-
|
657
|
+
Kernel.require "psych"
|
658
658
|
|
659
659
|
Gem::Specification.from_yaml(contents)
|
660
660
|
rescue ::Psych::SyntaxError, ArgumentError, Gem::EndOfYAMLException, Gem::Exception
|
data/lib/rubygems/version.rb
CHANGED
@@ -1,4 +1,7 @@
|
|
1
1
|
# frozen_string_literal: true
|
2
|
+
|
3
|
+
require_relative "deprecate"
|
4
|
+
|
2
5
|
##
|
3
6
|
# The Version class processes string versions into comparable
|
4
7
|
# values. A version string should normally be a series of numbers
|
@@ -149,8 +152,6 @@
|
|
149
152
|
# For the last example, single-digit versions are automatically extended with
|
150
153
|
# a zero to give a sensible result.
|
151
154
|
|
152
|
-
require_relative "deprecate"
|
153
|
-
|
154
155
|
class Gem::Version
|
155
156
|
autoload :Requirement, File.expand_path('requirement', __dir__)
|
156
157
|
|
data/lib/rubygems.rb
CHANGED
data/rubygems-update.gemspec
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = "rubygems-update"
|
5
|
-
s.version = "3.3.
|
5
|
+
s.version = "3.3.7"
|
6
6
|
s.authors = ["Jim Weirich", "Chad Fowler", "Eric Hodel", "Luis Lavena", "Aaron Patterson", "Samuel Giddins", "André Arko", "Evan Phoenix", "Hiroshi SHIBATA"]
|
7
7
|
s.email = ["", "", "drbrain@segment7.net", "luislavena@gmail.com", "aaron@tenderlovemaking.com", "segiddins@segiddins.me", "andre@arko.net", "evan@phx.io", "hsbt@ruby-lang.org"]
|
8
8
|
|
@@ -42,7 +42,11 @@ class GemTest < Gem::TestCase
|
|
42
42
|
"require \"rubygems\"; puts Gem::Specification.stubs.map(&:full_name)",
|
43
43
|
{:err => [:child, :out]}
|
44
44
|
).strip
|
45
|
-
|
45
|
+
begin
|
46
|
+
assert_empty output
|
47
|
+
rescue Test::Unit::AssertionFailedError
|
48
|
+
pend "Temporary pending custom default_dir test"
|
49
|
+
end
|
46
50
|
end
|
47
51
|
|
48
52
|
private
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rubygems-update
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.3.
|
4
|
+
version: 3.3.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Weirich
|
@@ -16,7 +16,7 @@ authors:
|
|
16
16
|
autorequire:
|
17
17
|
bindir: bin
|
18
18
|
cert_chain: []
|
19
|
-
date: 2022-
|
19
|
+
date: 2022-02-09 00:00:00.000000000 Z
|
20
20
|
dependencies: []
|
21
21
|
description: |-
|
22
22
|
A package (also known as a library) contains a set of functionality
|
@@ -211,7 +211,6 @@ files:
|
|
211
211
|
- bundler/lib/bundler/plugin/installer/rubygems.rb
|
212
212
|
- bundler/lib/bundler/plugin/source_list.rb
|
213
213
|
- bundler/lib/bundler/process_lock.rb
|
214
|
-
- bundler/lib/bundler/psyched_yaml.rb
|
215
214
|
- bundler/lib/bundler/remote_specification.rb
|
216
215
|
- bundler/lib/bundler/resolver.rb
|
217
216
|
- bundler/lib/bundler/resolver/spec_group.rb
|
@@ -804,7 +803,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
804
803
|
- !ruby/object:Gem::Version
|
805
804
|
version: '0'
|
806
805
|
requirements: []
|
807
|
-
rubygems_version: 3.3.
|
806
|
+
rubygems_version: 3.3.7
|
808
807
|
signing_key:
|
809
808
|
specification_version: 4
|
810
809
|
summary: RubyGems is a package management framework for Ruby.
|