rubygems-update 3.4.5 → 3.4.6
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 +4 -4
- data/CHANGELOG.md +1115 -1095
- data/Manifest.txt +5 -5
- data/bundler/CHANGELOG.md +12 -0
- data/bundler/lib/bundler/build_metadata.rb +2 -2
- data/bundler/lib/bundler/cli/binstubs.rb +5 -1
- data/bundler/lib/bundler/inline.rb +6 -8
- data/bundler/lib/bundler/installer/standalone.rb +11 -7
- data/bundler/lib/bundler/rubygems_integration.rb +8 -4
- data/bundler/lib/bundler/version.rb +1 -1
- data/lib/rubygems/core_ext/kernel_require.rb +113 -109
- data/lib/rubygems/ext/builder.rb +1 -2
- data/lib/rubygems/ext/cargo_builder.rb +129 -89
- data/lib/rubygems/specification_policy.rb +1 -1
- data/lib/rubygems.rb +11 -1
- data/rubygems-update.gemspec +1 -1
- data/test/rubygems/bundler_test_gem.rb +419 -0
- data/test/rubygems/test_gem.rb +0 -412
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/custom_name.gemspec +2 -4
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/{Cargo.lock → ext/custom_name_lib/Cargo.lock} +0 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/{Cargo.toml → ext/custom_name_lib/Cargo.toml} +0 -0
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/{src → ext/custom_name_lib/src}/lib.rs +1 -1
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/lib/custom_name.rb +1 -0
- data/test/rubygems/test_gem_ext_cargo_builder.rb +9 -16
- data/test/rubygems/test_gem_ext_cargo_builder_unit.rb +5 -10
- metadata +8 -8
- data/test/rubygems/test_gem_ext_cargo_builder/custom_name/build.rb +0 -21
- data/test/rubygems/test_gem_ext_cargo_builder/rust_ruby_example/build.rb +0 -21
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
# 3.4.6 / 2023-01-31
|
2
|
+
|
3
|
+
## Enhancements:
|
4
|
+
|
5
|
+
* Allow `require` decorations be disabled. Pull request
|
6
|
+
[#6319](https://github.com/rubygems/rubygems/pull/6319) by
|
7
|
+
deivid-rodriguez
|
8
|
+
* Installs bundler 2.4.6 as a default gem.
|
9
|
+
|
10
|
+
## Bug fixes:
|
11
|
+
|
12
|
+
* Include directory in CargoBuilder install path. Pull request
|
13
|
+
[#6298](https://github.com/rubygems/rubygems/pull/6298) by matsadler
|
14
|
+
|
15
|
+
## Documentation:
|
16
|
+
|
17
|
+
* Include links to pull requests in changelog. Pull request
|
18
|
+
[#6316](https://github.com/rubygems/rubygems/pull/6316) by
|
19
|
+
deivid-rodriguez
|
20
|
+
|
1
21
|
# 3.4.5 / 2023-01-21
|
2
22
|
|
3
23
|
## Enhancements:
|
@@ -12,7 +32,7 @@
|
|
12
32
|
|
13
33
|
## Documentation:
|
14
34
|
|
15
|
-
* Improve documentation about `Kernel` monkeypatches. Pull request #6217
|
35
|
+
* Improve documentation about `Kernel` monkeypatches. Pull request [#6217](https://github.com/rubygems/rubygems/pull/6217)
|
16
36
|
by nobu
|
17
37
|
|
18
38
|
# 3.4.3 / 2023-01-06
|
@@ -23,13 +43,13 @@
|
|
23
43
|
|
24
44
|
## Documentation:
|
25
45
|
|
26
|
-
* Fix several typos. Pull request #6224 by jdufresne
|
46
|
+
* Fix several typos. Pull request [#6224](https://github.com/rubygems/rubygems/pull/6224) by jdufresne
|
27
47
|
|
28
48
|
# 3.4.2 / 2023-01-01
|
29
49
|
|
30
50
|
## Enhancements:
|
31
51
|
|
32
|
-
* Add global flag (`-C`) to change execution directory. Pull request #6180
|
52
|
+
* Add global flag (`-C`) to change execution directory. Pull request [#6180](https://github.com/rubygems/rubygems/pull/6180)
|
33
53
|
by gustavothecoder
|
34
54
|
* Installs bundler 2.4.2 as a default gem.
|
35
55
|
|
@@ -44,44 +64,44 @@
|
|
44
64
|
## Breaking changes:
|
45
65
|
|
46
66
|
* Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7. Pull
|
47
|
-
request #6107 by deivid-rodriguez
|
48
|
-
* Remove support for deprecated OS. Pull request #6041 by peterzhu2118
|
67
|
+
request [#6107](https://github.com/rubygems/rubygems/pull/6107) by deivid-rodriguez
|
68
|
+
* Remove support for deprecated OS. Pull request [#6041](https://github.com/rubygems/rubygems/pull/6041) by peterzhu2118
|
49
69
|
|
50
70
|
## Features:
|
51
71
|
|
52
|
-
* Add 'call for update' to RubyGems install command. Pull request #5922 by
|
72
|
+
* Add 'call for update' to RubyGems install command. Pull request [#5922](https://github.com/rubygems/rubygems/pull/5922) by
|
53
73
|
simi
|
54
74
|
|
55
75
|
## Enhancements:
|
56
76
|
|
57
|
-
* Add `mswin` support for cargo builder. Pull request #6167 by ianks
|
77
|
+
* Add `mswin` support for cargo builder. Pull request [#6167](https://github.com/rubygems/rubygems/pull/6167) by ianks
|
58
78
|
* Validate Cargo.lock is present for Rust based extensions. Pull request
|
59
|
-
#6151 by simi
|
60
|
-
* Clean built artifacts after building extensions. Pull request #6133 by
|
79
|
+
[#6151](https://github.com/rubygems/rubygems/pull/6151) by simi
|
80
|
+
* Clean built artifacts after building extensions. Pull request [#6133](https://github.com/rubygems/rubygems/pull/6133) by
|
61
81
|
deivid-rodriguez
|
62
82
|
* Installs bundler 2.4.0 as a default gem.
|
63
83
|
|
64
84
|
## Bug fixes:
|
65
85
|
|
66
|
-
* Fix crash due to `BundlerVersionFinder` not defined. Pull request #6152
|
86
|
+
* Fix crash due to `BundlerVersionFinder` not defined. Pull request [#6152](https://github.com/rubygems/rubygems/pull/6152)
|
67
87
|
by deivid-rodriguez
|
68
88
|
* Don't leave corrupted partial package download around when running out
|
69
|
-
of disk space. Pull request #5681 by duckinator
|
89
|
+
of disk space. Pull request [#5681](https://github.com/rubygems/rubygems/pull/5681) by duckinator
|
70
90
|
|
71
91
|
# 3.3.26 / 2022-11-16
|
72
92
|
|
73
93
|
## Enhancements:
|
74
94
|
|
75
|
-
* Upgrade rb-sys to 0.9.37. Pull request #6047 by ianks
|
95
|
+
* Upgrade rb-sys to 0.9.37. Pull request [#6047](https://github.com/rubygems/rubygems/pull/6047) by ianks
|
76
96
|
* Installs bundler 2.3.26 as a default gem.
|
77
97
|
|
78
98
|
# 3.3.25 / 2022-11-02
|
79
99
|
|
80
100
|
## Enhancements:
|
81
101
|
|
82
|
-
* Github source should default to secure protocol. Pull request #6026 by
|
102
|
+
* Github source should default to secure protocol. Pull request [#6026](https://github.com/rubygems/rubygems/pull/6026) by
|
83
103
|
jasonkarns
|
84
|
-
* Allow upcoming JRuby to pass keywords to Kernel#warn. Pull request #6002
|
104
|
+
* Allow upcoming JRuby to pass keywords to Kernel#warn. Pull request [#6002](https://github.com/rubygems/rubygems/pull/6002)
|
85
105
|
by enebo
|
86
106
|
* Installs bundler 2.3.25 as a default gem.
|
87
107
|
|
@@ -96,38 +116,38 @@
|
|
96
116
|
## Enhancements:
|
97
117
|
|
98
118
|
* Add better error handling for permanent redirect responses. Pull request
|
99
|
-
#5931 by jenshenny
|
119
|
+
[#5931](https://github.com/rubygems/rubygems/pull/5931) by jenshenny
|
100
120
|
* Installs bundler 2.3.23 as a default gem.
|
101
121
|
|
102
122
|
## Bug fixes:
|
103
123
|
|
104
124
|
* Fix generic arm platform matching against runtime arm platforms with
|
105
|
-
eabi modifiers. Pull request #5957 by deivid-rodriguez
|
125
|
+
eabi modifiers. Pull request [#5957](https://github.com/rubygems/rubygems/pull/5957) by deivid-rodriguez
|
106
126
|
* Fix `Gem::Platform.match` not handling String argument properly. Pull
|
107
|
-
request #5939 by flavorjones
|
108
|
-
* Fix resolution on non-musl platforms. Pull request #5915 by
|
127
|
+
request [#5939](https://github.com/rubygems/rubygems/pull/5939) by flavorjones
|
128
|
+
* Fix resolution on non-musl platforms. Pull request [#5915](https://github.com/rubygems/rubygems/pull/5915) by
|
109
129
|
deivid-rodriguez
|
110
|
-
* Mask the file mode when extracting files. Pull request #5906 by
|
130
|
+
* Mask the file mode when extracting files. Pull request [#5906](https://github.com/rubygems/rubygems/pull/5906) by
|
111
131
|
kddnewton
|
112
132
|
|
113
133
|
# 3.3.22 / 2022-09-07
|
114
134
|
|
115
135
|
## Enhancements:
|
116
136
|
|
117
|
-
* Support non gnu libc arm-linux-eabi platforms. Pull request #5889 by
|
137
|
+
* Support non gnu libc arm-linux-eabi platforms. Pull request [#5889](https://github.com/rubygems/rubygems/pull/5889) by
|
118
138
|
ntkme
|
119
139
|
* Installs bundler 2.3.22 as a default gem.
|
120
140
|
|
121
141
|
## Bug fixes:
|
122
142
|
|
123
|
-
* Fix `gem info` with explicit `--version`. Pull request #5884 by
|
143
|
+
* Fix `gem info` with explicit `--version`. Pull request [#5884](https://github.com/rubygems/rubygems/pull/5884) by
|
124
144
|
tonyaraujop
|
125
145
|
|
126
146
|
# 3.3.21 / 2022-08-24
|
127
147
|
|
128
148
|
## Enhancements:
|
129
149
|
|
130
|
-
* Support non gnu libc linux platforms. Pull request #5852 by
|
150
|
+
* Support non gnu libc linux platforms. Pull request [#5852](https://github.com/rubygems/rubygems/pull/5852) by
|
131
151
|
deivid-rodriguez
|
132
152
|
* Installs bundler 2.3.21 as a default gem.
|
133
153
|
|
@@ -135,44 +155,44 @@
|
|
135
155
|
|
136
156
|
## Enhancements:
|
137
157
|
|
138
|
-
* Include backtrace with crashes by default. Pull request #5811 by
|
158
|
+
* Include backtrace with crashes by default. Pull request [#5811](https://github.com/rubygems/rubygems/pull/5811) by
|
139
159
|
deivid-rodriguez
|
140
160
|
* Don't create broken symlinks when a gem includes them, but print a
|
141
|
-
warning instead. Pull request #5801 by deivid-rodriguez
|
161
|
+
warning instead. Pull request [#5801](https://github.com/rubygems/rubygems/pull/5801) by deivid-rodriguez
|
142
162
|
* Warn (rather than crash) when setting `nil` specification versions. Pull
|
143
|
-
request #5794 by deivid-rodriguez
|
163
|
+
request [#5794](https://github.com/rubygems/rubygems/pull/5794) by deivid-rodriguez
|
144
164
|
* Installs bundler 2.3.20 as a default gem.
|
145
165
|
|
146
166
|
## Bug fixes:
|
147
167
|
|
148
168
|
* Always consider installed specs for resolution, even if prereleases.
|
149
|
-
Pull request #5821 by deivid-rodriguez
|
169
|
+
Pull request [#5821](https://github.com/rubygems/rubygems/pull/5821) by deivid-rodriguez
|
150
170
|
* Fix `gem install` with `--platform` flag not matching simulated platform
|
151
|
-
correctly. Pull request #5820 by deivid-rodriguez
|
152
|
-
* Fix platform matching for index specs. Pull request #5795 by Ilushkanama
|
171
|
+
correctly. Pull request [#5820](https://github.com/rubygems/rubygems/pull/5820) by deivid-rodriguez
|
172
|
+
* Fix platform matching for index specs. Pull request [#5795](https://github.com/rubygems/rubygems/pull/5795) by Ilushkanama
|
153
173
|
|
154
174
|
# 3.3.19 / 2022-07-27
|
155
175
|
|
156
176
|
## Enhancements:
|
157
177
|
|
158
|
-
* Display mfa warnings on `gem signin`. Pull request #5590 by aellispierce
|
159
|
-
* Require fileutils more lazily when installing gems. Pull request #5738
|
178
|
+
* Display mfa warnings on `gem signin`. Pull request [#5590](https://github.com/rubygems/rubygems/pull/5590) by aellispierce
|
179
|
+
* Require fileutils more lazily when installing gems. Pull request [#5738](https://github.com/rubygems/rubygems/pull/5738)
|
160
180
|
by deivid-rodriguez
|
161
181
|
* Fix upgrading RubyGems with a customized `Gem.default_dir`. Pull request
|
162
|
-
#5728 by deivid-rodriguez
|
182
|
+
[#5728](https://github.com/rubygems/rubygems/pull/5728) by deivid-rodriguez
|
163
183
|
* Stop using `/dev/null` for silent ui for WASI platform. Pull request
|
164
|
-
#5703 by kateinoigakukun
|
165
|
-
* Unify loading `Gem::Requirement`. Pull request #5596 by deivid-rodriguez
|
184
|
+
[#5703](https://github.com/rubygems/rubygems/pull/5703) by kateinoigakukun
|
185
|
+
* Unify loading `Gem::Requirement`. Pull request [#5596](https://github.com/rubygems/rubygems/pull/5596) by deivid-rodriguez
|
166
186
|
* Installs bundler 2.3.19 as a default gem.
|
167
187
|
|
168
188
|
## Bug fixes:
|
169
189
|
|
170
190
|
* Fix `ruby setup.rb` with `--destdir` writing outside of `--destdir`.
|
171
|
-
Pull request #5737 by deivid-rodriguez
|
191
|
+
Pull request [#5737](https://github.com/rubygems/rubygems/pull/5737) by deivid-rodriguez
|
172
192
|
|
173
193
|
## Documentation:
|
174
194
|
|
175
|
-
* Fix wrong information about default RubyGems source. Pull request #5723
|
195
|
+
* Fix wrong information about default RubyGems source. Pull request [#5723](https://github.com/rubygems/rubygems/pull/5723)
|
176
196
|
by tnir
|
177
197
|
|
178
198
|
# 3.3.18 / 2022-07-14
|
@@ -180,64 +200,64 @@
|
|
180
200
|
## Enhancements:
|
181
201
|
|
182
202
|
* Make platform `universal-mingw32` match "x64-mingw-ucrt". Pull request
|
183
|
-
#5655 by johnnyshields
|
203
|
+
[#5655](https://github.com/rubygems/rubygems/pull/5655) by johnnyshields
|
184
204
|
* Add more descriptive messages when `gem update` fails to update some
|
185
|
-
gems. Pull request #5676 by brianleshopify
|
205
|
+
gems. Pull request [#5676](https://github.com/rubygems/rubygems/pull/5676) by brianleshopify
|
186
206
|
* Installs bundler 2.3.18 as a default gem.
|
187
207
|
|
188
208
|
## Bug fixes:
|
189
209
|
|
190
210
|
* Make sure RubyGems prints no warnings when loading plugins. Pull request
|
191
|
-
#5607 by deivid-rodriguez
|
211
|
+
[#5607](https://github.com/rubygems/rubygems/pull/5607) by deivid-rodriguez
|
192
212
|
|
193
213
|
# 3.3.17 / 2022-06-29
|
194
214
|
|
195
215
|
## Enhancements:
|
196
216
|
|
197
217
|
* Document `gem env` argument aliases and add `gem env user_gemhome` and
|
198
|
-
`gem env user_gemdir`. Pull request #5644 by deivid-rodriguez
|
218
|
+
`gem env user_gemdir`. Pull request [#5644](https://github.com/rubygems/rubygems/pull/5644) by deivid-rodriguez
|
199
219
|
* Improve error message when `operating_system.rb` fails to load. Pull
|
200
|
-
request #5658 by deivid-rodriguez
|
220
|
+
request [#5658](https://github.com/rubygems/rubygems/pull/5658) by deivid-rodriguez
|
201
221
|
* Clean up temporary directory after `generate_index --update`. Pull
|
202
|
-
request #5653 by graywolf-at-work
|
203
|
-
* Simplify extension builder. Pull request #5626 by deivid-rodriguez
|
222
|
+
request [#5653](https://github.com/rubygems/rubygems/pull/5653) by graywolf-at-work
|
223
|
+
* Simplify extension builder. Pull request [#5626](https://github.com/rubygems/rubygems/pull/5626) by deivid-rodriguez
|
204
224
|
* Installs bundler 2.3.17 as a default gem.
|
205
225
|
|
206
226
|
## Documentation:
|
207
227
|
|
208
228
|
* Modify RubyGems issue template to be like the one for Bundler. Pull
|
209
|
-
request #5643 by deivid-rodriguez
|
229
|
+
request [#5643](https://github.com/rubygems/rubygems/pull/5643) by deivid-rodriguez
|
210
230
|
|
211
231
|
# 3.3.16 / 2022-06-15
|
212
232
|
|
213
233
|
## Enhancements:
|
214
234
|
|
215
235
|
* Auto-fix and warn gem packages including a gemspec with `require_paths`
|
216
|
-
as an array of arrays. Pull request #5615 by deivid-rodriguez
|
217
|
-
* Misc cargo builder improvements. Pull request #5459 by ianks
|
236
|
+
as an array of arrays. Pull request [#5615](https://github.com/rubygems/rubygems/pull/5615) by deivid-rodriguez
|
237
|
+
* Misc cargo builder improvements. Pull request [#5459](https://github.com/rubygems/rubygems/pull/5459) by ianks
|
218
238
|
* Installs bundler 2.3.16 as a default gem.
|
219
239
|
|
220
240
|
## Bug fixes:
|
221
241
|
|
222
242
|
* Fix incorrect password redaction when there's an error in `gem source
|
223
|
-
-a`. Pull request #5623 by deivid-rodriguez
|
243
|
+
-a`. Pull request [#5623](https://github.com/rubygems/rubygems/pull/5623) by deivid-rodriguez
|
224
244
|
* Fix another regression when loading old marshaled specs. Pull request
|
225
|
-
#5610 by deivid-rodriguez
|
245
|
+
[#5610](https://github.com/rubygems/rubygems/pull/5610) by deivid-rodriguez
|
226
246
|
|
227
247
|
# 3.3.15 / 2022-06-01
|
228
248
|
|
229
249
|
## Enhancements:
|
230
250
|
|
231
251
|
* Support the change of did_you_mean about `Exception#detailed_message`.
|
232
|
-
Pull request #5560 by mame
|
252
|
+
Pull request [#5560](https://github.com/rubygems/rubygems/pull/5560) by mame
|
233
253
|
* Installs bundler 2.3.15 as a default gem.
|
234
254
|
|
235
255
|
## Bug fixes:
|
236
256
|
|
237
257
|
* Fix loading old marshaled specs including `YAML::PrivateType` constant.
|
238
|
-
Pull request #5415 by deivid-rodriguez
|
258
|
+
Pull request [#5415](https://github.com/rubygems/rubygems/pull/5415) by deivid-rodriguez
|
239
259
|
* Fix rubygems update when non default `--install-dir` is configured. Pull
|
240
|
-
request #5566 by deivid-rodriguez
|
260
|
+
request [#5566](https://github.com/rubygems/rubygems/pull/5566) by deivid-rodriguez
|
241
261
|
|
242
262
|
# 3.3.14 / 2022-05-18
|
243
263
|
|
@@ -253,43 +273,43 @@
|
|
253
273
|
|
254
274
|
## Bug fixes:
|
255
275
|
|
256
|
-
* Fix regression when resolving ruby constraints. Pull request #5486 by
|
276
|
+
* Fix regression when resolving ruby constraints. Pull request [#5486](https://github.com/rubygems/rubygems/pull/5486) by
|
257
277
|
deivid-rodriguez
|
258
278
|
|
259
279
|
## Documentation:
|
260
280
|
|
261
|
-
* Clarify description of owner-flags. Pull request #5497 by kronn
|
281
|
+
* Clarify description of owner-flags. Pull request [#5497](https://github.com/rubygems/rubygems/pull/5497) by kronn
|
262
282
|
|
263
283
|
# 3.3.12 / 2022-04-20
|
264
284
|
|
265
285
|
## Enhancements:
|
266
286
|
|
267
|
-
* Less error swallowing when installing gems. Pull request #5475 by
|
287
|
+
* Less error swallowing when installing gems. Pull request [#5475](https://github.com/rubygems/rubygems/pull/5475) by
|
268
288
|
deivid-rodriguez
|
269
|
-
* Stop considering `RUBY_PATCHLEVEL` for resolution. Pull request #5472 by
|
289
|
+
* Stop considering `RUBY_PATCHLEVEL` for resolution. Pull request [#5472](https://github.com/rubygems/rubygems/pull/5472) by
|
270
290
|
deivid-rodriguez
|
271
|
-
* Bump vendored optparse to latest master. Pull request #5466 by
|
291
|
+
* Bump vendored optparse to latest master. Pull request [#5466](https://github.com/rubygems/rubygems/pull/5466) by
|
272
292
|
deivid-rodriguez
|
273
293
|
* Installs bundler 2.3.12 as a default gem.
|
274
294
|
|
275
295
|
## Documentation:
|
276
296
|
|
277
|
-
* Fix formatting in docs. Pull request #5470 by peterzhu2118
|
278
|
-
* Fix a typo. Pull request #5401 by znz
|
297
|
+
* Fix formatting in docs. Pull request [#5470](https://github.com/rubygems/rubygems/pull/5470) by peterzhu2118
|
298
|
+
* Fix a typo. Pull request [#5401](https://github.com/rubygems/rubygems/pull/5401) by znz
|
279
299
|
|
280
300
|
# 3.3.11 / 2022-04-07
|
281
301
|
|
282
302
|
## Enhancements:
|
283
303
|
|
284
|
-
* Enable mfa on specific keys during gem signin. Pull request #5305 by
|
304
|
+
* Enable mfa on specific keys during gem signin. Pull request [#5305](https://github.com/rubygems/rubygems/pull/5305) by
|
285
305
|
aellispierce
|
286
|
-
* Prefer `__dir__` to `__FILE__`. Pull request #5444 by deivid-rodriguez
|
287
|
-
* Add cargo builder for rust extensions. Pull request #5175 by ianks
|
306
|
+
* Prefer `__dir__` to `__FILE__`. Pull request [#5444](https://github.com/rubygems/rubygems/pull/5444) by deivid-rodriguez
|
307
|
+
* Add cargo builder for rust extensions. Pull request [#5175](https://github.com/rubygems/rubygems/pull/5175) by ianks
|
288
308
|
* Installs bundler 2.3.11 as a default gem.
|
289
309
|
|
290
310
|
## Documentation:
|
291
311
|
|
292
|
-
* Improve RDoc setup. Pull request #5398 by deivid-rodriguez
|
312
|
+
* Improve RDoc setup. Pull request [#5398](https://github.com/rubygems/rubygems/pull/5398) by deivid-rodriguez
|
293
313
|
|
294
314
|
# 3.3.10 / 2022-03-23
|
295
315
|
|
@@ -299,10 +319,10 @@
|
|
299
319
|
|
300
320
|
## Documentation:
|
301
321
|
|
302
|
-
* Enable `Gem::Package` example in RDoc documentation. Pull request #5399
|
322
|
+
* Enable `Gem::Package` example in RDoc documentation. Pull request [#5399](https://github.com/rubygems/rubygems/pull/5399)
|
303
323
|
by nobu
|
304
324
|
* Unhide RDoc documentation from top level `Gem` module. Pull request
|
305
|
-
#5396 by nobu
|
325
|
+
[#5396](https://github.com/rubygems/rubygems/pull/5396) by nobu
|
306
326
|
|
307
327
|
# 3.3.9 / 2022-03-09
|
308
328
|
|
@@ -324,64 +344,64 @@
|
|
324
344
|
|
325
345
|
## Documentation:
|
326
346
|
|
327
|
-
* Fix missing rdoc for `Gem::Version`. Pull request #5299 by nevans
|
347
|
+
* Fix missing rdoc for `Gem::Version`. Pull request [#5299](https://github.com/rubygems/rubygems/pull/5299) by nevans
|
328
348
|
|
329
349
|
# 3.3.6 / 2022-01-26
|
330
350
|
|
331
351
|
## Enhancements:
|
332
352
|
|
333
353
|
* Forbid downgrading past the originally shipped version on Ruby 3.1. Pull
|
334
|
-
request #5301 by deivid-rodriguez
|
335
|
-
* Support `--enable-load-relative` inside binstubs. Pull request #2929 by
|
354
|
+
request [#5301](https://github.com/rubygems/rubygems/pull/5301) by deivid-rodriguez
|
355
|
+
* Support `--enable-load-relative` inside binstubs. Pull request [#2929](https://github.com/rubygems/rubygems/pull/2929) by
|
336
356
|
deivid-rodriguez
|
337
|
-
* Let `Version#<=>` accept a String. Pull request #5275 by amatsuda
|
357
|
+
* Let `Version#<=>` accept a String. Pull request [#5275](https://github.com/rubygems/rubygems/pull/5275) by amatsuda
|
338
358
|
* Installs bundler 2.3.6 as a default gem.
|
339
359
|
|
340
360
|
## Bug fixes:
|
341
361
|
|
342
362
|
* Avoid `flock` on non Windows systems, since it causing issues on NFS
|
343
|
-
file systems. Pull request #5278 by deivid-rodriguez
|
363
|
+
file systems. Pull request [#5278](https://github.com/rubygems/rubygems/pull/5278) by deivid-rodriguez
|
344
364
|
* Fix `gem update --system` for already installed version of
|
345
|
-
`rubygems-update`. Pull request #5285 by loadkpi
|
365
|
+
`rubygems-update`. Pull request [#5285](https://github.com/rubygems/rubygems/pull/5285) by loadkpi
|
346
366
|
|
347
367
|
# 3.3.5 / 2022-01-12
|
348
368
|
|
349
369
|
## Enhancements:
|
350
370
|
|
351
|
-
* Don't activate `yaml` gem from RubyGems. Pull request #5266 by
|
371
|
+
* Don't activate `yaml` gem from RubyGems. Pull request [#5266](https://github.com/rubygems/rubygems/pull/5266) by
|
352
372
|
deivid-rodriguez
|
353
373
|
* Let `gem fetch` understand `<gem>:<version>` syntax and
|
354
|
-
`--[no-]suggestions` flag. Pull request #5242 by ximenasandoval
|
374
|
+
`--[no-]suggestions` flag. Pull request [#5242](https://github.com/rubygems/rubygems/pull/5242) by ximenasandoval
|
355
375
|
* Installs bundler 2.3.5 as a default gem.
|
356
376
|
|
357
377
|
## Bug fixes:
|
358
378
|
|
359
|
-
* Fix `gem install <non-existent-gem> --force` crash. Pull request #5262
|
379
|
+
* Fix `gem install <non-existent-gem> --force` crash. Pull request [#5262](https://github.com/rubygems/rubygems/pull/5262)
|
360
380
|
by deivid-rodriguez
|
361
|
-
* Fix longstanding `gem install` failure on JRuby. Pull request #5228 by
|
381
|
+
* Fix longstanding `gem install` failure on JRuby. Pull request [#5228](https://github.com/rubygems/rubygems/pull/5228) by
|
362
382
|
deivid-rodriguez
|
363
383
|
|
364
384
|
## Documentation:
|
365
385
|
|
366
386
|
* Markup `Gem::Specification` documentation with RDoc notations. Pull
|
367
|
-
request #5268 by nobu
|
387
|
+
request [#5268](https://github.com/rubygems/rubygems/pull/5268) by nobu
|
368
388
|
|
369
389
|
# 3.3.4 / 2021-12-29
|
370
390
|
|
371
391
|
## Enhancements:
|
372
392
|
|
373
393
|
* Don't redownload `rubygems-update` package if already there. Pull
|
374
|
-
request #5230 by deivid-rodriguez
|
394
|
+
request [#5230](https://github.com/rubygems/rubygems/pull/5230) by deivid-rodriguez
|
375
395
|
* Installs bundler 2.3.4 as a default gem.
|
376
396
|
|
377
397
|
## Bug fixes:
|
378
398
|
|
379
399
|
* Fix `gem update --system` crashing when latest version not supported.
|
380
|
-
Pull request #5191 by deivid-rodriguez
|
400
|
+
Pull request [#5191](https://github.com/rubygems/rubygems/pull/5191) by deivid-rodriguez
|
381
401
|
|
382
402
|
## Performance:
|
383
403
|
|
384
|
-
* Make SpecificationPolicy autoload constant. Pull request #5222 by pocke
|
404
|
+
* Make SpecificationPolicy autoload constant. Pull request [#5222](https://github.com/rubygems/rubygems/pull/5222) by pocke
|
385
405
|
|
386
406
|
# 3.3.3 / 2021-12-24
|
387
407
|
|
@@ -392,103 +412,103 @@
|
|
392
412
|
## Bug fixes:
|
393
413
|
|
394
414
|
* Fix gem installation failing in Solaris due to bad `IO#flock` usage.
|
395
|
-
Pull request #5216 by mame
|
415
|
+
Pull request [#5216](https://github.com/rubygems/rubygems/pull/5216) by mame
|
396
416
|
|
397
417
|
# 3.3.2 / 2021-12-23
|
398
418
|
|
399
419
|
## Enhancements:
|
400
420
|
|
401
421
|
* Fix deprecations when activating DidYouMean for misspelled command
|
402
|
-
suggestions. Pull request #5211 by yuki24
|
422
|
+
suggestions. Pull request [#5211](https://github.com/rubygems/rubygems/pull/5211) by yuki24
|
403
423
|
* Installs bundler 2.3.2 as a default gem.
|
404
424
|
|
405
425
|
## Bug fixes:
|
406
426
|
|
407
|
-
* Fix gemspec truncation. Pull request #5208 by deivid-rodriguez
|
427
|
+
* Fix gemspec truncation. Pull request [#5208](https://github.com/rubygems/rubygems/pull/5208) by deivid-rodriguez
|
408
428
|
|
409
429
|
# 3.3.1 / 2021-12-22
|
410
430
|
|
411
431
|
## Enhancements:
|
412
432
|
|
413
|
-
* Fix compatibility with OpenSSL 3.0. Pull request #5196 by rhenium
|
433
|
+
* Fix compatibility with OpenSSL 3.0. Pull request [#5196](https://github.com/rubygems/rubygems/pull/5196) by rhenium
|
414
434
|
* Remove hard errors when matching major bundler not found. Pull request
|
415
|
-
#5181 by deivid-rodriguez
|
435
|
+
[#5181](https://github.com/rubygems/rubygems/pull/5181) by deivid-rodriguez
|
416
436
|
* Installs bundler 2.3.1 as a default gem.
|
417
437
|
|
418
438
|
# 3.3.0 / 2021-12-21
|
419
439
|
|
420
440
|
## Breaking changes:
|
421
441
|
|
422
|
-
* Removed deprecated `gem server` command. Pull request #5034 by hsbt
|
423
|
-
* Remove MacOS specific gem layout. Pull request #4833 by deivid-rodriguez
|
442
|
+
* Removed deprecated `gem server` command. Pull request [#5034](https://github.com/rubygems/rubygems/pull/5034) by hsbt
|
443
|
+
* Remove MacOS specific gem layout. Pull request [#4833](https://github.com/rubygems/rubygems/pull/4833) by deivid-rodriguez
|
424
444
|
* Default `gem update` documentation format is now only `ri`. Pull request
|
425
|
-
#3888 by hsbt
|
445
|
+
[#3888](https://github.com/rubygems/rubygems/pull/3888) by hsbt
|
426
446
|
|
427
447
|
## Features:
|
428
448
|
|
429
449
|
* Give command misspelled suggestions via `did_you_mean` gem. Pull request
|
430
|
-
#3904 by hsbt
|
450
|
+
[#3904](https://github.com/rubygems/rubygems/pull/3904) by hsbt
|
431
451
|
|
432
452
|
## Performance:
|
433
453
|
|
434
|
-
* Avoid some unnecessary stat calls. Pull request #3887 by kares
|
454
|
+
* Avoid some unnecessary stat calls. Pull request [#3887](https://github.com/rubygems/rubygems/pull/3887) by kares
|
435
455
|
* Improve spell checking suggestion performance by
|
436
456
|
vendoring`DidYouMean::Levenshtein.distance` from `did_you_mean-1.4.0`.
|
437
|
-
Pull request #3856 by austinpray
|
457
|
+
Pull request [#3856](https://github.com/rubygems/rubygems/pull/3856) by austinpray
|
438
458
|
|
439
459
|
## Enhancements:
|
440
460
|
|
441
461
|
* Set `BUNDLER_VERSION` when `bundle _<version>_` is passed. Pull request
|
442
|
-
#5180 by deivid-rodriguez
|
443
|
-
* Don't require `rdoc` for `gem uninstall`. Pull request #4691 by ndren
|
462
|
+
[#5180](https://github.com/rubygems/rubygems/pull/5180) by deivid-rodriguez
|
463
|
+
* Don't require `rdoc` for `gem uninstall`. Pull request [#4691](https://github.com/rubygems/rubygems/pull/4691) by ndren
|
444
464
|
* More focused rescue on extension builder exception to get more
|
445
|
-
information on errors. Pull request #4189 by deivid-rodriguez
|
465
|
+
information on errors. Pull request [#4189](https://github.com/rubygems/rubygems/pull/4189) by deivid-rodriguez
|
446
466
|
* Installs bundler 2.3.0 as a default gem.
|
447
467
|
|
448
468
|
## Bug fixes:
|
449
469
|
|
450
470
|
* Fix encoding mismatch issues when writing gem packages. Pull request
|
451
|
-
#5162 by deivid-rodriguez
|
471
|
+
[#5162](https://github.com/rubygems/rubygems/pull/5162) by deivid-rodriguez
|
452
472
|
* Fix broken brew formula due to loading `operating_system.rb`
|
453
|
-
customizations too late. Pull request #5154 by deivid-rodriguez
|
473
|
+
customizations too late. Pull request [#5154](https://github.com/rubygems/rubygems/pull/5154) by deivid-rodriguez
|
454
474
|
* Properly fetch `Gem#latest_spec_for` with multiple sources. Pull request
|
455
|
-
#2764 by kevlogan90
|
475
|
+
[#2764](https://github.com/rubygems/rubygems/pull/2764) by kevlogan90
|
456
476
|
* Fix upgrade crashing when multiple versions of `fileutils` installed.
|
457
|
-
Pull request #5140 by deivid-rodriguez
|
477
|
+
Pull request [#5140](https://github.com/rubygems/rubygems/pull/5140) by deivid-rodriguez
|
458
478
|
|
459
479
|
# 3.2.33 / 2021-12-07
|
460
480
|
|
461
481
|
## Deprecations:
|
462
482
|
|
463
|
-
* Deprecate typo name. Pull request #5109 by nobu
|
483
|
+
* Deprecate typo name. Pull request [#5109](https://github.com/rubygems/rubygems/pull/5109) by nobu
|
464
484
|
|
465
485
|
## Enhancements:
|
466
486
|
|
467
487
|
* Add login & logout alias for the signin & signout commands. Pull request
|
468
|
-
#5133 by colby-swandale
|
488
|
+
[#5133](https://github.com/rubygems/rubygems/pull/5133) by colby-swandale
|
469
489
|
* Fix race conditions when reading & writing gemspecs concurrently. Pull
|
470
|
-
request #4408 by deivid-rodriguez
|
490
|
+
request [#4408](https://github.com/rubygems/rubygems/pull/4408) by deivid-rodriguez
|
471
491
|
* Installs bundler 2.2.33 as a default gem.
|
472
492
|
|
473
493
|
## Bug fixes:
|
474
494
|
|
475
495
|
* Fix `ruby setup.rb` trying to write outside of `--destdir`. Pull request
|
476
|
-
#5053 by deivid-rodriguez
|
496
|
+
[#5053](https://github.com/rubygems/rubygems/pull/5053) by deivid-rodriguez
|
477
497
|
|
478
498
|
## Documentation:
|
479
499
|
|
480
500
|
* Move required_ruby_version gemspec attribute to recommended section.
|
481
|
-
Pull request #5130 by simi
|
501
|
+
Pull request [#5130](https://github.com/rubygems/rubygems/pull/5130) by simi
|
482
502
|
* Ignore to generate the documentation from vendored libraries. Pull
|
483
|
-
request #5118 by hsbt
|
503
|
+
request [#5118](https://github.com/rubygems/rubygems/pull/5118) by hsbt
|
484
504
|
|
485
505
|
# 3.2.32 / 2021-11-23
|
486
506
|
|
487
507
|
## Enhancements:
|
488
508
|
|
489
|
-
* Refactor installer thread safety protections. Pull request #5050 by
|
509
|
+
* Refactor installer thread safety protections. Pull request [#5050](https://github.com/rubygems/rubygems/pull/5050) by
|
490
510
|
deivid-rodriguez
|
491
|
-
* Allow gem activation from `operating_system.rb`. Pull request #5044 by
|
511
|
+
* Allow gem activation from `operating_system.rb`. Pull request [#5044](https://github.com/rubygems/rubygems/pull/5044) by
|
492
512
|
deivid-rodriguez
|
493
513
|
* Installs bundler 2.2.32 as a default gem.
|
494
514
|
|
@@ -497,39 +517,39 @@
|
|
497
517
|
## Enhancements:
|
498
518
|
|
499
519
|
* Don't pass empty `DESTDIR` to `nmake` since it works differently from
|
500
|
-
standard `make`. Pull request #5057 by hsbt
|
501
|
-
* Fix `gem install` vs `gem fetch` inconsistency. Pull request #5037 by
|
520
|
+
standard `make`. Pull request [#5057](https://github.com/rubygems/rubygems/pull/5057) by hsbt
|
521
|
+
* Fix `gem install` vs `gem fetch` inconsistency. Pull request [#5037](https://github.com/rubygems/rubygems/pull/5037) by
|
502
522
|
deivid-rodriguez
|
503
|
-
* Lazily load and vendor `optparse`. Pull request #4881 by
|
523
|
+
* Lazily load and vendor `optparse`. Pull request [#4881](https://github.com/rubygems/rubygems/pull/4881) by
|
504
524
|
deivid-rodriguez
|
505
|
-
* Use a vendored copy of `tsort` internally. Pull request #5027 by
|
525
|
+
* Use a vendored copy of `tsort` internally. Pull request [#5027](https://github.com/rubygems/rubygems/pull/5027) by
|
506
526
|
deivid-rodriguez
|
507
527
|
* Install bundler 2.2.31 as a default gem.
|
508
528
|
|
509
529
|
## Bug fixes:
|
510
530
|
|
511
|
-
* Fix `ruby setup.rb` when `--prefix` is passed. Pull request #5051 by
|
531
|
+
* Fix `ruby setup.rb` when `--prefix` is passed. Pull request [#5051](https://github.com/rubygems/rubygems/pull/5051) by
|
512
532
|
deivid-rodriguez
|
513
533
|
* Don't apply `--destdir` twice when running `setup.rb`. Pull request
|
514
|
-
#2768 by alyssais
|
534
|
+
[#2768](https://github.com/rubygems/rubygems/pull/2768) by alyssais
|
515
535
|
|
516
536
|
# 3.2.30 / 2021-10-26
|
517
537
|
|
518
538
|
## Enhancements:
|
519
539
|
|
520
540
|
* Add support to build and sign certificates with multiple key algorithms.
|
521
|
-
Pull request #4991 by doodzik
|
522
|
-
* Avoid loading the `digest` gem unnecessarily. Pull request #4979 by
|
541
|
+
Pull request [#4991](https://github.com/rubygems/rubygems/pull/4991) by doodzik
|
542
|
+
* Avoid loading the `digest` gem unnecessarily. Pull request [#4979](https://github.com/rubygems/rubygems/pull/4979) by
|
523
543
|
deivid-rodriguez
|
524
|
-
* Prefer `require_relative` for all internal requires. Pull request #4978
|
544
|
+
* Prefer `require_relative` for all internal requires. Pull request [#4978](https://github.com/rubygems/rubygems/pull/4978)
|
525
545
|
by deivid-rodriguez
|
526
546
|
* Add missing `require` of `time` within
|
527
|
-
`Gem::Request.verify_certificate_message`. Pull request #4975 by nobu
|
547
|
+
`Gem::Request.verify_certificate_message`. Pull request [#4975](https://github.com/rubygems/rubygems/pull/4975) by nobu
|
528
548
|
* Install bundler 2.2.30 as a default gem.
|
529
549
|
|
530
550
|
## Performance:
|
531
551
|
|
532
|
-
* Speed up `gem install`, specially under Windows. Pull request #4960 by
|
552
|
+
* Speed up `gem install`, specially under Windows. Pull request [#4960](https://github.com/rubygems/rubygems/pull/4960) by
|
533
553
|
deivid-rodriguez
|
534
554
|
|
535
555
|
# 3.2.29 / 2021-10-08
|
@@ -537,44 +557,44 @@
|
|
537
557
|
## Enhancements:
|
538
558
|
|
539
559
|
* Only disallow FIXME/TODO for first word of gemspec description. Pull
|
540
|
-
request #4937 by duckinator
|
560
|
+
request [#4937](https://github.com/rubygems/rubygems/pull/4937) by duckinator
|
541
561
|
* Install bundler 2.2.29 as a default gem.
|
542
562
|
|
543
563
|
## Bug fixes:
|
544
564
|
|
545
565
|
* Fix `wordy` method in `SourceFetchProblem` changing the password of
|
546
|
-
source. Pull request #4910 by Huangxiaodui
|
566
|
+
source. Pull request [#4910](https://github.com/rubygems/rubygems/pull/4910) by Huangxiaodui
|
547
567
|
|
548
568
|
## Performance:
|
549
569
|
|
550
570
|
* Improve `require` performance, particularly on systems with a lot of
|
551
|
-
gems installed. Pull request #4951 by pocke
|
571
|
+
gems installed. Pull request [#4951](https://github.com/rubygems/rubygems/pull/4951) by pocke
|
552
572
|
|
553
573
|
# 3.2.28 / 2021-09-23
|
554
574
|
|
555
575
|
## Enhancements:
|
556
576
|
|
557
|
-
* Support MINGW-UCRT. Pull request #4925 by hsbt
|
558
|
-
* Only check if descriptions *start with* FIXME/TODO. Pull request #4841
|
577
|
+
* Support MINGW-UCRT. Pull request [#4925](https://github.com/rubygems/rubygems/pull/4925) by hsbt
|
578
|
+
* Only check if descriptions *start with* FIXME/TODO. Pull request [#4841](https://github.com/rubygems/rubygems/pull/4841)
|
559
579
|
by duckinator
|
560
580
|
* Avoid loading `uri` unnecessarily when activating gems. Pull request
|
561
|
-
#4897 by deivid-rodriguez
|
581
|
+
[#4897](https://github.com/rubygems/rubygems/pull/4897) by deivid-rodriguez
|
562
582
|
* Install bundler 2.2.28 as a default gem.
|
563
583
|
|
564
584
|
## Bug fixes:
|
565
585
|
|
566
|
-
* Fix redacted credentials being sent to gemserver. Pull request #4919 by
|
586
|
+
* Fix redacted credentials being sent to gemserver. Pull request [#4919](https://github.com/rubygems/rubygems/pull/4919) by
|
567
587
|
jdliss
|
568
588
|
|
569
589
|
# 3.2.27 / 2021-09-03
|
570
590
|
|
571
591
|
## Enhancements:
|
572
592
|
|
573
|
-
* Redact credentails when printing URI. Pull request #4868 by intuxicated
|
593
|
+
* Redact credentails when printing URI. Pull request [#4868](https://github.com/rubygems/rubygems/pull/4868) by intuxicated
|
574
594
|
* Prefer `require_relative` to `require` for internal requires. Pull
|
575
|
-
request #4858 by deivid-rodriguez
|
595
|
+
request [#4858](https://github.com/rubygems/rubygems/pull/4858) by deivid-rodriguez
|
576
596
|
* Prioritise gems with higher version for fetching metadata, and stop
|
577
|
-
fetching once we find a valid candidate. Pull request #4843 by intuxicated
|
597
|
+
fetching once we find a valid candidate. Pull request [#4843](https://github.com/rubygems/rubygems/pull/4843) by intuxicated
|
578
598
|
* Install bundler 2.2.27 as a default gem.
|
579
599
|
|
580
600
|
# 3.2.26 / 2021-08-17
|
@@ -582,34 +602,34 @@
|
|
582
602
|
## Enhancements:
|
583
603
|
|
584
604
|
* Enhance the error handling for loading the
|
585
|
-
`rubygems/defaults/operating_system` file. Pull request #4824 by
|
605
|
+
`rubygems/defaults/operating_system` file. Pull request [#4824](https://github.com/rubygems/rubygems/pull/4824) by
|
586
606
|
intuxicated
|
587
|
-
* Ignore `RUBYGEMS_GEMDEPS` for the bundler gem. Pull request #4532 by
|
607
|
+
* Ignore `RUBYGEMS_GEMDEPS` for the bundler gem. Pull request [#4532](https://github.com/rubygems/rubygems/pull/4532) by
|
588
608
|
deivid-rodriguez
|
589
609
|
* Install bundler 2.2.26 as a default gem.
|
590
610
|
|
591
611
|
## Bug fixes:
|
592
612
|
|
593
|
-
* Also load user installed rubygems plugins. Pull request #4829 by
|
613
|
+
* Also load user installed rubygems plugins. Pull request [#4829](https://github.com/rubygems/rubygems/pull/4829) by
|
594
614
|
deivid-rodriguez
|
595
615
|
|
596
616
|
# 3.2.25 / 2021-07-30
|
597
617
|
|
598
618
|
## Enhancements:
|
599
619
|
|
600
|
-
* Don't load the `base64` library since it's not used. Pull request #4785
|
620
|
+
* Don't load the `base64` library since it's not used. Pull request [#4785](https://github.com/rubygems/rubygems/pull/4785)
|
601
621
|
by deivid-rodriguez
|
602
|
-
* Don't load the `resolv` library since it's not used. Pull request #4784
|
622
|
+
* Don't load the `resolv` library since it's not used. Pull request [#4784](https://github.com/rubygems/rubygems/pull/4784)
|
603
623
|
by deivid-rodriguez
|
604
|
-
* Lazily load `shellwords` library. Pull request #4783 by deivid-rodriguez
|
624
|
+
* Lazily load `shellwords` library. Pull request [#4783](https://github.com/rubygems/rubygems/pull/4783) by deivid-rodriguez
|
605
625
|
* Check requirements class before loading marshalled requirements. Pull
|
606
|
-
request #4651 by nobu
|
626
|
+
request [#4651](https://github.com/rubygems/rubygems/pull/4651) by nobu
|
607
627
|
* Install bundler 2.2.25 as a default gem.
|
608
628
|
|
609
629
|
## Bug fixes:
|
610
630
|
|
611
631
|
* Add missing `require 'fileutils'` in `Gem::ConfigFile`. Pull request
|
612
|
-
#4768 by ybiquitous
|
632
|
+
[#4768](https://github.com/rubygems/rubygems/pull/4768) by ybiquitous
|
613
633
|
|
614
634
|
# 3.2.24 / 2021-07-15
|
615
635
|
|
@@ -620,56 +640,56 @@
|
|
620
640
|
## Bug fixes:
|
621
641
|
|
622
642
|
* Fix contradictory message about deletion of default gem. Pull request
|
623
|
-
#4739 by jaredbeck
|
643
|
+
[#4739](https://github.com/rubygems/rubygems/pull/4739) by jaredbeck
|
624
644
|
|
625
645
|
## Documentation:
|
626
646
|
|
627
647
|
* Add a description about `GEM_HOST_OTP_CODE` to help text. Pull request
|
628
|
-
#4742 by ybiquitous
|
648
|
+
[#4742](https://github.com/rubygems/rubygems/pull/4742) by ybiquitous
|
629
649
|
|
630
650
|
# 3.2.23 / 2021-07-09
|
631
651
|
|
632
652
|
## Enhancements:
|
633
653
|
|
634
654
|
* Rewind IO source to allow working with contents in memory. Pull request
|
635
|
-
#4729 by drcapulet
|
655
|
+
[#4729](https://github.com/rubygems/rubygems/pull/4729) by drcapulet
|
636
656
|
* Install bundler 2.2.23 as a default gem.
|
637
657
|
|
638
658
|
# 3.2.22 / 2021-07-06
|
639
659
|
|
640
660
|
## Enhancements:
|
641
661
|
|
642
|
-
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request #4697 by
|
662
|
+
* Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request [#4697](https://github.com/rubygems/rubygems/pull/4697) by
|
643
663
|
CGA1123
|
644
664
|
* Fixes for the edge case when openssl library is missing. Pull request
|
645
|
-
#4695 by rhenium
|
665
|
+
[#4695](https://github.com/rubygems/rubygems/pull/4695) by rhenium
|
646
666
|
* Install bundler 2.2.22 as a default gem.
|
647
667
|
|
648
668
|
# 3.2.21 / 2021-06-23
|
649
669
|
|
650
670
|
## Enhancements:
|
651
671
|
|
652
|
-
* Fix typo in OpenSSL detection. Pull request #4679 by osyoyu
|
653
|
-
* Add the most recent licenses from spdx.org. Pull request #4662 by nobu
|
672
|
+
* Fix typo in OpenSSL detection. Pull request [#4679](https://github.com/rubygems/rubygems/pull/4679) by osyoyu
|
673
|
+
* Add the most recent licenses from spdx.org. Pull request [#4662](https://github.com/rubygems/rubygems/pull/4662) by nobu
|
654
674
|
* Simplify setup.rb code to allow installing rubygems from source on
|
655
|
-
truffleruby 21.0 and 21.1. Pull request #4624 by deivid-rodriguez
|
675
|
+
truffleruby 21.0 and 21.1. Pull request [#4624](https://github.com/rubygems/rubygems/pull/4624) by deivid-rodriguez
|
656
676
|
* Install bundler 2.2.21 as a default gem.
|
657
677
|
|
658
678
|
## Bug fixes:
|
659
679
|
|
660
680
|
* Create credentials folder when setting API keys if not there yet. Pull
|
661
|
-
request #4665 by deivid-rodriguez
|
681
|
+
request [#4665](https://github.com/rubygems/rubygems/pull/4665) by deivid-rodriguez
|
662
682
|
|
663
683
|
# 3.2.20 / 2021-06-11
|
664
684
|
|
665
685
|
## Security fixes:
|
666
686
|
|
667
687
|
* Verify platform before installing to avoid potential remote code
|
668
|
-
execution. Pull request #4667 by sonalkr132
|
688
|
+
execution. Pull request [#4667](https://github.com/rubygems/rubygems/pull/4667) by sonalkr132
|
669
689
|
|
670
690
|
## Enhancements:
|
671
691
|
|
672
|
-
* Add better specification policy error description. Pull request #4658 by
|
692
|
+
* Add better specification policy error description. Pull request [#4658](https://github.com/rubygems/rubygems/pull/4658) by
|
673
693
|
ceritium
|
674
694
|
* Install bundler 2.2.20 as a default gem.
|
675
695
|
|
@@ -677,7 +697,7 @@
|
|
677
697
|
|
678
698
|
## Enhancements:
|
679
699
|
|
680
|
-
* Fix `gem help build` output format. Pull request #4613 by tnir
|
700
|
+
* Fix `gem help build` output format. Pull request [#4613](https://github.com/rubygems/rubygems/pull/4613) by tnir
|
681
701
|
* Install bundler 2.2.19 as a default gem.
|
682
702
|
|
683
703
|
# 3.2.18 / 2021-05-25
|
@@ -685,25 +705,25 @@
|
|
685
705
|
## Enhancements:
|
686
706
|
|
687
707
|
* Don't leave temporary directory around when building extensions to
|
688
|
-
improve build reproducibility. Pull request #4610 by baloo
|
708
|
+
improve build reproducibility. Pull request [#4610](https://github.com/rubygems/rubygems/pull/4610) by baloo
|
689
709
|
* Install bundler 2.2.18 as a default gem.
|
690
710
|
|
691
711
|
# 3.2.17 / 2021-05-05
|
692
712
|
|
693
713
|
## Enhancements:
|
694
714
|
|
695
|
-
* Only print month & year in deprecation messages. Pull request #3085 by
|
715
|
+
* Only print month & year in deprecation messages. Pull request [#3085](https://github.com/rubygems/rubygems/pull/3085) by
|
696
716
|
Schwad
|
697
717
|
* Make deprecate method support ruby3's keyword arguments. Pull request
|
698
|
-
#4558 by mame
|
699
|
-
* Update the default bindir on macOS. Pull request #4524 by nobu
|
700
|
-
* Prefer File.open instead of Kernel#open. Pull request #4529 by mame
|
718
|
+
[#4558](https://github.com/rubygems/rubygems/pull/4558) by mame
|
719
|
+
* Update the default bindir on macOS. Pull request [#4524](https://github.com/rubygems/rubygems/pull/4524) by nobu
|
720
|
+
* Prefer File.open instead of Kernel#open. Pull request [#4529](https://github.com/rubygems/rubygems/pull/4529) by mame
|
701
721
|
* Install bundler 2.2.17 as a default gem.
|
702
722
|
|
703
723
|
## Documentation:
|
704
724
|
|
705
725
|
* Fix usage messages to reflect the current POSIX-compatible behaviour.
|
706
|
-
Pull request #4551 by graywolf-at-work
|
726
|
+
Pull request [#4551](https://github.com/rubygems/rubygems/pull/4551) by graywolf-at-work
|
707
727
|
|
708
728
|
# 3.2.16 / 2021-04-08
|
709
729
|
|
@@ -713,31 +733,31 @@
|
|
713
733
|
|
714
734
|
## Bug fixes:
|
715
735
|
|
716
|
-
* Correctly handle symlinks. Pull request #2836 by voxik
|
736
|
+
* Correctly handle symlinks. Pull request [#2836](https://github.com/rubygems/rubygems/pull/2836) by voxik
|
717
737
|
|
718
738
|
# 3.2.15 / 2021-03-19
|
719
739
|
|
720
740
|
## Enhancements:
|
721
741
|
|
722
|
-
* Prevent downgrades to untested rubygems versions. Pull request #4460 by
|
742
|
+
* Prevent downgrades to untested rubygems versions. Pull request [#4460](https://github.com/rubygems/rubygems/pull/4460) by
|
723
743
|
deivid-rodriguez
|
724
744
|
* Install bundler 2.2.15 as a default gem.
|
725
745
|
|
726
746
|
## Bug fixes:
|
727
747
|
|
728
|
-
* Fix missing require breaking `gem cert`. Pull request #4464 by lukehinds
|
748
|
+
* Fix missing require breaking `gem cert`. Pull request [#4464](https://github.com/rubygems/rubygems/pull/4464) by lukehinds
|
729
749
|
|
730
750
|
# 3.2.14 / 2021-03-08
|
731
751
|
|
732
752
|
## Enhancements:
|
733
753
|
|
734
|
-
* Less wrapping of network errors. Pull request #4064 by deivid-rodriguez
|
754
|
+
* Less wrapping of network errors. Pull request [#4064](https://github.com/rubygems/rubygems/pull/4064) by deivid-rodriguez
|
735
755
|
* Install bundler 2.2.14 as a default gem.
|
736
756
|
|
737
757
|
## Bug fixes:
|
738
758
|
|
739
759
|
* Revert addition of support for `musl` variants to restore graceful
|
740
|
-
fallback on Alpine. Pull request #4434 by deivid-rodriguez
|
760
|
+
fallback on Alpine. Pull request [#4434](https://github.com/rubygems/rubygems/pull/4434) by deivid-rodriguez
|
741
761
|
|
742
762
|
# 3.2.13 / 2021-03-03
|
743
763
|
|
@@ -747,7 +767,7 @@
|
|
747
767
|
|
748
768
|
## Bug fixes:
|
749
769
|
|
750
|
-
* Support non-gnu libc linux platforms. Pull request #4082 by lloeki
|
770
|
+
* Support non-gnu libc linux platforms. Pull request [#4082](https://github.com/rubygems/rubygems/pull/4082) by lloeki
|
751
771
|
|
752
772
|
# 3.2.12 / 2021-03-01
|
753
773
|
|
@@ -758,13 +778,13 @@
|
|
758
778
|
## Bug fixes:
|
759
779
|
|
760
780
|
* Restore the ability to manually install extension gems. Pull request
|
761
|
-
#4384 by cfis
|
781
|
+
[#4384](https://github.com/rubygems/rubygems/pull/4384) by cfis
|
762
782
|
|
763
783
|
# 3.2.11 / 2021-02-17
|
764
784
|
|
765
785
|
## Enhancements:
|
766
786
|
|
767
|
-
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request #2662
|
787
|
+
* Optionally fallback to IPv4 when IPv6 is unreachable. Pull request [#2662](https://github.com/rubygems/rubygems/pull/2662)
|
768
788
|
by sonalkr132
|
769
789
|
* Install bundler 2.2.11 as a default gem.
|
770
790
|
|
@@ -776,9 +796,9 @@
|
|
776
796
|
|
777
797
|
## Documentation:
|
778
798
|
|
779
|
-
* Add a `gem push` example to `gem help`. Pull request #4373 by
|
799
|
+
* Add a `gem push` example to `gem help`. Pull request [#4373](https://github.com/rubygems/rubygems/pull/4373) by
|
780
800
|
deivid-rodriguez
|
781
|
-
* Improve documentation for `required_ruby_version`. Pull request #4343 by
|
801
|
+
* Improve documentation for `required_ruby_version`. Pull request [#4343](https://github.com/rubygems/rubygems/pull/4343) by
|
782
802
|
AlexWayfer
|
783
803
|
|
784
804
|
# 3.2.9 / 2021-02-08
|
@@ -790,13 +810,13 @@
|
|
790
810
|
## Bug fixes:
|
791
811
|
|
792
812
|
* Fix error message when underscore selection can't find bundler. Pull
|
793
|
-
request #4363 by deivid-rodriguez
|
813
|
+
request [#4363](https://github.com/rubygems/rubygems/pull/4363) by deivid-rodriguez
|
794
814
|
* Fix `Gem::Specification.stubs_for` returning wrong named specs. Pull
|
795
|
-
request #4356 by tompng
|
815
|
+
request [#4356](https://github.com/rubygems/rubygems/pull/4356) by tompng
|
796
816
|
* Don't error out when activating a binstub unless necessary. Pull request
|
797
|
-
#4351 by deivid-rodriguez
|
817
|
+
[#4351](https://github.com/rubygems/rubygems/pull/4351) by deivid-rodriguez
|
798
818
|
* Fix `gem outdated` incorrectly handling platform specific gems. Pull
|
799
|
-
request #4248 by deivid-rodriguez
|
819
|
+
request [#4248](https://github.com/rubygems/rubygems/pull/4248) by deivid-rodriguez
|
800
820
|
|
801
821
|
# 3.2.8 / 2021-02-02
|
802
822
|
|
@@ -807,7 +827,7 @@
|
|
807
827
|
## Bug fixes:
|
808
828
|
|
809
829
|
* Fix `gem install` crashing on gemspec with nil required_ruby_version.
|
810
|
-
Pull request #4334 by pbernays
|
830
|
+
Pull request [#4334](https://github.com/rubygems/rubygems/pull/4334) by pbernays
|
811
831
|
|
812
832
|
# 3.2.7 / 2021-01-26
|
813
833
|
|
@@ -817,7 +837,7 @@
|
|
817
837
|
|
818
838
|
## Bug fixes:
|
819
839
|
|
820
|
-
* Generate plugin wrappers with relative requires. Pull request #4317 by
|
840
|
+
* Generate plugin wrappers with relative requires. Pull request [#4317](https://github.com/rubygems/rubygems/pull/4317) by
|
821
841
|
deivid-rodriguez
|
822
842
|
|
823
843
|
# 3.2.6 / 2021-01-18
|
@@ -825,15 +845,15 @@
|
|
825
845
|
## Enhancements:
|
826
846
|
|
827
847
|
* Fix `Gem::Platform#inspect` showing duplicate information. Pull request
|
828
|
-
#4276 by deivid-rodriguez
|
848
|
+
[#4276](https://github.com/rubygems/rubygems/pull/4276) by deivid-rodriguez
|
829
849
|
* Install bundler 2.2.6 as a default gem.
|
830
850
|
|
831
851
|
## Bug fixes:
|
832
852
|
|
833
853
|
* Swallow any system call error in `ensure_gem_subdirs` to support jruby
|
834
|
-
embedded paths. Pull request #4291 by kares
|
854
|
+
embedded paths. Pull request [#4291](https://github.com/rubygems/rubygems/pull/4291) by kares
|
835
855
|
* Restore accepting custom make command with extra options as the `make`
|
836
|
-
env variable. Pull request #4271 by terceiro
|
856
|
+
env variable. Pull request [#4271](https://github.com/rubygems/rubygems/pull/4271) by terceiro
|
837
857
|
|
838
858
|
# 3.2.5 / 2021-01-11
|
839
859
|
|
@@ -844,38 +864,38 @@
|
|
844
864
|
## Bug fixes:
|
845
865
|
|
846
866
|
* Don't load more specs after the whole set of specs has been setup. Pull
|
847
|
-
request #4262 by deivid-rodriguez
|
867
|
+
request [#4262](https://github.com/rubygems/rubygems/pull/4262) by deivid-rodriguez
|
848
868
|
* Fix broken `bundler` executable after `gem update --system`. Pull
|
849
|
-
request #4221 by deivid-rodriguez
|
869
|
+
request [#4221](https://github.com/rubygems/rubygems/pull/4221) by deivid-rodriguez
|
850
870
|
|
851
871
|
# 3.2.4 / 2020-12-31
|
852
872
|
|
853
873
|
## Enhancements:
|
854
874
|
|
855
|
-
* Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
|
875
|
+
* Use a CHANGELOG in markdown for rubygems. Pull request [#4168](https://github.com/rubygems/rubygems/pull/4168) by
|
856
876
|
deivid-rodriguez
|
857
|
-
* Never spawn subshells when building extensions. Pull request #4190 by
|
877
|
+
* Never spawn subshells when building extensions. Pull request [#4190](https://github.com/rubygems/rubygems/pull/4190) by
|
858
878
|
deivid-rodriguez
|
859
879
|
* Install bundler 2.2.4 as a default gem.
|
860
880
|
|
861
881
|
## Bug fixes:
|
862
882
|
|
863
883
|
* Fix fallback to the old index and installation from it not working. Pull
|
864
|
-
request #4213 by deivid-rodriguez
|
865
|
-
* Fix installing from source on truffleruby. Pull request #4201 by
|
884
|
+
request [#4213](https://github.com/rubygems/rubygems/pull/4213) by deivid-rodriguez
|
885
|
+
* Fix installing from source on truffleruby. Pull request [#4201](https://github.com/rubygems/rubygems/pull/4201) by
|
866
886
|
deivid-rodriguez
|
867
887
|
|
868
888
|
# 3.2.3 / 2020-12-22
|
869
889
|
|
870
890
|
## Enhancements:
|
871
891
|
|
872
|
-
* Fix misspellings in default API key name. Pull request #4177 by hsbt
|
892
|
+
* Fix misspellings in default API key name. Pull request [#4177](https://github.com/rubygems/rubygems/pull/4177) by hsbt
|
873
893
|
* Install bundler 2.2.3 as a default gem.
|
874
894
|
|
875
895
|
## Bug fixes:
|
876
896
|
|
877
897
|
* Respect `required_ruby_version` and `required_rubygems_version`
|
878
|
-
constraints when looking for `gem install` candidates. Pull request #4110
|
898
|
+
constraints when looking for `gem install` candidates. Pull request [#4110](https://github.com/rubygems/rubygems/pull/4110)
|
879
899
|
by deivid-rodriguez
|
880
900
|
|
881
901
|
# 3.2.2 / 2020-12-17
|
@@ -888,560 +908,560 @@
|
|
888
908
|
|
889
909
|
* Fix issue where CLI commands making more than one request to
|
890
910
|
rubygems.org needing an OTP code would crash or ask for the code twice.
|
891
|
-
Pull request #4162 by sonalkr132
|
892
|
-
* Fix building rake extensions that require openssl. Pull request #4165 by
|
911
|
+
Pull request [#4162](https://github.com/rubygems/rubygems/pull/4162) by sonalkr132
|
912
|
+
* Fix building rake extensions that require openssl. Pull request [#4165](https://github.com/rubygems/rubygems/pull/4165) by
|
893
913
|
deivid-rodriguez
|
894
914
|
* Fix `gem update --system` displaying too many changelog entries. Pull
|
895
|
-
request #4145 by deivid-rodriguez
|
915
|
+
request [#4145](https://github.com/rubygems/rubygems/pull/4145) by deivid-rodriguez
|
896
916
|
|
897
917
|
# 3.2.1 / 2020-12-14
|
898
918
|
|
899
919
|
## Enhancements:
|
900
920
|
|
901
921
|
* Added help message for gem i webrick in gem server command. Pull request
|
902
|
-
#4117 by hsbt
|
922
|
+
[#4117](https://github.com/rubygems/rubygems/pull/4117) by hsbt
|
903
923
|
* Install bundler 2.2.1 as a default gem.
|
904
924
|
|
905
925
|
## Bug fixes:
|
906
926
|
|
907
927
|
* Added the missing loading of fileutils same as load_specs. Pull request
|
908
|
-
#4124 by hsbt
|
928
|
+
[#4124](https://github.com/rubygems/rubygems/pull/4124) by hsbt
|
909
929
|
* Fix Resolver::APISet to always include prereleases when necessary. Pull
|
910
|
-
request #4113 by deivid-rodriguez
|
930
|
+
request [#4113](https://github.com/rubygems/rubygems/pull/4113) by deivid-rodriguez
|
911
931
|
|
912
932
|
# 3.2.0 / 2020-12-07
|
913
933
|
|
914
934
|
## Enhancements:
|
915
935
|
|
916
|
-
* Do not override Kernel#warn when there is no need. Pull request #4075 by
|
936
|
+
* Do not override Kernel#warn when there is no need. Pull request [#4075](https://github.com/rubygems/rubygems/pull/4075) by
|
917
937
|
eregon
|
918
|
-
* Update endpoint of gem signin command. Pull request #3840 by sonalkr132
|
919
|
-
* Omit deprecated commands from command help output. Pull request #4023 by
|
938
|
+
* Update endpoint of gem signin command. Pull request [#3840](https://github.com/rubygems/rubygems/pull/3840) by sonalkr132
|
939
|
+
* Omit deprecated commands from command help output. Pull request [#4023](https://github.com/rubygems/rubygems/pull/4023) by
|
920
940
|
landongrindheim
|
921
|
-
* Suggest alternatives in `gem query` deprecation. Pull request #4021 by
|
941
|
+
* Suggest alternatives in `gem query` deprecation. Pull request [#4021](https://github.com/rubygems/rubygems/pull/4021) by
|
922
942
|
landongrindheim
|
923
|
-
* Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
|
943
|
+
* Lazily load `time`, `cgi`, and `zlib`. Pull request [#4010](https://github.com/rubygems/rubygems/pull/4010) by
|
924
944
|
deivid-rodriguez
|
925
945
|
* Don't hit the network when installing dependencyless local gemspec. Pull
|
926
|
-
request #3968 by deivid-rodriguez
|
927
|
-
* Add `--force` option to `gem sources` command. Pull request #3956 by
|
946
|
+
request [#3968](https://github.com/rubygems/rubygems/pull/3968) by deivid-rodriguez
|
947
|
+
* Add `--force` option to `gem sources` command. Pull request [#3956](https://github.com/rubygems/rubygems/pull/3956) by
|
928
948
|
andy-smith-msm
|
929
|
-
* Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
|
930
|
-
* Pass more information when comparing platforms. Pull request #3817 by
|
949
|
+
* Lazily load `openssl`. Pull request [#3850](https://github.com/rubygems/rubygems/pull/3850) by deivid-rodriguez
|
950
|
+
* Pass more information when comparing platforms. Pull request [#3817](https://github.com/rubygems/rubygems/pull/3817) by
|
931
951
|
eregon
|
932
952
|
* Install bundler 2.2.0 as a default gem.
|
933
953
|
|
934
954
|
## Bug fixes:
|
935
955
|
|
936
956
|
* Use better owner & group for files in rubygems package. Pull request
|
937
|
-
#4065 by deivid-rodriguez
|
938
|
-
* Improve gem build -C flag. Pull request #3983 by bronzdoc
|
957
|
+
[#4065](https://github.com/rubygems/rubygems/pull/4065) by deivid-rodriguez
|
958
|
+
* Improve gem build -C flag. Pull request [#3983](https://github.com/rubygems/rubygems/pull/3983) by bronzdoc
|
939
959
|
* Handle unexpected behavior with URI#merge and subpaths missing trailing
|
940
|
-
slashes. Pull request #3123 by drcapulet
|
960
|
+
slashes. Pull request [#3123](https://github.com/rubygems/rubygems/pull/3123) by drcapulet
|
941
961
|
* Add missing `fileutils` require in rubygems installer. Pull request
|
942
|
-
#4036 by deivid-rodriguez
|
962
|
+
[#4036](https://github.com/rubygems/rubygems/pull/4036) by deivid-rodriguez
|
943
963
|
* Fix `--platform` option to `gem specification` being ignored. Pull
|
944
|
-
request #4043 by deivid-rodriguez
|
964
|
+
request [#4043](https://github.com/rubygems/rubygems/pull/4043) by deivid-rodriguez
|
945
965
|
* Expose `--no-minimal-deps` flag to install the latest version of
|
946
|
-
dependencies. Pull request #4030 by deivid-rodriguez
|
966
|
+
dependencies. Pull request [#4030](https://github.com/rubygems/rubygems/pull/4030) by deivid-rodriguez
|
947
967
|
* Fix "stack level too deep" error when overriding `Warning.warn`. Pull
|
948
|
-
request #3987 by eregon
|
968
|
+
request [#3987](https://github.com/rubygems/rubygems/pull/3987) by eregon
|
949
969
|
* Append '.gemspec' extension only when it is not present. Pull request
|
950
|
-
#3988 by voxik
|
970
|
+
[#3988](https://github.com/rubygems/rubygems/pull/3988) by voxik
|
951
971
|
* Install to correct plugins dir when using `--build-root`. Pull request
|
952
|
-
#3972 by deivid-rodriguez
|
953
|
-
* Fix `--build-root` flag under Windows. Pull request #3975 by
|
972
|
+
[#3972](https://github.com/rubygems/rubygems/pull/3972) by deivid-rodriguez
|
973
|
+
* Fix `--build-root` flag under Windows. Pull request [#3975](https://github.com/rubygems/rubygems/pull/3975) by
|
954
974
|
deivid-rodriguez
|
955
975
|
* Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
|
956
|
-
request #3951 by andy-smith-msm
|
976
|
+
request [#3951](https://github.com/rubygems/rubygems/pull/3951) by andy-smith-msm
|
957
977
|
* Make `--default` and `--install-dir` options to `gem install` play nice
|
958
|
-
together. Pull request #3906 by deivid-rodriguez
|
978
|
+
together. Pull request [#3906](https://github.com/rubygems/rubygems/pull/3906) by deivid-rodriguez
|
959
979
|
|
960
980
|
## Deprecations:
|
961
981
|
|
962
|
-
* Deprecate server command. Pull request #3868 by bronzdoc
|
982
|
+
* Deprecate server command. Pull request [#3868](https://github.com/rubygems/rubygems/pull/3868) by bronzdoc
|
963
983
|
|
964
984
|
## Performance:
|
965
985
|
|
966
986
|
* Don't change ruby process CWD when building extensions. Pull request
|
967
|
-
#3498 by deivid-rodriguez
|
987
|
+
[#3498](https://github.com/rubygems/rubygems/pull/3498) by deivid-rodriguez
|
968
988
|
|
969
989
|
# 3.2.0.rc.2 / 2020-10-08
|
970
990
|
|
971
991
|
## Enhancements:
|
972
992
|
|
973
993
|
* Make --dry-run flag consistent across rubygems commands. Pull request
|
974
|
-
#3867 by bronzdoc
|
975
|
-
* Disallow downgrades to too old versions. Pull request #3566 by
|
994
|
+
[#3867](https://github.com/rubygems/rubygems/pull/3867) by bronzdoc
|
995
|
+
* Disallow downgrades to too old versions. Pull request [#3566](https://github.com/rubygems/rubygems/pull/3566) by
|
976
996
|
deivid-rodriguez
|
977
|
-
* Added `--platform` option to `build` command. Pull request #3079 by nobu
|
997
|
+
* Added `--platform` option to `build` command. Pull request [#3079](https://github.com/rubygems/rubygems/pull/3079) by nobu
|
978
998
|
* Have "gem update --system" pass through the `--silent` flag. Pull
|
979
|
-
request #3789 by duckinator
|
980
|
-
* Add writable check for cache dir. Pull request #3876 by xndcn
|
981
|
-
* Warn on duplicate dependency in a specification. Pull request #3864 by
|
999
|
+
request [#3789](https://github.com/rubygems/rubygems/pull/3789) by duckinator
|
1000
|
+
* Add writable check for cache dir. Pull request [#3876](https://github.com/rubygems/rubygems/pull/3876) by xndcn
|
1001
|
+
* Warn on duplicate dependency in a specification. Pull request [#3864](https://github.com/rubygems/rubygems/pull/3864) by
|
982
1002
|
bronzdoc
|
983
|
-
* Fix indentation in `gem env`. Pull request #3861 by colby-swandale
|
984
|
-
* Let more exceptions flow. Pull request #3819 by deivid-rodriguez
|
985
|
-
* Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
|
1003
|
+
* Fix indentation in `gem env`. Pull request [#3861](https://github.com/rubygems/rubygems/pull/3861) by colby-swandale
|
1004
|
+
* Let more exceptions flow. Pull request [#3819](https://github.com/rubygems/rubygems/pull/3819) by deivid-rodriguez
|
1005
|
+
* Ignore internal frames in RubyGems' Kernel#warn. Pull request [#3810](https://github.com/rubygems/rubygems/pull/3810) by
|
986
1006
|
eregon
|
987
1007
|
|
988
1008
|
## Bug fixes:
|
989
1009
|
|
990
|
-
* Add missing fileutils require. Pull request #3911 by deivid-rodriguez
|
1010
|
+
* Add missing fileutils require. Pull request [#3911](https://github.com/rubygems/rubygems/pull/3911) by deivid-rodriguez
|
991
1011
|
* Fix false positive warning on Windows when PATH has
|
992
|
-
`File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
|
1012
|
+
`File::ALT_SEPARATOR`. Pull request [#3829](https://github.com/rubygems/rubygems/pull/3829) by deivid-rodriguez
|
993
1013
|
* Fix Kernel#warn override to handle backtrace location with nil path.
|
994
|
-
Pull request #3852 by jeremyevans
|
995
|
-
* Don't format executables on `gem update --system`. Pull request #3811 by
|
1014
|
+
Pull request [#3852](https://github.com/rubygems/rubygems/pull/3852) by jeremyevans
|
1015
|
+
* Don't format executables on `gem update --system`. Pull request [#3811](https://github.com/rubygems/rubygems/pull/3811) by
|
996
1016
|
deivid-rodriguez
|
997
1017
|
* `gem install --user` fails with `Gem::FilePermissionError` on the system
|
998
|
-
plugins directory. Pull request #3804 by nobu
|
1018
|
+
plugins directory. Pull request [#3804](https://github.com/rubygems/rubygems/pull/3804) by nobu
|
999
1019
|
|
1000
1020
|
## Performance:
|
1001
1021
|
|
1002
1022
|
* Avoid duplicated generation of APISpecification objects. Pull request
|
1003
|
-
#3940 by mame
|
1004
|
-
* Eval defaults with frozen_string_literal: true. Pull request #3847 by
|
1023
|
+
[#3940](https://github.com/rubygems/rubygems/pull/3940) by mame
|
1024
|
+
* Eval defaults with frozen_string_literal: true. Pull request [#3847](https://github.com/rubygems/rubygems/pull/3847) by
|
1005
1025
|
casperisfine
|
1006
|
-
* Deduplicate the requirement operators in memory. Pull request #3846 by
|
1026
|
+
* Deduplicate the requirement operators in memory. Pull request [#3846](https://github.com/rubygems/rubygems/pull/3846) by
|
1007
1027
|
casperisfine
|
1008
|
-
* Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
|
1028
|
+
* Optimize Gem.already_loaded?. Pull request [#3793](https://github.com/rubygems/rubygems/pull/3793) by casperisfine
|
1009
1029
|
|
1010
1030
|
# 3.2.0.rc.1 / 2020-07-04
|
1011
1031
|
|
1012
1032
|
## Enhancements:
|
1013
1033
|
|
1014
|
-
* Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
|
1015
|
-
* Rework plugins system and speed up rubygems. Pull request #3108 by David
|
1034
|
+
* Test TruffleRuby in CI. Pull request [#2797](https://github.com/rubygems/rubygems/pull/2797) by Benoit Daloze.
|
1035
|
+
* Rework plugins system and speed up rubygems. Pull request [#3108](https://github.com/rubygems/rubygems/pull/3108) by David
|
1016
1036
|
Rodríguez.
|
1017
|
-
* Specify explicit separator not to be affected by $;. Pull request #3424
|
1037
|
+
* Specify explicit separator not to be affected by $;. Pull request [#3424](https://github.com/rubygems/rubygems/pull/3424)
|
1018
1038
|
by Nobuyoshi Nakada.
|
1019
|
-
* Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
|
1020
|
-
* Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
|
1021
|
-
* Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
|
1022
|
-
* Log messages to stdout in `rake package`. Pull request #3632 by David
|
1039
|
+
* Enable `Layout/ExtraSpacing` cop. Pull request [#3449](https://github.com/rubygems/rubygems/pull/3449) by David Rodríguez.
|
1040
|
+
* Rollback gem deprecate. Pull request [#3530](https://github.com/rubygems/rubygems/pull/3530) by Luis Sagastume.
|
1041
|
+
* Normalize heredoc delimiters. Pull request [#3533](https://github.com/rubygems/rubygems/pull/3533) by David Rodríguez.
|
1042
|
+
* Log messages to stdout in `rake package`. Pull request [#3632](https://github.com/rubygems/rubygems/pull/3632) by David
|
1023
1043
|
Rodríguez.
|
1024
|
-
* Remove explicit `psych` activation. Pull request #3636 by David
|
1044
|
+
* Remove explicit `psych` activation. Pull request [#3636](https://github.com/rubygems/rubygems/pull/3636) by David
|
1025
1045
|
Rodríguez.
|
1026
|
-
* Delay `fileutils` loading to fix some warnings. Pull request #3637 by
|
1046
|
+
* Delay `fileutils` loading to fix some warnings. Pull request [#3637](https://github.com/rubygems/rubygems/pull/3637) by
|
1027
1047
|
David Rodríguez.
|
1028
1048
|
* Make sure rubygems/package can be directly required reliably. Pull
|
1029
|
-
request #3670 by Luis Sagastume.
|
1049
|
+
request [#3670](https://github.com/rubygems/rubygems/pull/3670) by Luis Sagastume.
|
1030
1050
|
* Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
|
1031
|
-
#3711 by David Rodríguez.
|
1051
|
+
[#3711](https://github.com/rubygems/rubygems/pull/3711) by David Rodríguez.
|
1032
1052
|
* Add Gem.disable_system_update_message to disable gem update --system if
|
1033
|
-
needed. Pull request #3720 by Josef Šimánek.
|
1034
|
-
* Tweaks to play nice with ruby-core setup. Pull request #3733 by David
|
1053
|
+
needed. Pull request [#3720](https://github.com/rubygems/rubygems/pull/3720) by Josef Šimánek.
|
1054
|
+
* Tweaks to play nice with ruby-core setup. Pull request [#3733](https://github.com/rubygems/rubygems/pull/3733) by David
|
1035
1055
|
Rodríguez.
|
1036
|
-
* Remove explicit require for auto-loaded constant. Pull request #3751 by
|
1056
|
+
* Remove explicit require for auto-loaded constant. Pull request [#3751](https://github.com/rubygems/rubygems/pull/3751) by
|
1037
1057
|
Karol Bucek.
|
1038
|
-
* Test files should not be included in spec.files. Pull request #3758 by
|
1058
|
+
* Test files should not be included in spec.files. Pull request [#3758](https://github.com/rubygems/rubygems/pull/3758) by
|
1039
1059
|
Marc-André Lafortune.
|
1040
1060
|
* Remove TODO comment about warning on setting instead of pushing. Pull
|
1041
|
-
request #2823 by Luis Sagastume.
|
1042
|
-
* Add deprecate command method. Pull request #2935 by Luis Sagastume.
|
1043
|
-
* Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
|
1061
|
+
request [#2823](https://github.com/rubygems/rubygems/pull/2823) by Luis Sagastume.
|
1062
|
+
* Add deprecate command method. Pull request [#2935](https://github.com/rubygems/rubygems/pull/2935) by Luis Sagastume.
|
1063
|
+
* Simplify deprecate command method. Pull request [#2974](https://github.com/rubygems/rubygems/pull/2974) by Luis Sagastume.
|
1044
1064
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
1045
|
-
#2985 by MSP-Greg.
|
1046
|
-
* Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
|
1065
|
+
[#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
|
1066
|
+
* Add `funding_uri ` metadata field to gemspec. Pull request [#3060](https://github.com/rubygems/rubygems/pull/3060) by
|
1047
1067
|
Colby Swandale.
|
1048
|
-
* Updates to some old gem-signing docs. Pull request #3063 by Tieg
|
1068
|
+
* Updates to some old gem-signing docs. Pull request [#3063](https://github.com/rubygems/rubygems/pull/3063) by Tieg
|
1049
1069
|
Zaharia.
|
1050
|
-
* Update the gem method for Gem::Installer. Pull request #3137 by Daniel
|
1070
|
+
* Update the gem method for Gem::Installer. Pull request [#3137](https://github.com/rubygems/rubygems/pull/3137) by Daniel
|
1051
1071
|
Berger.
|
1052
|
-
* Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
|
1053
|
-
* Resolve latest version via `gem contents`. Pull request #3149 by Dan
|
1072
|
+
* Simplify initial gem help output. Pull request [#3148](https://github.com/rubygems/rubygems/pull/3148) by Olivier Lacan.
|
1073
|
+
* Resolve latest version via `gem contents`. Pull request [#3149](https://github.com/rubygems/rubygems/pull/3149) by Dan
|
1054
1074
|
Rice.
|
1055
|
-
* Install suggestions. Pull request #3151 by Sophia Castellarin.
|
1056
|
-
* Only rescue the errors we actually want to rescue. Pull request #3156 by
|
1075
|
+
* Install suggestions. Pull request [#3151](https://github.com/rubygems/rubygems/pull/3151) by Sophia Castellarin.
|
1076
|
+
* Only rescue the errors we actually want to rescue. Pull request [#3156](https://github.com/rubygems/rubygems/pull/3156) by
|
1057
1077
|
David Rodríguez.
|
1058
1078
|
|
1059
1079
|
## Bug fixes:
|
1060
1080
|
|
1061
1081
|
* Accept not only /usr/bin/env but also /bin/env in some tests. Pull
|
1062
|
-
request #3422 by Yusuke Endoh.
|
1082
|
+
request [#3422](https://github.com/rubygems/rubygems/pull/3422) by Yusuke Endoh.
|
1063
1083
|
* Skip a test that attempts to remove the current directory on Solaris.
|
1064
|
-
Pull request #3423 by Yusuke Endoh.
|
1065
|
-
* Fix race condition on bundler's parallel installer. Pull request #3440
|
1084
|
+
Pull request [#3423](https://github.com/rubygems/rubygems/pull/3423) by Yusuke Endoh.
|
1085
|
+
* Fix race condition on bundler's parallel installer. Pull request [#3440](https://github.com/rubygems/rubygems/pull/3440)
|
1066
1086
|
by David Rodríguez.
|
1067
1087
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
1068
|
-
request #3495 by Benoit Daloze.
|
1069
|
-
* Improve missing spec error. Pull request #3559 by Luis Sagastume.
|
1088
|
+
request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
|
1089
|
+
* Improve missing spec error. Pull request [#3559](https://github.com/rubygems/rubygems/pull/3559) by Luis Sagastume.
|
1070
1090
|
* Fix hidden bundler template installation from rubygems updater. Pull
|
1071
|
-
request #3674 by David Rodríguez.
|
1072
|
-
* Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
|
1091
|
+
request [#3674](https://github.com/rubygems/rubygems/pull/3674) by David Rodríguez.
|
1092
|
+
* Fix gem update --user-install. Pull request [#2901](https://github.com/rubygems/rubygems/pull/2901) by Luis Sagastume.
|
1073
1093
|
* Correct conflict list when uninstallation is prevented. Pull request
|
1074
|
-
#2973 by David Rodríguez.
|
1094
|
+
[#2973](https://github.com/rubygems/rubygems/pull/2973) by David Rodríguez.
|
1075
1095
|
* Fix error when trying to find bundler with a deleted "working directo….
|
1076
|
-
Pull request #3090 by Luis Sagastume.
|
1077
|
-
* Fix -I require priority. Pull request #3124 by David Rodríguez.
|
1078
|
-
* Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
|
1096
|
+
Pull request [#3090](https://github.com/rubygems/rubygems/pull/3090) by Luis Sagastume.
|
1097
|
+
* Fix -I require priority. Pull request [#3124](https://github.com/rubygems/rubygems/pull/3124) by David Rodríguez.
|
1098
|
+
* Fix `ruby setup.rb` for new plugins layout. Pull request [#3144](https://github.com/rubygems/rubygems/pull/3144) by David
|
1079
1099
|
Rodríguez.
|
1080
1100
|
|
1081
1101
|
## Deprecations:
|
1082
1102
|
|
1083
|
-
* Set deprecation warning on query command. Pull request #2967 by Luis
|
1103
|
+
* Set deprecation warning on query command. Pull request [#2967](https://github.com/rubygems/rubygems/pull/2967) by Luis
|
1084
1104
|
Sagastume.
|
1085
1105
|
|
1086
1106
|
## Breaking changes:
|
1087
1107
|
|
1088
|
-
* Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
|
1089
|
-
* Minitest cleanup. Pull request #3445 by David Rodríguez.
|
1108
|
+
* Remove ruby 1.8 leftovers. Pull request [#3442](https://github.com/rubygems/rubygems/pull/3442) by David Rodríguez.
|
1109
|
+
* Minitest cleanup. Pull request [#3445](https://github.com/rubygems/rubygems/pull/3445) by David Rodríguez.
|
1090
1110
|
* Remove `builder` gem requirement for `gem regenerate_index`. Pull
|
1091
|
-
request #3552 by David Rodríguez.
|
1092
|
-
* Remove modelines for consistency. Pull request #3714 by David Rodríguez.
|
1093
|
-
* Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
|
1111
|
+
request [#3552](https://github.com/rubygems/rubygems/pull/3552) by David Rodríguez.
|
1112
|
+
* Remove modelines for consistency. Pull request [#3714](https://github.com/rubygems/rubygems/pull/3714) by David Rodríguez.
|
1113
|
+
* Stop using deprecated OpenSSL::Digest constants. Pull request [#3763](https://github.com/rubygems/rubygems/pull/3763) by
|
1094
1114
|
Bart de Water.
|
1095
|
-
* Remove Gem module deprecated methods. Pull request #3101 by Luis
|
1115
|
+
* Remove Gem module deprecated methods. Pull request [#3101](https://github.com/rubygems/rubygems/pull/3101) by Luis
|
1096
1116
|
Sagastume.
|
1097
|
-
* Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
|
1098
|
-
* Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
|
1117
|
+
* Remove ubygems.rb. Pull request [#3102](https://github.com/rubygems/rubygems/pull/3102) by Luis Sagastume.
|
1118
|
+
* Remove Gem::Commands::QueryCommand. Pull request [#3104](https://github.com/rubygems/rubygems/pull/3104) by Luis
|
1099
1119
|
Sagastume.
|
1100
|
-
* Remove dependency installer deprecated methods. Pull request #3106 by
|
1120
|
+
* Remove dependency installer deprecated methods. Pull request [#3106](https://github.com/rubygems/rubygems/pull/3106) by
|
1101
1121
|
Luis Sagastume.
|
1102
|
-
* Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
|
1122
|
+
* Remove Gem::UserInteraction#debug method. Pull request [#3107](https://github.com/rubygems/rubygems/pull/3107) by Luis
|
1103
1123
|
Sagastume.
|
1104
|
-
* Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
|
1124
|
+
* Remove options from Gem::GemRunner.new. Pull request [#3110](https://github.com/rubygems/rubygems/pull/3110) by Luis
|
1105
1125
|
Sagastume.
|
1106
|
-
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
|
1126
|
+
* Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request [#3111](https://github.com/rubygems/rubygems/pull/3111) by
|
1107
1127
|
Luis Sagastume.
|
1108
|
-
* Remove source_exception from Gem::Exception. Pull request #3112 by Luis
|
1128
|
+
* Remove source_exception from Gem::Exception. Pull request [#3112](https://github.com/rubygems/rubygems/pull/3112) by Luis
|
1109
1129
|
Sagastume.
|
1110
1130
|
* Requiring rubygems/source_specific_file is deprecated, remove it. Pull
|
1111
|
-
request #3114 by Luis Sagastume.
|
1131
|
+
request [#3114](https://github.com/rubygems/rubygems/pull/3114) by Luis Sagastume.
|
1112
1132
|
|
1113
1133
|
# 3.1.4 / 2020-06-03
|
1114
1134
|
|
1115
1135
|
## Enhancements:
|
1116
1136
|
|
1117
1137
|
* Deprecate rubyforge_project attribute only during build
|
1118
|
-
time. Pull request #3609 by Josef Šimánek.
|
1119
|
-
* Update links. Pull request #3610 by Josef Šimánek.
|
1120
|
-
* Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
|
1121
|
-
* Remove failing ubuntu-rvm CI flow. Pull request #3611 by
|
1138
|
+
time. Pull request [#3609](https://github.com/rubygems/rubygems/pull/3609) by Josef Šimánek.
|
1139
|
+
* Update links. Pull request [#3610](https://github.com/rubygems/rubygems/pull/3610) by Josef Šimánek.
|
1140
|
+
* Run CI at 3.1 branch head as well. Pull request [#3677](https://github.com/rubygems/rubygems/pull/3677) by Josef Šimánek.
|
1141
|
+
* Remove failing ubuntu-rvm CI flow. Pull request [#3611](https://github.com/rubygems/rubygems/pull/3611) by
|
1122
1142
|
Josef Šimánek.
|
1123
1143
|
|
1124
1144
|
# 3.1.3 / 2020-05-05
|
1125
1145
|
|
1126
1146
|
## Enhancements:
|
1127
1147
|
|
1128
|
-
* Resolver: require NameTuple before use. Pull request #3171 by Olle
|
1148
|
+
* Resolver: require NameTuple before use. Pull request [#3171](https://github.com/rubygems/rubygems/pull/3171) by Olle
|
1129
1149
|
Jonsson.
|
1130
|
-
* Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
|
1131
|
-
* Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
|
1150
|
+
* Use absolute paths with autoload. Pull request [#3100](https://github.com/rubygems/rubygems/pull/3100) by David Rodríguez.
|
1151
|
+
* Avoid changing $SOURCE_DATE_EPOCH. Pull request [#3088](https://github.com/rubygems/rubygems/pull/3088) by Ellen Marie
|
1132
1152
|
Dash.
|
1133
|
-
* Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
|
1153
|
+
* Use Bundler 2.1.4. Pull request [#3072](https://github.com/rubygems/rubygems/pull/3072) by Hiroshi SHIBATA.
|
1134
1154
|
* Add tests to check if Gem.ruby_version works with ruby git master.
|
1135
|
-
Pull request #3049 by Yusuke Endoh.
|
1155
|
+
Pull request [#3049](https://github.com/rubygems/rubygems/pull/3049) by Yusuke Endoh.
|
1136
1156
|
|
1137
1157
|
## Bug fixes:
|
1138
1158
|
|
1139
1159
|
* Fix platform comparison check in #contains_requirable_file?. Pull
|
1140
|
-
request #3495 by Benoit Daloze.
|
1141
|
-
* Improve gzip errors logging. Pull request #3485 by David Rodríguez.
|
1142
|
-
* Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
|
1160
|
+
request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
|
1161
|
+
* Improve gzip errors logging. Pull request [#3485](https://github.com/rubygems/rubygems/pull/3485) by David Rodríguez.
|
1162
|
+
* Fix incorrect `gem uninstall --all` message. Pull request [#3483](https://github.com/rubygems/rubygems/pull/3483) by David
|
1143
1163
|
Rodríguez.
|
1144
|
-
* Fix incorrect bundler version being required. Pull request #3458 by
|
1164
|
+
* Fix incorrect bundler version being required. Pull request [#3458](https://github.com/rubygems/rubygems/pull/3458) by
|
1145
1165
|
David Rodríguez.
|
1146
1166
|
* Fix gem install from a gemdeps file with complex dependencies.
|
1147
|
-
Pull request #3054 by Luis Sagastume.
|
1167
|
+
Pull request [#3054](https://github.com/rubygems/rubygems/pull/3054) by Luis Sagastume.
|
1148
1168
|
|
1149
1169
|
# 3.1.2 / 2019-12-20
|
1150
1170
|
|
1151
1171
|
## Enhancements:
|
1152
1172
|
|
1153
|
-
* Restore non prompting `gem update --system` behavior. Pull request #3040
|
1173
|
+
* Restore non prompting `gem update --system` behavior. Pull request [#3040](https://github.com/rubygems/rubygems/pull/3040)
|
1154
1174
|
by David Rodríguez.
|
1155
|
-
* Show only release notes for new code installed. Pull request #3041 by
|
1175
|
+
* Show only release notes for new code installed. Pull request [#3041](https://github.com/rubygems/rubygems/pull/3041) by
|
1156
1176
|
David Rodríguez.
|
1157
1177
|
* Inform about installed `bundle` executable after `gem update --system`.
|
1158
|
-
Pull request #3042 by David Rodríguez.
|
1159
|
-
* Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
|
1178
|
+
Pull request [#3042](https://github.com/rubygems/rubygems/pull/3042) by David Rodríguez.
|
1179
|
+
* Use Bundler 2.1.2. Pull request [#3043](https://github.com/rubygems/rubygems/pull/3043) by SHIBATA Hiroshi.
|
1160
1180
|
|
1161
1181
|
## Bug fixes:
|
1162
1182
|
|
1163
|
-
* Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
|
1164
|
-
* Fix `gem update --system --force`. Pull request #3035 by David
|
1183
|
+
* Require `uri` in source.rb. Pull request [#3034](https://github.com/rubygems/rubygems/pull/3034) by mihaibuzgau.
|
1184
|
+
* Fix `gem update --system --force`. Pull request [#3035](https://github.com/rubygems/rubygems/pull/3035) by David
|
1165
1185
|
Rodríguez.
|
1166
|
-
* Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
|
1186
|
+
* Move `require uri` to source_list. Pull request [#3038](https://github.com/rubygems/rubygems/pull/3038) by mihaibuzgau.
|
1167
1187
|
|
1168
1188
|
# 3.1.1 / 2019-12-16
|
1169
1189
|
|
1170
1190
|
## Bug fixes:
|
1171
1191
|
|
1172
1192
|
* Vendor Bundler 2.1.0 again. The version of Bundler with
|
1173
|
-
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
|
1193
|
+
RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request [#3029](https://github.com/rubygems/rubygems/pull/3029) by
|
1174
1194
|
SHIBATA Hiroshi.
|
1175
1195
|
|
1176
1196
|
# 3.1.0 / 2019-12-16
|
1177
1197
|
|
1178
1198
|
## Enhancements:
|
1179
1199
|
|
1180
|
-
* Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
|
1181
|
-
* Check for rubygems.org typo squatting sources. Pull request #2999 by
|
1200
|
+
* Vendor bundler 2.1. Pull request [#3028](https://github.com/rubygems/rubygems/pull/3028) by David Rodríguez.
|
1201
|
+
* Check for rubygems.org typo squatting sources. Pull request [#2999](https://github.com/rubygems/rubygems/pull/2999) by
|
1182
1202
|
Luis Sagastume.
|
1183
|
-
* Refactor remote fetcher. Pull request #3017 by David Rodríguez.
|
1184
|
-
* Lazily load `open3`. Pull request #3001 by David Rodríguez.
|
1185
|
-
* Remove `delegate` dependency. Pull request #3002 by David Rodríguez.
|
1186
|
-
* Lazily load `uri`. Pull request #3005 by David Rodríguez.
|
1187
|
-
* Lazily load `rubygems/gem_runner` during tests. Pull request #3009 by
|
1203
|
+
* Refactor remote fetcher. Pull request [#3017](https://github.com/rubygems/rubygems/pull/3017) by David Rodríguez.
|
1204
|
+
* Lazily load `open3`. Pull request [#3001](https://github.com/rubygems/rubygems/pull/3001) by David Rodríguez.
|
1205
|
+
* Remove `delegate` dependency. Pull request [#3002](https://github.com/rubygems/rubygems/pull/3002) by David Rodríguez.
|
1206
|
+
* Lazily load `uri`. Pull request [#3005](https://github.com/rubygems/rubygems/pull/3005) by David Rodríguez.
|
1207
|
+
* Lazily load `rubygems/gem_runner` during tests. Pull request [#3009](https://github.com/rubygems/rubygems/pull/3009) by
|
1188
1208
|
David Rodríguez.
|
1189
|
-
* Use bundler to manage development dependencies. Pull request #3012 by
|
1209
|
+
* Use bundler to manage development dependencies. Pull request [#3012](https://github.com/rubygems/rubygems/pull/3012) by
|
1190
1210
|
David Rodríguez.
|
1191
1211
|
|
1192
1212
|
## Bug fixes:
|
1193
1213
|
|
1194
|
-
* Remove unnecessary executable flags. Pull request #2982 by David
|
1214
|
+
* Remove unnecessary executable flags. Pull request [#2982](https://github.com/rubygems/rubygems/pull/2982) by David
|
1195
1215
|
Rodríguez.
|
1196
|
-
* Remove configuration that contained a typo. Pull request #2989 by David
|
1216
|
+
* Remove configuration that contained a typo. Pull request [#2989](https://github.com/rubygems/rubygems/pull/2989) by David
|
1197
1217
|
Rodríguez.
|
1198
1218
|
|
1199
1219
|
## Deprecations:
|
1200
1220
|
|
1201
1221
|
* Deprecate `gem generate_index --modern` and `gem generate_index
|
1202
|
-
--no-modern`. Pull request #2992 by David Rodríguez.
|
1222
|
+
--no-modern`. Pull request [#2992](https://github.com/rubygems/rubygems/pull/2992) by David Rodríguez.
|
1203
1223
|
|
1204
1224
|
## Breaking changes:
|
1205
1225
|
|
1206
|
-
* Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
|
1226
|
+
* Remove 1.8.7 leftovers. Pull request [#2972](https://github.com/rubygems/rubygems/pull/2972) by David Rodríguez.
|
1207
1227
|
|
1208
1228
|
# 3.1.0.pre3 / 2019-11-11
|
1209
1229
|
|
1210
1230
|
## Enhancements:
|
1211
1231
|
|
1212
1232
|
* Fix gem pristine not accounting for user installed gems. Pull request
|
1213
|
-
#2914 by Luis Sagastume.
|
1214
|
-
* Refactor keyword argument test for Ruby 2.7. Pull request #2947 by
|
1233
|
+
[#2914](https://github.com/rubygems/rubygems/pull/2914) by Luis Sagastume.
|
1234
|
+
* Refactor keyword argument test for Ruby 2.7. Pull request [#2947](https://github.com/rubygems/rubygems/pull/2947) by
|
1215
1235
|
SHIBATA Hiroshi.
|
1216
|
-
* Fix errors at frozen Gem::Version. Pull request #2949 by Nobuyoshi
|
1236
|
+
* Fix errors at frozen Gem::Version. Pull request [#2949](https://github.com/rubygems/rubygems/pull/2949) by Nobuyoshi
|
1217
1237
|
Nakada.
|
1218
|
-
* Remove taint usage on Ruby 2.7+. Pull request #2951 by Jeremy Evans.
|
1219
|
-
* Check Manifest.txt is up to date. Pull request #2953 by David Rodríguez.
|
1220
|
-
* Clarify symlink conditionals in tests. Pull request #2962 by David
|
1238
|
+
* Remove taint usage on Ruby 2.7+. Pull request [#2951](https://github.com/rubygems/rubygems/pull/2951) by Jeremy Evans.
|
1239
|
+
* Check Manifest.txt is up to date. Pull request [#2953](https://github.com/rubygems/rubygems/pull/2953) by David Rodríguez.
|
1240
|
+
* Clarify symlink conditionals in tests. Pull request [#2962](https://github.com/rubygems/rubygems/pull/2962) by David
|
1221
1241
|
Rodríguez.
|
1222
|
-
* Update command line parsing to work under ps. Pull request #2966 by
|
1242
|
+
* Update command line parsing to work under ps. Pull request [#2966](https://github.com/rubygems/rubygems/pull/2966) by
|
1223
1243
|
David Rodríguez.
|
1224
|
-
* Properly test `Gem::Specifications.stub_for`. Pull request #2970 by
|
1244
|
+
* Properly test `Gem::Specifications.stub_for`. Pull request [#2970](https://github.com/rubygems/rubygems/pull/2970) by
|
1225
1245
|
David Rodríguez.
|
1226
1246
|
* Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
|
1227
|
-
#2985 by MSP-Greg.
|
1247
|
+
[#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
|
1228
1248
|
|
1229
1249
|
# 3.1.0.pre2 / 2019-10-15
|
1230
1250
|
|
1231
1251
|
## Enhancements:
|
1232
1252
|
|
1233
|
-
* Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
|
1253
|
+
* Optimize Gem::Package::TarReader#each. Pull request [#2941](https://github.com/rubygems/rubygems/pull/2941) by Jean byroot
|
1234
1254
|
Boussier.
|
1235
|
-
* Time comparison around date boundary. Pull request #2944 by Nobuyoshi
|
1255
|
+
* Time comparison around date boundary. Pull request [#2944](https://github.com/rubygems/rubygems/pull/2944) by Nobuyoshi
|
1236
1256
|
Nakada.
|
1237
1257
|
|
1238
1258
|
# 3.1.0.pre1 / 2019-10-08
|
1239
1259
|
|
1240
1260
|
## Enhancements:
|
1241
1261
|
|
1242
|
-
* Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
|
1243
|
-
* [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
|
1262
|
+
* Try to use bundler-2.1.0.pre.2. Pull request [#2923](https://github.com/rubygems/rubygems/pull/2923) by SHIBATA Hiroshi.
|
1263
|
+
* [Require] Ensure -I beats a default gem. Pull request [#1868](https://github.com/rubygems/rubygems/pull/1868) by Samuel
|
1244
1264
|
Giddins.
|
1245
1265
|
* [Specification] Prefer user-installed gems to default gems. Pull request
|
1246
|
-
#2112 by Samuel Giddins.
|
1247
|
-
* Multifactor authentication for yank command. Pull request #2514 by Qiu
|
1266
|
+
[#2112](https://github.com/rubygems/rubygems/pull/2112) by Samuel Giddins.
|
1267
|
+
* Multifactor authentication for yank command. Pull request [#2514](https://github.com/rubygems/rubygems/pull/2514) by Qiu
|
1248
1268
|
Chaofan.
|
1249
|
-
* Autoswitch to exact bundler version if present. Pull request #2583 by
|
1269
|
+
* Autoswitch to exact bundler version if present. Pull request [#2583](https://github.com/rubygems/rubygems/pull/2583) by
|
1250
1270
|
David Rodríguez.
|
1251
1271
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
1252
|
-
request #2554 by Grey Baker.
|
1253
|
-
* Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
|
1272
|
+
request [#2554](https://github.com/rubygems/rubygems/pull/2554) by Grey Baker.
|
1273
|
+
* Don't use a proxy if https_proxy env var is empty. Pull request [#2567](https://github.com/rubygems/rubygems/pull/2567) by
|
1254
1274
|
Luis Sagastume.
|
1255
|
-
* Fix typo in specs warning. Pull request #2585 by Rui.
|
1256
|
-
* Bin/gem: remove initial empty line. Pull request #2602 by Kenyon Ralph.
|
1275
|
+
* Fix typo in specs warning. Pull request [#2585](https://github.com/rubygems/rubygems/pull/2585) by Rui.
|
1276
|
+
* Bin/gem: remove initial empty line. Pull request [#2602](https://github.com/rubygems/rubygems/pull/2602) by Kenyon Ralph.
|
1257
1277
|
* Avoid rdoc hook when it's failed to load rdoc library. Pull request
|
1258
|
-
#2604 by SHIBATA Hiroshi.
|
1259
|
-
* Refactor get_proxy_from_env logic. Pull request #2611 by Luis Sagastume.
|
1260
|
-
* Allow to easily bisect flaky failures. Pull request #2626 by David
|
1278
|
+
[#2604](https://github.com/rubygems/rubygems/pull/2604) by SHIBATA Hiroshi.
|
1279
|
+
* Refactor get_proxy_from_env logic. Pull request [#2611](https://github.com/rubygems/rubygems/pull/2611) by Luis Sagastume.
|
1280
|
+
* Allow to easily bisect flaky failures. Pull request [#2626](https://github.com/rubygems/rubygems/pull/2626) by David
|
1261
1281
|
Rodríguez.
|
1262
1282
|
* Fix `--ignore-dependencies` flag not installing platform specific gems.
|
1263
|
-
Pull request #2631 by David Rodríguez.
|
1264
|
-
* Make `gem install --explain` list platforms. Pull request #2634 by David
|
1283
|
+
Pull request [#2631](https://github.com/rubygems/rubygems/pull/2631) by David Rodríguez.
|
1284
|
+
* Make `gem install --explain` list platforms. Pull request [#2634](https://github.com/rubygems/rubygems/pull/2634) by David
|
1265
1285
|
Rodríguez.
|
1266
|
-
* Make `gem update --explain` list platforms. Pull request #2635 by David
|
1286
|
+
* Make `gem update --explain` list platforms. Pull request [#2635](https://github.com/rubygems/rubygems/pull/2635) by David
|
1267
1287
|
Rodríguez.
|
1268
|
-
* Refactoring install and update explanations. Pull request #2643 by David
|
1288
|
+
* Refactoring install and update explanations. Pull request [#2643](https://github.com/rubygems/rubygems/pull/2643) by David
|
1269
1289
|
Rodríguez.
|
1270
|
-
* Restore transitiveness of version comparison. Pull request #2651 by
|
1290
|
+
* Restore transitiveness of version comparison. Pull request [#2651](https://github.com/rubygems/rubygems/pull/2651) by
|
1271
1291
|
David Rodríguez.
|
1272
|
-
* Undo requirement sorting. Pull request #2652 by David Rodríguez.
|
1273
|
-
* Update dummy version of Bundler for #2581. Pull request #2584 by SHIBATA
|
1292
|
+
* Undo requirement sorting. Pull request [#2652](https://github.com/rubygems/rubygems/pull/2652) by David Rodríguez.
|
1293
|
+
* Update dummy version of Bundler for #2581. Pull request [#2584](https://github.com/rubygems/rubygems/pull/2584) by SHIBATA
|
1274
1294
|
Hiroshi.
|
1275
|
-
* Ignore to handle the different platform. Pull request #2672 by SHIBATA
|
1295
|
+
* Ignore to handle the different platform. Pull request [#2672](https://github.com/rubygems/rubygems/pull/2672) by SHIBATA
|
1276
1296
|
Hiroshi.
|
1277
1297
|
* Make Gem::Specification.default_stubs to public methods. Pull request
|
1278
|
-
#2675 by SHIBATA Hiroshi.
|
1279
|
-
* Sort files and test_files in specifications. Pull request #2524 by
|
1298
|
+
[#2675](https://github.com/rubygems/rubygems/pull/2675) by SHIBATA Hiroshi.
|
1299
|
+
* Sort files and test_files in specifications. Pull request [#2524](https://github.com/rubygems/rubygems/pull/2524) by
|
1280
1300
|
Christopher Baines.
|
1281
1301
|
* Fix comment of Gem::Specification#required_ruby_version=. Pull request
|
1282
|
-
#2732 by Alex Junger.
|
1302
|
+
[#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
|
1283
1303
|
* Config_file.rb - update path separator in ENV['GEMRC'] logic. Pull
|
1284
|
-
request #2735 by MSP-Greg.
|
1285
|
-
* Fix `ruby setup.rb` warnings. Pull request #2737 by David Rodríguez.
|
1304
|
+
request [#2735](https://github.com/rubygems/rubygems/pull/2735) by MSP-Greg.
|
1305
|
+
* Fix `ruby setup.rb` warnings. Pull request [#2737](https://github.com/rubygems/rubygems/pull/2737) by David Rodríguez.
|
1286
1306
|
* Don't use regex delimiters when searching for a dependency. Pull request
|
1287
|
-
#2738 by Luis Sagastume.
|
1288
|
-
* Refactor query command. Pull request #2739 by Luis Sagastume.
|
1307
|
+
[#2738](https://github.com/rubygems/rubygems/pull/2738) by Luis Sagastume.
|
1308
|
+
* Refactor query command. Pull request [#2739](https://github.com/rubygems/rubygems/pull/2739) by Luis Sagastume.
|
1289
1309
|
* Don't remove default spec files from mapping after require. Pull request
|
1290
|
-
#2741 by David Rodríguez.
|
1291
|
-
* Cleanup base test case. Pull request #2742 by David Rodríguez.
|
1292
|
-
* Simplify Specification#gems_dir. Pull request #2745 by David Rodríguez.
|
1293
|
-
* Fix test warning. Pull request #2746 by David Rodríguez.
|
1294
|
-
* Extract an `add_to_load_path` method. Pull request #2749 by David
|
1310
|
+
[#2741](https://github.com/rubygems/rubygems/pull/2741) by David Rodríguez.
|
1311
|
+
* Cleanup base test case. Pull request [#2742](https://github.com/rubygems/rubygems/pull/2742) by David Rodríguez.
|
1312
|
+
* Simplify Specification#gems_dir. Pull request [#2745](https://github.com/rubygems/rubygems/pull/2745) by David Rodríguez.
|
1313
|
+
* Fix test warning. Pull request [#2746](https://github.com/rubygems/rubygems/pull/2746) by David Rodríguez.
|
1314
|
+
* Extract an `add_to_load_path` method. Pull request [#2749](https://github.com/rubygems/rubygems/pull/2749) by David
|
1295
1315
|
Rodríguez.
|
1296
1316
|
* Fix setup command if format_executable is true by default. Pull request
|
1297
|
-
#2766 by Jeremy Evans.
|
1317
|
+
[#2766](https://github.com/rubygems/rubygems/pull/2766) by Jeremy Evans.
|
1298
1318
|
* Update the certificate files to make the test pass on Debian 10. Pull
|
1299
|
-
request #2777 by Yusuke Endoh.
|
1300
|
-
* Write to the correct config file(.gemrc). Pull request #2779 by Luis
|
1319
|
+
request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
|
1320
|
+
* Write to the correct config file(.gemrc). Pull request [#2779](https://github.com/rubygems/rubygems/pull/2779) by Luis
|
1301
1321
|
Sagastume.
|
1302
1322
|
* Fix for large values in UID/GID fields in tar archives. Pull request
|
1303
|
-
#2780 by Alexey Shein.
|
1304
|
-
* Lazy require stringio. Pull request #2781 by Luis Sagastume.
|
1323
|
+
[#2780](https://github.com/rubygems/rubygems/pull/2780) by Alexey Shein.
|
1324
|
+
* Lazy require stringio. Pull request [#2781](https://github.com/rubygems/rubygems/pull/2781) by Luis Sagastume.
|
1305
1325
|
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
1306
|
-
Pull request #2782 by Luis Sagastume.
|
1326
|
+
Pull request [#2782](https://github.com/rubygems/rubygems/pull/2782) by Luis Sagastume.
|
1307
1327
|
* Fix setup command test for bundler with program_suffix. Pull request
|
1308
|
-
#2783 by Sorah Fukumori.
|
1309
|
-
* Make sure `rake package` works. Pull request #2787 by David Rodríguez.
|
1328
|
+
[#2783](https://github.com/rubygems/rubygems/pull/2783) by Sorah Fukumori.
|
1329
|
+
* Make sure `rake package` works. Pull request [#2787](https://github.com/rubygems/rubygems/pull/2787) by David Rodríguez.
|
1310
1330
|
* Synchronize access to the Gem::Specification::LOAD_CACHE Hash. Pull
|
1311
|
-
request #2789 by Benoit Daloze.
|
1312
|
-
* Task to install rubygems to local system. Pull request #2795 by David
|
1331
|
+
request [#2789](https://github.com/rubygems/rubygems/pull/2789) by Benoit Daloze.
|
1332
|
+
* Task to install rubygems to local system. Pull request [#2795](https://github.com/rubygems/rubygems/pull/2795) by David
|
1313
1333
|
Rodríguez.
|
1314
1334
|
* Add an attr_reader to Gem::Installer for the package instance variable.
|
1315
|
-
Pull request #2796 by Daniel Berger.
|
1316
|
-
* Switch CI script to bash. Pull request #2799 by David Rodríguez.
|
1317
|
-
* Move gemcutter utilities code to Gem::Command. Pull request #2803 by
|
1335
|
+
Pull request [#2796](https://github.com/rubygems/rubygems/pull/2796) by Daniel Berger.
|
1336
|
+
* Switch CI script to bash. Pull request [#2799](https://github.com/rubygems/rubygems/pull/2799) by David Rodríguez.
|
1337
|
+
* Move gemcutter utilities code to Gem::Command. Pull request [#2803](https://github.com/rubygems/rubygems/pull/2803) by
|
1318
1338
|
Luis Sagastume.
|
1319
|
-
* Add raw spec method to gem package. Pull request #2806 by Luis
|
1339
|
+
* Add raw spec method to gem package. Pull request [#2806](https://github.com/rubygems/rubygems/pull/2806) by Luis
|
1320
1340
|
Sagastume.
|
1321
|
-
* Improve `rake package` test error message. Pull request #2815 by David
|
1341
|
+
* Improve `rake package` test error message. Pull request [#2815](https://github.com/rubygems/rubygems/pull/2815) by David
|
1322
1342
|
Rodríguez.
|
1323
|
-
* Resolve `@@project_dir` from test file paths. Pull request #2843 by
|
1343
|
+
* Resolve `@@project_dir` from test file paths. Pull request [#2843](https://github.com/rubygems/rubygems/pull/2843) by
|
1324
1344
|
Nobuyoshi Nakada.
|
1325
|
-
* Remove dead code in Gem::Validator. Pull request #2537 by Ellen Marie
|
1345
|
+
* Remove dead code in Gem::Validator. Pull request [#2537](https://github.com/rubygems/rubygems/pull/2537) by Ellen Marie
|
1326
1346
|
Dash.
|
1327
1347
|
* The date might have advanced since TODAY has been set. Pull request
|
1328
|
-
#2938 by Nobuyoshi Nakada.
|
1329
|
-
* Remove old ci configurations. Pull request #2917 by SHIBATA Hiroshi.
|
1330
|
-
* Add Gem::Dependency identity. Pull request #2936 by Luis Sagastume.
|
1331
|
-
* Filter dependency type and name strictly. Pull request #2930 by SHIBATA
|
1348
|
+
[#2938](https://github.com/rubygems/rubygems/pull/2938) by Nobuyoshi Nakada.
|
1349
|
+
* Remove old ci configurations. Pull request [#2917](https://github.com/rubygems/rubygems/pull/2917) by SHIBATA Hiroshi.
|
1350
|
+
* Add Gem::Dependency identity. Pull request [#2936](https://github.com/rubygems/rubygems/pull/2936) by Luis Sagastume.
|
1351
|
+
* Filter dependency type and name strictly. Pull request [#2930](https://github.com/rubygems/rubygems/pull/2930) by SHIBATA
|
1332
1352
|
Hiroshi.
|
1333
1353
|
* Always pass an encoding option to Zlib::GzipReader.wrap. Pull request
|
1334
|
-
#2933 by Nobuyoshi Nakada.
|
1335
|
-
* Introduce default prerelease requirement. Pull request #2925 by David
|
1354
|
+
[#2933](https://github.com/rubygems/rubygems/pull/2933) by Nobuyoshi Nakada.
|
1355
|
+
* Introduce default prerelease requirement. Pull request [#2925](https://github.com/rubygems/rubygems/pull/2925) by David
|
1336
1356
|
Rodríguez.
|
1337
|
-
* Detect libc version, closes #2918. Pull request #2922 by fauno.
|
1357
|
+
* Detect libc version, closes #2918. Pull request [#2922](https://github.com/rubygems/rubygems/pull/2922) by fauno.
|
1338
1358
|
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
1339
|
-
request #2894 by Alexander Pakulov.
|
1340
|
-
* Improve `gem uninstall --all`. Pull request #2893 by David Rodríguez.
|
1341
|
-
* Use `RbConfig::CONFIG['rubylibprefix']`. Pull request #2889 by Nobuyoshi
|
1359
|
+
request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
|
1360
|
+
* Improve `gem uninstall --all`. Pull request [#2893](https://github.com/rubygems/rubygems/pull/2893) by David Rodríguez.
|
1361
|
+
* Use `RbConfig::CONFIG['rubylibprefix']`. Pull request [#2889](https://github.com/rubygems/rubygems/pull/2889) by Nobuyoshi
|
1342
1362
|
Nakada.
|
1343
1363
|
* Build the first gemspec we found if no arguments are passed to gem
|
1344
|
-
build. Pull request #2887 by Luis Sagastume.
|
1345
|
-
* $LOAD_PATH elements should be real paths. Pull request #2885 by
|
1364
|
+
build. Pull request [#2887](https://github.com/rubygems/rubygems/pull/2887) by Luis Sagastume.
|
1365
|
+
* $LOAD_PATH elements should be real paths. Pull request [#2885](https://github.com/rubygems/rubygems/pull/2885) by
|
1346
1366
|
Nobuyoshi Nakada.
|
1347
1367
|
* Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION. Pull
|
1348
|
-
request #2864 by Benoit Daloze.
|
1349
|
-
* Cleanup after testing `rake package`. Pull request #2862 by David
|
1368
|
+
request [#2864](https://github.com/rubygems/rubygems/pull/2864) by Benoit Daloze.
|
1369
|
+
* Cleanup after testing `rake package`. Pull request [#2862](https://github.com/rubygems/rubygems/pull/2862) by David
|
1350
1370
|
Rodríguez.
|
1351
1371
|
* Cherry-pick shushing deprecation warnings from ruby-core. Pull request
|
1352
|
-
#2861 by David Rodríguez.
|
1353
|
-
* Ext/builder.rb cleanup. Pull request #2849 by Luis Sagastume.
|
1354
|
-
* Fix @ran_rake assignment in builder.rb. Pull request #2850 by Luis
|
1372
|
+
[#2861](https://github.com/rubygems/rubygems/pull/2861) by David Rodríguez.
|
1373
|
+
* Ext/builder.rb cleanup. Pull request [#2849](https://github.com/rubygems/rubygems/pull/2849) by Luis Sagastume.
|
1374
|
+
* Fix @ran_rake assignment in builder.rb. Pull request [#2850](https://github.com/rubygems/rubygems/pull/2850) by Luis
|
1355
1375
|
Sagastume.
|
1356
|
-
* Remove test suite warnings. Pull request #2845 by Luis Sagastume.
|
1376
|
+
* Remove test suite warnings. Pull request [#2845](https://github.com/rubygems/rubygems/pull/2845) by Luis Sagastume.
|
1357
1377
|
* Replace domain parameter with a parameter to suppress suggestions. Pull
|
1358
|
-
request #2846 by Luis Sagastume.
|
1378
|
+
request [#2846](https://github.com/rubygems/rubygems/pull/2846) by Luis Sagastume.
|
1359
1379
|
* Move default specifications dir definition out of BasicSpecification.
|
1360
|
-
Pull request #2841 by Vít Ondruch.
|
1380
|
+
Pull request [#2841](https://github.com/rubygems/rubygems/pull/2841) by Vít Ondruch.
|
1361
1381
|
* There is no usage of @orig_env_* variables in test suite. Pull request
|
1362
|
-
#2838 by SHIBATA Hiroshi.
|
1382
|
+
[#2838](https://github.com/rubygems/rubygems/pull/2838) by SHIBATA Hiroshi.
|
1363
1383
|
* Use File#open instead of Kernel#open in stub_specification.rb. Pull
|
1364
|
-
request #2834 by Luis Sagastume.
|
1365
|
-
* Simplify #to_ruby code. Pull request #2825 by Nobuyoshi Nakada.
|
1366
|
-
* Add a gem attr to the Gem::Package class. Pull request #2828 by Daniel
|
1384
|
+
request [#2834](https://github.com/rubygems/rubygems/pull/2834) by Luis Sagastume.
|
1385
|
+
* Simplify #to_ruby code. Pull request [#2825](https://github.com/rubygems/rubygems/pull/2825) by Nobuyoshi Nakada.
|
1386
|
+
* Add a gem attr to the Gem::Package class. Pull request [#2828](https://github.com/rubygems/rubygems/pull/2828) by Daniel
|
1367
1387
|
Berger.
|
1368
|
-
* Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
|
1388
|
+
* Remove useless TODO comment. Pull request [#2818](https://github.com/rubygems/rubygems/pull/2818) by Luis Sagastume.
|
1369
1389
|
|
1370
1390
|
## Bug fixes:
|
1371
1391
|
|
1372
|
-
* Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
|
1373
|
-
* Remove unused empty sources array. Pull request #2598 by Aaron
|
1392
|
+
* Fix typos in History.txt. Pull request [#2565](https://github.com/rubygems/rubygems/pull/2565) by Igor Zubkov.
|
1393
|
+
* Remove unused empty sources array. Pull request [#2598](https://github.com/rubygems/rubygems/pull/2598) by Aaron
|
1374
1394
|
Patterson.
|
1375
1395
|
* Fix windows specific executables generated by `gem install`. Pull
|
1376
|
-
request #2628 by David Rodríguez.
|
1377
|
-
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
1396
|
+
request [#2628](https://github.com/rubygems/rubygems/pull/2628) by David Rodríguez.
|
1397
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
|
1378
1398
|
Nobuyoshi Nakada.
|
1379
|
-
* Set SOURCE_DATE_EPOCH env var if not provided. Pull request #2882 by
|
1399
|
+
* Set SOURCE_DATE_EPOCH env var if not provided. Pull request [#2882](https://github.com/rubygems/rubygems/pull/2882) by
|
1380
1400
|
Ellen Marie Dash.
|
1381
|
-
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
1382
|
-
* Fixed deprecation message. Pull request #2867 by Nobuyoshi Nakada.
|
1383
|
-
* Fix requiring default gems to consider prereleases. Pull request #2728
|
1401
|
+
* Installer.rb - fix #windows_stub_script. Pull request [#2876](https://github.com/rubygems/rubygems/pull/2876) by MSP-Greg.
|
1402
|
+
* Fixed deprecation message. Pull request [#2867](https://github.com/rubygems/rubygems/pull/2867) by Nobuyoshi Nakada.
|
1403
|
+
* Fix requiring default gems to consider prereleases. Pull request [#2728](https://github.com/rubygems/rubygems/pull/2728)
|
1384
1404
|
by David Rodríguez.
|
1385
|
-
* Forbid `find_spec_for_exe` without an `exec_name`. Pull request #2706 by
|
1405
|
+
* Forbid `find_spec_for_exe` without an `exec_name`. Pull request [#2706](https://github.com/rubygems/rubygems/pull/2706) by
|
1386
1406
|
David Rodríguez.
|
1387
1407
|
* Do not prompt for passphrase when key can be loaded without it. Pull
|
1388
|
-
request #2710 by Luis Sagastume.
|
1389
|
-
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
1390
|
-
* Remove long ago deprecated methods. Pull request #2704 by David
|
1408
|
+
request [#2710](https://github.com/rubygems/rubygems/pull/2710) by Luis Sagastume.
|
1409
|
+
* Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
|
1410
|
+
* Remove long ago deprecated methods. Pull request [#2704](https://github.com/rubygems/rubygems/pull/2704) by David
|
1391
1411
|
Rodríguez.
|
1392
|
-
* Renamed duplicate test. Pull request #2678 by Nobuyoshi Nakada.
|
1393
|
-
* File.exists? is deprecated. Pull request #2855 by SHIBATA Hiroshi.
|
1394
|
-
* Fixed to warn with shadowing outer local variable. Pull request #2856 by
|
1412
|
+
* Renamed duplicate test. Pull request [#2678](https://github.com/rubygems/rubygems/pull/2678) by Nobuyoshi Nakada.
|
1413
|
+
* File.exists? is deprecated. Pull request [#2855](https://github.com/rubygems/rubygems/pull/2855) by SHIBATA Hiroshi.
|
1414
|
+
* Fixed to warn with shadowing outer local variable. Pull request [#2856](https://github.com/rubygems/rubygems/pull/2856) by
|
1395
1415
|
SHIBATA Hiroshi.
|
1396
|
-
* Fix explain with ignore-dependencies. Pull request #2647 by David
|
1416
|
+
* Fix explain with ignore-dependencies. Pull request [#2647](https://github.com/rubygems/rubygems/pull/2647) by David
|
1397
1417
|
Rodríguez.
|
1398
1418
|
* Fix default gem executable installation when folder is not `bin/`. Pull
|
1399
|
-
request #2649 by David Rodríguez.
|
1419
|
+
request [#2649](https://github.com/rubygems/rubygems/pull/2649) by David Rodríguez.
|
1400
1420
|
* Fix cryptic error on local and ignore-dependencies combination. Pull
|
1401
|
-
request #2650 by David Rodríguez.
|
1421
|
+
request [#2650](https://github.com/rubygems/rubygems/pull/2650) by David Rodríguez.
|
1402
1422
|
|
1403
1423
|
## Deprecations:
|
1404
1424
|
|
1405
1425
|
* Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
|
1406
|
-
#2857 by SHIBATA Hiroshi.
|
1407
|
-
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
|
1426
|
+
[#2857](https://github.com/rubygems/rubygems/pull/2857) by SHIBATA Hiroshi.
|
1427
|
+
* Deprecate Gem::RemoteFetcher#fetch_size. Pull request [#2833](https://github.com/rubygems/rubygems/pull/2833) by Luis
|
1408
1428
|
Sagastume.
|
1409
|
-
* Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
|
1429
|
+
* Explicitly deprecate `rubyforge_project`. Pull request [#2798](https://github.com/rubygems/rubygems/pull/2798) by David
|
1410
1430
|
Rodríguez.
|
1411
|
-
* Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
|
1431
|
+
* Deprecate unused Gem::Installer#unpack method. Pull request [#2715](https://github.com/rubygems/rubygems/pull/2715) by Vít
|
1412
1432
|
Ondruch.
|
1413
|
-
* Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
|
1414
|
-
* Add deprecation warnings for cli options. Pull request #2607 by Luis
|
1433
|
+
* Deprecate a few unused methods. Pull request [#2674](https://github.com/rubygems/rubygems/pull/2674) by David Rodríguez.
|
1434
|
+
* Add deprecation warnings for cli options. Pull request [#2607](https://github.com/rubygems/rubygems/pull/2607) by Luis
|
1415
1435
|
Sagastume.
|
1416
1436
|
|
1417
1437
|
## Breaking changes:
|
1418
1438
|
|
1419
|
-
* Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
|
1420
|
-
* Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
|
1439
|
+
* Suppress keywords warning. Pull request [#2934](https://github.com/rubygems/rubygems/pull/2934) by Nobuyoshi Nakada.
|
1440
|
+
* Suppress Ruby 2.7's real kwargs warning. Pull request [#2912](https://github.com/rubygems/rubygems/pull/2912) by Koichi
|
1421
1441
|
ITO.
|
1422
|
-
* Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
|
1442
|
+
* Fix Kernel#warn override. Pull request [#2911](https://github.com/rubygems/rubygems/pull/2911) by Jeremy Evans.
|
1423
1443
|
* Remove conflict.rb code that was supposed to be removed in Rubygems 3.
|
1424
|
-
Pull request #2802 by Luis Sagastume.
|
1425
|
-
* Compatibility cleanups. Pull request #2754 by David Rodríguez.
|
1426
|
-
* Remove `others_possible` activation request param. Pull request #2747 by
|
1444
|
+
Pull request [#2802](https://github.com/rubygems/rubygems/pull/2802) by Luis Sagastume.
|
1445
|
+
* Compatibility cleanups. Pull request [#2754](https://github.com/rubygems/rubygems/pull/2754) by David Rodríguez.
|
1446
|
+
* Remove `others_possible` activation request param. Pull request [#2747](https://github.com/rubygems/rubygems/pull/2747) by
|
1427
1447
|
David Rodríguez.
|
1428
|
-
* Remove dependency installer deprecated code. Pull request #2740 by Luis
|
1448
|
+
* Remove dependency installer deprecated code. Pull request [#2740](https://github.com/rubygems/rubygems/pull/2740) by Luis
|
1429
1449
|
Sagastume.
|
1430
|
-
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
|
1450
|
+
* Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request [#2716](https://github.com/rubygems/rubygems/pull/2716)
|
1431
1451
|
by SHIBATA Hiroshi.
|
1432
|
-
* Skip deprecation warning during specs. Pull request #2718 by David
|
1452
|
+
* Skip deprecation warning during specs. Pull request [#2718](https://github.com/rubygems/rubygems/pull/2718) by David
|
1433
1453
|
Rodríguez.
|
1434
|
-
* Remove QuickLoader reference. Pull request #2719 by David Rodríguez.
|
1435
|
-
* Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
|
1454
|
+
* Remove QuickLoader reference. Pull request [#2719](https://github.com/rubygems/rubygems/pull/2719) by David Rodríguez.
|
1455
|
+
* Removed circular require. Pull request [#2679](https://github.com/rubygems/rubygems/pull/2679) by Nobuyoshi Nakada.
|
1436
1456
|
* Removed needless environmental variable for Travis CI. Pull request
|
1437
|
-
#2685 by SHIBATA Hiroshi.
|
1438
|
-
* Removing yaml require. Pull request #2538 by Luciano Sousa.
|
1457
|
+
[#2685](https://github.com/rubygems/rubygems/pull/2685) by SHIBATA Hiroshi.
|
1458
|
+
* Removing yaml require. Pull request [#2538](https://github.com/rubygems/rubygems/pull/2538) by Luciano Sousa.
|
1439
1459
|
|
1440
1460
|
# 3.0.8 / 2020-02-19
|
1441
1461
|
|
1442
1462
|
## Bug fixes:
|
1443
1463
|
|
1444
|
-
* Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
|
1464
|
+
* Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
|
1445
1465
|
Nobuyoshi Nakada.
|
1446
1466
|
|
1447
1467
|
# 3.0.7 / 2020-02-18
|
@@ -1449,12 +1469,12 @@
|
|
1449
1469
|
## Bug fixes:
|
1450
1470
|
|
1451
1471
|
* Fix underscore version selection for bundler #2908 by David Rodríguez.
|
1452
|
-
* Add missing wrapper. Pull request #2690 by David Rodríguez.
|
1472
|
+
* Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
|
1453
1473
|
* Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
|
1454
|
-
Pull request #2782 by Luis Sagastume.
|
1455
|
-
* Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
|
1474
|
+
Pull request [#2782](https://github.com/rubygems/rubygems/pull/2782) by Luis Sagastume.
|
1475
|
+
* Installer.rb - fix #windows_stub_script. Pull request [#2876](https://github.com/rubygems/rubygems/pull/2876) by MSP-Greg.
|
1456
1476
|
* Use IAM role to extract security-credentials for EC2 instance. Pull
|
1457
|
-
request #2894 by Alexander Pakulov.
|
1477
|
+
request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
|
1458
1478
|
|
1459
1479
|
# 3.0.6 / 2019-08-17
|
1460
1480
|
|
@@ -1466,53 +1486,53 @@
|
|
1466
1486
|
|
1467
1487
|
## Enhancements:
|
1468
1488
|
|
1469
|
-
* Use env var to configure api key on push. Pull request #2559 by Luis
|
1489
|
+
* Use env var to configure api key on push. Pull request [#2559](https://github.com/rubygems/rubygems/pull/2559) by Luis
|
1470
1490
|
Sagastume.
|
1471
|
-
* Unswallow uninstall error. Pull request #2707 by David Rodríguez.
|
1472
|
-
* Expose windows path normalization utility. Pull request #2767 by David
|
1491
|
+
* Unswallow uninstall error. Pull request [#2707](https://github.com/rubygems/rubygems/pull/2707) by David Rodríguez.
|
1492
|
+
* Expose windows path normalization utility. Pull request [#2767](https://github.com/rubygems/rubygems/pull/2767) by David
|
1473
1493
|
Rodríguez.
|
1474
|
-
* Clean which command. Pull request #2801 by Luis Sagastume.
|
1475
|
-
* Upgrading S3 source signature to AWS SigV4. Pull request #2807 by
|
1494
|
+
* Clean which command. Pull request [#2801](https://github.com/rubygems/rubygems/pull/2801) by Luis Sagastume.
|
1495
|
+
* Upgrading S3 source signature to AWS SigV4. Pull request [#2807](https://github.com/rubygems/rubygems/pull/2807) by
|
1476
1496
|
Alexander Pakulov.
|
1477
1497
|
* Remove misleading comment, no reason to move Gem.host to Gem::Util.
|
1478
|
-
Pull request #2811 by Luis Sagastume.
|
1479
|
-
* Drop support for 'gem env packageversion'. Pull request #2813 by Luis
|
1498
|
+
Pull request [#2811](https://github.com/rubygems/rubygems/pull/2811) by Luis Sagastume.
|
1499
|
+
* Drop support for 'gem env packageversion'. Pull request [#2813](https://github.com/rubygems/rubygems/pull/2813) by Luis
|
1480
1500
|
Sagastume.
|
1481
1501
|
* Take into account just git tracked files in update_manifest rake task.
|
1482
|
-
Pull request #2816 by Luis Sagastume.
|
1483
|
-
* Remove TODO comment, there's no Gem::Dirs constant. Pull request #2819
|
1502
|
+
Pull request [#2816](https://github.com/rubygems/rubygems/pull/2816) by Luis Sagastume.
|
1503
|
+
* Remove TODO comment, there's no Gem::Dirs constant. Pull request [#2819](https://github.com/rubygems/rubygems/pull/2819)
|
1484
1504
|
by Luis Sagastume.
|
1485
|
-
* Remove unused 'raise' from test_case. Pull request #2820 by Luis
|
1505
|
+
* Remove unused 'raise' from test_case. Pull request [#2820](https://github.com/rubygems/rubygems/pull/2820) by Luis
|
1486
1506
|
Sagastume.
|
1487
|
-
* Move TODO comment to an information comment. Pull request #2821 by Luis
|
1507
|
+
* Move TODO comment to an information comment. Pull request [#2821](https://github.com/rubygems/rubygems/pull/2821) by Luis
|
1488
1508
|
Sagastume.
|
1489
1509
|
* Use File#open instead of Kernel#open in stub_specification.rb. Pull
|
1490
|
-
request #2834 by Luis Sagastume.
|
1491
|
-
* Make error code a gemcutter_utilities a constant. Pull request #2844 by
|
1510
|
+
request [#2834](https://github.com/rubygems/rubygems/pull/2834) by Luis Sagastume.
|
1511
|
+
* Make error code a gemcutter_utilities a constant. Pull request [#2844](https://github.com/rubygems/rubygems/pull/2844) by
|
1492
1512
|
Luis Sagastume.
|
1493
|
-
* Remove FIXME comment related to PathSupport. Pull request #2854 by Luis
|
1513
|
+
* Remove FIXME comment related to PathSupport. Pull request [#2854](https://github.com/rubygems/rubygems/pull/2854) by Luis
|
1494
1514
|
Sagastume.
|
1495
|
-
* Use gsub with Hash. Pull request #2860 by Kazuhiro NISHIYAMA.
|
1515
|
+
* Use gsub with Hash. Pull request [#2860](https://github.com/rubygems/rubygems/pull/2860) by Kazuhiro NISHIYAMA.
|
1496
1516
|
* Use the standard RUBY_ENGINE_VERSION instead of JRUBY_VERSION. Pull
|
1497
|
-
request #2864 by Benoit Daloze.
|
1498
|
-
* Do not mutate uri.query during s3 signature creation. Pull request #2874
|
1517
|
+
request [#2864](https://github.com/rubygems/rubygems/pull/2864) by Benoit Daloze.
|
1518
|
+
* Do not mutate uri.query during s3 signature creation. Pull request [#2874](https://github.com/rubygems/rubygems/pull/2874)
|
1499
1519
|
by Alexander Pakulov.
|
1500
|
-
* Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
|
1520
|
+
* Fixup #2844. Pull request [#2878](https://github.com/rubygems/rubygems/pull/2878) by SHIBATA Hiroshi.
|
1501
1521
|
|
1502
1522
|
## Bug fixes:
|
1503
1523
|
|
1504
|
-
* Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
|
1524
|
+
* Fix intermittent test error on Appveyor & Travis. Pull request [#2568](https://github.com/rubygems/rubygems/pull/2568) by
|
1505
1525
|
MSP-Greg.
|
1506
|
-
* Extend timeout on assert_self_install_permissions. Pull request #2605 by
|
1526
|
+
* Extend timeout on assert_self_install_permissions. Pull request [#2605](https://github.com/rubygems/rubygems/pull/2605) by
|
1507
1527
|
SHIBATA Hiroshi.
|
1508
|
-
* Better folder assertions. Pull request #2644 by David Rodríguez.
|
1528
|
+
* Better folder assertions. Pull request [#2644](https://github.com/rubygems/rubygems/pull/2644) by David Rodríguez.
|
1509
1529
|
* Fix default gem executable installation when folder is not `bin/`. Pull
|
1510
|
-
request #2649 by David Rodríguez.
|
1511
|
-
* Fix gem uninstall behavior. Pull request #2663 by Luis Sagastume.
|
1530
|
+
request [#2649](https://github.com/rubygems/rubygems/pull/2649) by David Rodríguez.
|
1531
|
+
* Fix gem uninstall behavior. Pull request [#2663](https://github.com/rubygems/rubygems/pull/2663) by Luis Sagastume.
|
1512
1532
|
* Fix for large values in UID/GID fields in tar archives. Pull request
|
1513
|
-
#2780 by Alexey Shein.
|
1514
|
-
* Fixed task order for release. Pull request #2792 by SHIBATA Hiroshi.
|
1515
|
-
* Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
|
1533
|
+
[#2780](https://github.com/rubygems/rubygems/pull/2780) by Alexey Shein.
|
1534
|
+
* Fixed task order for release. Pull request [#2792](https://github.com/rubygems/rubygems/pull/2792) by SHIBATA Hiroshi.
|
1535
|
+
* Ignore GEMRC variable for test suite. Pull request [#2837](https://github.com/rubygems/rubygems/pull/2837) by SHIBATA
|
1516
1536
|
Hiroshi.
|
1517
1537
|
|
1518
1538
|
# 3.0.4 / 2019-06-14
|
@@ -1522,53 +1542,53 @@
|
|
1522
1542
|
* Add support for TruffleRuby #2612 by Benoit Daloze
|
1523
1543
|
* Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
|
1524
1544
|
by Grey Baker
|
1525
|
-
* Improve test compatibility with CMake 2.8. Pull request #2590 by Vít
|
1545
|
+
* Improve test compatibility with CMake 2.8. Pull request [#2590](https://github.com/rubygems/rubygems/pull/2590) by Vít
|
1526
1546
|
Ondruch.
|
1527
1547
|
* Restore gem build behavior and introduce the "-C" flag to gem build.
|
1528
|
-
Pull request #2596 by Luis Sagastume.
|
1529
|
-
* Enabled block call with util_set_arch. Pull request #2603 by SHIBATA
|
1548
|
+
Pull request [#2596](https://github.com/rubygems/rubygems/pull/2596) by Luis Sagastume.
|
1549
|
+
* Enabled block call with util_set_arch. Pull request [#2603](https://github.com/rubygems/rubygems/pull/2603) by SHIBATA
|
1530
1550
|
Hiroshi.
|
1531
1551
|
* Avoid rdoc hook when it's failed to load rdoc library. Pull request
|
1532
|
-
#2604 by SHIBATA Hiroshi.
|
1533
|
-
* Drop tests for legacy RDoc. Pull request #2608 by Nobuyoshi Nakada.
|
1534
|
-
* Update TODO comment. Pull request #2658 by Luis Sagastume.
|
1535
|
-
* Skip malicious extension test with mswin platform. Pull request #2670 by
|
1552
|
+
[#2604](https://github.com/rubygems/rubygems/pull/2604) by SHIBATA Hiroshi.
|
1553
|
+
* Drop tests for legacy RDoc. Pull request [#2608](https://github.com/rubygems/rubygems/pull/2608) by Nobuyoshi Nakada.
|
1554
|
+
* Update TODO comment. Pull request [#2658](https://github.com/rubygems/rubygems/pull/2658) by Luis Sagastume.
|
1555
|
+
* Skip malicious extension test with mswin platform. Pull request [#2670](https://github.com/rubygems/rubygems/pull/2670) by
|
1536
1556
|
SHIBATA Hiroshi.
|
1537
|
-
* Check deprecated methods on release. Pull request #2673 by David
|
1557
|
+
* Check deprecated methods on release. Pull request [#2673](https://github.com/rubygems/rubygems/pull/2673) by David
|
1538
1558
|
Rodríguez.
|
1539
|
-
* Add steps to run bundler tests. Pull request #2680 by Aditya Prakash.
|
1540
|
-
* Skip temporary "No such host is known" error. Pull request #2684 by
|
1559
|
+
* Add steps to run bundler tests. Pull request [#2680](https://github.com/rubygems/rubygems/pull/2680) by Aditya Prakash.
|
1560
|
+
* Skip temporary "No such host is known" error. Pull request [#2684](https://github.com/rubygems/rubygems/pull/2684) by
|
1541
1561
|
Takashi Kokubun.
|
1542
|
-
* Replaced aws-sdk-s3 instead of s3cmd. Pull request #2688 by SHIBATA
|
1562
|
+
* Replaced aws-sdk-s3 instead of s3cmd. Pull request [#2688](https://github.com/rubygems/rubygems/pull/2688) by SHIBATA
|
1543
1563
|
Hiroshi.
|
1544
|
-
* Allow uninstall from symlinked GEM_HOME. Pull request #2720 by David
|
1564
|
+
* Allow uninstall from symlinked GEM_HOME. Pull request [#2720](https://github.com/rubygems/rubygems/pull/2720) by David
|
1545
1565
|
Rodríguez.
|
1546
1566
|
* Use current checkout in CI to uninstall RVM related gems. Pull request
|
1547
|
-
#2729 by David Rodríguez.
|
1548
|
-
* Update Contributor Covenant v1.4.1. Pull request #2751 by SHIBATA
|
1567
|
+
[#2729](https://github.com/rubygems/rubygems/pull/2729) by David Rodríguez.
|
1568
|
+
* Update Contributor Covenant v1.4.1. Pull request [#2751](https://github.com/rubygems/rubygems/pull/2751) by SHIBATA
|
1549
1569
|
Hiroshi.
|
1550
|
-
* Added supported versions of Ruby. Pull request #2756 by SHIBATA Hiroshi.
|
1551
|
-
* Fix shadowing outer local variable warning. Pull request #2763 by Luis
|
1570
|
+
* Added supported versions of Ruby. Pull request [#2756](https://github.com/rubygems/rubygems/pull/2756) by SHIBATA Hiroshi.
|
1571
|
+
* Fix shadowing outer local variable warning. Pull request [#2763](https://github.com/rubygems/rubygems/pull/2763) by Luis
|
1552
1572
|
Sagastume.
|
1553
1573
|
* Update the certificate files to make the test pass on Debian 10. Pull
|
1554
|
-
request #2777 by Yusuke Endoh.
|
1555
|
-
* Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
|
1574
|
+
request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
|
1575
|
+
* Backport ruby core changes. Pull request [#2778](https://github.com/rubygems/rubygems/pull/2778) by SHIBATA Hiroshi.
|
1556
1576
|
|
1557
1577
|
## Bug fixes:
|
1558
1578
|
|
1559
|
-
* Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
|
1560
|
-
* Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
|
1561
|
-
* Fix flaky bundler version finder tests. Pull request #2624 by David
|
1579
|
+
* Test_gem.rb - intermittent failure fix. Pull request [#2613](https://github.com/rubygems/rubygems/pull/2613) by MSP-Greg.
|
1580
|
+
* Fix sporadic CI failures. Pull request [#2617](https://github.com/rubygems/rubygems/pull/2617) by David Rodríguez.
|
1581
|
+
* Fix flaky bundler version finder tests. Pull request [#2624](https://github.com/rubygems/rubygems/pull/2624) by David
|
1562
1582
|
Rodríguez.
|
1563
|
-
* Fix gem indexer tests leaking utility gems. Pull request #2625 by David
|
1583
|
+
* Fix gem indexer tests leaking utility gems. Pull request [#2625](https://github.com/rubygems/rubygems/pull/2625) by David
|
1564
1584
|
Rodríguez.
|
1565
|
-
* Clean up default spec dir too. Pull request #2639 by David Rodríguez.
|
1566
|
-
* Fix 2.6.1 build against vendored bundler. Pull request #2645 by David
|
1585
|
+
* Clean up default spec dir too. Pull request [#2639](https://github.com/rubygems/rubygems/pull/2639) by David Rodríguez.
|
1586
|
+
* Fix 2.6.1 build against vendored bundler. Pull request [#2645](https://github.com/rubygems/rubygems/pull/2645) by David
|
1567
1587
|
Rodríguez.
|
1568
|
-
* Fix comment typo. Pull request #2664 by Luis Sagastume.
|
1588
|
+
* Fix comment typo. Pull request [#2664](https://github.com/rubygems/rubygems/pull/2664) by Luis Sagastume.
|
1569
1589
|
* Fix comment of Gem::Specification#required_ruby_version=. Pull request
|
1570
|
-
#2732 by Alex Junger.
|
1571
|
-
* Fix TODOs. Pull request #2748 by David Rodríguez.
|
1590
|
+
[#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
|
1591
|
+
* Fix TODOs. Pull request [#2748](https://github.com/rubygems/rubygems/pull/2748) by David Rodríguez.
|
1572
1592
|
|
1573
1593
|
# 3.0.3 / 2019-03-05
|
1574
1594
|
|
@@ -1585,312 +1605,312 @@ Security fixes:
|
|
1585
1605
|
|
1586
1606
|
## Enhancements:
|
1587
1607
|
|
1588
|
-
* Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
|
1589
|
-
* Fix document flag description. Pull request #2555 by Luis Sagastume.
|
1608
|
+
* Use Bundler-1.17.3. Pull request [#2556](https://github.com/rubygems/rubygems/pull/2556) by SHIBATA Hiroshi.
|
1609
|
+
* Fix document flag description. Pull request [#2555](https://github.com/rubygems/rubygems/pull/2555) by Luis Sagastume.
|
1590
1610
|
|
1591
1611
|
## Bug fixes:
|
1592
1612
|
|
1593
1613
|
* Fix tests when ruby --program-suffix is used without rubygems
|
1594
|
-
--format-executable. Pull request #2549 by Jeremy Evans.
|
1614
|
+
--format-executable. Pull request [#2549](https://github.com/rubygems/rubygems/pull/2549) by Jeremy Evans.
|
1595
1615
|
* Fix Gem::Requirement equality comparison when ~> operator is used. Pull
|
1596
|
-
request #2554 by Grey Baker.
|
1597
|
-
* Unset SOURCE_DATE_EPOCH in the test cases. Pull request #2558 by Sorah
|
1616
|
+
request [#2554](https://github.com/rubygems/rubygems/pull/2554) by Grey Baker.
|
1617
|
+
* Unset SOURCE_DATE_EPOCH in the test cases. Pull request [#2558](https://github.com/rubygems/rubygems/pull/2558) by Sorah
|
1598
1618
|
Fukumori.
|
1599
|
-
* Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
|
1619
|
+
* Restore SOURCE_DATE_EPOCH. Pull request [#2560](https://github.com/rubygems/rubygems/pull/2560) by SHIBATA Hiroshi.
|
1600
1620
|
|
1601
1621
|
# 3.0.1 / 2018-12-23
|
1602
1622
|
|
1603
1623
|
## Bug fixes:
|
1604
1624
|
|
1605
|
-
* Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
|
1606
|
-
* Dup the Dir.home string before passing it on. Pull request #2545 by
|
1625
|
+
* Ensure globbed files paths are expanded. Pull request [#2536](https://github.com/rubygems/rubygems/pull/2536) by Tony Ta.
|
1626
|
+
* Dup the Dir.home string before passing it on. Pull request [#2545](https://github.com/rubygems/rubygems/pull/2545) by
|
1607
1627
|
Charles Oliver Nutter.
|
1608
|
-
* Added permissions to installed files for non-owners. Pull request #2546
|
1628
|
+
* Added permissions to installed files for non-owners. Pull request [#2546](https://github.com/rubygems/rubygems/pull/2546)
|
1609
1629
|
by SHIBATA Hiroshi.
|
1610
|
-
* Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
|
1630
|
+
* Restore release task without hoe. Pull request [#2547](https://github.com/rubygems/rubygems/pull/2547) by SHIBATA Hiroshi.
|
1611
1631
|
|
1612
1632
|
# 3.0.0 / 2018-12-19
|
1613
1633
|
|
1614
1634
|
## Enhancements:
|
1615
1635
|
|
1616
|
-
* S3 source. Pull request #1690 by Aditya Prakash.
|
1617
|
-
* Download gems with threads. Pull request #1898 by André Arko.
|
1618
|
-
* Update to SPDX license list 3.0. Pull request #2152 by Mike Linksvayer.
|
1619
|
-
* [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
|
1636
|
+
* S3 source. Pull request [#1690](https://github.com/rubygems/rubygems/pull/1690) by Aditya Prakash.
|
1637
|
+
* Download gems with threads. Pull request [#1898](https://github.com/rubygems/rubygems/pull/1898) by André Arko.
|
1638
|
+
* Update to SPDX license list 3.0. Pull request [#2152](https://github.com/rubygems/rubygems/pull/2152) by Mike Linksvayer.
|
1639
|
+
* [GSoC] Multi-factor feature for RubyGems. Pull request [#2369](https://github.com/rubygems/rubygems/pull/2369) by Qiu
|
1620
1640
|
Chaofan.
|
1621
|
-
* Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
|
1641
|
+
* Use bundler 1.17.2. Pull request [#2521](https://github.com/rubygems/rubygems/pull/2521) by SHIBATA Hiroshi.
|
1622
1642
|
* Don't treat inaccessible working directories as build failures. Pull
|
1623
|
-
request #1135 by Pete.
|
1643
|
+
request [#1135](https://github.com/rubygems/rubygems/pull/1135) by Pete.
|
1624
1644
|
* Remove useless directory parameter from builders .build methods.
|
1625
|
-
[rebased]. Pull request #1433 by Kurtis Rainbolt-Greene.
|
1626
|
-
* Skipping more than one gem in pristine. Pull request #1592 by Henne
|
1645
|
+
[rebased]. Pull request [#1433](https://github.com/rubygems/rubygems/pull/1433) by Kurtis Rainbolt-Greene.
|
1646
|
+
* Skipping more than one gem in pristine. Pull request [#1592](https://github.com/rubygems/rubygems/pull/1592) by Henne
|
1627
1647
|
Vogelsang.
|
1628
1648
|
* Add info command to print information about an installed gem. Pull
|
1629
|
-
request #2023 by Colby Swandale.
|
1649
|
+
request [#2023](https://github.com/rubygems/rubygems/pull/2023) by Colby Swandale.
|
1630
1650
|
* Add --[no-]check-development option to cleanup command. Pull request
|
1631
|
-
#2061 by Lin Jen-Shin (godfat).
|
1632
|
-
* Show which gem referenced a missing gem. Pull request #2067 by Artem
|
1651
|
+
[#2061](https://github.com/rubygems/rubygems/pull/2061) by Lin Jen-Shin (godfat).
|
1652
|
+
* Show which gem referenced a missing gem. Pull request [#2067](https://github.com/rubygems/rubygems/pull/2067) by Artem
|
1633
1653
|
Khramov.
|
1634
1654
|
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
1635
|
-
request #2086 by SHIBATA Hiroshi.
|
1655
|
+
request [#2086](https://github.com/rubygems/rubygems/pull/2086) by SHIBATA Hiroshi.
|
1636
1656
|
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
1637
|
-
request #2090 by Lucas Arantes.
|
1657
|
+
request [#2090](https://github.com/rubygems/rubygems/pull/2090) by Lucas Arantes.
|
1638
1658
|
* Workaround common options mutation in Gem::Command test. Pull request
|
1639
|
-
#2098 by Thibault Jouan.
|
1640
|
-
* Extract a SpecificationPolicy validation class. Pull request #2101 by
|
1659
|
+
[#2098](https://github.com/rubygems/rubygems/pull/2098) by Thibault Jouan.
|
1660
|
+
* Extract a SpecificationPolicy validation class. Pull request [#2101](https://github.com/rubygems/rubygems/pull/2101) by
|
1641
1661
|
Olle Jonsson.
|
1642
1662
|
* Handle environment that does not have `flock` system call. Pull request
|
1643
|
-
#2107 by SHIBATA Hiroshi.
|
1644
|
-
* Handle the explain option in gem update. Pull request #2110 by Colby
|
1663
|
+
[#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
|
1664
|
+
* Handle the explain option in gem update. Pull request [#2110](https://github.com/rubygems/rubygems/pull/2110) by Colby
|
1645
1665
|
Swandale.
|
1646
1666
|
* Add Gem.operating_system_defaults to allow packagers to override
|
1647
|
-
defaults. Pull request #2116 by Vít Ondruch.
|
1648
|
-
* Update for compatibility with new minitest. Pull request #2118 by
|
1667
|
+
defaults. Pull request [#2116](https://github.com/rubygems/rubygems/pull/2116) by Vít Ondruch.
|
1668
|
+
* Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by
|
1649
1669
|
MSP-Greg.
|
1650
|
-
* Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
|
1670
|
+
* Make Windows bin stubs portable. Pull request [#2119](https://github.com/rubygems/rubygems/pull/2119) by MSP-Greg.
|
1651
1671
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
1652
|
-
#2125 by SHIBATA Hiroshi.
|
1672
|
+
[#2125](https://github.com/rubygems/rubygems/pull/2125) by SHIBATA Hiroshi.
|
1653
1673
|
* Set whether bundler is used for gemdeps with an environmental variable.
|
1654
|
-
Pull request #2126 by SHIBATA Hiroshi.
|
1655
|
-
* Titleize "GETTING HELP" in readme. Pull request #2136 by Colby Swandale.
|
1674
|
+
Pull request [#2126](https://github.com/rubygems/rubygems/pull/2126) by SHIBATA Hiroshi.
|
1675
|
+
* Titleize "GETTING HELP" in readme. Pull request [#2136](https://github.com/rubygems/rubygems/pull/2136) by Colby Swandale.
|
1656
1676
|
* Improve the error message given when using --version with multiple gems
|
1657
|
-
in the install command. Pull request #2137 by Colby Swandale.
|
1658
|
-
* Use `File.open` instead of `open`. Pull request #2142 by SHIBATA
|
1677
|
+
in the install command. Pull request [#2137](https://github.com/rubygems/rubygems/pull/2137) by Colby Swandale.
|
1678
|
+
* Use `File.open` instead of `open`. Pull request [#2142](https://github.com/rubygems/rubygems/pull/2142) by SHIBATA
|
1659
1679
|
Hiroshi.
|
1660
1680
|
* Gem::Util.traverse_parents should not crash on permissions error. Pull
|
1661
|
-
request #2147 by Robert Ulejczyk.
|
1662
|
-
* [Installer] Avoid a #mkdir race condition. Pull request #2148 by Samuel
|
1681
|
+
request [#2147](https://github.com/rubygems/rubygems/pull/2147) by Robert Ulejczyk.
|
1682
|
+
* [Installer] Avoid a #mkdir race condition. Pull request [#2148](https://github.com/rubygems/rubygems/pull/2148) by Samuel
|
1663
1683
|
Giddins.
|
1664
1684
|
* Allow writing gemspecs from gem unpack to location specified by target
|
1665
|
-
option. Pull request #2150 by Colby Swandale.
|
1685
|
+
option. Pull request [#2150](https://github.com/rubygems/rubygems/pull/2150) by Colby Swandale.
|
1666
1686
|
* Raise errors in `gem uninstall` when a file in a gem could not be
|
1667
|
-
removed . Pull request #2154 by Colby Swandale.
|
1668
|
-
* Remove PID from gem index directory. Pull request #2155 by SHIBATA
|
1687
|
+
removed . Pull request [#2154](https://github.com/rubygems/rubygems/pull/2154) by Colby Swandale.
|
1688
|
+
* Remove PID from gem index directory. Pull request [#2155](https://github.com/rubygems/rubygems/pull/2155) by SHIBATA
|
1669
1689
|
Hiroshi.
|
1670
|
-
* Nil guard on `Gem::Specification`. Pull request #2164 by SHIBATA
|
1690
|
+
* Nil guard on `Gem::Specification`. Pull request [#2164](https://github.com/rubygems/rubygems/pull/2164) by SHIBATA
|
1671
1691
|
Hiroshi.
|
1672
|
-
* Skip broken test with macOS platform. Pull request #2167 by SHIBATA
|
1692
|
+
* Skip broken test with macOS platform. Pull request [#2167](https://github.com/rubygems/rubygems/pull/2167) by SHIBATA
|
1673
1693
|
Hiroshi.
|
1674
1694
|
* Support option for `--destdir` with upgrade installer. Pull request
|
1675
|
-
#2169 by SHIBATA Hiroshi.
|
1676
|
-
* To use constant instead of hard-coded version. Pull request #2171 by
|
1695
|
+
[#2169](https://github.com/rubygems/rubygems/pull/2169) by SHIBATA Hiroshi.
|
1696
|
+
* To use constant instead of hard-coded version. Pull request [#2171](https://github.com/rubygems/rubygems/pull/2171) by
|
1677
1697
|
SHIBATA Hiroshi.
|
1678
|
-
* Add Rake task to install dev dependencies. Pull request #2173 by Ellen
|
1698
|
+
* Add Rake task to install dev dependencies. Pull request [#2173](https://github.com/rubygems/rubygems/pull/2173) by Ellen
|
1679
1699
|
Marie Dash.
|
1680
1700
|
* Add new sections to the README and explanation of what RubyGems is.
|
1681
|
-
Pull request #2174 by Colby Swandale.
|
1682
|
-
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
|
1701
|
+
Pull request [#2174](https://github.com/rubygems/rubygems/pull/2174) by Colby Swandale.
|
1702
|
+
* Prefer to use `Numeric#zero?` instead of `== 0`. Pull request [#2176](https://github.com/rubygems/rubygems/pull/2176) by
|
1683
1703
|
SHIBATA Hiroshi.
|
1684
|
-
* Ignore performance test of version regexp pattern. Pull request #2179 by
|
1704
|
+
* Ignore performance test of version regexp pattern. Pull request [#2179](https://github.com/rubygems/rubygems/pull/2179) by
|
1685
1705
|
SHIBATA Hiroshi.
|
1686
|
-
* Ignore .DS_Store files in the update_manifest task. Pull request #2199
|
1706
|
+
* Ignore .DS_Store files in the update_manifest task. Pull request [#2199](https://github.com/rubygems/rubygems/pull/2199)
|
1687
1707
|
by Colby Swandale.
|
1688
1708
|
* Allow building gems without having to be in the gem folder . Pull
|
1689
|
-
request #2204 by Colby Swandale.
|
1690
|
-
* Added coverage ability used by simplecov. Pull request #2207 by SHIBATA
|
1709
|
+
request [#2204](https://github.com/rubygems/rubygems/pull/2204) by Colby Swandale.
|
1710
|
+
* Added coverage ability used by simplecov. Pull request [#2207](https://github.com/rubygems/rubygems/pull/2207) by SHIBATA
|
1691
1711
|
Hiroshi.
|
1692
|
-
* Improve invalid proxy error message. Pull request #2217 by Luis
|
1712
|
+
* Improve invalid proxy error message. Pull request [#2217](https://github.com/rubygems/rubygems/pull/2217) by Luis
|
1693
1713
|
Sagastume.
|
1694
1714
|
* Simplify home directory detection and platform condition. Pull request
|
1695
|
-
#2218 by SHIBATA Hiroshi.
|
1696
|
-
* Permission options. Pull request #2219 by Nobuyoshi Nakada.
|
1697
|
-
* Improve gemspec and package task. Pull request #2220 by SHIBATA Hiroshi.
|
1698
|
-
* Prefer to use util_spec in `Gem::TestCase`. Pull request #2227 by
|
1715
|
+
[#2218](https://github.com/rubygems/rubygems/pull/2218) by SHIBATA Hiroshi.
|
1716
|
+
* Permission options. Pull request [#2219](https://github.com/rubygems/rubygems/pull/2219) by Nobuyoshi Nakada.
|
1717
|
+
* Improve gemspec and package task. Pull request [#2220](https://github.com/rubygems/rubygems/pull/2220) by SHIBATA Hiroshi.
|
1718
|
+
* Prefer to use util_spec in `Gem::TestCase`. Pull request [#2227](https://github.com/rubygems/rubygems/pull/2227) by
|
1699
1719
|
SHIBATA Hiroshi.
|
1700
1720
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
1701
|
-
request #2230 by Samuel Giddins.
|
1702
|
-
* Add a note for the non-semantically versioned case. Pull request #2242
|
1721
|
+
request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
|
1722
|
+
* Add a note for the non-semantically versioned case. Pull request [#2242](https://github.com/rubygems/rubygems/pull/2242)
|
1703
1723
|
by David Rodríguez.
|
1704
|
-
* Keep feature names loaded in the block. Pull request #2261 by Nobuyoshi
|
1724
|
+
* Keep feature names loaded in the block. Pull request [#2261](https://github.com/rubygems/rubygems/pull/2261) by Nobuyoshi
|
1705
1725
|
Nakada.
|
1706
|
-
* Tweak warning recommendation. Pull request #2266 by David Rodríguez.
|
1707
|
-
* Show git path in gem env. Pull request #2268 by Luis Sagastume.
|
1708
|
-
* Add `--env-shebang` flag to setup command. Pull request #2271 by James
|
1726
|
+
* Tweak warning recommendation. Pull request [#2266](https://github.com/rubygems/rubygems/pull/2266) by David Rodríguez.
|
1727
|
+
* Show git path in gem env. Pull request [#2268](https://github.com/rubygems/rubygems/pull/2268) by Luis Sagastume.
|
1728
|
+
* Add `--env-shebang` flag to setup command. Pull request [#2271](https://github.com/rubygems/rubygems/pull/2271) by James
|
1709
1729
|
Myers.
|
1710
1730
|
* Support SOURCE_DATE_EPOCH to make gem spec reproducible. Pull request
|
1711
|
-
#2278 by Levente Polyak.
|
1731
|
+
[#2278](https://github.com/rubygems/rubygems/pull/2278) by Levente Polyak.
|
1712
1732
|
* Chdir back to original directory when building an extension fails. Pull
|
1713
|
-
request #2282 by Samuel Giddins.
|
1714
|
-
* [Rakefile] Add a default task that runs the tests. Pull request #2283 by
|
1733
|
+
request [#2282](https://github.com/rubygems/rubygems/pull/2282) by Samuel Giddins.
|
1734
|
+
* [Rakefile] Add a default task that runs the tests. Pull request [#2283](https://github.com/rubygems/rubygems/pull/2283) by
|
1715
1735
|
Samuel Giddins.
|
1716
1736
|
* Support SOURCE_DATE_EPOCH to make gem tar reproducible. Pull request
|
1717
|
-
#2289 by Levente Polyak.
|
1718
|
-
* Reset hooks in test cases. Pull request #2297 by Samuel Giddins.
|
1719
|
-
* Minor typo: nokogiri. Pull request #2298 by Darshan Baid.
|
1720
|
-
* Ignore vendored molinillo from code coverage. Pull request #2302 by
|
1737
|
+
[#2289](https://github.com/rubygems/rubygems/pull/2289) by Levente Polyak.
|
1738
|
+
* Reset hooks in test cases. Pull request [#2297](https://github.com/rubygems/rubygems/pull/2297) by Samuel Giddins.
|
1739
|
+
* Minor typo: nokogiri. Pull request [#2298](https://github.com/rubygems/rubygems/pull/2298) by Darshan Baid.
|
1740
|
+
* Ignore vendored molinillo from code coverage. Pull request [#2302](https://github.com/rubygems/rubygems/pull/2302) by
|
1721
1741
|
SHIBATA Hiroshi.
|
1722
|
-
* Support IO.copy_stream. Pull request #2303 by okkez.
|
1723
|
-
* Prepare beta release. Pull request #2304 by SHIBATA Hiroshi.
|
1724
|
-
* Add error message when trying to open a default gem. Pull request #2307
|
1742
|
+
* Support IO.copy_stream. Pull request [#2303](https://github.com/rubygems/rubygems/pull/2303) by okkez.
|
1743
|
+
* Prepare beta release. Pull request [#2304](https://github.com/rubygems/rubygems/pull/2304) by SHIBATA Hiroshi.
|
1744
|
+
* Add error message when trying to open a default gem. Pull request [#2307](https://github.com/rubygems/rubygems/pull/2307)
|
1725
1745
|
by Luis Sagastume.
|
1726
|
-
* Add alias command 'i' for 'install' command. Pull request #2308 by
|
1746
|
+
* Add alias command 'i' for 'install' command. Pull request [#2308](https://github.com/rubygems/rubygems/pull/2308) by
|
1727
1747
|
ota42y.
|
1728
|
-
* Cleanup rdoc task in Rakefile. Pull request #2318 by SHIBATA Hiroshi.
|
1729
|
-
* Add testcase to test_gem_text.rb. Pull request #2329 by Oliver.
|
1730
|
-
* Gem build strict option. Pull request #2332 by David Rodríguez.
|
1731
|
-
* Make spec reset more informative. Pull request #2333 by Luis Sagastume.
|
1748
|
+
* Cleanup rdoc task in Rakefile. Pull request [#2318](https://github.com/rubygems/rubygems/pull/2318) by SHIBATA Hiroshi.
|
1749
|
+
* Add testcase to test_gem_text.rb. Pull request [#2329](https://github.com/rubygems/rubygems/pull/2329) by Oliver.
|
1750
|
+
* Gem build strict option. Pull request [#2332](https://github.com/rubygems/rubygems/pull/2332) by David Rodríguez.
|
1751
|
+
* Make spec reset more informative. Pull request [#2333](https://github.com/rubygems/rubygems/pull/2333) by Luis Sagastume.
|
1732
1752
|
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
1733
|
-
#2335 by Samuel Giddins.
|
1734
|
-
* Speed up globbing relative to given directories. Pull request #2336 by
|
1753
|
+
[#2335](https://github.com/rubygems/rubygems/pull/2335) by Samuel Giddins.
|
1754
|
+
* Speed up globbing relative to given directories. Pull request [#2336](https://github.com/rubygems/rubygems/pull/2336) by
|
1735
1755
|
Samuel Giddins.
|
1736
|
-
* Remove semver gem build warning. Pull request #2351 by David Rodríguez.
|
1737
|
-
* Expand symlinks in gem path. Pull request #2352 by Benoit Daloze.
|
1738
|
-
* Normalize comment indentations. Pull request #2353 by David Rodríguez.
|
1739
|
-
* Add bindir flag to pristine. Pull request #2361 by Luis Sagastume.
|
1740
|
-
* Add --user-install behaviour to cleanup command. Pull request #2362 by
|
1756
|
+
* Remove semver gem build warning. Pull request [#2351](https://github.com/rubygems/rubygems/pull/2351) by David Rodríguez.
|
1757
|
+
* Expand symlinks in gem path. Pull request [#2352](https://github.com/rubygems/rubygems/pull/2352) by Benoit Daloze.
|
1758
|
+
* Normalize comment indentations. Pull request [#2353](https://github.com/rubygems/rubygems/pull/2353) by David Rodríguez.
|
1759
|
+
* Add bindir flag to pristine. Pull request [#2361](https://github.com/rubygems/rubygems/pull/2361) by Luis Sagastume.
|
1760
|
+
* Add --user-install behaviour to cleanup command. Pull request [#2362](https://github.com/rubygems/rubygems/pull/2362) by
|
1741
1761
|
Luis Sagastume.
|
1742
|
-
* Allow build options to be passed to Rake. Pull request #2382 by Alyssa
|
1762
|
+
* Allow build options to be passed to Rake. Pull request [#2382](https://github.com/rubygems/rubygems/pull/2382) by Alyssa
|
1743
1763
|
Ross.
|
1744
|
-
* Add --re-sign flag to cert command. Pull request #2391 by Luis
|
1764
|
+
* Add --re-sign flag to cert command. Pull request [#2391](https://github.com/rubygems/rubygems/pull/2391) by Luis
|
1745
1765
|
Sagastume.
|
1746
|
-
* Fix "interpreted as grouped expression" warning. Pull request #2399 by
|
1766
|
+
* Fix "interpreted as grouped expression" warning. Pull request [#2399](https://github.com/rubygems/rubygems/pull/2399) by
|
1747
1767
|
Colby Swandale.
|
1748
1768
|
* [Gem::Ext::Builder] Comments to aid future refactoring. Pull request
|
1749
|
-
#2405 by Ellen Marie Dash.
|
1769
|
+
[#2405](https://github.com/rubygems/rubygems/pull/2405) by Ellen Marie Dash.
|
1750
1770
|
* Move CONTRIBUTING.rdoc and POLICIES.rdoc documents to markdown. Pull
|
1751
|
-
request #2412 by Colby Swandale.
|
1752
|
-
* Improve certificate expiration defaults. Pull request #2420 by Luis
|
1771
|
+
request [#2412](https://github.com/rubygems/rubygems/pull/2412) by Colby Swandale.
|
1772
|
+
* Improve certificate expiration defaults. Pull request [#2420](https://github.com/rubygems/rubygems/pull/2420) by Luis
|
1753
1773
|
Sagastume.
|
1754
|
-
* Freeze all possible constants. Pull request #2422 by Colby Swandale.
|
1774
|
+
* Freeze all possible constants. Pull request [#2422](https://github.com/rubygems/rubygems/pull/2422) by Colby Swandale.
|
1755
1775
|
* Fix bundler rubygems binstub not properly looking for bundler. Pull
|
1756
|
-
request #2426 by David Rodríguez.
|
1776
|
+
request [#2426](https://github.com/rubygems/rubygems/pull/2426) by David Rodríguez.
|
1757
1777
|
* Make sure rubygems never leaks to another installation. Pull request
|
1758
|
-
#2427 by David Rodríguez.
|
1759
|
-
* Update README.md. Pull request #2428 by Marc-André Lafortune.
|
1760
|
-
* Restrict special chars from prefixing new gem names. Pull request #2432
|
1778
|
+
[#2427](https://github.com/rubygems/rubygems/pull/2427) by David Rodríguez.
|
1779
|
+
* Update README.md. Pull request [#2428](https://github.com/rubygems/rubygems/pull/2428) by Marc-André Lafortune.
|
1780
|
+
* Restrict special chars from prefixing new gem names. Pull request [#2432](https://github.com/rubygems/rubygems/pull/2432)
|
1761
1781
|
by Luis Sagastume.
|
1762
1782
|
* This removes support for dynamic API backend lookup via DNS SRV records.
|
1763
|
-
Pull request #2433 by Arlandis Word.
|
1764
|
-
* Fix link to CONTRIBUTING.md doc. Pull request #2434 by Arlandis Word.
|
1765
|
-
* Support Keyword args with Psych. Pull request #2439 by SHIBATA Hiroshi.
|
1766
|
-
* Bug/kernel#warn uplevel. Pull request #2442 by Nobuyoshi Nakada.
|
1767
|
-
* Improve certificate error message. Pull request #2454 by Luis Sagastume.
|
1768
|
-
* Update gem open command help text. Pull request #2458 by Aditya Prakash.
|
1769
|
-
* Uninstall with versions. Pull request #2466 by David Rodríguez.
|
1770
|
-
* Add output option to build command. Pull request #2501 by Colby
|
1783
|
+
Pull request [#2433](https://github.com/rubygems/rubygems/pull/2433) by Arlandis Word.
|
1784
|
+
* Fix link to CONTRIBUTING.md doc. Pull request [#2434](https://github.com/rubygems/rubygems/pull/2434) by Arlandis Word.
|
1785
|
+
* Support Keyword args with Psych. Pull request [#2439](https://github.com/rubygems/rubygems/pull/2439) by SHIBATA Hiroshi.
|
1786
|
+
* Bug/kernel#warn uplevel. Pull request [#2442](https://github.com/rubygems/rubygems/pull/2442) by Nobuyoshi Nakada.
|
1787
|
+
* Improve certificate error message. Pull request [#2454](https://github.com/rubygems/rubygems/pull/2454) by Luis Sagastume.
|
1788
|
+
* Update gem open command help text. Pull request [#2458](https://github.com/rubygems/rubygems/pull/2458) by Aditya Prakash.
|
1789
|
+
* Uninstall with versions. Pull request [#2466](https://github.com/rubygems/rubygems/pull/2466) by David Rodríguez.
|
1790
|
+
* Add output option to build command. Pull request [#2501](https://github.com/rubygems/rubygems/pull/2501) by Colby
|
1771
1791
|
Swandale.
|
1772
|
-
* Move rubocop into a separate stage in travis ci. Pull request #2510 by
|
1792
|
+
* Move rubocop into a separate stage in travis ci. Pull request [#2510](https://github.com/rubygems/rubygems/pull/2510) by
|
1773
1793
|
Colby Swandale.
|
1774
|
-
* Ignore warnings with test_gem_specification.rb. Pull request #2523 by
|
1794
|
+
* Ignore warnings with test_gem_specification.rb. Pull request [#2523](https://github.com/rubygems/rubygems/pull/2523) by
|
1775
1795
|
SHIBATA Hiroshi.
|
1776
|
-
* Support the environment without OpenSSL. Pull request #2528 by SHIBATA
|
1796
|
+
* Support the environment without OpenSSL. Pull request [#2528](https://github.com/rubygems/rubygems/pull/2528) by SHIBATA
|
1777
1797
|
Hiroshi.
|
1778
1798
|
|
1779
1799
|
## Bug fixes:
|
1780
1800
|
|
1781
|
-
* Fix undefined method error when printing alert. Pull request #1884 by
|
1801
|
+
* Fix undefined method error when printing alert. Pull request [#1884](https://github.com/rubygems/rubygems/pull/1884) by
|
1782
1802
|
Robert Ross.
|
1783
1803
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
1784
|
-
#2115 by MSP-Greg.
|
1785
|
-
* Fixed typos. Pull request #2143 by SHIBATA Hiroshi.
|
1786
|
-
* Fix regression of destdir on Windows platform. Pull request #2178 by
|
1804
|
+
[#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
|
1805
|
+
* Fixed typos. Pull request [#2143](https://github.com/rubygems/rubygems/pull/2143) by SHIBATA Hiroshi.
|
1806
|
+
* Fix regression of destdir on Windows platform. Pull request [#2178](https://github.com/rubygems/rubygems/pull/2178) by
|
1787
1807
|
SHIBATA Hiroshi.
|
1788
1808
|
* Fixed no assignment variables about default gems installation. Pull
|
1789
|
-
request #2181 by SHIBATA Hiroshi.
|
1790
|
-
* Fix spelling errors in the README. Pull request #2187 by Colby Swandale.
|
1791
|
-
* Missing comma creates ambiguous meaning. Pull request #2190 by Clifford
|
1809
|
+
request [#2181](https://github.com/rubygems/rubygems/pull/2181) by SHIBATA Hiroshi.
|
1810
|
+
* Fix spelling errors in the README. Pull request [#2187](https://github.com/rubygems/rubygems/pull/2187) by Colby Swandale.
|
1811
|
+
* Missing comma creates ambiguous meaning. Pull request [#2190](https://github.com/rubygems/rubygems/pull/2190) by Clifford
|
1792
1812
|
Heath.
|
1793
|
-
* Fix getting started instructions. Pull request #2198 by Luis Sagastume.
|
1794
|
-
* Fix rubygems dev env. Pull request #2201 by Luis Sagastume.
|
1813
|
+
* Fix getting started instructions. Pull request [#2198](https://github.com/rubygems/rubygems/pull/2198) by Luis Sagastume.
|
1814
|
+
* Fix rubygems dev env. Pull request [#2201](https://github.com/rubygems/rubygems/pull/2201) by Luis Sagastume.
|
1795
1815
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
1796
|
-
request #2229 by Elias Hernandis.
|
1797
|
-
* Fix activation when multiple platforms installed. Pull request #2339 by
|
1816
|
+
request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
|
1817
|
+
* Fix activation when multiple platforms installed. Pull request [#2339](https://github.com/rubygems/rubygems/pull/2339) by
|
1798
1818
|
MSP-Greg.
|
1799
1819
|
* Fix required_ruby_version with prereleases and improve error message.
|
1800
|
-
Pull request #2344 by David Rodríguez.
|
1801
|
-
* Update tests for 'newer' Windows builds. Pull request #2348 by MSP-Greg.
|
1802
|
-
* Fix broken rubocop task by upgrading to 0.58.1. Pull request #2356 by
|
1820
|
+
Pull request [#2344](https://github.com/rubygems/rubygems/pull/2344) by David Rodríguez.
|
1821
|
+
* Update tests for 'newer' Windows builds. Pull request [#2348](https://github.com/rubygems/rubygems/pull/2348) by MSP-Greg.
|
1822
|
+
* Fix broken rubocop task by upgrading to 0.58.1. Pull request [#2356](https://github.com/rubygems/rubygems/pull/2356) by
|
1803
1823
|
David Rodríguez.
|
1804
1824
|
* Gem::Version should handle nil like it used to before. Pull request
|
1805
|
-
#2363 by Luis Sagastume.
|
1806
|
-
* Avoid need of C++ compiler to pass the test suite. Pull request #2367 by
|
1825
|
+
[#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
|
1826
|
+
* Avoid need of C++ compiler to pass the test suite. Pull request [#2367](https://github.com/rubygems/rubygems/pull/2367) by
|
1807
1827
|
Vít Ondruch.
|
1808
|
-
* Fix auto resign expired certificate. Pull request #2380 by Luis
|
1828
|
+
* Fix auto resign expired certificate. Pull request [#2380](https://github.com/rubygems/rubygems/pull/2380) by Luis
|
1809
1829
|
Sagastume.
|
1810
|
-
* Skip permissions-dependent test when root. Pull request #2386 by Alyssa
|
1830
|
+
* Skip permissions-dependent test when root. Pull request [#2386](https://github.com/rubygems/rubygems/pull/2386) by Alyssa
|
1811
1831
|
Ross.
|
1812
|
-
* Fix test that depended on /usr/bin being in PATH. Pull request #2387 by
|
1832
|
+
* Fix test that depended on /usr/bin being in PATH. Pull request [#2387](https://github.com/rubygems/rubygems/pull/2387) by
|
1813
1833
|
Alyssa Ross.
|
1814
|
-
* Fixed test fail with mswin environment. Pull request #2390 by SHIBATA
|
1834
|
+
* Fixed test fail with mswin environment. Pull request [#2390](https://github.com/rubygems/rubygems/pull/2390) by SHIBATA
|
1815
1835
|
Hiroshi.
|
1816
|
-
* Fix broken builds using the correct rubocop version. Pull request #2396
|
1836
|
+
* Fix broken builds using the correct rubocop version. Pull request [#2396](https://github.com/rubygems/rubygems/pull/2396)
|
1817
1837
|
by Luis Sagastume.
|
1818
|
-
* Fix extension builder failure when verbose. Pull request #2457 by Sorah
|
1838
|
+
* Fix extension builder failure when verbose. Pull request [#2457](https://github.com/rubygems/rubygems/pull/2457) by Sorah
|
1819
1839
|
Fukumori.
|
1820
|
-
* Fix test warnings. Pull request #2472 by MSP-Greg.
|
1840
|
+
* Fix test warnings. Pull request [#2472](https://github.com/rubygems/rubygems/pull/2472) by MSP-Greg.
|
1821
1841
|
* The test suite of bundler is not present ruby description. Pull request
|
1822
|
-
#2484 by SHIBATA Hiroshi.
|
1823
|
-
* Fix crash on certain gemspecs. Pull request #2506 by David Rodríguez.
|
1824
|
-
* Fixed test fails with the newer version of OpenSSL. Pull request #2507
|
1842
|
+
[#2484](https://github.com/rubygems/rubygems/pull/2484) by SHIBATA Hiroshi.
|
1843
|
+
* Fix crash on certain gemspecs. Pull request [#2506](https://github.com/rubygems/rubygems/pull/2506) by David Rodríguez.
|
1844
|
+
* Fixed test fails with the newer version of OpenSSL. Pull request [#2507](https://github.com/rubygems/rubygems/pull/2507)
|
1825
1845
|
by SHIBATA Hiroshi.
|
1826
|
-
* Fix broken symlink that points to ../*. Pull request #2516 by Akira
|
1846
|
+
* Fix broken symlink that points to ../*. Pull request [#2516](https://github.com/rubygems/rubygems/pull/2516) by Akira
|
1827
1847
|
Matsuda.
|
1828
|
-
* Fix remote fetcher tests. Pull request #2520 by Luis Sagastume.
|
1848
|
+
* Fix remote fetcher tests. Pull request [#2520](https://github.com/rubygems/rubygems/pull/2520) by Luis Sagastume.
|
1829
1849
|
* Fix tests when --program-suffix and similar ruby configure options are
|
1830
|
-
used. Pull request #2529 by Jeremy Evans.
|
1850
|
+
used. Pull request [#2529](https://github.com/rubygems/rubygems/pull/2529) by Jeremy Evans.
|
1831
1851
|
|
1832
1852
|
## Breaking changes:
|
1833
1853
|
|
1834
|
-
* IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
|
1854
|
+
* IO.binread is not provided at Ruby 1.8. Pull request [#2093](https://github.com/rubygems/rubygems/pull/2093) by SHIBATA
|
1835
1855
|
Hiroshi.
|
1836
1856
|
* Ignored to publish rdoc documentation of rubygems for
|
1837
|
-
docs.seattlerb.org. Pull request #2105 by SHIBATA Hiroshi.
|
1838
|
-
* Support pre-release RubyGems. Pull request #2128 by SHIBATA Hiroshi.
|
1839
|
-
* Relax minitest version for 5. Pull request #2131 by SHIBATA Hiroshi.
|
1840
|
-
* Remove zentest from dev dependency. Pull request #2132 by SHIBATA
|
1857
|
+
docs.seattlerb.org. Pull request [#2105](https://github.com/rubygems/rubygems/pull/2105) by SHIBATA Hiroshi.
|
1858
|
+
* Support pre-release RubyGems. Pull request [#2128](https://github.com/rubygems/rubygems/pull/2128) by SHIBATA Hiroshi.
|
1859
|
+
* Relax minitest version for 5. Pull request [#2131](https://github.com/rubygems/rubygems/pull/2131) by SHIBATA Hiroshi.
|
1860
|
+
* Remove zentest from dev dependency. Pull request [#2132](https://github.com/rubygems/rubygems/pull/2132) by SHIBATA
|
1841
1861
|
Hiroshi.
|
1842
|
-
* Remove hoe for test suite. Pull request #2160 by SHIBATA Hiroshi.
|
1843
|
-
* Cleanup deprecated tasks. Pull request #2162 by SHIBATA Hiroshi.
|
1844
|
-
* Drop to support Ruby < 2.2. Pull request #2182 by SHIBATA Hiroshi.
|
1845
|
-
* Cleanup deprecated style. Pull request #2193 by SHIBATA Hiroshi.
|
1846
|
-
* Remove CVEs from the rubygems repo. Pull request #2195 by Colby
|
1862
|
+
* Remove hoe for test suite. Pull request [#2160](https://github.com/rubygems/rubygems/pull/2160) by SHIBATA Hiroshi.
|
1863
|
+
* Cleanup deprecated tasks. Pull request [#2162](https://github.com/rubygems/rubygems/pull/2162) by SHIBATA Hiroshi.
|
1864
|
+
* Drop to support Ruby < 2.2. Pull request [#2182](https://github.com/rubygems/rubygems/pull/2182) by SHIBATA Hiroshi.
|
1865
|
+
* Cleanup deprecated style. Pull request [#2193](https://github.com/rubygems/rubygems/pull/2193) by SHIBATA Hiroshi.
|
1866
|
+
* Remove CVEs from the rubygems repo. Pull request [#2195](https://github.com/rubygems/rubygems/pull/2195) by Colby
|
1847
1867
|
Swandale.
|
1848
|
-
* Removed needless condition for old version of ruby. Pull request #2206
|
1868
|
+
* Removed needless condition for old version of ruby. Pull request [#2206](https://github.com/rubygems/rubygems/pull/2206)
|
1849
1869
|
by SHIBATA Hiroshi.
|
1850
|
-
* Removed deprecated methods over the limit day. Pull request #2216 by
|
1870
|
+
* Removed deprecated methods over the limit day. Pull request [#2216](https://github.com/rubygems/rubygems/pull/2216) by
|
1851
1871
|
SHIBATA Hiroshi.
|
1852
|
-
* Remove syck support. Pull request #2222 by SHIBATA Hiroshi.
|
1853
|
-
* Removed needless condition for Encoding. Pull request #2223 by SHIBATA
|
1872
|
+
* Remove syck support. Pull request [#2222](https://github.com/rubygems/rubygems/pull/2222) by SHIBATA Hiroshi.
|
1873
|
+
* Removed needless condition for Encoding. Pull request [#2223](https://github.com/rubygems/rubygems/pull/2223) by SHIBATA
|
1854
1874
|
Hiroshi.
|
1855
|
-
* Removed needless condition for String#force_encoding. Pull request #2225
|
1875
|
+
* Removed needless condition for String#force_encoding. Pull request [#2225](https://github.com/rubygems/rubygems/pull/2225)
|
1856
1876
|
by SHIBATA Hiroshi.
|
1857
|
-
* Removed needless OpenSSL patch for Ruby 1.8. Pull request #2243 by
|
1877
|
+
* Removed needless OpenSSL patch for Ruby 1.8. Pull request [#2243](https://github.com/rubygems/rubygems/pull/2243) by
|
1858
1878
|
SHIBATA Hiroshi.
|
1859
|
-
* Removed compatibility code for Ruby 1.9.2. Pull request #2244 by SHIBATA
|
1879
|
+
* Removed compatibility code for Ruby 1.9.2. Pull request [#2244](https://github.com/rubygems/rubygems/pull/2244) by SHIBATA
|
1860
1880
|
Hiroshi.
|
1861
|
-
* Removed needless version condition for the old ruby. Pull request #2252
|
1881
|
+
* Removed needless version condition for the old ruby. Pull request [#2252](https://github.com/rubygems/rubygems/pull/2252)
|
1862
1882
|
by SHIBATA Hiroshi.
|
1863
|
-
* Remove needless define/respond_to condition. Pull request #2255 by
|
1883
|
+
* Remove needless define/respond_to condition. Pull request [#2255](https://github.com/rubygems/rubygems/pull/2255) by
|
1864
1884
|
SHIBATA Hiroshi.
|
1865
|
-
* Use File.realpath directly in Gem::Package. Pull request #2284 by
|
1885
|
+
* Use File.realpath directly in Gem::Package. Pull request [#2284](https://github.com/rubygems/rubygems/pull/2284) by
|
1866
1886
|
SHIBATA Hiroshi.
|
1867
|
-
* Removed needless condition for old versions of Ruby. Pull request #2286
|
1887
|
+
* Removed needless condition for old versions of Ruby. Pull request [#2286](https://github.com/rubygems/rubygems/pull/2286)
|
1868
1888
|
by SHIBATA Hiroshi.
|
1869
1889
|
* Remove the --rdoc and --ri options from install/update. Pull request
|
1870
|
-
#2354 by Colby Swandale.
|
1890
|
+
[#2354](https://github.com/rubygems/rubygems/pull/2354) by Colby Swandale.
|
1871
1891
|
* Move authors assigner to required attributes section of
|
1872
|
-
Gem::Specification. Pull request #2406 by Grey Baker.
|
1873
|
-
* Remove rubyforge_page functionality. Pull request #2436 by Nick
|
1892
|
+
Gem::Specification. Pull request [#2406](https://github.com/rubygems/rubygems/pull/2406) by Grey Baker.
|
1893
|
+
* Remove rubyforge_page functionality. Pull request [#2436](https://github.com/rubygems/rubygems/pull/2436) by Nick
|
1874
1894
|
Schwaderer.
|
1875
|
-
* Drop ruby 1.8 support and use IO.popen. Pull request #2441 by Nobuyoshi
|
1895
|
+
* Drop ruby 1.8 support and use IO.popen. Pull request [#2441](https://github.com/rubygems/rubygems/pull/2441) by Nobuyoshi
|
1876
1896
|
Nakada.
|
1877
|
-
* Drop ruby 2.2 support. Pull request #2487 by David Rodríguez.
|
1878
|
-
* Remove some old compatibility code. Pull request #2488 by David
|
1897
|
+
* Drop ruby 2.2 support. Pull request [#2487](https://github.com/rubygems/rubygems/pull/2487) by David Rodríguez.
|
1898
|
+
* Remove some old compatibility code. Pull request [#2488](https://github.com/rubygems/rubygems/pull/2488) by David
|
1879
1899
|
Rodríguez.
|
1880
|
-
* Remove .document from src. Pull request #2489 by Colby Swandale.
|
1881
|
-
* Remove old version support. Pull request #2493 by Nobuyoshi Nakada.
|
1900
|
+
* Remove .document from src. Pull request [#2489](https://github.com/rubygems/rubygems/pull/2489) by Colby Swandale.
|
1901
|
+
* Remove old version support. Pull request [#2493](https://github.com/rubygems/rubygems/pull/2493) by Nobuyoshi Nakada.
|
1882
1902
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on
|
1883
|
-
major versions. Pull request #2515 by Colby Swandale.
|
1903
|
+
major versions. Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
1884
1904
|
|
1885
1905
|
# 2.7.10 / 2019-06-14
|
1886
1906
|
|
1887
1907
|
## Enhancements:
|
1888
1908
|
|
1889
|
-
* Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
|
1909
|
+
* Fix bundler rubygems binstub not properly looking for bundler. Pull request [#2426](https://github.com/rubygems/rubygems/pull/2426)
|
1890
1910
|
by David Rodríguez.
|
1891
1911
|
* [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
|
1892
|
-
Pull request #2515 by Colby Swandale.
|
1893
|
-
+ Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
|
1912
|
+
Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
|
1913
|
+
+ Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by MSP-Greg.
|
1894
1914
|
|
1895
1915
|
# 2.7.9 / 2019-03-05
|
1896
1916
|
|
@@ -1908,76 +1928,76 @@ Security fixes:
|
|
1908
1928
|
## Enhancements:
|
1909
1929
|
|
1910
1930
|
* [Requirement] Treat requirements with == versions as equal. Pull
|
1911
|
-
request #2230 by Samuel Giddins.
|
1912
|
-
* Fix exec_name documentation. Pull request #2239 by Luis Sagastume.
|
1913
|
-
* [TarHeader] Extract the empty header into a constant. Pull request #2247
|
1931
|
+
request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
|
1932
|
+
* Fix exec_name documentation. Pull request [#2239](https://github.com/rubygems/rubygems/pull/2239) by Luis Sagastume.
|
1933
|
+
* [TarHeader] Extract the empty header into a constant. Pull request [#2247](https://github.com/rubygems/rubygems/pull/2247)
|
1914
1934
|
by Samuel Giddins.
|
1915
1935
|
* Simplify the code that lets us call the original, non-monkeypatched
|
1916
|
-
Kernel#require. Pull request #2267 by Leon Miller-Out.
|
1917
|
-
* Add install alias documentation. Pull request #2320 by ota42y.
|
1936
|
+
Kernel#require. Pull request [#2267](https://github.com/rubygems/rubygems/pull/2267) by Leon Miller-Out.
|
1937
|
+
* Add install alias documentation. Pull request [#2320](https://github.com/rubygems/rubygems/pull/2320) by ota42y.
|
1918
1938
|
* [Rakefile] Set bundler build metadata when doing a release. Pull request
|
1919
|
-
#2335 by Samuel Giddins.
|
1920
|
-
* Backport commits from ruby core . Pull request #2347 by SHIBATA Hiroshi.
|
1921
|
-
* Sign in to the correct host before push. Pull request #2366 by Luis
|
1939
|
+
[#2335](https://github.com/rubygems/rubygems/pull/2335) by Samuel Giddins.
|
1940
|
+
* Backport commits from ruby core . Pull request [#2347](https://github.com/rubygems/rubygems/pull/2347) by SHIBATA Hiroshi.
|
1941
|
+
* Sign in to the correct host before push. Pull request [#2366](https://github.com/rubygems/rubygems/pull/2366) by Luis
|
1922
1942
|
Sagastume.
|
1923
|
-
* Bump bundler-1.16.4. Pull request #2381 by SHIBATA Hiroshi.
|
1924
|
-
* Improve bindir flag description. Pull request #2383 by Luis Sagastume.
|
1925
|
-
* Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
|
1943
|
+
* Bump bundler-1.16.4. Pull request [#2381](https://github.com/rubygems/rubygems/pull/2381) by SHIBATA Hiroshi.
|
1944
|
+
* Improve bindir flag description. Pull request [#2383](https://github.com/rubygems/rubygems/pull/2383) by Luis Sagastume.
|
1945
|
+
* Update bundler-1.16.6. Pull request [#2423](https://github.com/rubygems/rubygems/pull/2423) by SHIBATA Hiroshi.
|
1926
1946
|
|
1927
1947
|
## Bug fixes:
|
1928
1948
|
|
1929
1949
|
* Fix #1470: generate documentation when --install-dir is present. Pull
|
1930
|
-
request #2229 by Elias Hernandis.
|
1931
|
-
* Fix no proxy checking. Pull request #2249 by Luis Sagastume.
|
1932
|
-
* Validate SPDX license exceptions. Pull request #2257 by Mikit.
|
1933
|
-
* Retry api specification spec with original platform. Pull request #2275
|
1950
|
+
request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
|
1951
|
+
* Fix no proxy checking. Pull request [#2249](https://github.com/rubygems/rubygems/pull/2249) by Luis Sagastume.
|
1952
|
+
* Validate SPDX license exceptions. Pull request [#2257](https://github.com/rubygems/rubygems/pull/2257) by Mikit.
|
1953
|
+
* Retry api specification spec with original platform. Pull request [#2275](https://github.com/rubygems/rubygems/pull/2275)
|
1934
1954
|
by Luis Sagastume.
|
1935
|
-
* Fix approximate recommendation with prereleases. Pull request #2345 by
|
1955
|
+
* Fix approximate recommendation with prereleases. Pull request [#2345](https://github.com/rubygems/rubygems/pull/2345) by
|
1936
1956
|
David Rodríguez.
|
1937
1957
|
* Gem::Version should handle nil like it used to before. Pull request
|
1938
|
-
#2363 by Luis Sagastume.
|
1958
|
+
[#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
|
1939
1959
|
|
1940
1960
|
# 2.7.7 / 2018-05-08
|
1941
1961
|
|
1942
1962
|
## Enhancements:
|
1943
1963
|
|
1944
1964
|
* [RequestSet] Only suggest a gem version with an installable platform.
|
1945
|
-
Pull request #2175 by Samuel Giddins.
|
1965
|
+
Pull request [#2175](https://github.com/rubygems/rubygems/pull/2175) by Samuel Giddins.
|
1946
1966
|
* Fixed no assignment variables about default gems installation. Pull
|
1947
|
-
request #2181 by SHIBATA Hiroshi.
|
1948
|
-
* Backport improvements for test-case from Ruby core. Pull request #2189
|
1967
|
+
request [#2181](https://github.com/rubygems/rubygems/pull/2181) by SHIBATA Hiroshi.
|
1968
|
+
* Backport improvements for test-case from Ruby core. Pull request [#2189](https://github.com/rubygems/rubygems/pull/2189)
|
1949
1969
|
by SHIBATA Hiroshi.
|
1950
|
-
* Fix ruby warnings in test suite. Pull request #2205 by Colby Swandale.
|
1970
|
+
* Fix ruby warnings in test suite. Pull request [#2205](https://github.com/rubygems/rubygems/pull/2205) by Colby Swandale.
|
1951
1971
|
* To use Gem::Specification#bindir of bundler instead of hard coded path.
|
1952
|
-
Pull request #2208 by SHIBATA Hiroshi.
|
1953
|
-
* Update gem push --help description. Pull request #2215 by Luis
|
1972
|
+
Pull request [#2208](https://github.com/rubygems/rubygems/pull/2208) by SHIBATA Hiroshi.
|
1973
|
+
* Update gem push --help description. Pull request [#2215](https://github.com/rubygems/rubygems/pull/2215) by Luis
|
1954
1974
|
Sagastume.
|
1955
|
-
* Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
|
1975
|
+
* Backport ruby core commits. Pull request [#2264](https://github.com/rubygems/rubygems/pull/2264) by SHIBATA Hiroshi.
|
1956
1976
|
|
1957
1977
|
## Bug fixes:
|
1958
1978
|
|
1959
1979
|
* Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
|
1960
|
-
#2115 by MSP-Greg.
|
1961
|
-
* Fixed tempfile leak for RubyGems 2.7.6. Pull request #2194 by SHIBATA
|
1980
|
+
[#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
|
1981
|
+
* Fixed tempfile leak for RubyGems 2.7.6. Pull request [#2194](https://github.com/rubygems/rubygems/pull/2194) by SHIBATA
|
1962
1982
|
Hiroshi.
|
1963
|
-
* Add missing requires. Pull request #2196 by David Rodríguez.
|
1964
|
-
* Fix Gem::Version.correct?. Pull request #2203 by Masato Nakamura.
|
1965
|
-
* Fix verify_entry regex for metadata. Pull request #2212 by Luis
|
1983
|
+
* Add missing requires. Pull request [#2196](https://github.com/rubygems/rubygems/pull/2196) by David Rodríguez.
|
1984
|
+
* Fix Gem::Version.correct?. Pull request [#2203](https://github.com/rubygems/rubygems/pull/2203) by Masato Nakamura.
|
1985
|
+
* Fix verify_entry regex for metadata. Pull request [#2212](https://github.com/rubygems/rubygems/pull/2212) by Luis
|
1966
1986
|
Sagastume.
|
1967
|
-
* Fix path checks for case insensitive filesystem. Pull request #2211 by
|
1987
|
+
* Fix path checks for case insensitive filesystem. Pull request [#2211](https://github.com/rubygems/rubygems/pull/2211) by
|
1968
1988
|
Lars Kanis.
|
1969
1989
|
|
1970
1990
|
## Deprecations:
|
1971
1991
|
|
1972
|
-
* Deprecate unused code before removing them at #1524. Pull request #2197
|
1992
|
+
* Deprecate unused code before removing them at #1524. Pull request [#2197](https://github.com/rubygems/rubygems/pull/2197)
|
1973
1993
|
by SHIBATA Hiroshi.
|
1974
|
-
* Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
|
1975
|
-
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
|
1994
|
+
* Deprecate for rubygems 3. Pull request [#2214](https://github.com/rubygems/rubygems/pull/2214) by SHIBATA Hiroshi.
|
1995
|
+
* Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request [#2269](https://github.com/rubygems/rubygems/pull/2269) by
|
1976
1996
|
SHIBATA Hiroshi.
|
1977
1997
|
|
1978
1998
|
## Breaking changes:
|
1979
1999
|
|
1980
|
-
* Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
|
2000
|
+
* Update bundler-1.16.2. Pull request [#2291](https://github.com/rubygems/rubygems/pull/2291) by SHIBATA Hiroshi.
|
1981
2001
|
|
1982
2002
|
# 2.7.6 / 2018-02-16
|
1983
2003
|
|
@@ -2003,7 +2023,7 @@ Security fixes:
|
|
2003
2023
|
## Bug fixes:
|
2004
2024
|
|
2005
2025
|
* To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
|
2006
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
2026
|
+
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
2007
2027
|
* Support option for `--destdir` with upgrade installer. #2169 by Thibault Jouan.
|
2008
2028
|
* Remove PID from gem index directory. #2155 by SHIBATA Hiroshi.
|
2009
2029
|
* Avoid a #mkdir race condition #2148 by Samuel Giddins.
|
@@ -2016,226 +2036,226 @@ Security fixes:
|
|
2016
2036
|
|
2017
2037
|
## Bug fixes:
|
2018
2038
|
|
2019
|
-
* Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
|
2039
|
+
* Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
|
2020
2040
|
* Avoid to warnings about gemspec loadings in rubygems tests. Pull request
|
2021
|
-
#2125 by SHIBATA Hiroshi.
|
2022
|
-
* Fix updater with rubygems-2.7.3 Pull request #2124 by SHIBATA Hiroshi.
|
2041
|
+
[#2125](https://github.com/rubygems/rubygems/pull/2125) by SHIBATA Hiroshi.
|
2042
|
+
* Fix updater with rubygems-2.7.3 Pull request [#2124](https://github.com/rubygems/rubygems/pull/2124) by SHIBATA Hiroshi.
|
2023
2043
|
* Handle environment that does not have `flock` system call. Pull request
|
2024
|
-
#2107 by SHIBATA Hiroshi.
|
2044
|
+
[#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
|
2025
2045
|
|
2026
2046
|
# 2.7.3
|
2027
2047
|
|
2028
2048
|
## Enhancements:
|
2029
2049
|
|
2030
|
-
* Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
|
2050
|
+
* Removed needless version lock. Pull request [#2074](https://github.com/rubygems/rubygems/pull/2074) by SHIBATA Hiroshi.
|
2031
2051
|
* Add --[no-]check-development option to cleanup command. Pull request
|
2032
|
-
#2061 by Lin Jen-Shin (godfat).
|
2033
|
-
* Merge glob pattern using braces. Pull request #2072 by Kazuhiro
|
2052
|
+
[#2061](https://github.com/rubygems/rubygems/pull/2061) by Lin Jen-Shin (godfat).
|
2053
|
+
* Merge glob pattern using braces. Pull request [#2072](https://github.com/rubygems/rubygems/pull/2072) by Kazuhiro
|
2034
2054
|
NISHIYAMA.
|
2035
|
-
* Removed warnings of unused variables. Pull request #2084 by SHIBATA
|
2055
|
+
* Removed warnings of unused variables. Pull request [#2084](https://github.com/rubygems/rubygems/pull/2084) by SHIBATA
|
2036
2056
|
Hiroshi.
|
2037
|
-
* Call SPDX.org using HTTPS. Pull request #2102 by Olle Jonsson.
|
2038
|
-
* Remove multi load warning from plugins documentation. Pull request #2103
|
2057
|
+
* Call SPDX.org using HTTPS. Pull request [#2102](https://github.com/rubygems/rubygems/pull/2102) by Olle Jonsson.
|
2058
|
+
* Remove multi load warning from plugins documentation. Pull request [#2103](https://github.com/rubygems/rubygems/pull/2103)
|
2039
2059
|
by Thibault Jouan.
|
2040
2060
|
|
2041
2061
|
## Bug fixes:
|
2042
2062
|
|
2043
|
-
* Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
|
2063
|
+
* Fix test failure on Alpine Linux. Pull request [#2079](https://github.com/rubygems/rubygems/pull/2079) by Ellen Marie
|
2044
2064
|
Dash.
|
2045
|
-
* Avoid encoding issues by using binread in setup. Pull request #2089 by
|
2065
|
+
* Avoid encoding issues by using binread in setup. Pull request [#2089](https://github.com/rubygems/rubygems/pull/2089) by
|
2046
2066
|
Mauro Morales.
|
2047
2067
|
* Fix rake install_test_deps once the rake clean_env does not exist. Pull
|
2048
|
-
request #2090 by Lucas Oliveira.
|
2068
|
+
request [#2090](https://github.com/rubygems/rubygems/pull/2090) by Lucas Oliveira.
|
2049
2069
|
* Prevent to delete to "bundler-" prefix gem like bundler-audit. Pull
|
2050
|
-
request #2086 by SHIBATA Hiroshi.
|
2051
|
-
* Generate .bat files on Windows platform. Pull request #2094 by SHIBATA
|
2070
|
+
request [#2086](https://github.com/rubygems/rubygems/pull/2086) by SHIBATA Hiroshi.
|
2071
|
+
* Generate .bat files on Windows platform. Pull request [#2094](https://github.com/rubygems/rubygems/pull/2094) by SHIBATA
|
2052
2072
|
Hiroshi.
|
2053
2073
|
* Workaround common options mutation in Gem::Command test. Pull request
|
2054
|
-
#2098 by Thibault Jouan.
|
2055
|
-
* Check gems dir existence before removing bundler. Pull request #2104 by
|
2074
|
+
[#2098](https://github.com/rubygems/rubygems/pull/2098) by Thibault Jouan.
|
2075
|
+
* Check gems dir existence before removing bundler. Pull request [#2104](https://github.com/rubygems/rubygems/pull/2104) by
|
2056
2076
|
Thibault Jouan.
|
2057
|
-
* Use setup command --regenerate-binstubs option flag. Pull request #2099
|
2077
|
+
* Use setup command --regenerate-binstubs option flag. Pull request [#2099](https://github.com/rubygems/rubygems/pull/2099)
|
2058
2078
|
by Thibault Jouan.
|
2059
2079
|
|
2060
2080
|
# 2.7.2
|
2061
2081
|
|
2062
2082
|
## Bug fixes:
|
2063
2083
|
|
2064
|
-
* Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
|
2084
|
+
* Added template files to vendoerd bundler. Pull request [#2065](https://github.com/rubygems/rubygems/pull/2065) by SHIBATA
|
2065
2085
|
Hiroshi.
|
2066
|
-
* Added workaround for non-git environment. Pull request #2066 by SHIBATA
|
2086
|
+
* Added workaround for non-git environment. Pull request [#2066](https://github.com/rubygems/rubygems/pull/2066) by SHIBATA
|
2067
2087
|
Hiroshi.
|
2068
2088
|
|
2069
2089
|
# 2.7.1 (2017-11-03)
|
2070
2090
|
|
2071
2091
|
## Bug fixes:
|
2072
2092
|
|
2073
|
-
* Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
|
2093
|
+
* Fix `gem update --system` with RubyGems 2.7+. Pull request [#2054](https://github.com/rubygems/rubygems/pull/2054) by
|
2074
2094
|
Samuel Giddins.
|
2075
2095
|
|
2076
2096
|
# 2.7.0 (2017-11-02)
|
2077
2097
|
|
2078
2098
|
## Enhancements:
|
2079
2099
|
|
2080
|
-
* Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
|
2081
|
-
* Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
|
2082
|
-
* Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
|
2083
|
-
* Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
|
2100
|
+
* Update vendored bundler-1.16.0. Pull request [#2051](https://github.com/rubygems/rubygems/pull/2051) by Samuel Giddins.
|
2101
|
+
* Use Bundler for Gem.use_gemdeps. Pull request [#1674](https://github.com/rubygems/rubygems/pull/1674) by Samuel Giddins.
|
2102
|
+
* Add command `signin` to `gem` CLI. Pull request [#1944](https://github.com/rubygems/rubygems/pull/1944) by Shiva Bhusal.
|
2103
|
+
* Add Logout feature to CLI. Pull request [#1938](https://github.com/rubygems/rubygems/pull/1938) by Shiva Bhusal.
|
2084
2104
|
* Added message to uninstall command for gem that is not installed. Pull
|
2085
|
-
request #1979 by anant anil kolvankar.
|
2086
|
-
* Add --trust-policy option to unpack command. Pull request #1718 by
|
2105
|
+
request [#1979](https://github.com/rubygems/rubygems/pull/1979) by anant anil kolvankar.
|
2106
|
+
* Add --trust-policy option to unpack command. Pull request [#1718](https://github.com/rubygems/rubygems/pull/1718) by
|
2087
2107
|
Nobuyoshi Nakada.
|
2088
|
-
* Show default gems for all platforms. Pull request #1685 by Konstantin
|
2108
|
+
* Show default gems for all platforms. Pull request [#1685](https://github.com/rubygems/rubygems/pull/1685) by Konstantin
|
2089
2109
|
Shabanov.
|
2090
|
-
* Add Travis and Appveyor build status to README. Pull request #1918 by
|
2110
|
+
* Add Travis and Appveyor build status to README. Pull request [#1918](https://github.com/rubygems/rubygems/pull/1918) by
|
2091
2111
|
Jun Aruga.
|
2092
|
-
* Remove warning `no email specified` when no email. Pull request #1675 by
|
2112
|
+
* Remove warning `no email specified` when no email. Pull request [#1675](https://github.com/rubygems/rubygems/pull/1675) by
|
2093
2113
|
Leigh McCulloch.
|
2094
|
-
* Improve -rubygems performance. Pull request #1801 by Samuel Giddins.
|
2095
|
-
* Improve the performance of Kernel#require. Pull request #1678 by Samuel
|
2114
|
+
* Improve -rubygems performance. Pull request [#1801](https://github.com/rubygems/rubygems/pull/1801) by Samuel Giddins.
|
2115
|
+
* Improve the performance of Kernel#require. Pull request [#1678](https://github.com/rubygems/rubygems/pull/1678) by Samuel
|
2096
2116
|
Giddins.
|
2097
2117
|
* Improve user-facing messages by consistent casing of Ruby/RubyGems. Pull
|
2098
|
-
request #1771 by John Labovitz.
|
2118
|
+
request [#1771](https://github.com/rubygems/rubygems/pull/1771) by John Labovitz.
|
2099
2119
|
* Improve error message when Gem::RuntimeRequirementNotMetError is raised.
|
2100
|
-
Pull request #1789 by Luis Sagastume.
|
2101
|
-
* Code Improvement: Inheritance corrected. Pull request #1942 by Shiva
|
2120
|
+
Pull request [#1789](https://github.com/rubygems/rubygems/pull/1789) by Luis Sagastume.
|
2121
|
+
* Code Improvement: Inheritance corrected. Pull request [#1942](https://github.com/rubygems/rubygems/pull/1942) by Shiva
|
2102
2122
|
Bhusal.
|
2103
|
-
* [Source] Autoload fileutils. Pull request #1906 by Samuel Giddins.
|
2104
|
-
* Use Hash#fetch instead of if/else in Gem::ConfigFile. Pull request #1824
|
2123
|
+
* [Source] Autoload fileutils. Pull request [#1906](https://github.com/rubygems/rubygems/pull/1906) by Samuel Giddins.
|
2124
|
+
* Use Hash#fetch instead of if/else in Gem::ConfigFile. Pull request [#1824](https://github.com/rubygems/rubygems/pull/1824)
|
2105
2125
|
by Daniel Berger.
|
2106
|
-
* Require digest when it is used. Pull request #2006 by Samuel Giddins.
|
2126
|
+
* Require digest when it is used. Pull request [#2006](https://github.com/rubygems/rubygems/pull/2006) by Samuel Giddins.
|
2107
2127
|
* Do not index the doc folder in the `update_manifest` task. Pull request
|
2108
|
-
#2031 by Colby Swandale.
|
2109
|
-
* Don't use two postfix conditionals on one line. Pull request #2038 by
|
2128
|
+
[#2031](https://github.com/rubygems/rubygems/pull/2031) by Colby Swandale.
|
2129
|
+
* Don't use two postfix conditionals on one line. Pull request [#2038](https://github.com/rubygems/rubygems/pull/2038) by
|
2110
2130
|
Ellen Marie Dash.
|
2111
2131
|
* [SafeYAML] Avoid warning when Gem::Deprecate.skip is set. Pull request
|
2112
|
-
#2034 by Samuel Giddins.
|
2113
|
-
* Update gem yank description. Pull request #2009 by David Radcliffe.
|
2132
|
+
[#2034](https://github.com/rubygems/rubygems/pull/2034) by Samuel Giddins.
|
2133
|
+
* Update gem yank description. Pull request [#2009](https://github.com/rubygems/rubygems/pull/2009) by David Radcliffe.
|
2114
2134
|
* Fix formatting of installation instructions in README. Pull request
|
2115
|
-
#2018 by Jordan Danford.
|
2116
|
-
* Do not use #quick_spec internally. Pull request #1733 by Jon Moss.
|
2117
|
-
* Switch from docs to guides reference. Pull request #1886 by Jonathan
|
2135
|
+
[#2018](https://github.com/rubygems/rubygems/pull/2018) by Jordan Danford.
|
2136
|
+
* Do not use #quick_spec internally. Pull request [#1733](https://github.com/rubygems/rubygems/pull/1733) by Jon Moss.
|
2137
|
+
* Switch from docs to guides reference. Pull request [#1886](https://github.com/rubygems/rubygems/pull/1886) by Jonathan
|
2118
2138
|
Claudius.
|
2119
2139
|
* Happier message when latest version is already installed. Pull request
|
2120
|
-
#1956 by Jared Beck.
|
2121
|
-
* Update specification reference docs. Pull request #1960 by Grey Baker.
|
2140
|
+
[#1956](https://github.com/rubygems/rubygems/pull/1956) by Jared Beck.
|
2141
|
+
* Update specification reference docs. Pull request [#1960](https://github.com/rubygems/rubygems/pull/1960) by Grey Baker.
|
2122
2142
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
2123
|
-
request #1910 by Samuel Giddins.
|
2124
|
-
* Update cryptography for Gem::Security. Pull request #1691 by Sylvain
|
2143
|
+
request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
|
2144
|
+
* Update cryptography for Gem::Security. Pull request [#1691](https://github.com/rubygems/rubygems/pull/1691) by Sylvain
|
2125
2145
|
Daubert.
|
2126
2146
|
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
2127
|
-
#1808 by Jeremy Evans.
|
2128
|
-
* Matches_for_glob - remove root path. Pull request #2010 by ahorek.
|
2147
|
+
[#1808](https://github.com/rubygems/rubygems/pull/1808) by Jeremy Evans.
|
2148
|
+
* Matches_for_glob - remove root path. Pull request [#2010](https://github.com/rubygems/rubygems/pull/2010) by ahorek.
|
2129
2149
|
* Gem::Resolver#search_for update for reliable searching/sorting. Pull
|
2130
|
-
request #1993 by MSP-Greg.
|
2150
|
+
request [#1993](https://github.com/rubygems/rubygems/pull/1993) by MSP-Greg.
|
2131
2151
|
* Allow local installs with transitive prerelease requirements. Pull
|
2132
|
-
request #1990 by Samuel Giddins.
|
2133
|
-
* Small style fixes to Installer Set. Pull request #1985 by Arthur
|
2152
|
+
request [#1990](https://github.com/rubygems/rubygems/pull/1990) by Samuel Giddins.
|
2153
|
+
* Small style fixes to Installer Set. Pull request [#1985](https://github.com/rubygems/rubygems/pull/1985) by Arthur
|
2134
2154
|
Marzinkovskiy.
|
2135
|
-
* Setup cmd: Avoid terminating option string w/ dot. Pull request #1825 by
|
2155
|
+
* Setup cmd: Avoid terminating option string w/ dot. Pull request [#1825](https://github.com/rubygems/rubygems/pull/1825) by
|
2136
2156
|
Olle Jonsson.
|
2137
|
-
* Warn when no files are set. Pull request #1773 by Aidan Coyle.
|
2138
|
-
* Ensure `to_spec` falls back on prerelease specs. Pull request #1755 by
|
2157
|
+
* Warn when no files are set. Pull request [#1773](https://github.com/rubygems/rubygems/pull/1773) by Aidan Coyle.
|
2158
|
+
* Ensure `to_spec` falls back on prerelease specs. Pull request [#1755](https://github.com/rubygems/rubygems/pull/1755) by
|
2139
2159
|
André Arko.
|
2140
2160
|
* [Specification] Eval setting default attributes in #initialize. Pull
|
2141
|
-
request #1739 by Samuel Giddins.
|
2142
|
-
* Sort ordering of sources is preserved. Pull request #1633 by Nathan
|
2161
|
+
request [#1739](https://github.com/rubygems/rubygems/pull/1739) by Samuel Giddins.
|
2162
|
+
* Sort ordering of sources is preserved. Pull request [#1633](https://github.com/rubygems/rubygems/pull/1633) by Nathan
|
2143
2163
|
Ladd.
|
2144
|
-
* Retry with :prerelease when no suggestions are found. Pull request #1696
|
2164
|
+
* Retry with :prerelease when no suggestions are found. Pull request [#1696](https://github.com/rubygems/rubygems/pull/1696)
|
2145
2165
|
by Aditya Prakash.
|
2146
2166
|
* [Rakefile] Run `git submodule update --init` in `rake newb`. Pull
|
2147
|
-
request #1694 by Samuel Giddins.
|
2148
|
-
* [TestCase] Address comments around ui changes. Pull request #1677 by
|
2167
|
+
request [#1694](https://github.com/rubygems/rubygems/pull/1694) by Samuel Giddins.
|
2168
|
+
* [TestCase] Address comments around ui changes. Pull request [#1677](https://github.com/rubygems/rubygems/pull/1677) by
|
2149
2169
|
Samuel Giddins.
|
2150
|
-
* Eagerly resolve in activate_bin_path. Pull request #1666 by Samuel
|
2170
|
+
* Eagerly resolve in activate_bin_path. Pull request [#1666](https://github.com/rubygems/rubygems/pull/1666) by Samuel
|
2151
2171
|
Giddins.
|
2152
|
-
* [Version] Make hash based upon canonical segments. Pull request #1659 by
|
2172
|
+
* [Version] Make hash based upon canonical segments. Pull request [#1659](https://github.com/rubygems/rubygems/pull/1659) by
|
2153
2173
|
Samuel Giddins.
|
2154
|
-
* Add Ruby Together CTA, rearrange README a bit. Pull request #1775 by
|
2174
|
+
* Add Ruby Together CTA, rearrange README a bit. Pull request [#1775](https://github.com/rubygems/rubygems/pull/1775) by
|
2155
2175
|
Michael Bernstein.
|
2156
|
-
* Update Contributing.rdoc with new label usage. Pull request #1716 by
|
2176
|
+
* Update Contributing.rdoc with new label usage. Pull request [#1716](https://github.com/rubygems/rubygems/pull/1716) by
|
2157
2177
|
Lynn Cyrin.
|
2158
|
-
* Add --host sample to help. Pull request #1709 by Code Ahss.
|
2178
|
+
* Add --host sample to help. Pull request [#1709](https://github.com/rubygems/rubygems/pull/1709) by Code Ahss.
|
2159
2179
|
* Add a helpful suggestion when `gem install` fails due to required_rub….
|
2160
|
-
Pull request #1697 by Samuel Giddins.
|
2161
|
-
* Add cert expiration length flag. Pull request #1725 by Luis Sagastume.
|
2162
|
-
* Add submodule instructions to manual install. Pull request #1727 by
|
2180
|
+
Pull request [#1697](https://github.com/rubygems/rubygems/pull/1697) by Samuel Giddins.
|
2181
|
+
* Add cert expiration length flag. Pull request [#1725](https://github.com/rubygems/rubygems/pull/1725) by Luis Sagastume.
|
2182
|
+
* Add submodule instructions to manual install. Pull request [#1727](https://github.com/rubygems/rubygems/pull/1727) by
|
2163
2183
|
Joseph Frazier.
|
2164
|
-
* Allow usage of multiple `--version` operators. Pull request #1546 by
|
2184
|
+
* Allow usage of multiple `--version` operators. Pull request [#1546](https://github.com/rubygems/rubygems/pull/1546) by
|
2165
2185
|
James Wen.
|
2166
|
-
* Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
|
2186
|
+
* Warn when requiring deprecated files. Pull request [#1939](https://github.com/rubygems/rubygems/pull/1939) by Ellen Marie
|
2167
2187
|
Dash.
|
2168
2188
|
|
2169
2189
|
## Deprecations:
|
2170
2190
|
|
2171
2191
|
* Deprecate Gem::InstallerTestCase#util_gem_bindir and
|
2172
|
-
Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
|
2173
|
-
* Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
|
2192
|
+
Gem::InstallerTestCase#util_gem_dir. Pull request [#1729](https://github.com/rubygems/rubygems/pull/1729) by Jon Moss.
|
2193
|
+
* Deprecate passing options to Gem::GemRunner. Pull request [#1730](https://github.com/rubygems/rubygems/pull/1730) by Jon
|
2174
2194
|
Moss.
|
2175
|
-
* Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
|
2195
|
+
* Add deprecation for Gem#datadir. Pull request [#1732](https://github.com/rubygems/rubygems/pull/1732) by Jon Moss.
|
2176
2196
|
* Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
|
2177
|
-
Pull request #1731 by Jon Moss.
|
2197
|
+
Pull request [#1731](https://github.com/rubygems/rubygems/pull/1731) by Jon Moss.
|
2178
2198
|
|
2179
2199
|
## Breaking changes:
|
2180
2200
|
|
2181
2201
|
* Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
|
2182
|
-
unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
|
2202
|
+
unavailable on Ruby 2.5. Pull request [#2028](https://github.com/rubygems/rubygems/pull/2028) #2027 #2029
|
2183
2203
|
by SHIBATA Hiroshi.
|
2184
2204
|
* Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
|
2185
|
-
#1796 by Matej.
|
2205
|
+
[#1796](https://github.com/rubygems/rubygems/pull/1796) by Matej.
|
2186
2206
|
|
2187
2207
|
## Bug fixes:
|
2188
2208
|
|
2189
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
|
2209
|
+
* Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1876](https://github.com/rubygems/rubygems/pull/1876) by
|
2190
2210
|
MSP-Greg.
|
2191
2211
|
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
2192
|
-
request #1809 by Nicole Orchard.
|
2193
|
-
* Fix a typo. Pull request #1722 by Koichi ITO.
|
2194
|
-
* Fix error message Gem::Security::Policy. Pull request #1724 by Nobuyoshi
|
2212
|
+
request [#1809](https://github.com/rubygems/rubygems/pull/1809) by Nicole Orchard.
|
2213
|
+
* Fix a typo. Pull request [#1722](https://github.com/rubygems/rubygems/pull/1722) by Koichi ITO.
|
2214
|
+
* Fix error message Gem::Security::Policy. Pull request [#1724](https://github.com/rubygems/rubygems/pull/1724) by Nobuyoshi
|
2195
2215
|
Nakada.
|
2196
|
-
* Fixing links markdown formatting in README. Pull request #1791 by Piotr
|
2216
|
+
* Fixing links markdown formatting in README. Pull request [#1791](https://github.com/rubygems/rubygems/pull/1791) by Piotr
|
2197
2217
|
Kuczynski.
|
2198
|
-
* Fix failing Bundler 1.8.7 CI builds. Pull request #1820 by Samuel
|
2218
|
+
* Fix failing Bundler 1.8.7 CI builds. Pull request [#1820](https://github.com/rubygems/rubygems/pull/1820) by Samuel
|
2199
2219
|
Giddins.
|
2200
|
-
* Fixed test broken on ruby-head . Pull request #1842 by SHIBATA Hiroshi.
|
2201
|
-
* Fix typos with misspell. Pull request #1846 by SHIBATA Hiroshi.
|
2220
|
+
* Fixed test broken on ruby-head . Pull request [#1842](https://github.com/rubygems/rubygems/pull/1842) by SHIBATA Hiroshi.
|
2221
|
+
* Fix typos with misspell. Pull request [#1846](https://github.com/rubygems/rubygems/pull/1846) by SHIBATA Hiroshi.
|
2202
2222
|
* Fix gem open to open highest version number rather than lowest. Pull
|
2203
|
-
request #1877 by Tim Pope.
|
2223
|
+
request [#1877](https://github.com/rubygems/rubygems/pull/1877) by Tim Pope.
|
2204
2224
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
2205
|
-
request #1878 by Kazuaki Matsuo.
|
2206
|
-
* Fix typos in CONTRIBUTING.rdoc. Pull request #1909 by Mark Sayson.
|
2207
|
-
* Fix some small documentation issues in installer. Pull request #1972 by
|
2225
|
+
request [#1878](https://github.com/rubygems/rubygems/pull/1878) by Kazuaki Matsuo.
|
2226
|
+
* Fix typos in CONTRIBUTING.rdoc. Pull request [#1909](https://github.com/rubygems/rubygems/pull/1909) by Mark Sayson.
|
2227
|
+
* Fix some small documentation issues in installer. Pull request [#1972](https://github.com/rubygems/rubygems/pull/1972) by
|
2208
2228
|
Colby Swandale.
|
2209
|
-
* Fix links in Policies document. Pull request #1964 by Alyssa Ross.
|
2210
|
-
* Fix NoMethodError on bundler/inline environment. Pull request #2042 by
|
2229
|
+
* Fix links in Policies document. Pull request [#1964](https://github.com/rubygems/rubygems/pull/1964) by Alyssa Ross.
|
2230
|
+
* Fix NoMethodError on bundler/inline environment. Pull request [#2042](https://github.com/rubygems/rubygems/pull/2042) by
|
2211
2231
|
SHIBATA Hiroshi.
|
2212
|
-
* Correct comments for Gem::InstallerTestCase#setup. Pull request #1741 by
|
2232
|
+
* Correct comments for Gem::InstallerTestCase#setup. Pull request [#1741](https://github.com/rubygems/rubygems/pull/1741) by
|
2213
2233
|
MSP-Greg.
|
2214
2234
|
* Use File.expand_path for certification and key location. Pull request
|
2215
|
-
#1987 by SHIBATA Hiroshi.
|
2216
|
-
* Rescue EROFS. Pull request #1417 by Nobuyoshi Nakada.
|
2217
|
-
* Fix spelling of 'vulnerability'. Pull request #2022 by Philip Arndt.
|
2218
|
-
* Fix metadata link key names. Pull request #1896 by Aditya Prakash.
|
2219
|
-
* Fix a typo in uninstall_command.rb. Pull request #1934 by Yasuhiro
|
2235
|
+
[#1987](https://github.com/rubygems/rubygems/pull/1987) by SHIBATA Hiroshi.
|
2236
|
+
* Rescue EROFS. Pull request [#1417](https://github.com/rubygems/rubygems/pull/1417) by Nobuyoshi Nakada.
|
2237
|
+
* Fix spelling of 'vulnerability'. Pull request [#2022](https://github.com/rubygems/rubygems/pull/2022) by Philip Arndt.
|
2238
|
+
* Fix metadata link key names. Pull request [#1896](https://github.com/rubygems/rubygems/pull/1896) by Aditya Prakash.
|
2239
|
+
* Fix a typo in uninstall_command.rb. Pull request [#1934](https://github.com/rubygems/rubygems/pull/1934) by Yasuhiro
|
2220
2240
|
Horimoto.
|
2221
2241
|
* Gem::Requirement.create treat arguments as variable-length. Pull request
|
2222
|
-
#1830 by Toru YAGI.
|
2242
|
+
[#1830](https://github.com/rubygems/rubygems/pull/1830) by Toru YAGI.
|
2223
2243
|
* Display an explanation when rake encounters an ontological problem. Pull
|
2224
|
-
request #1982 by Wilson Bilkovich.
|
2225
|
-
* [Server] Handle gems with names ending in `-\d`. Pull request #1926 by
|
2244
|
+
request [#1982](https://github.com/rubygems/rubygems/pull/1982) by Wilson Bilkovich.
|
2245
|
+
* [Server] Handle gems with names ending in `-\d`. Pull request [#1926](https://github.com/rubygems/rubygems/pull/1926) by
|
2226
2246
|
Samuel Giddins.
|
2227
2247
|
* [InstallerSet] Avoid reloading _all_ local gems multiple times during
|
2228
|
-
dependency resolution. Pull request #1925 by Samuel Giddins.
|
2229
|
-
* Modify the return value of Gem::Version.correct?. Pull request #1916 by
|
2248
|
+
dependency resolution. Pull request [#1925](https://github.com/rubygems/rubygems/pull/1925) by Samuel Giddins.
|
2249
|
+
* Modify the return value of Gem::Version.correct?. Pull request [#1916](https://github.com/rubygems/rubygems/pull/1916) by
|
2230
2250
|
Tsukuru Tanimichi.
|
2231
|
-
* Validate metadata link keys. Pull request #1834 by Aditya Prakash.
|
2232
|
-
* Add changelog to metadata validation. Pull request #1885 by Aditya
|
2251
|
+
* Validate metadata link keys. Pull request [#1834](https://github.com/rubygems/rubygems/pull/1834) by Aditya Prakash.
|
2252
|
+
* Add changelog to metadata validation. Pull request [#1885](https://github.com/rubygems/rubygems/pull/1885) by Aditya
|
2233
2253
|
Prakash.
|
2234
|
-
* Replace socket error text message. Pull request #1823 by Daniel Berger.
|
2254
|
+
* Replace socket error text message. Pull request [#1823](https://github.com/rubygems/rubygems/pull/1823) by Daniel Berger.
|
2235
2255
|
* Raise error if the email is invalid when building cert. Pull request
|
2236
|
-
#1779 by Luis Sagastume.
|
2256
|
+
[#1779](https://github.com/rubygems/rubygems/pull/1779) by Luis Sagastume.
|
2237
2257
|
* [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
|
2238
|
-
Pull request #1738 by Samuel Giddins.
|
2258
|
+
Pull request [#1738](https://github.com/rubygems/rubygems/pull/1738) by Samuel Giddins.
|
2239
2259
|
|
2240
2260
|
# 2.6.14 / 2017-10-09
|
2241
2261
|
|
@@ -2264,35 +2284,35 @@ Security fixes:
|
|
2264
2284
|
## Bug fixes:
|
2265
2285
|
|
2266
2286
|
* Fix test_self_find_files_with_gemfile to sort expected files. Pull
|
2267
|
-
request #1880 by Kazuaki Matsuo.
|
2268
|
-
* Fix issue for MinGW / MSYS2 builds and testing. Pull request #1879 by
|
2287
|
+
request [#1880](https://github.com/rubygems/rubygems/pull/1880) by Kazuaki Matsuo.
|
2288
|
+
* Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1879](https://github.com/rubygems/rubygems/pull/1879) by
|
2269
2289
|
MSP-Greg.
|
2270
2290
|
* Fix gem open to open highest version number rather than lowest. Pull
|
2271
|
-
request #1877 by Tim Pope.
|
2291
|
+
request [#1877](https://github.com/rubygems/rubygems/pull/1877) by Tim Pope.
|
2272
2292
|
* Add a test for requiring a default spec as installed by the ruby
|
2273
|
-
installer. Pull request #1899 by Samuel Giddins.
|
2274
|
-
* Fix broken --exact parameter to gem command. Pull request #1873 by Jason
|
2293
|
+
installer. Pull request [#1899](https://github.com/rubygems/rubygems/pull/1899) by Samuel Giddins.
|
2294
|
+
* Fix broken --exact parameter to gem command. Pull request [#1873](https://github.com/rubygems/rubygems/pull/1873) by Jason
|
2275
2295
|
Frey.
|
2276
|
-
* [Installer] Generate backwards-compatible binstubs. Pull request #1904
|
2296
|
+
* [Installer] Generate backwards-compatible binstubs. Pull request [#1904](https://github.com/rubygems/rubygems/pull/1904)
|
2277
2297
|
by Samuel Giddins.
|
2278
|
-
* Fix pre-existing source recognition on add action. Pull request #1883 by
|
2298
|
+
* Fix pre-existing source recognition on add action. Pull request [#1883](https://github.com/rubygems/rubygems/pull/1883) by
|
2279
2299
|
Jonathan Claudius.
|
2280
|
-
* Prevent negative IDs in output of #inspect. Pull request #1908 by Vít
|
2300
|
+
* Prevent negative IDs in output of #inspect. Pull request [#1908](https://github.com/rubygems/rubygems/pull/1908) by Vít
|
2281
2301
|
Ondruch.
|
2282
2302
|
* Allow Gem.finish_resolve to respect already-activated specs. Pull
|
2283
|
-
request #1910 by Samuel Giddins.
|
2303
|
+
request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
|
2284
2304
|
|
2285
2305
|
# 2.6.11 / 2017-03-16
|
2286
2306
|
|
2287
2307
|
## Bug fixes:
|
2288
2308
|
|
2289
|
-
* Fixed broken tests on ruby-head. Pull request #1841 by
|
2309
|
+
* Fixed broken tests on ruby-head. Pull request [#1841](https://github.com/rubygems/rubygems/pull/1841) by
|
2290
2310
|
SHIBATA Hiroshi.
|
2291
|
-
* Update vendored Molinillo to 0.5.7. Pull request #1859 by Samuel
|
2311
|
+
* Update vendored Molinillo to 0.5.7. Pull request [#1859](https://github.com/rubygems/rubygems/pull/1859) by Samuel
|
2292
2312
|
Giddins.
|
2293
|
-
* Avoid activating Ruby 2.5 default gems when possible. Pull request #1843
|
2313
|
+
* Avoid activating Ruby 2.5 default gems when possible. Pull request [#1843](https://github.com/rubygems/rubygems/pull/1843)
|
2294
2314
|
by Samuel Giddins.
|
2295
|
-
* Use improved resolver sorting algorithm. Pull request #1856 by
|
2315
|
+
* Use improved resolver sorting algorithm. Pull request [#1856](https://github.com/rubygems/rubygems/pull/1856) by
|
2296
2316
|
Samuel Giddins.
|
2297
2317
|
|
2298
2318
|
# 2.6.10 / 2017-01-23
|
@@ -2300,33 +2320,33 @@ Security fixes:
|
|
2300
2320
|
## Bug fixes:
|
2301
2321
|
|
2302
2322
|
* Fix `require` calling the wrong `gem` method when it is overridden.
|
2303
|
-
Pull request #1822 by Samuel Giddins.
|
2323
|
+
Pull request [#1822](https://github.com/rubygems/rubygems/pull/1822) by Samuel Giddins.
|
2304
2324
|
|
2305
2325
|
# 2.6.9 / 2017-01-20
|
2306
2326
|
|
2307
2327
|
## Bug fixes:
|
2308
2328
|
|
2309
|
-
* Allow initializing versions with empty strings. Pull request #1767 by
|
2329
|
+
* Allow initializing versions with empty strings. Pull request [#1767](https://github.com/rubygems/rubygems/pull/1767) by
|
2310
2330
|
Luis Sagastume.
|
2311
|
-
* Fix TypeError on 2.4. Pull request #1788 by Nobuyoshi Nakada.
|
2331
|
+
* Fix TypeError on 2.4. Pull request [#1788](https://github.com/rubygems/rubygems/pull/1788) by Nobuyoshi Nakada.
|
2312
2332
|
* Don't output mkmf.log message if compilation didn't fail. Pull request
|
2313
|
-
#1808 by Jeremy Evans.
|
2333
|
+
[#1808](https://github.com/rubygems/rubygems/pull/1808) by Jeremy Evans.
|
2314
2334
|
* Fixed broken links and overzealous URL encoding in gem server. Pull
|
2315
|
-
request #1809 by Nicole Orchard.
|
2316
|
-
* Update vendored Molinillo to 0.5.5. Pull request #1812 by Samuel
|
2335
|
+
request [#1809](https://github.com/rubygems/rubygems/pull/1809) by Nicole Orchard.
|
2336
|
+
* Update vendored Molinillo to 0.5.5. Pull request [#1812](https://github.com/rubygems/rubygems/pull/1812) by Samuel
|
2317
2337
|
Giddins.
|
2318
|
-
* RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
|
2338
|
+
* RakeBuilder: avoid frozen string issue. Pull request [#1819](https://github.com/rubygems/rubygems/pull/1819) by Olle
|
2319
2339
|
Jonsson.
|
2320
2340
|
|
2321
2341
|
# 2.6.8 / 2016-10-29
|
2322
2342
|
|
2323
2343
|
## Bug fixes:
|
2324
2344
|
|
2325
|
-
* Improve SSL verification failure message. Pull request #1751
|
2345
|
+
* Improve SSL verification failure message. Pull request [#1751](https://github.com/rubygems/rubygems/pull/1751)
|
2326
2346
|
by Eric Hodel.
|
2327
2347
|
* Ensure `to_spec` falls back on prerelease specs. Pull request
|
2328
|
-
#1755 by André Arko.
|
2329
|
-
* Update vendored Molinillo to 0.5.3. Pull request #1763 by
|
2348
|
+
[#1755](https://github.com/rubygems/rubygems/pull/1755) by André Arko.
|
2349
|
+
* Update vendored Molinillo to 0.5.3. Pull request [#1763](https://github.com/rubygems/rubygems/pull/1763) by
|
2330
2350
|
Samuel Giddins.
|
2331
2351
|
|
2332
2352
|
# 2.6.7 / 2016-09-26
|
@@ -2334,13 +2354,13 @@ Security fixes:
|
|
2334
2354
|
## Bug fixes:
|
2335
2355
|
|
2336
2356
|
* Install native extensions in the correct location when using the
|
2337
|
-
`--user-install` flag. Pull request #1683 by Noah Kantrowitz.
|
2357
|
+
`--user-install` flag. Pull request [#1683](https://github.com/rubygems/rubygems/pull/1683) by Noah Kantrowitz.
|
2338
2358
|
* When calling `Gem.sources`, load sources from `configuration`
|
2339
|
-
if present, else use the default sources. Pull request #1699
|
2359
|
+
if present, else use the default sources. Pull request [#1699](https://github.com/rubygems/rubygems/pull/1699)
|
2340
2360
|
by Luis Sagastume.
|
2341
2361
|
* Fail gracefully when attempting to redirect without a Location.
|
2342
|
-
Pull request #1711 by Samuel Giddins.
|
2343
|
-
* Update vendored Molinillo to 0.5.1. Pull request #1714 by
|
2362
|
+
Pull request [#1711](https://github.com/rubygems/rubygems/pull/1711) by Samuel Giddins.
|
2363
|
+
* Update vendored Molinillo to 0.5.1. Pull request [#1714](https://github.com/rubygems/rubygems/pull/1714) by
|
2344
2364
|
Samuel Giddins.
|
2345
2365
|
|
2346
2366
|
# 2.6.6 / 2016-06-22
|
@@ -2349,51 +2369,51 @@ Security fixes:
|
|
2349
2369
|
|
2350
2370
|
* Sort installed versions to make sure we install the latest version when
|
2351
2371
|
running `gem update --system`. As a one-time fix, run
|
2352
|
-
`gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
|
2372
|
+
`gem update --system=2.6.6`. Pull request [#1601](https://github.com/rubygems/rubygems/pull/1601) by David Radcliffe.
|
2353
2373
|
|
2354
2374
|
# 2.6.5 / 2016-06-21
|
2355
2375
|
|
2356
2376
|
## Enhancements:
|
2357
2377
|
|
2358
|
-
* Support for unified Integer in Ruby 2.4. Pull request #1618
|
2378
|
+
* Support for unified Integer in Ruby 2.4. Pull request [#1618](https://github.com/rubygems/rubygems/pull/1618)
|
2359
2379
|
by SHIBATA Hiroshi.
|
2360
2380
|
* Update vendored Molinillo to 0.5.0 for performance improvements.
|
2361
|
-
Pull request #1638 by Samuel Giddins.
|
2381
|
+
Pull request [#1638](https://github.com/rubygems/rubygems/pull/1638) by Samuel Giddins.
|
2362
2382
|
|
2363
2383
|
## Bug fixes:
|
2364
2384
|
|
2365
2385
|
* Raise an explicit error if Signer#sign is called with no certs. Pull
|
2366
|
-
request #1605 by Daniel Berger.
|
2386
|
+
request [#1605](https://github.com/rubygems/rubygems/pull/1605) by Daniel Berger.
|
2367
2387
|
* Update `update_bundled_ca_certificates` utility script for directory
|
2368
|
-
nesting. Pull request #1583 by James Wen.
|
2388
|
+
nesting. Pull request [#1583](https://github.com/rubygems/rubygems/pull/1583) by James Wen.
|
2369
2389
|
* Fix broken symlink support in tar writer (+ fix broken test). Pull
|
2370
|
-
request #1578 by Cezary Baginski.
|
2371
|
-
* Remove extension directory before (re-)installing. Pull request #1576
|
2390
|
+
request [#1578](https://github.com/rubygems/rubygems/pull/1578) by Cezary Baginski.
|
2391
|
+
* Remove extension directory before (re-)installing. Pull request [#1576](https://github.com/rubygems/rubygems/pull/1576)
|
2372
2392
|
by Jeremy Hinegardner.
|
2373
2393
|
* Regenerate test CA certificates with appropriate extensions. Pull
|
2374
|
-
request #1611 by rhenium.
|
2394
|
+
request [#1611](https://github.com/rubygems/rubygems/pull/1611) by rhenium.
|
2375
2395
|
* Rubygems does not terminate on failed file lock when not superuser. Pull
|
2376
|
-
request #1582 by Ellen Marie Dash.
|
2377
|
-
* Fix tar headers with a 101 character name. Pull request #1612 by Paweł
|
2396
|
+
request [#1582](https://github.com/rubygems/rubygems/pull/1582) by Ellen Marie Dash.
|
2397
|
+
* Fix tar headers with a 101 character name. Pull request [#1612](https://github.com/rubygems/rubygems/pull/1612) by Paweł
|
2378
2398
|
Tomulik.
|
2379
2399
|
* Add Gem.platform_defaults to allow implementations to override defaults.
|
2380
|
-
Pull request #1644 by Charles Oliver Nutter.
|
2381
|
-
* Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
|
2400
|
+
Pull request [#1644](https://github.com/rubygems/rubygems/pull/1644) by Charles Oliver Nutter.
|
2401
|
+
* Run Bundler tests on TravisCI. Pull request [#1650](https://github.com/rubygems/rubygems/pull/1650) by Samuel Giddins.
|
2382
2402
|
|
2383
2403
|
# 2.6.4 / 2016-04-26
|
2384
2404
|
|
2385
2405
|
## Enhancements:
|
2386
2406
|
|
2387
|
-
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
|
2407
|
+
* Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request [#1588](https://github.com/rubygems/rubygems/pull/1588)
|
2388
2408
|
by Chris Charabaruk.
|
2389
|
-
* Use File.symlink on MS Windows if supported. Pull request #1418
|
2409
|
+
* Use File.symlink on MS Windows if supported. Pull request [#1418](https://github.com/rubygems/rubygems/pull/1418)
|
2390
2410
|
by Nobuyoshi Nakada.
|
2391
2411
|
|
2392
2412
|
## Bug fixes:
|
2393
2413
|
|
2394
2414
|
* Redact uri password from error output when gem fetch fails. Pull request
|
2395
|
-
#1565 by Brian Fletcher.
|
2396
|
-
* Suppress warnings. Pull request #1594 by Nobuyoshi Nakada.
|
2415
|
+
[#1565](https://github.com/rubygems/rubygems/pull/1565) by Brian Fletcher.
|
2416
|
+
* Suppress warnings. Pull request [#1594](https://github.com/rubygems/rubygems/pull/1594) by Nobuyoshi Nakada.
|
2397
2417
|
* Escape user-supplied content served on web pages by `gem server` to avoid
|
2398
2418
|
potential XSS vulnerabilities. Samuel Giddins.
|
2399
2419
|
|
@@ -2401,136 +2421,136 @@ Security fixes:
|
|
2401
2421
|
|
2402
2422
|
## Enhancements:
|
2403
2423
|
|
2404
|
-
* Lazily calculate Gem::LoadError exception messages. Pull request #1550
|
2424
|
+
* Lazily calculate Gem::LoadError exception messages. Pull request [#1550](https://github.com/rubygems/rubygems/pull/1550)
|
2405
2425
|
by Aaron Patterson.
|
2406
|
-
* New fastly cert. Pull request #1548 by David Radcliffe.
|
2407
|
-
* Organize and cleanup SSL certs. Pull request #1555 by James Wen.
|
2426
|
+
* New fastly cert. Pull request [#1548](https://github.com/rubygems/rubygems/pull/1548) by David Radcliffe.
|
2427
|
+
* Organize and cleanup SSL certs. Pull request [#1555](https://github.com/rubygems/rubygems/pull/1555) by James Wen.
|
2408
2428
|
* [RubyGems] Make deprecation message for paths= more helpful. Pull
|
2409
|
-
request #1562 by Samuel Giddins.
|
2410
|
-
* Show default gems when using "gem list". Pull request #1570 by Luis
|
2429
|
+
request [#1562](https://github.com/rubygems/rubygems/pull/1562) by Samuel Giddins.
|
2430
|
+
* Show default gems when using "gem list". Pull request [#1570](https://github.com/rubygems/rubygems/pull/1570) by Luis
|
2411
2431
|
Sagastume.
|
2412
2432
|
|
2413
2433
|
## Bug fixes:
|
2414
2434
|
|
2415
2435
|
* Stub ordering should be consistent regardless of how cache is populated.
|
2416
|
-
Pull request #1552 by Aaron Patterson.
|
2436
|
+
Pull request [#1552](https://github.com/rubygems/rubygems/pull/1552) by Aaron Patterson.
|
2417
2437
|
* Handle cases when the @@stubs variable contains non-stubs. Pull request
|
2418
|
-
#1558 by Per Lundberg.
|
2419
|
-
* Fix test on Windows for inconsistent temp path. Pull request #1554 by
|
2438
|
+
[#1558](https://github.com/rubygems/rubygems/pull/1558) by Per Lundberg.
|
2439
|
+
* Fix test on Windows for inconsistent temp path. Pull request [#1554](https://github.com/rubygems/rubygems/pull/1554) by
|
2420
2440
|
Hiroshi Shirosaki.
|
2421
|
-
* Fix `Gem.find_spec_for_exe` picks oldest gem. Pull request #1566 by
|
2441
|
+
* Fix `Gem.find_spec_for_exe` picks oldest gem. Pull request [#1566](https://github.com/rubygems/rubygems/pull/1566) by
|
2422
2442
|
Shinichi Maeshima.
|
2423
2443
|
* [Owner] Fallback to email and userid when owner email is missing. Pull
|
2424
|
-
request #1569 by Samuel Giddins.
|
2425
|
-
* [Installer] Handle nil existing executable. Pull request #1561 by Samuel
|
2444
|
+
request [#1569](https://github.com/rubygems/rubygems/pull/1569) by Samuel Giddins.
|
2445
|
+
* [Installer] Handle nil existing executable. Pull request [#1561](https://github.com/rubygems/rubygems/pull/1561) by Samuel
|
2426
2446
|
Giddins.
|
2427
|
-
* Allow two digit version numbers in the tests. Pull request #1575 by unak.
|
2447
|
+
* Allow two digit version numbers in the tests. Pull request [#1575](https://github.com/rubygems/rubygems/pull/1575) by unak.
|
2428
2448
|
|
2429
2449
|
# 2.6.2 / 2016-03-12
|
2430
2450
|
|
2431
2451
|
## Bug fixes:
|
2432
2452
|
|
2433
|
-
* Fix wrong version of gem activation for bin stub. Pull request #1527 by
|
2453
|
+
* Fix wrong version of gem activation for bin stub. Pull request [#1527](https://github.com/rubygems/rubygems/pull/1527) by
|
2434
2454
|
Aaron Patterson.
|
2435
|
-
* Speed up gem activation failures. Pull request #1539 by Aaron Patterson.
|
2436
|
-
* Fix platform sorting in the resolver. Pull request #1542 by Samuel E.
|
2455
|
+
* Speed up gem activation failures. Pull request [#1539](https://github.com/rubygems/rubygems/pull/1539) by Aaron Patterson.
|
2456
|
+
* Fix platform sorting in the resolver. Pull request [#1542](https://github.com/rubygems/rubygems/pull/1542) by Samuel E.
|
2437
2457
|
Giddins.
|
2438
2458
|
* Ensure we unlock the monitor even if try_activate throws. Pull request
|
2439
|
-
#1538 by Charles Oliver Nutter.
|
2459
|
+
[#1538](https://github.com/rubygems/rubygems/pull/1538) by Charles Oliver Nutter.
|
2440
2460
|
|
2441
2461
|
|
2442
2462
|
# 2.6.1 / 2016-02-28
|
2443
2463
|
|
2444
2464
|
## Bug fixes:
|
2445
2465
|
|
2446
|
-
* Ensure `default_path` and `home` are set for paths. Pull request #1513
|
2466
|
+
* Ensure `default_path` and `home` are set for paths. Pull request [#1513](https://github.com/rubygems/rubygems/pull/1513)
|
2447
2467
|
by Aaron Patterson.
|
2448
2468
|
* Restore but deprecate support for Array values on `Gem.paths=`. Pull
|
2449
|
-
request #1514 by Aaron Patterson.
|
2469
|
+
request [#1514](https://github.com/rubygems/rubygems/pull/1514) by Aaron Patterson.
|
2450
2470
|
* Fix invalid gem file preventing gem install from working. Pull request
|
2451
|
-
#1499 by Luis Sagastume.
|
2471
|
+
[#1499](https://github.com/rubygems/rubygems/pull/1499) by Luis Sagastume.
|
2452
2472
|
|
2453
2473
|
# 2.6.0 / 2016-02-26
|
2454
2474
|
|
2455
2475
|
## Enhancements:
|
2456
2476
|
|
2457
2477
|
* RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
|
2458
|
-
metadata setting. Pull request #1486 by Josh Lane.
|
2459
|
-
* Update bundled Molinillo to 0.4.3. Pull request #1493 by Samuel E. Giddins.
|
2460
|
-
* Add version option to gem open command. Pull request #1483 by Hrvoje
|
2478
|
+
metadata setting. Pull request [#1486](https://github.com/rubygems/rubygems/pull/1486) by Josh Lane.
|
2479
|
+
* Update bundled Molinillo to 0.4.3. Pull request [#1493](https://github.com/rubygems/rubygems/pull/1493) by Samuel E. Giddins.
|
2480
|
+
* Add version option to gem open command. Pull request [#1483](https://github.com/rubygems/rubygems/pull/1483) by Hrvoje
|
2461
2481
|
Šimić.
|
2462
|
-
* Feature/add silent flag. Pull request #1455 by Luis Sagastume.
|
2463
|
-
* Allow specifying gem requirements via env variables. Pull request #1472
|
2482
|
+
* Feature/add silent flag. Pull request [#1455](https://github.com/rubygems/rubygems/pull/1455) by Luis Sagastume.
|
2483
|
+
* Allow specifying gem requirements via env variables. Pull request [#1472](https://github.com/rubygems/rubygems/pull/1472)
|
2464
2484
|
by Samuel E. Giddins.
|
2465
2485
|
|
2466
2486
|
## Bug fixes:
|
2467
2487
|
|
2468
2488
|
* RubyGems now stores `gem push` credentials under the host you signed-in for.
|
2469
|
-
Pull request #1485 by Josh Lane.
|
2470
|
-
* Move `coding` location to first line. Pull request #1471 by SHIBATA
|
2489
|
+
Pull request [#1485](https://github.com/rubygems/rubygems/pull/1485) by Josh Lane.
|
2490
|
+
* Move `coding` location to first line. Pull request [#1471](https://github.com/rubygems/rubygems/pull/1471) by SHIBATA
|
2471
2491
|
Hiroshi.
|
2472
|
-
* [PathSupport] Handle a regexp path separator. Pull request #1469 by
|
2492
|
+
* [PathSupport] Handle a regexp path separator. Pull request [#1469](https://github.com/rubygems/rubygems/pull/1469) by
|
2473
2493
|
Samuel E. Giddins.
|
2474
|
-
* Clean up the PathSupport object. Pull request #1094 by Aaron Patterson.
|
2475
|
-
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request #1476 by
|
2494
|
+
* Clean up the PathSupport object. Pull request [#1094](https://github.com/rubygems/rubygems/pull/1094) by Aaron Patterson.
|
2495
|
+
* Join with File::PATH_SEPARATOR in Gem.use_paths. Pull request [#1476](https://github.com/rubygems/rubygems/pull/1476) by
|
2476
2496
|
Samuel E. Giddins.
|
2477
2497
|
* Handle when the gem home and gem path aren't set in the config file. Pull
|
2478
|
-
request #1478 by Samuel E. Giddins.
|
2479
|
-
* Terminate TimeoutHandler. Pull request #1479 by Nobuyoshi Nakada.
|
2480
|
-
* Remove redundant cache. Pull request #1482 by Eileen M. Uchitelle.
|
2481
|
-
* Freeze `Gem::Version@segments` instance variable. Pull request #1487 by
|
2498
|
+
request [#1478](https://github.com/rubygems/rubygems/pull/1478) by Samuel E. Giddins.
|
2499
|
+
* Terminate TimeoutHandler. Pull request [#1479](https://github.com/rubygems/rubygems/pull/1479) by Nobuyoshi Nakada.
|
2500
|
+
* Remove redundant cache. Pull request [#1482](https://github.com/rubygems/rubygems/pull/1482) by Eileen M. Uchitelle.
|
2501
|
+
* Freeze `Gem::Version@segments` instance variable. Pull request [#1487](https://github.com/rubygems/rubygems/pull/1487) by
|
2482
2502
|
Ben Dean.
|
2483
2503
|
* Gem cleanup is trying to uninstall gems outside GEM_HOME and reporting
|
2484
|
-
an error after it tries. Pull request #1353 by Luis Sagastume.
|
2485
|
-
* Avoid duplicated sources. Pull request #1489 by Luis Sagastume.
|
2486
|
-
* Better description for quiet flag. Pull request #1491 by Luis Sagastume.
|
2487
|
-
* Raise error if find_by_name returns with nil. Pull request #1494 by
|
2504
|
+
an error after it tries. Pull request [#1353](https://github.com/rubygems/rubygems/pull/1353) by Luis Sagastume.
|
2505
|
+
* Avoid duplicated sources. Pull request [#1489](https://github.com/rubygems/rubygems/pull/1489) by Luis Sagastume.
|
2506
|
+
* Better description for quiet flag. Pull request [#1491](https://github.com/rubygems/rubygems/pull/1491) by Luis Sagastume.
|
2507
|
+
* Raise error if find_by_name returns with nil. Pull request [#1494](https://github.com/rubygems/rubygems/pull/1494) by
|
2488
2508
|
Zoltán Hegedüs.
|
2489
|
-
* Find_files only from loaded_gems when using gemdeps. Pull request #1277
|
2509
|
+
* Find_files only from loaded_gems when using gemdeps. Pull request [#1277](https://github.com/rubygems/rubygems/pull/1277)
|
2490
2510
|
by Michal Papis.
|
2491
2511
|
|
2492
2512
|
# 2.5.2 / 2016-01-31
|
2493
2513
|
|
2494
2514
|
## Bug fixes:
|
2495
2515
|
|
2496
|
-
* Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
|
2516
|
+
* Fix memoization of Gem::Version#prerelease? Pull request [#1125](https://github.com/rubygems/rubygems/pull/1125) by Matijs van
|
2497
2517
|
Zuijlen.
|
2498
2518
|
* Handle trailing colons in GEM_PATH, by Damien Robert.
|
2499
2519
|
* Improve the Gemfile `gemspec` method, fixing #1204 and #1033. Pull request
|
2500
|
-
#1276 by Michael Papis.
|
2501
|
-
* Warn only once when a gemspec license is invalid. Pull request #1414 by Samuel
|
2520
|
+
[#1276](https://github.com/rubygems/rubygems/pull/1276) by Michael Papis.
|
2521
|
+
* Warn only once when a gemspec license is invalid. Pull request [#1414](https://github.com/rubygems/rubygems/pull/1414) by Samuel
|
2502
2522
|
E. Giddins.
|
2503
2523
|
* Check for exact constants before using them, fixing Ruby bug #11940. Pull
|
2504
|
-
request #1438 by Nobuyoshi Nakada.
|
2505
|
-
* Fix building C extensions on Ruby 1.9.x on Windows. Pull request #1453 by Marie
|
2524
|
+
request [#1438](https://github.com/rubygems/rubygems/pull/1438) by Nobuyoshi Nakada.
|
2525
|
+
* Fix building C extensions on Ruby 1.9.x on Windows. Pull request [#1453](https://github.com/rubygems/rubygems/pull/1453) by Marie
|
2506
2526
|
Markwell.
|
2507
|
-
* Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
|
2527
|
+
* Handle symlinks containing ".." correctly. Pull request [#1457](https://github.com/rubygems/rubygems/pull/1457) by Samuel E.
|
2508
2528
|
Giddins.
|
2509
2529
|
|
2510
2530
|
## Enhancements:
|
2511
2531
|
|
2512
|
-
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
|
2532
|
+
* Add `--no-rc` flag, which skips loading `.gemrc`. Pull request [#1329](https://github.com/rubygems/rubygems/pull/1329) by Luis
|
2513
2533
|
Sagastume.
|
2514
2534
|
* Allow basic auth to be excluded from `allowed_push_host`. By Josh Lane.
|
2515
2535
|
* Add `gem list --exact`, which finds gems by string match instead of regex. Pull
|
2516
|
-
request #1344 by Luis Sagastume.
|
2517
|
-
* Suggest alternatives when gem license is unknown. Pull request #1443 by Samuel
|
2536
|
+
request [#1344](https://github.com/rubygems/rubygems/pull/1344) by Luis Sagastume.
|
2537
|
+
* Suggest alternatives when gem license is unknown. Pull request [#1443](https://github.com/rubygems/rubygems/pull/1443) by Samuel
|
2518
2538
|
E. Giddins.
|
2519
2539
|
* Print a useful error if a binstub expects a newer version of a gem than is
|
2520
|
-
installed. Pull request #1407 by Samuel E. Giddins.
|
2540
|
+
installed. Pull request [#1407](https://github.com/rubygems/rubygems/pull/1407) by Samuel E. Giddins.
|
2521
2541
|
* Allow the (supported) s3:// scheme to be used with `--source`. Pull request
|
2522
|
-
#1416 by Dave Adams.
|
2523
|
-
* Add `--[no-]post-install-message` to `install` and `update`. Pull request #1162
|
2542
|
+
[#1416](https://github.com/rubygems/rubygems/pull/1416) by Dave Adams.
|
2543
|
+
* Add `--[no-]post-install-message` to `install` and `update`. Pull request [#1162](https://github.com/rubygems/rubygems/pull/1162)
|
2524
2544
|
by Josef Šimánek.
|
2525
2545
|
* Add `--host` option to `yank`, providing symmetry with `pull`. Pull request
|
2526
|
-
#1361 by Mike Virata-Stone.
|
2527
|
-
* Update bundled Molinillo to 0.4.1. Pull request #1452 by Samuel E. Giddins.
|
2528
|
-
* Allow calling `build` without '.gemspec'. Pull request #1454 by Stephen
|
2546
|
+
[#1361](https://github.com/rubygems/rubygems/pull/1361) by Mike Virata-Stone.
|
2547
|
+
* Update bundled Molinillo to 0.4.1. Pull request [#1452](https://github.com/rubygems/rubygems/pull/1452) by Samuel E. Giddins.
|
2548
|
+
* Allow calling `build` without '.gemspec'. Pull request [#1454](https://github.com/rubygems/rubygems/pull/1454) by Stephen
|
2529
2549
|
Blackstone.
|
2530
|
-
* Add support for `source` option on gems in Gemfile. Pull request #1355 by
|
2550
|
+
* Add support for `source` option on gems in Gemfile. Pull request [#1355](https://github.com/rubygems/rubygems/pull/1355) by
|
2531
2551
|
Michael Papis.
|
2532
2552
|
* Function correctly when string literals are frozen on Ruby 2.3. Pull request
|
2533
|
-
#1408 by Samuel E. Giddins.
|
2553
|
+
[#1408](https://github.com/rubygems/rubygems/pull/1408) by Samuel E. Giddins.
|
2534
2554
|
|
2535
2555
|
# 2.5.1 / 2015-12-10
|
2536
2556
|
|
@@ -2538,30 +2558,30 @@ Security fixes:
|
|
2538
2558
|
|
2539
2559
|
* Ensure platform sorting only uses strings. Affected binary installs on Windows.
|
2540
2560
|
Issue #1369 reported by Ryan Atball (among others).
|
2541
|
-
Pull request #1375 by Samuel E. Giddins.
|
2561
|
+
Pull request [#1375](https://github.com/rubygems/rubygems/pull/1375) by Samuel E. Giddins.
|
2542
2562
|
* Revert PR #1332. Unable to reproduce, and nil should be impossible.
|
2543
2563
|
* Gem::Specification#to_fullpath now returns .rb extensions when such a file
|
2544
|
-
exists. Pull request #1114 by y-yagi.
|
2564
|
+
exists. Pull request [#1114](https://github.com/rubygems/rubygems/pull/1114) by y-yagi.
|
2545
2565
|
* RubyGems now handles Net::HTTPFatalError instead of crashing. Pull
|
2546
|
-
request #1314 by Samuel E. Giddins.
|
2547
|
-
* Updated bundled Molinillo to 0.4.0. Pull request #1322, #1396 by Samuel E.
|
2566
|
+
request [#1314](https://github.com/rubygems/rubygems/pull/1314) by Samuel E. Giddins.
|
2567
|
+
* Updated bundled Molinillo to 0.4.0. Pull request [#1322](https://github.com/rubygems/rubygems/pull/1322), #1396 by Samuel E.
|
2548
2568
|
Giddins.
|
2549
2569
|
* Improved performance of spec loading by reducing likelihood of loading the
|
2550
|
-
complete specification. Pull request #1373 by Aaron Patterson.
|
2551
|
-
* Improved caching of requirable files Pull request #1377 by Aaron Patterson.
|
2552
|
-
* Fixed activation of gems with development dependencies. Pull request #1388
|
2570
|
+
complete specification. Pull request [#1373](https://github.com/rubygems/rubygems/pull/1373) by Aaron Patterson.
|
2571
|
+
* Improved caching of requirable files Pull request [#1377](https://github.com/rubygems/rubygems/pull/1377) by Aaron Patterson.
|
2572
|
+
* Fixed activation of gems with development dependencies. Pull request [#1388](https://github.com/rubygems/rubygems/pull/1388)
|
2553
2573
|
by Samuel E. Giddins.
|
2554
2574
|
* RubyGems now uses the same Molinillo vendoring strategy as Bundler. Pull
|
2555
|
-
request #1397 by Samuel E. Giddins.
|
2556
|
-
* Fixed documentation of Gem::Requirement.parse. Pull request #1398 by
|
2575
|
+
request [#1397](https://github.com/rubygems/rubygems/pull/1397) by Samuel E. Giddins.
|
2576
|
+
* Fixed documentation of Gem::Requirement.parse. Pull request [#1398](https://github.com/rubygems/rubygems/pull/1398) by
|
2557
2577
|
Juanito Fatas.
|
2558
2578
|
* RubyGems no longer warns when a prerelease gem has prerelease dependencies.
|
2559
|
-
Pull request #1399 by Samuel E. Giddins.
|
2560
|
-
* Fixed Gem::Version documentation example. Pull request #1401 by Guilherme
|
2579
|
+
Pull request [#1399](https://github.com/rubygems/rubygems/pull/1399) by Samuel E. Giddins.
|
2580
|
+
* Fixed Gem::Version documentation example. Pull request [#1401](https://github.com/rubygems/rubygems/pull/1401) by Guilherme
|
2561
2581
|
Goettems Schneider.
|
2562
|
-
* Updated documentation links to https://. Pull request #1404 by Suriyaa
|
2582
|
+
* Updated documentation links to https://. Pull request [#1404](https://github.com/rubygems/rubygems/pull/1404) by Suriyaa
|
2563
2583
|
Kudo.
|
2564
|
-
* Fixed double word typo. Pull request #1411 by Jake Worth.
|
2584
|
+
* Fixed double word typo. Pull request [#1411](https://github.com/rubygems/rubygems/pull/1411) by Jake Worth.
|
2565
2585
|
|
2566
2586
|
# 2.5.0 / 2015-11-03
|
2567
2587
|
|
@@ -2572,24 +2592,24 @@ Security fixes:
|
|
2572
2592
|
Gem::Specification#license attribute to try to standardize (though not
|
2573
2593
|
enforce) licenses set by gem authors.
|
2574
2594
|
|
2575
|
-
Pull request #1249 by Kyle Mitchell.
|
2595
|
+
Pull request [#1249](https://github.com/rubygems/rubygems/pull/1249) by Kyle Mitchell.
|
2576
2596
|
|
2577
2597
|
* Use Molinillo as the resolver library. This is the same resolver as used by
|
2578
|
-
Bundler. Pull request #1189 by Samuel E. Giddins.
|
2579
|
-
* Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
|
2598
|
+
Bundler. Pull request [#1189](https://github.com/rubygems/rubygems/pull/1189) by Samuel E. Giddins.
|
2599
|
+
* Add `--skip=gem_name` to Pristine command. Pull request [#1018](https://github.com/rubygems/rubygems/pull/1018) by windwiny.
|
2580
2600
|
* The parsed gem dependencies file is now available via Gem.gemdeps following
|
2581
|
-
Gem.use_gemdeps. Pull request #1224 by Hsing-Hui Hsu, issue #1213 by
|
2601
|
+
Gem.use_gemdeps. Pull request [#1224](https://github.com/rubygems/rubygems/pull/1224) by Hsing-Hui Hsu, issue #1213 by
|
2582
2602
|
Michal Papis.
|
2583
2603
|
* Moved description attribute to recommended for Gem::Specification.
|
2584
|
-
Pull request #1046 by Michal Papis
|
2604
|
+
Pull request [#1046](https://github.com/rubygems/rubygems/pull/1046) by Michal Papis
|
2585
2605
|
* Moved `Gem::Indexer#abbreviate` and `#sanitize` to `Gem::Specification`.
|
2586
|
-
Pull request #1145 by Arthur Nogueira Neves
|
2606
|
+
Pull request [#1145](https://github.com/rubygems/rubygems/pull/1145) by Arthur Nogueira Neves
|
2587
2607
|
* Cache Gem::Version segments for `#bump` and `#release`.
|
2588
|
-
Pull request #1131 by Matijs van Zuijlen
|
2608
|
+
Pull request [#1131](https://github.com/rubygems/rubygems/pull/1131) by Matijs van Zuijlen
|
2589
2609
|
* Fix edge case in `levenshtein_distance` for comparing longer strings.
|
2590
|
-
Pull request #1173 by Richard Schneeman
|
2610
|
+
Pull request [#1173](https://github.com/rubygems/rubygems/pull/1173) by Richard Schneeman
|
2591
2611
|
* Remove duplication from List#to_a, improving from O(n^2) to O(n) time.
|
2592
|
-
Pull request #1200 by Marc Siegel.
|
2612
|
+
Pull request [#1200](https://github.com/rubygems/rubygems/pull/1200) by Marc Siegel.
|
2593
2613
|
* Gem::Specification.add_specs is deprecated and will be removed from version
|
2594
2614
|
3.0 with no replacement. To add specs, install the gem, then reset the
|
2595
2615
|
cache.
|
@@ -2601,95 +2621,95 @@ Security fixes:
|
|
2601
2621
|
cache by calling Gem::Specification.reset.
|
2602
2622
|
* Call Array#compact before calling Array#uniq for minor speed improvement in
|
2603
2623
|
the Gem::Specification#files method.
|
2604
|
-
Pull request #1253 by Marat Amerov.
|
2624
|
+
Pull request [#1253](https://github.com/rubygems/rubygems/pull/1253) by Marat Amerov.
|
2605
2625
|
* Use stringio instead of custom String classes.
|
2606
|
-
Pull request #1250 by Petr Skocik.
|
2626
|
+
Pull request [#1250](https://github.com/rubygems/rubygems/pull/1250) by Petr Skocik.
|
2607
2627
|
* Use URI#host instead of URI#hostname to retain backwards compatibility with
|
2608
2628
|
Ruby 1.9.2 and earlier in util library.
|
2609
|
-
Pull request #1288 by Joe Rafaniello.
|
2629
|
+
Pull request [#1288](https://github.com/rubygems/rubygems/pull/1288) by Joe Rafaniello.
|
2610
2630
|
* Documentation update for gem sources.
|
2611
|
-
Pull request #1324 by Ilya Vassilevsky.
|
2631
|
+
Pull request [#1324](https://github.com/rubygems/rubygems/pull/1324) by Ilya Vassilevsky.
|
2612
2632
|
* Documentation update for required_ruby_version.
|
2613
|
-
Pull request #1321 by Matt Patterson.
|
2633
|
+
Pull request [#1321](https://github.com/rubygems/rubygems/pull/1321) by Matt Patterson.
|
2614
2634
|
* Documentation update for gem update.
|
2615
|
-
Pull request #1306 by Tim Blair.
|
2635
|
+
Pull request [#1306](https://github.com/rubygems/rubygems/pull/1306) by Tim Blair.
|
2616
2636
|
* Emit a warning on SRV resolve failure.
|
2617
|
-
Pull request #1023 by Ivan Kuchin.
|
2637
|
+
Pull request [#1023](https://github.com/rubygems/rubygems/pull/1023) by Ivan Kuchin.
|
2618
2638
|
* Allow duplicate dependencies between runtime and development.
|
2619
|
-
Pull request #1032 by Murray Steele.
|
2639
|
+
Pull request [#1032](https://github.com/rubygems/rubygems/pull/1032) by Murray Steele.
|
2620
2640
|
* The gem env command now shows the user installation directory.
|
2621
|
-
Pull request #1343 by Luis Sagastume.
|
2641
|
+
Pull request [#1343](https://github.com/rubygems/rubygems/pull/1343) by Luis Sagastume.
|
2622
2642
|
* The Gem::Platform#=== method now treats a nil cpu arch the same as 'universal'.
|
2623
|
-
Pull request #1356 by Daniel Berger.
|
2643
|
+
Pull request [#1356](https://github.com/rubygems/rubygems/pull/1356) by Daniel Berger.
|
2624
2644
|
* Improved memory performance in Gem::Specification.traverse. Pull request
|
2625
|
-
#1188 by Aaron Patterson.
|
2626
|
-
* RubyGems packages now support symlinks. Pull request #1209 by Samuel E.
|
2645
|
+
[#1188](https://github.com/rubygems/rubygems/pull/1188) by Aaron Patterson.
|
2646
|
+
* RubyGems packages now support symlinks. Pull request [#1209](https://github.com/rubygems/rubygems/pull/1209) by Samuel E.
|
2627
2647
|
Giddins.
|
2628
2648
|
* RubyGems no longer outputs mkmf.log if it does not exist. Pull request
|
2629
|
-
#1222 by Andrew Hooker.
|
2630
|
-
* Added Bitrig platform. Pull request #1233 by John C. Vernaleo.
|
2649
|
+
[#1222](https://github.com/rubygems/rubygems/pull/1222) by Andrew Hooker.
|
2650
|
+
* Added Bitrig platform. Pull request [#1233](https://github.com/rubygems/rubygems/pull/1233) by John C. Vernaleo.
|
2631
2651
|
* Improved error message for first-time RubyGems developers. Pull request
|
2632
|
-
#1241 by André Arko
|
2652
|
+
[#1241](https://github.com/rubygems/rubygems/pull/1241) by André Arko
|
2633
2653
|
* Improved performance of Gem::Specification#load with cached specs. Pull
|
2634
|
-
request #1297 by Samuel E. Giddins.
|
2635
|
-
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
|
2654
|
+
request [#1297](https://github.com/rubygems/rubygems/pull/1297) by Samuel E. Giddins.
|
2655
|
+
* Gem::RemoteFetcher allows users to set HTTP headers. Pull request [#1363](https://github.com/rubygems/rubygems/pull/1363) by
|
2636
2656
|
Agis Anastasopoulos.
|
2637
2657
|
|
2638
2658
|
## Bug fixes:
|
2639
2659
|
|
2640
2660
|
* Fixed Rake homepage url in example for Gem::Specification#homepage.
|
2641
|
-
Pull request #1171 by Arthur Nogueira Neves
|
2661
|
+
Pull request [#1171](https://github.com/rubygems/rubygems/pull/1171) by Arthur Nogueira Neves
|
2642
2662
|
* Don't crash if partially uninstalled gem can't be found.
|
2643
|
-
Pull request #1283 by Cezary Baginski.
|
2663
|
+
Pull request [#1283](https://github.com/rubygems/rubygems/pull/1283) by Cezary Baginski.
|
2644
2664
|
* Test warning cleanup.
|
2645
|
-
Pull request #1298 by Samuel E. Giddins.
|
2665
|
+
Pull request [#1298](https://github.com/rubygems/rubygems/pull/1298) by Samuel E. Giddins.
|
2646
2666
|
* Documentation fix for GemDependencyAPI.
|
2647
|
-
Pull request #1308 by Michael Papis.
|
2667
|
+
Pull request [#1308](https://github.com/rubygems/rubygems/pull/1308) by Michael Papis.
|
2648
2668
|
* Fetcher now ignores ENOLCK errors in single threaded environments. This
|
2649
2669
|
handles an issue with gem installation on NFS as best we can. Addresses
|
2650
2670
|
issue #1176 by Ryan Moore.
|
2651
|
-
Pull request #1327 by Daniel Berger.
|
2671
|
+
Pull request [#1327](https://github.com/rubygems/rubygems/pull/1327) by Daniel Berger.
|
2652
2672
|
* Fix some path quoting issues in the test suite.
|
2653
|
-
Pull request #1328 by Gavin Miller.
|
2673
|
+
Pull request [#1328](https://github.com/rubygems/rubygems/pull/1328) by Gavin Miller.
|
2654
2674
|
* Fix NoMethodError in running ruby processes when gems are uninstalled.
|
2655
|
-
Pull request #1332 by Peter Drake.
|
2675
|
+
Pull request [#1332](https://github.com/rubygems/rubygems/pull/1332) by Peter Drake.
|
2656
2676
|
* Fixed a potential NoMethodError for gem cleanup.
|
2657
|
-
Pull request #1333 by Peter Drake.
|
2677
|
+
Pull request [#1333](https://github.com/rubygems/rubygems/pull/1333) by Peter Drake.
|
2658
2678
|
* Fixed gem help bug.
|
2659
|
-
Issue #1352 reported by bogem, pull request #1357 by Luis Sagastume.
|
2660
|
-
* Remove temporary directories after tests finish. Pull request #1181 by
|
2679
|
+
Issue #1352 reported by bogem, pull request [#1357](https://github.com/rubygems/rubygems/pull/1357) by Luis Sagastume.
|
2680
|
+
* Remove temporary directories after tests finish. Pull request [#1181](https://github.com/rubygems/rubygems/pull/1181) by
|
2661
2681
|
Nobuyoshi Nokada.
|
2662
|
-
* Update links in RubyGems documentation. Pull request #1185 by Darío Hereñú.
|
2663
|
-
* Prerelease gem executables can now be run. Pull request #1186 by Samuel E.
|
2682
|
+
* Update links in RubyGems documentation. Pull request [#1185](https://github.com/rubygems/rubygems/pull/1185) by Darío Hereñú.
|
2683
|
+
* Prerelease gem executables can now be run. Pull request [#1186](https://github.com/rubygems/rubygems/pull/1186) by Samuel E.
|
2664
2684
|
Giddins.
|
2665
|
-
* Updated RubyGems travis-ci ruby versions. Pull request #1187 by Samuel E.
|
2685
|
+
* Updated RubyGems travis-ci ruby versions. Pull request [#1187](https://github.com/rubygems/rubygems/pull/1187) by Samuel E.
|
2666
2686
|
Giddins.
|
2667
|
-
* Fixed release date of RubyGems 2.4.6. Pull request #1190 by Frieder
|
2687
|
+
* Fixed release date of RubyGems 2.4.6. Pull request [#1190](https://github.com/rubygems/rubygems/pull/1190) by Frieder
|
2668
2688
|
Bluemle.
|
2669
|
-
* Fixed bugs in gem activation. Pull request #1202 by Miklós Fazekas.
|
2670
|
-
* Fixed documentation for `gem list`. Pull request #1228 by Godfrey Chan.
|
2671
|
-
* Fixed #1200 history entry. Pull request #1234 by Marc Siegel.
|
2689
|
+
* Fixed bugs in gem activation. Pull request [#1202](https://github.com/rubygems/rubygems/pull/1202) by Miklós Fazekas.
|
2690
|
+
* Fixed documentation for `gem list`. Pull request [#1228](https://github.com/rubygems/rubygems/pull/1228) by Godfrey Chan.
|
2691
|
+
* Fixed #1200 history entry. Pull request [#1234](https://github.com/rubygems/rubygems/pull/1234) by Marc Siegel.
|
2672
2692
|
* Fixed synchronization issue when resetting the Gem::Specification gem list.
|
2673
|
-
Pull request #1239 by Samuel E. Giddins.
|
2674
|
-
* Fixed running tests in parallel. Pull request #1257 by SHIBATA Hiroshi.
|
2693
|
+
Pull request [#1239](https://github.com/rubygems/rubygems/pull/1239) by Samuel E. Giddins.
|
2694
|
+
* Fixed running tests in parallel. Pull request [#1257](https://github.com/rubygems/rubygems/pull/1257) by SHIBATA Hiroshi.
|
2675
2695
|
* Fixed running tests with `--program-prefix` or `--program-suffix` for ruby.
|
2676
|
-
Pull request #1258 by Shane Gibbs.
|
2677
|
-
* Fixed Gem::Specification#to_yaml. Pull request #1262 by Hiroaki Izu.
|
2696
|
+
Pull request [#1258](https://github.com/rubygems/rubygems/pull/1258) by Shane Gibbs.
|
2697
|
+
* Fixed Gem::Specification#to_yaml. Pull request [#1262](https://github.com/rubygems/rubygems/pull/1262) by Hiroaki Izu.
|
2678
2698
|
* Fixed taintedness of Gem::Specification#raw_require_paths. Pull request
|
2679
|
-
#1268 by Sam Ruby.
|
2680
|
-
* Fixed sorting of platforms when installing gems. Pull request #1271 by
|
2699
|
+
[#1268](https://github.com/rubygems/rubygems/pull/1268) by Sam Ruby.
|
2700
|
+
* Fixed sorting of platforms when installing gems. Pull request [#1271](https://github.com/rubygems/rubygems/pull/1271) by
|
2681
2701
|
nonsequitur.
|
2682
2702
|
* Use `--no-document` over deprecated documentation options when installing
|
2683
|
-
dependencies on travis. Pull request #1272 by takiy33.
|
2684
|
-
* Improved support for IPv6 addresses in URIs. Pull request #1275 by Joe
|
2703
|
+
dependencies on travis. Pull request [#1272](https://github.com/rubygems/rubygems/pull/1272) by takiy33.
|
2704
|
+
* Improved support for IPv6 addresses in URIs. Pull request [#1275](https://github.com/rubygems/rubygems/pull/1275) by Joe
|
2685
2705
|
Rafaniello.
|
2686
2706
|
* Spec validation no longer crashes if a file does not exist. Pull request
|
2687
|
-
#1278 by Samuel E. Giddins.
|
2688
|
-
* Gems can now be installed within `rescue`. Pull request #1282 by Samuel E.
|
2707
|
+
[#1278](https://github.com/rubygems/rubygems/pull/1278) by Samuel E. Giddins.
|
2708
|
+
* Gems can now be installed within `rescue`. Pull request [#1282](https://github.com/rubygems/rubygems/pull/1282) by Samuel E.
|
2689
2709
|
Giddins.
|
2690
2710
|
* Increased Diffie-Hellman key size for tests for modern OpenSSL. Pull
|
2691
|
-
request #1290 by Vít Ondruch.
|
2692
|
-
* RubyGems handles invalid config files better. Pull request #1367 by Agis
|
2711
|
+
request [#1290](https://github.com/rubygems/rubygems/pull/1290) by Vít Ondruch.
|
2712
|
+
* RubyGems handles invalid config files better. Pull request [#1367](https://github.com/rubygems/rubygems/pull/1367) by Agis
|
2693
2713
|
Anastasopoulos.
|
2694
2714
|
|
2695
2715
|
# 2.4.8 / 2015-06-08
|
@@ -2713,33 +2733,33 @@ Security fixes:
|
|
2713
2733
|
Issue #1141 by Jakub Jirutka.
|
2714
2734
|
* Moved extension directory after require_paths to fix missing constant bugs
|
2715
2735
|
in some gems with C extensions. Issue #784 by André Arko, pull request
|
2716
|
-
#1137 by Barry Allard.
|
2736
|
+
[#1137](https://github.com/rubygems/rubygems/pull/1137) by Barry Allard.
|
2717
2737
|
* Use Gem::Dependency#requirement when adding a dependency to an existing
|
2718
|
-
dependency instance. Pull request #1101 by Josh Cheek.
|
2738
|
+
dependency instance. Pull request [#1101](https://github.com/rubygems/rubygems/pull/1101) by Josh Cheek.
|
2719
2739
|
* Fixed warning of shadowed local variable in Gem::Specification. Pull request
|
2720
|
-
#1109 by Rohit Arondekar
|
2740
|
+
[#1109](https://github.com/rubygems/rubygems/pull/1109) by Rohit Arondekar
|
2721
2741
|
* Gem::Requirement should always sort requirements before coercion to Hash.
|
2722
|
-
Pull request #1139 by Eito Katagiri.
|
2742
|
+
Pull request [#1139](https://github.com/rubygems/rubygems/pull/1139) by Eito Katagiri.
|
2723
2743
|
* The `gem open` command should change the current working directory before
|
2724
|
-
opening the editor. Pull request #1142 by Alex Wood.
|
2744
|
+
opening the editor. Pull request [#1142](https://github.com/rubygems/rubygems/pull/1142) by Alex Wood.
|
2725
2745
|
* Ensure quotes are stripped from the Windows launcher script used to install
|
2726
|
-
gems. Pull request #1115 by Youngjun Song.
|
2746
|
+
gems. Pull request [#1115](https://github.com/rubygems/rubygems/pull/1115) by Youngjun Song.
|
2727
2747
|
* Fixed errors when writing to NFS to to 0444 files. Issue #1161 by Emmanuel
|
2728
2748
|
Hadoux.
|
2729
|
-
* Removed dead code in Gem::StreamUI. Pull request #1117 by mediaslave24.
|
2730
|
-
* Fixed typos. Pull request #1096 by hakeda.
|
2731
|
-
* Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request #1124 by Vít
|
2749
|
+
* Removed dead code in Gem::StreamUI. Pull request [#1117](https://github.com/rubygems/rubygems/pull/1117) by mediaslave24.
|
2750
|
+
* Fixed typos. Pull request [#1096](https://github.com/rubygems/rubygems/pull/1096) by hakeda.
|
2751
|
+
* Relaxed CMake dependency for RHEL 6 and CentOS 6. Pull request [#1124](https://github.com/rubygems/rubygems/pull/1124) by Vít
|
2732
2752
|
Ondruch.
|
2733
|
-
* Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
|
2753
|
+
* Relaxed Psych dependency. Pull request [#1128](https://github.com/rubygems/rubygems/pull/1128) by Vít Ondruch.
|
2734
2754
|
|
2735
2755
|
# 2.4.5 / 2014-12-03
|
2736
2756
|
|
2737
2757
|
## Bug fixes:
|
2738
2758
|
|
2739
2759
|
* Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
|
2740
|
-
request #1060 by unak.
|
2760
|
+
request [#1060](https://github.com/rubygems/rubygems/pull/1060) by unak.
|
2741
2761
|
* RubyGems no longer attempts to look up gems remotely with the --local flag.
|
2742
|
-
Pull request #1084 by Jeremy Evans.
|
2762
|
+
Pull request [#1084](https://github.com/rubygems/rubygems/pull/1084) by Jeremy Evans.
|
2743
2763
|
* Executable stubs use the correct gem version when RUBYGEMS_GEMDEPS is
|
2744
2764
|
active. Issue #1072 by Michael Kaiser-Nyman.
|
2745
2765
|
* Fixed handling of pinned gems in lockfiles with versions. Issue #1078 by
|
@@ -2748,30 +2768,30 @@ Security fixes:
|
|
2748
2768
|
* Fixed handling of platforms retrieved from the dependencies API. Issue
|
2749
2769
|
#1058 and patch suggestion by tux-mind.
|
2750
2770
|
* RubyGems now suggests a copy-pasteable `gem pristine` command when
|
2751
|
-
extensions are missing. Pull request #1057 by Shannon Skipper.
|
2752
|
-
* Improved errors for long file names when packaging. Pull request #1016 by
|
2771
|
+
extensions are missing. Pull request [#1057](https://github.com/rubygems/rubygems/pull/1057) by Shannon Skipper.
|
2772
|
+
* Improved errors for long file names when packaging. Pull request [#1016](https://github.com/rubygems/rubygems/pull/1016) by
|
2753
2773
|
Piotrek Bator.
|
2754
|
-
* `gem pristine` now skips gems cannot be found remotely. Pull request #1064
|
2774
|
+
* `gem pristine` now skips gems cannot be found remotely. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064)
|
2755
2775
|
by Tuomas Kareinen.
|
2756
|
-
* `gem pristine` now caches gems to the proper directory. Pull request #1064
|
2776
|
+
* `gem pristine` now caches gems to the proper directory. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064)
|
2757
2777
|
by Tuomas Kareinen.
|
2758
|
-
* `gem pristine` now skips bundled gems properly. Pull request #1064 by
|
2778
|
+
* `gem pristine` now skips bundled gems properly. Pull request [#1064](https://github.com/rubygems/rubygems/pull/1064) by
|
2759
2779
|
Tuomas Kareinen.
|
2760
|
-
* Improved interoperability of Vagrant with RubyGems. Pull request #1057 by
|
2780
|
+
* Improved interoperability of Vagrant with RubyGems. Pull request [#1057](https://github.com/rubygems/rubygems/pull/1057) by
|
2761
2781
|
Vít Ondruch.
|
2762
2782
|
* Renamed CONTRIBUTING to CONTRIBUTING.rdoc to allow markup. Pull request
|
2763
|
-
#1090 by Roberto Miranda.
|
2783
|
+
[#1090](https://github.com/rubygems/rubygems/pull/1090) by Roberto Miranda.
|
2764
2784
|
* Switched from #partition to #reject as only one collection is used. Pull
|
2765
|
-
request #1074 by Tuomas Kareinen.
|
2785
|
+
request [#1074](https://github.com/rubygems/rubygems/pull/1074) by Tuomas Kareinen.
|
2766
2786
|
* Fixed installation of gems on systems using memory-mapped files. Pull
|
2767
|
-
request #1038 by Justin Li.
|
2768
|
-
* Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request #1026 by
|
2787
|
+
request [#1038](https://github.com/rubygems/rubygems/pull/1038) by Justin Li.
|
2788
|
+
* Fixed bug in Gem::Text#min3 where `a == b < c`. Pull request [#1026](https://github.com/rubygems/rubygems/pull/1026) by
|
2769
2789
|
fortissimo1997.
|
2770
2790
|
* Fixed uninitialized variable warning in BasicSpecification. Pull request
|
2771
|
-
#1019 by Piotr Szotkowski.
|
2791
|
+
[#1019](https://github.com/rubygems/rubygems/pull/1019) by Piotr Szotkowski.
|
2772
2792
|
* Removed unneeded exception handling for cyclic dependencies. Pull request
|
2773
|
-
#1043 by Jens Wille.
|
2774
|
-
* Fixed grouped expression warning. Pull request #1081 by André Arko.
|
2793
|
+
[#1043](https://github.com/rubygems/rubygems/pull/1043) by Jens Wille.
|
2794
|
+
* Fixed grouped expression warning. Pull request [#1081](https://github.com/rubygems/rubygems/pull/1081) by André Arko.
|
2775
2795
|
* Fixed handling of platforms when writing lockfiles.
|
2776
2796
|
|
2777
2797
|
# 2.4.4 / 2014-11-12
|
@@ -2785,8 +2805,8 @@ Security fixes:
|
|
2785
2805
|
|
2786
2806
|
## Bug fixes:
|
2787
2807
|
|
2788
|
-
* Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
|
2789
|
-
* Fix typo in platform= docs. Pull request #1048 by @jasonrclark
|
2808
|
+
* Fix redefine MirrorCommand issue. Pull request [#1044](https://github.com/rubygems/rubygems/pull/1044) by @akr.
|
2809
|
+
* Fix typo in platform= docs. Pull request [#1048](https://github.com/rubygems/rubygems/pull/1048) by @jasonrclark
|
2790
2810
|
* Add root SSL certificates for upcoming certificate change. Fixes #1050 by
|
2791
2811
|
Protosac
|
2792
2812
|
|
@@ -2803,16 +2823,16 @@ This release was sponsored by Ruby Central.
|
|
2803
2823
|
* Lockfiles will no longer be truncated upon resolution errors.
|
2804
2824
|
* Fixed messaging for `gem owner -a`. Issue #1004 by Aaron Patterson, Ryan
|
2805
2825
|
Davis.
|
2806
|
-
* Removed meaningless ensure. Pull request #1003 by gogotanaka.
|
2807
|
-
* Improved wording of --source option help. Pull request #989 by Jason Clark.
|
2826
|
+
* Removed meaningless ensure. Pull request [#1003](https://github.com/rubygems/rubygems/pull/1003) by gogotanaka.
|
2827
|
+
* Improved wording of --source option help. Pull request [#989](https://github.com/rubygems/rubygems/pull/989) by Jason Clark.
|
2808
2828
|
* Empty build_info files are now ignored. Issue #903 by Adan Alvarado.
|
2809
2829
|
* Gem::Installer ignores dependency checks when installing development
|
2810
2830
|
dependencies. Issue #994 by Jens Willie.
|
2811
2831
|
* `gem update` now continues after dependency errors. Issue #993 by aaronchi.
|
2812
2832
|
* RubyGems no longer warns about semantic version dependencies for the 0.x
|
2813
|
-
range. Issue #987 by Jeff Felchner, pull request #1006 by Hsing-Hui Hsu.
|
2833
|
+
range. Issue #987 by Jeff Felchner, pull request [#1006](https://github.com/rubygems/rubygems/pull/1006) by Hsing-Hui Hsu.
|
2814
2834
|
* Added minimal lock to allow multithread installation of gems. Issue #982
|
2815
|
-
and pull request #1005 by Yorick Peterse
|
2835
|
+
and pull request [#1005](https://github.com/rubygems/rubygems/pull/1005) by Yorick Peterse
|
2816
2836
|
* RubyGems now considers prerelease dependencies as it did in earlier versions
|
2817
2837
|
when --prerelease is given. Issue #990 by Jeremy Tryba.
|
2818
2838
|
* Updated capitalization in README. Issue #1010 by Ben Bodenmiller.
|
@@ -2820,7 +2840,7 @@ This release was sponsored by Ruby Central.
|
|
2820
2840
|
* Fixed windows stub script generation for Cygwin. Issue #1000 by Brett
|
2821
2841
|
DiFrischia.
|
2822
2842
|
* Allow gem bindir and ruby.exe to live in separate directories. Pull request
|
2823
|
-
#942 by Ian Flynn.
|
2843
|
+
[#942](https://github.com/rubygems/rubygems/pull/942) by Ian Flynn.
|
2824
2844
|
* Fixed handling of gemspec in gem dependencies files to match Bundler
|
2825
2845
|
behavior. Issue #1020 by Michal Papis.
|
2826
2846
|
* Fixed `gem update` when updating to prereleases. Issue #1028 by Santiago
|
@@ -2840,10 +2860,10 @@ This release was sponsored by Ruby Central.
|
|
2840
2860
|
## Enhancements:
|
2841
2861
|
|
2842
2862
|
* The contents command now supports a --show-install-dir option that shows
|
2843
|
-
only the directory the gem is installed in. Feature request #966 by Akinori
|
2863
|
+
only the directory the gem is installed in. Feature request [#966](https://github.com/rubygems/rubygems/pull/966) by Akinori
|
2844
2864
|
MUSHA.
|
2845
2865
|
* Added a --build-root option to the install command for packagers. Pull
|
2846
|
-
request #965 by Marcus Rückert.
|
2866
|
+
request [#965](https://github.com/rubygems/rubygems/pull/965) by Marcus Rückert.
|
2847
2867
|
* Added vendor gem support to RubyGems. Package managers may now install gems
|
2848
2868
|
in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
|
2849
2869
|
Marcus Rückert.
|
@@ -2862,34 +2882,34 @@ This release was sponsored by Ruby Central.
|
|
2862
2882
|
Bug #941 by Michael Kaiser-Nyman.
|
2863
2883
|
* Added open to list of builtin commands (`gem open` now works). Reported by
|
2864
2884
|
Espen Antonsen.
|
2865
|
-
* `gem open` now works with command-line editors. Pull request #962 by Tim
|
2885
|
+
* `gem open` now works with command-line editors. Pull request [#962](https://github.com/rubygems/rubygems/pull/962) by Tim
|
2866
2886
|
Pope.
|
2867
|
-
* `gem install -g` now respects `--conservative`. Pull request #950 by Jeremy
|
2887
|
+
* `gem install -g` now respects `--conservative`. Pull request [#950](https://github.com/rubygems/rubygems/pull/950) by Jeremy
|
2868
2888
|
Evans.
|
2869
2889
|
* RubyGems releases announcements now now include checksums. Bug #939 by
|
2870
2890
|
Alexander E. Fischer.
|
2871
2891
|
* RubyGems now expands ~ in $PATH when checking if installed executables will
|
2872
|
-
be runnable. Pull request #945 by Alex Talker.
|
2892
|
+
be runnable. Pull request [#945](https://github.com/rubygems/rubygems/pull/945) by Alex Talker.
|
2873
2893
|
* Fixed `gem install -g --explain`. Issue #947 by Luis Lavena. Patch by
|
2874
2894
|
Hsing-Hui Hsu.
|
2875
|
-
* RubyGems locks less during gem activation. Pull request #951 by Aaron
|
2895
|
+
* RubyGems locks less during gem activation. Pull request [#951](https://github.com/rubygems/rubygems/pull/951) by Aaron
|
2876
2896
|
Patterson and Justin Searls, #969 by Jeremy Tryba.
|
2877
|
-
* Kernel#gem is now thread-safe. Pull request #967 by Aaron Patterson.
|
2897
|
+
* Kernel#gem is now thread-safe. Pull request [#967](https://github.com/rubygems/rubygems/pull/967) by Aaron Patterson.
|
2878
2898
|
* RubyGems now handles spaces in directory names for some parts of extension
|
2879
|
-
building. Pull request #949 by Tristan Hill.
|
2899
|
+
building. Pull request [#949](https://github.com/rubygems/rubygems/pull/949) by Tristan Hill.
|
2880
2900
|
* RubyGems no longer defines an empty Date class. Pull Request #948 by Benoit
|
2881
2901
|
Daloze.
|
2882
2902
|
* RubyGems respects --document options for `gem update` again. Bug 946 by
|
2883
2903
|
jonforums. Patch by Hsing-Hui Hsu.
|
2884
2904
|
* RubyGems generates documentation again with --ignore-dependencies. Bug #961
|
2885
2905
|
by Pulfer.
|
2886
|
-
* RubyGems can install extensions across partitions now. Pull request #970 by
|
2906
|
+
* RubyGems can install extensions across partitions now. Pull request [#970](https://github.com/rubygems/rubygems/pull/970) by
|
2887
2907
|
Michael Scherer.
|
2888
2908
|
* `-s` is now short for `--source` which resolves an ambiguity with
|
2889
|
-
--no-suggestions. Pull request #955 by Alexander Kahn.
|
2890
|
-
* Added extra test for ~> for 0.0.X versions. Pull request #958 by Mark
|
2909
|
+
--no-suggestions. Pull request [#955](https://github.com/rubygems/rubygems/pull/955) by Alexander Kahn.
|
2910
|
+
* Added extra test for ~> for 0.0.X versions. Pull request [#958](https://github.com/rubygems/rubygems/pull/958) by Mark
|
2891
2911
|
Lorenz.
|
2892
|
-
* Fixed typo in gem updated help. Pull request #952 by Per Modin.
|
2912
|
+
* Fixed typo in gem updated help. Pull request [#952](https://github.com/rubygems/rubygems/pull/952) by Per Modin.
|
2893
2913
|
* Clarified that the gem description should not be excessively long. Part of
|
2894
2914
|
bug #956 by Renier Morales.
|
2895
2915
|
* Hid documentation of outdated test_files related methods in Specification.
|
@@ -2904,59 +2924,59 @@ This release was sponsored by Ruby Central.
|
|
2904
2924
|
|
2905
2925
|
* Added the `open` command which allows you to inspect the source of a gem
|
2906
2926
|
using your editor.
|
2907
|
-
Issue #789 by Mike Perham. Pull request #804 by Vitali F.
|
2927
|
+
Issue #789 by Mike Perham. Pull request [#804](https://github.com/rubygems/rubygems/pull/804) by Vitali F.
|
2908
2928
|
* The `update` command shows a summary of which gems were and were not
|
2909
2929
|
updated. Issue #544 by Mark D. Blackwell.
|
2910
|
-
Pull request #777 by Tejas Bubane.
|
2911
|
-
* Improved "could not find 'gem'" error reporting. Pull request #913 by
|
2930
|
+
Pull request [#777](https://github.com/rubygems/rubygems/pull/777) by Tejas Bubane.
|
2931
|
+
* Improved "could not find 'gem'" error reporting. Pull request [#913](https://github.com/rubygems/rubygems/pull/913) by
|
2912
2932
|
Richard Schneeman.
|
2913
2933
|
* Gem.use_gemdeps now accepts an argument specifying the path of the gem
|
2914
2934
|
dependencies file. When the file is not found an ArgumentError is raised.
|
2915
2935
|
* Writing a .lock file for a gem dependencies file is now controlled by the
|
2916
|
-
--[no-]lock option. Pull request #774 by Jeremy Evans.
|
2936
|
+
--[no-]lock option. Pull request [#774](https://github.com/rubygems/rubygems/pull/774) by Jeremy Evans.
|
2917
2937
|
* Suggestion of alternate names and spelling corrections during install can be
|
2918
2938
|
suppressed with the --no-suggestions option. Issue #867 by Jimmy Cuadra.
|
2919
|
-
* Added mswin64 support. Pull request #881 by U. Nakamura.
|
2939
|
+
* Added mswin64 support. Pull request [#881](https://github.com/rubygems/rubygems/pull/881) by U. Nakamura.
|
2920
2940
|
* A gem is installable from an IO again (as in RubyGems 1.8.x and older).
|
2921
|
-
Pull request #716 by Xavier Shay.
|
2941
|
+
Pull request [#716](https://github.com/rubygems/rubygems/pull/716) by Xavier Shay.
|
2922
2942
|
* RubyGems no longer attempts to build extensions during activation. Instead
|
2923
2943
|
a warning is issued instructing you to run `gem pristine` which will build
|
2924
2944
|
the extensions for the current platform. Issue #796 by dunric.
|
2925
2945
|
* Added Gem::UserInteraction#verbose which prints when the --verbose option is
|
2926
|
-
given. Pull request #811 by Aaron Patterson.
|
2946
|
+
given. Pull request [#811](https://github.com/rubygems/rubygems/pull/811) by Aaron Patterson.
|
2927
2947
|
* RubyGems can now fetch gems from private repositories using S3. Pull
|
2928
|
-
request #856 by Brian Palmer.
|
2948
|
+
request [#856](https://github.com/rubygems/rubygems/pull/856) by Brian Palmer.
|
2929
2949
|
* Added Gem::ConflictError subclass of Gem::LoadError so you can distinguish
|
2930
|
-
conflicts from other problems. Pull request #841 by Aaron Patterson.
|
2931
|
-
* Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request #815
|
2950
|
+
conflicts from other problems. Pull request [#841](https://github.com/rubygems/rubygems/pull/841) by Aaron Patterson.
|
2951
|
+
* Cleaned up unneeded load_yaml bootstrapping in Rakefile. Pull request [#815](https://github.com/rubygems/rubygems/pull/815)
|
2932
2952
|
by Zachary Scott.
|
2933
|
-
* Improved performance of conflict resolution. Pull request #842 by Aaron
|
2953
|
+
* Improved performance of conflict resolution. Pull request [#842](https://github.com/rubygems/rubygems/pull/842) by Aaron
|
2934
2954
|
Patterson.
|
2935
2955
|
* Add documentation of "~> 0" to Gem::Version. Issue #896 by Aaron Suggs.
|
2936
|
-
* Added CONTRIBUTING file. Pull request #849 by Mark Turner.
|
2956
|
+
* Added CONTRIBUTING file. Pull request [#849](https://github.com/rubygems/rubygems/pull/849) by Mark Turner.
|
2937
2957
|
* Allow use of bindir in windows_stub_script in .bat
|
2938
|
-
Pull request #818 by @unak and @nobu
|
2958
|
+
Pull request [#818](https://github.com/rubygems/rubygems/pull/818) by @unak and @nobu
|
2939
2959
|
* Use native File::PATH_SEPARATOR and remove $ before gem env on
|
2940
|
-
Gem::Dependency#to_specs. Pull request #915 by @parkr
|
2941
|
-
* RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
|
2960
|
+
Gem::Dependency#to_specs. Pull request [#915](https://github.com/rubygems/rubygems/pull/915) by @parkr
|
2961
|
+
* RubyGems recommends SPDX IDs for licenses now. Pull request [#917](https://github.com/rubygems/rubygems/pull/917) by
|
2942
2962
|
Benjamin Fleischer.
|
2943
2963
|
|
2944
2964
|
## Bug fixes:
|
2945
2965
|
|
2946
2966
|
* RubyGems now only fetches the latest specs to find misspellings which speeds
|
2947
|
-
up gem suggestions. Pull request #808 by Aaron Patterson.
|
2967
|
+
up gem suggestions. Pull request [#808](https://github.com/rubygems/rubygems/pull/808) by Aaron Patterson.
|
2948
2968
|
* The given .gem is installed again when multiple versions of the same gem
|
2949
2969
|
exist in the current directory. Bug #875 by Prem Sichanugrist.
|
2950
2970
|
* Local gems are preferred by name over remote gems again. Bug #834 by
|
2951
2971
|
jonforums.
|
2952
|
-
* RubyGems can install local prerelease gems again. Pull request #866 by
|
2972
|
+
* RubyGems can install local prerelease gems again. Pull request [#866](https://github.com/rubygems/rubygems/pull/866) by
|
2953
2973
|
Aaron Patterson. Issue #813 by André Arko.
|
2954
2974
|
* RubyGems installs development dependencies correctly again. Issue #893 by
|
2955
2975
|
Jens Wille.
|
2956
2976
|
* RubyGems only installs prerelease versions when they are requested again.
|
2957
2977
|
Issue #853 by Seth Vargo, special thanks to Zachary Scott and Ben Moss.
|
2958
2978
|
Issue #884 by Nathaniel Bibler.
|
2959
|
-
* Fixed RubyGems list and search command help. Pull request #905 and #928 by
|
2979
|
+
* Fixed RubyGems list and search command help. Pull request [#905](https://github.com/rubygems/rubygems/pull/905) and #928 by
|
2960
2980
|
Gabriel Gilder.
|
2961
2981
|
* The list of gems to uninstall is always sorted now. Bug #918 by postmodern.
|
2962
2982
|
* The update command only updates exactly matching gem names now. Bug #919 by
|
@@ -2985,39 +3005,39 @@ This release was sponsored by Ruby Central.
|
|
2985
3005
|
by Noah Luck Easterly.
|
2986
3006
|
* The environment command now shows the system configuration directory where
|
2987
3007
|
the all-users gemrc lives. Bug #827 by Ben Langfeld.
|
2988
|
-
* Improved speed of conflict checking when activating gems. Pull request #843
|
3008
|
+
* Improved speed of conflict checking when activating gems. Pull request [#843](https://github.com/rubygems/rubygems/pull/843)
|
2989
3009
|
by Aaron Patterson.
|
2990
3010
|
* Improved speed of levenshtein distance for gem suggestion misspellings.
|
2991
3011
|
Pull requests #809, #812 by Aaron Patterson.
|
2992
|
-
* Restored persistent connections. Pull request #869 by Aaron Patterson.
|
2993
|
-
* Reduced requests when fetching gems with the bundler API. Pull request #773
|
3012
|
+
* Restored persistent connections. Pull request [#869](https://github.com/rubygems/rubygems/pull/869) by Aaron Patterson.
|
3013
|
+
* Reduced requests when fetching gems with the bundler API. Pull request [#773](https://github.com/rubygems/rubygems/pull/773)
|
2994
3014
|
by Charlie Somerville.
|
2995
3015
|
* Reduced dependency prefetching to improve install speed. Pull requests
|
2996
3016
|
#871, #872 by Matthew Draper.
|
2997
3017
|
* RubyGems now avoids net/http auto-proxy detection. Issue #824 by HINOHARA
|
2998
3018
|
Hiroshi.
|
2999
3019
|
* Removed conversion of Gem::List (used for debugging installs) to unless
|
3000
|
-
necessary. Pull request #870 by Aaron Patterson.
|
3020
|
+
necessary. Pull request [#870](https://github.com/rubygems/rubygems/pull/870) by Aaron Patterson.
|
3001
3021
|
* RubyGems now prints release notes from the current release. Bug #814 by
|
3002
3022
|
André Arko.
|
3003
3023
|
* RubyGems allows installation of unsigned gems again with -P MediumSecurity
|
3004
3024
|
and lower. Bug #859 by Justin S. Collins.
|
3005
|
-
* Fixed typo in Jim Weirich's name. Ruby pull request #577 by Mo Khan.
|
3006
|
-
* Fixed typo in Gem.datadir documentation. Pull request #868 by Patrick
|
3025
|
+
* Fixed typo in Jim Weirich's name. Ruby pull request [#577](https://github.com/rubygems/rubygems/pull/577) by Mo Khan.
|
3026
|
+
* Fixed typo in Gem.datadir documentation. Pull request [#868](https://github.com/rubygems/rubygems/pull/868) by Patrick
|
3007
3027
|
Jones.
|
3008
|
-
* Fixed File.exists? warnings. Pull request #829 by SHIBATA Hiroshi.
|
3028
|
+
* Fixed File.exists? warnings. Pull request [#829](https://github.com/rubygems/rubygems/pull/829) by SHIBATA Hiroshi.
|
3009
3029
|
* Fixed show_release_notes test for LANG=C. Issue #862 by Luis Lavena.
|
3010
3030
|
* Fixed Gem::Package from IO tests on windows. Patch from issue #861 by Luis
|
3011
3031
|
Lavena.
|
3012
3032
|
* Check for nil extensions as BasicSpecification does not initialize them.
|
3013
|
-
Pull request #882 by André Arko.
|
3033
|
+
Pull request [#882](https://github.com/rubygems/rubygems/pull/882) by André Arko.
|
3014
3034
|
* Fixed Gem::BasicSpecification#require_paths receives a String for
|
3015
|
-
@require_paths. Pull request #904 by @danielpclark
|
3035
|
+
@require_paths. Pull request [#904](https://github.com/rubygems/rubygems/pull/904) by @danielpclark
|
3016
3036
|
* Fixed circular require warnings. Bug #908 by Zachary Scott.
|
3017
3037
|
* Gem::Specification#require_paths can no longer accidentally be an Array.
|
3018
3038
|
Pull requests #904, #909 by Daniel P. Clark.
|
3019
3039
|
* Don't build extensions if `build_dir/extensions` isn't writable.
|
3020
|
-
Pull request #912 by @dunric
|
3040
|
+
Pull request [#912](https://github.com/rubygems/rubygems/pull/912) by @dunric
|
3021
3041
|
* Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
|
3022
3042
|
#852 by Vít Ondruch.
|
3023
3043
|
|
@@ -3048,21 +3068,21 @@ This release was sponsored by Ruby Central.
|
|
3048
3068
|
* Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
|
3049
3069
|
Nakada.
|
3050
3070
|
* Removed double requests in RemoteFetcher#cache_update_path to improve remote
|
3051
|
-
install speed. Pull request #772 by Charlie Somerville.
|
3071
|
+
install speed. Pull request [#772](https://github.com/rubygems/rubygems/pull/772) by Charlie Somerville.
|
3052
3072
|
* The mkmf.log is now placed next to gem_make.out when building extensions.
|
3053
3073
|
* `gem install -g --local` no longer accesses the network. Bug #776 by Jeremy
|
3054
3074
|
Evans.
|
3055
3075
|
* RubyGems now correctly handles URL passwords with encoded characters. Pull
|
3056
|
-
request #781 by Brian Fletcher.
|
3057
|
-
* RubyGems now correctly escapes URL characters. Pull request #788 by Brian
|
3076
|
+
request [#781](https://github.com/rubygems/rubygems/pull/781) by Brian Fletcher.
|
3077
|
+
* RubyGems now correctly escapes URL characters. Pull request [#788](https://github.com/rubygems/rubygems/pull/788) by Brian
|
3058
3078
|
Fletcher.
|
3059
3079
|
* RubyGems can now unpack tar files where the type flag is not given. Pull
|
3060
|
-
request #790 by Cody Russell.
|
3080
|
+
request [#790](https://github.com/rubygems/rubygems/pull/790) by Cody Russell.
|
3061
3081
|
* Typo corrections. Pull request ruby/ruby#506 by windwiny.
|
3062
3082
|
* RubyGems now uses both the default certificates and ssl_ca_cert instead of
|
3063
|
-
one or the other. Pull request #795 by zebardy.
|
3083
|
+
one or the other. Pull request [#795](https://github.com/rubygems/rubygems/pull/795) by zebardy.
|
3064
3084
|
* RubyGems can now use the bundler API against hosted gem servers in a
|
3065
|
-
directory. Pull request #801 by Brian Fletcher.
|
3085
|
+
directory. Pull request [#801](https://github.com/rubygems/rubygems/pull/801) by Brian Fletcher.
|
3066
3086
|
* RubyGems bin stubs now ignore non-versions. This allows RubyGems bin stubs
|
3067
3087
|
to list file names like "_foo_". Issue #799 by Postmodern.
|
3068
3088
|
* Restored behavior of Gem::Version::new when subclassed. Issue #805 by
|
@@ -3075,12 +3095,12 @@ This release was sponsored by Ruby Central.
|
|
3075
3095
|
* Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
|
3076
3096
|
#767 by Diego Viola.
|
3077
3097
|
* RubyGems now displays which gem couldn't be uninstalled from the home
|
3078
|
-
directory. Pull request #757 by Michal Papis.
|
3079
|
-
* Removed unused method Gem::Resolver#find_conflict_state. Pull request #759
|
3098
|
+
directory. Pull request [#757](https://github.com/rubygems/rubygems/pull/757) by Michal Papis.
|
3099
|
+
* Removed unused method Gem::Resolver#find_conflict_state. Pull request [#759](https://github.com/rubygems/rubygems/pull/759)
|
3080
3100
|
by Smit Shah.
|
3081
3101
|
* Fixed installing gems from local files without dependencies. Issue #760 by
|
3082
|
-
Arash Mousavi, pull request #764 by Tim Moore.
|
3083
|
-
* Removed TODO about syntax that works in Ruby 1.8.7. Pull request #765 by
|
3102
|
+
Arash Mousavi, pull request [#764](https://github.com/rubygems/rubygems/pull/764) by Tim Moore.
|
3103
|
+
* Removed TODO about syntax that works in Ruby 1.8.7. Pull request [#765](https://github.com/rubygems/rubygems/pull/765) by
|
3084
3104
|
Benjamin Fleischer.
|
3085
3105
|
* Switched Gem.ruby_api_version to use RbConfig::CONFIG['ruby_version'] which
|
3086
3106
|
has the same value but is overridable by packagers through
|
@@ -3094,7 +3114,7 @@ This release was sponsored by Ruby Central.
|
|
3094
3114
|
* Gem.read_binary can read read-only files again. This caused file://
|
3095
3115
|
repositories to stop working. Bug #761 by John Anderson.
|
3096
3116
|
* Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
|
3097
|
-
request #763 by James Mead
|
3117
|
+
request [#763](https://github.com/rubygems/rubygems/pull/763) by James Mead
|
3098
3118
|
|
3099
3119
|
# 2.2.0 / 2013-12-26
|
3100
3120
|
|
@@ -3127,17 +3147,17 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3127
3147
|
* RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
|
3128
3148
|
prevent an accidental push to a public repository (such as rubygems.org).
|
3129
3149
|
If you have private gems you should set this value in your gem specification
|
3130
|
-
metadata. Pull request #603 by Seamus Abshere.
|
3131
|
-
* `gem list` now shows results for multiple arguments. Pull request #604 by
|
3150
|
+
metadata. Pull request [#603](https://github.com/rubygems/rubygems/pull/603) by Seamus Abshere.
|
3151
|
+
* `gem list` now shows results for multiple arguments. Pull request [#604](https://github.com/rubygems/rubygems/pull/604) by
|
3132
3152
|
Zach Rabinovich.
|
3133
3153
|
* `gem pristine --extensions` will restore only gems with extensions. Issue
|
3134
3154
|
#619 by Postmodern.
|
3135
|
-
* Gem::Specification#files is now sorted. Pull request #612 by Justin George.
|
3155
|
+
* Gem::Specification#files is now sorted. Pull request [#612](https://github.com/rubygems/rubygems/pull/612) by Justin George.
|
3136
3156
|
* For `gem list` and friends, "LOCAL" and "REMOTE" headers are omitted if
|
3137
3157
|
only local or remote gem information is requested with --quiet. Pull
|
3138
|
-
request #615 by Michal Papis.
|
3158
|
+
request [#615](https://github.com/rubygems/rubygems/pull/615) by Michal Papis.
|
3139
3159
|
* Added Gem::Specification#full_require_paths which is like require_paths, but
|
3140
|
-
returns a fully-qualified results. Pull request #632 by Vít Ondruch.
|
3160
|
+
returns a fully-qualified results. Pull request [#632](https://github.com/rubygems/rubygems/pull/632) by Vít Ondruch.
|
3141
3161
|
* RubyGems now looks for the https_proxy environment variable for https://
|
3142
3162
|
sources. RubyGems will fall back to http_proxy if there is no https_proxy.
|
3143
3163
|
Issue #610 by mkristian.
|
@@ -3155,7 +3175,7 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3155
3175
|
* When using `gem install -g`, RubyGems now detects the presence of an
|
3156
3176
|
Isolate, Gemfile or gem.deps.rb file.
|
3157
3177
|
* Added Gem::StubSpecification#stubbed? to help determine if a user should run
|
3158
|
-
`gem pristine` to speed up gem loading. Pull request #694 and #701 by Jon
|
3178
|
+
`gem pristine` to speed up gem loading. Pull request [#694](https://github.com/rubygems/rubygems/pull/694) and #701 by Jon
|
3159
3179
|
Leighton.
|
3160
3180
|
* RubyGems now warns when a gem has a pessimistic version dependency that may
|
3161
3181
|
be too strict.
|
@@ -3163,9 +3183,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3163
3183
|
* RubyGems now raises an exception when a dependency for a gem is defined
|
3164
3184
|
twice.
|
3165
3185
|
* Marked the license specification attribute as recommended. Pull request
|
3166
|
-
#713 by Benjamin Fleischer.
|
3186
|
+
[#713](https://github.com/rubygems/rubygems/pull/713) by Benjamin Fleischer.
|
3167
3187
|
* RubyGems uses io/console instead of `stty` when available. Pull request
|
3168
|
-
#740 by Nobuyoshi Nakada
|
3188
|
+
[#740](https://github.com/rubygems/rubygems/pull/740) by Nobuyoshi Nakada
|
3169
3189
|
* Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
|
3170
3190
|
Request #755 by strzibny.
|
3171
3191
|
|
@@ -3173,14 +3193,14 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3173
3193
|
|
3174
3194
|
* RubyGems now returns an error status when any file given to `gem which`
|
3175
3195
|
cannot be found. Ruby bug #9004 by Eugene Vilensky.
|
3176
|
-
* Fixed command escaping when building rake extensions. Pull request #721 by
|
3196
|
+
* Fixed command escaping when building rake extensions. Pull request [#721](https://github.com/rubygems/rubygems/pull/721) by
|
3177
3197
|
Dmitry Ratnikov.
|
3178
3198
|
* Fixed uninstallation of gems when GEM_HOME is a relative directory. Issue
|
3179
3199
|
#708 by Ryan Davis.
|
3180
3200
|
* Default gems are now ignored by Gem::Validator#alien. Issue #717 by David
|
3181
3201
|
Bahar.
|
3182
3202
|
* Fixed typos in RubyGems. Pull requests #723, #725, #731 by Akira Matsuda,
|
3183
|
-
pull request #736 by Leo Gallucci, pull request #746 by DV Suresh.
|
3203
|
+
pull request [#736](https://github.com/rubygems/rubygems/pull/736) by Leo Gallucci, pull request [#746](https://github.com/rubygems/rubygems/pull/746) by DV Suresh.
|
3184
3204
|
* RubyGems now holds exclusive locks on cached gem files to prevent incorrect
|
3185
3205
|
updates. Pull Request #737 by Smit Shah
|
3186
3206
|
* Improved speed of `gem install --ignore-dependencies`. Patch by Terence
|
@@ -3242,11 +3262,11 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3242
3262
|
|
3243
3263
|
## Bug fixes:
|
3244
3264
|
|
3245
|
-
* `gem sources --list` now displays a list of sources. Pull request #672 by
|
3265
|
+
* `gem sources --list` now displays a list of sources. Pull request [#672](https://github.com/rubygems/rubygems/pull/672) by
|
3246
3266
|
Nathan Marley.
|
3247
3267
|
* RubyGems no longer alters Gem::Specification.dirs when installing. Pull
|
3248
3268
|
Request #670 by Vít Ondruch
|
3249
|
-
* Use RFC 2616-compatible time in HTTP headers. Pull request #655 by Larry
|
3269
|
+
* Use RFC 2616-compatible time in HTTP headers. Pull request [#655](https://github.com/rubygems/rubygems/pull/655) by Larry
|
3250
3270
|
Marburger.
|
3251
3271
|
* RubyGems now gives a more descriptive message for missing licenses on
|
3252
3272
|
validation. Issue #656 by Markus Heiler.
|
@@ -3262,9 +3282,9 @@ RubyGems as it was prepared for the 2.2.0 release.
|
|
3262
3282
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
3263
3283
|
Fixes #654 by Vít Ondruch.
|
3264
3284
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
3265
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
3285
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
3266
3286
|
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
3267
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
3287
|
+
Kernel#require. Pull request [#663](https://github.com/rubygems/rubygems/pull/663) by Aaron Patterson.
|
3268
3288
|
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
3269
3289
|
1.9.1 is no longer receiving security fixes, so please update to a newer
|
3270
3290
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
@@ -3300,7 +3320,7 @@ Security fixes:
|
|
3300
3320
|
## Bug fixes:
|
3301
3321
|
|
3302
3322
|
* Restore concurrent requires following the fix for ruby bug #8374. Pull
|
3303
|
-
request #637 and issue #640 by Charles Nutter.
|
3323
|
+
request [#637](https://github.com/rubygems/rubygems/pull/637) and issue #640 by Charles Nutter.
|
3304
3324
|
* Gems with extensions are now installed correctly when the --install-dir
|
3305
3325
|
option is used. Issue #642 by Lin Jen-Shin.
|
3306
3326
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
@@ -3348,7 +3368,7 @@ Security fixes:
|
|
3348
3368
|
gemcutter API. Pull Request #462 and issue #461 by Hugo Lopes Tavares
|
3349
3369
|
* Added --abort-on-dependent to `gem uninstall`. This will abort instead of
|
3350
3370
|
asking to uninstall a gem that is depended upon by another gem. Pull
|
3351
|
-
request #549 by Philip Arndt.
|
3371
|
+
request [#549](https://github.com/rubygems/rubygems/pull/549) by Philip Arndt.
|
3352
3372
|
* RubyGems no longer alters Gem::Specification.dirs when installing. Based on
|
3353
3373
|
Pull Request #452 by Vít Ondruch
|
3354
3374
|
* RubyGems uses ENV['MAKE'] or ENV['make'] over rbconfig.rb's make if present.
|
@@ -3360,21 +3380,21 @@ Security fixes:
|
|
3360
3380
|
Klabnik.
|
3361
3381
|
* RubyGems indicates when a .gem's content is corrupt while verifying. Bug
|
3362
3382
|
#519 by William T Nelson.
|
3363
|
-
* Refactored common installer setup. Pull request #520 by Gastón Ramos
|
3364
|
-
* Moved activation tests to Gem::Specification. Pull request #521 by Gastón
|
3383
|
+
* Refactored common installer setup. Pull request [#520](https://github.com/rubygems/rubygems/pull/520) by Gastón Ramos
|
3384
|
+
* Moved activation tests to Gem::Specification. Pull request [#521](https://github.com/rubygems/rubygems/pull/521) by Gastón
|
3365
3385
|
Ramos
|
3366
3386
|
* When a --version option with a prerelease version is given RubyGems
|
3367
3387
|
automatically enables prerelease versions but only the last version is
|
3368
3388
|
used. If the first version is a prerelease version this is no longer sticky
|
3369
3389
|
unless an explicit --[no-]prerelease was also given. Fixes part of #531.
|
3370
|
-
* RubyGems now supports an SSL client certificate. Pull request #550 by
|
3390
|
+
* RubyGems now supports an SSL client certificate. Pull request [#550](https://github.com/rubygems/rubygems/pull/550) by
|
3371
3391
|
Robert Kenny.
|
3372
|
-
* RubyGems now suggests how to fix permission errors. Pull request #553 by
|
3392
|
+
* RubyGems now suggests how to fix permission errors. Pull request [#553](https://github.com/rubygems/rubygems/pull/553) by
|
3373
3393
|
Odin Dutton.
|
3374
3394
|
* Added support for installing a gem as default gems for alternate ruby
|
3375
|
-
implementations. Pull request #566 by Charles Nutter.
|
3395
|
+
implementations. Pull request [#566](https://github.com/rubygems/rubygems/pull/566) by Charles Nutter.
|
3376
3396
|
* Improved performance of Gem::Specification#load by caching the loaded
|
3377
|
-
gemspec. Pull request #569 by Charlie Somerville.
|
3397
|
+
gemspec. Pull request [#569](https://github.com/rubygems/rubygems/pull/569) by Charlie Somerville.
|
3378
3398
|
* RubyGems now warns when an unsigned gem is verified if -P was given during
|
3379
3399
|
installation even if the security policy allows unsigned gems and warns when
|
3380
3400
|
an untrusted certificate is seen even if the security policy allows
|
@@ -3384,13 +3404,13 @@ Security fixes:
|
|
3384
3404
|
--env-[no-]shebang</code>. Issue #579 by Paul Annesley.
|
3385
3405
|
* RubyGems can now run its tests without OpenSSL. Ruby Bug #8557 by nobu.
|
3386
3406
|
* Improved performance by caching Gem::Version objects and avoiding
|
3387
|
-
method_missing in Gem::Specification. Pull request #447 by Jon Leighton.
|
3388
|
-
* Files in a .gem now preserve their modification times. Pull request #582 by
|
3407
|
+
method_missing in Gem::Specification. Pull request [#447](https://github.com/rubygems/rubygems/pull/447) by Jon Leighton.
|
3408
|
+
* Files in a .gem now preserve their modification times. Pull request [#582](https://github.com/rubygems/rubygems/pull/582) by
|
3389
3409
|
Jesse Bowes
|
3390
3410
|
* Improved speed of looking up dependencies in SpecFetcher through
|
3391
|
-
Array#bsearch (when present). Pull request #595 by Andras Suller
|
3411
|
+
Array#bsearch (when present). Pull request [#595](https://github.com/rubygems/rubygems/pull/595) by Andras Suller
|
3392
3412
|
* Added `--all` option to `gem uninstall` which removes all gems in GEM_HOME.
|
3393
|
-
Pull request #584 by Shannon Skipper.
|
3413
|
+
Pull request [#584](https://github.com/rubygems/rubygems/pull/584) by Shannon Skipper.
|
3394
3414
|
* Added Gem.find_latest_files which is equivalent to Gem.find_files but only
|
3395
3415
|
returns matching files from the latest version of each gem. Issue #186 by
|
3396
3416
|
Ryan Davis.
|
@@ -3402,9 +3422,9 @@ Security fixes:
|
|
3402
3422
|
|
3403
3423
|
* rubygems_plugin.rb files are now only loaded from the latest installed gem.
|
3404
3424
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
3405
|
-
#625 by elarkin
|
3425
|
+
[#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
|
3406
3426
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
3407
|
-
request #622 by Arthur Nogueira Neves
|
3427
|
+
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
3408
3428
|
|
3409
3429
|
# 2.0.17 / 2015-06-08
|
3410
3430
|
|
@@ -3465,9 +3485,9 @@ Security fixes:
|
|
3465
3485
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
3466
3486
|
Fixes #654 by Vít Ondruch.
|
3467
3487
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
3468
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
3488
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
3469
3489
|
* RubyGems now allows a Pathname for Kernel#require like the built-in
|
3470
|
-
Kernel#require. Pull request #663 by Aaron Patterson.
|
3490
|
+
Kernel#require. Pull request [#663](https://github.com/rubygems/rubygems/pull/663) by Aaron Patterson.
|
3471
3491
|
* Required rbconfig in Gem::ConfigFile for Ruby 1.9.1 compatibility. (Ruby
|
3472
3492
|
1.9.1 is no longer receiving security fixes, so please update to a newer
|
3473
3493
|
version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
|
@@ -3489,7 +3509,7 @@ Security fixes:
|
|
3489
3509
|
* Gem fetch now fetches the newest (not oldest) gem when --version is given.
|
3490
3510
|
Issue #643 by Brian Shirai.
|
3491
3511
|
* Fixed credential creation for `gem push` when `--host` is not given. Pull
|
3492
|
-
request #622 by Arthur Nogueira Neves
|
3512
|
+
request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
|
3493
3513
|
|
3494
3514
|
# 2.0.8 / 2013-09-09
|
3495
3515
|
|
@@ -3503,7 +3523,7 @@ Security fixes:
|
|
3503
3523
|
## Bug fixes:
|
3504
3524
|
|
3505
3525
|
* Fixed Gem.clear_paths when Security is defined at top-level. Pull request
|
3506
|
-
#625 by elarkin
|
3526
|
+
[#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
|
3507
3527
|
|
3508
3528
|
# 2.0.7 / 2013-08-15
|
3509
3529
|
|
@@ -3512,7 +3532,7 @@ Security fixes:
|
|
3512
3532
|
* Extensions may now be built in parallel (therefore gems may be installed in
|
3513
3533
|
parallel). Bug #607 by Hemant Kumar.
|
3514
3534
|
* Changed broken link to RubyGems Bookshelf to point to RubyGems guides. Ruby
|
3515
|
-
pull request #369 by 謝致邦.
|
3535
|
+
pull request [#369](https://github.com/rubygems/rubygems/pull/369) by 謝致邦.
|
3516
3536
|
* Fixed various test failures due to platform differences or poor tests.
|
3517
3537
|
Patches by Yui Naruse and Koichi Sasada.
|
3518
3538
|
* Fixed documentation for Kernel#require.
|
@@ -3545,7 +3565,7 @@ Security fixes:
|
|
3545
3565
|
* Fixed pushing gems with the default host. Bug #495 by Utkarsh Kukreti
|
3546
3566
|
* Improved unhelpful error message from `gem owner --remove`. Bug #488 by
|
3547
3567
|
Steve Klabnik
|
3548
|
-
* Fixed typo in `gem spec` help. Pull request #563 by oooooooo
|
3568
|
+
* Fixed typo in `gem spec` help. Pull request [#563](https://github.com/rubygems/rubygems/pull/563) by oooooooo
|
3549
3569
|
* Fixed creation of build_info with --install-dir. Bug #457 by Vít Ondruch.
|
3550
3570
|
* RubyGems converts non-string dependency names to strings now. Bug #505 by
|
3551
3571
|
Terence Lee
|
@@ -3554,18 +3574,18 @@ Security fixes:
|
|
3554
3574
|
every file from the gem. This improves the performance of gem installation
|
3555
3575
|
on some systems. Pull Request #556 by Grzesiek Kolodziejczyk
|
3556
3576
|
* Removed surprise search term anchoring in `gem search` to restore 1.8-like
|
3557
|
-
search behavior while still defaulting to --remote. Pull request #562 by
|
3577
|
+
search behavior while still defaulting to --remote. Pull request [#562](https://github.com/rubygems/rubygems/pull/562) by
|
3558
3578
|
Ben Bleything
|
3559
|
-
* Fixed handling of DESTDIR when building extensions. Pull request #573 by
|
3579
|
+
* Fixed handling of DESTDIR when building extensions. Pull request [#573](https://github.com/rubygems/rubygems/pull/573) by
|
3560
3580
|
Akinori MUSHA
|
3561
3581
|
* Fixed documentation of `gem pristine` defaults (--all is not a default).
|
3562
|
-
Pull request #577 by Shannon Skipper
|
3563
|
-
* Fixed a windows extension-building test failure. Pull request #575 by
|
3582
|
+
Pull request [#577](https://github.com/rubygems/rubygems/pull/577) by Shannon Skipper
|
3583
|
+
* Fixed a windows extension-building test failure. Pull request [#575](https://github.com/rubygems/rubygems/pull/575) by
|
3564
3584
|
Hiroshi Shirosaki
|
3565
3585
|
* Fixed issue with `gem update` where it would attempt to use a Version
|
3566
3586
|
instead of a Requirement to find the latest gem. Fixes #570 by Nick Cox.
|
3567
3587
|
* RubyGems now ignores an empty but set RUBYGEMS_HOST environment variable.
|
3568
|
-
Based on pull request #558 by Robin Dupret.
|
3588
|
+
Based on pull request [#558](https://github.com/rubygems/rubygems/pull/558) by Robin Dupret.
|
3569
3589
|
* Removed duplicate creation of gem subdirectories in
|
3570
3590
|
Gem::DependencyInstaller. Pull Request #456 by Vít Ondruch
|
3571
3591
|
* RubyGems now works with Ruby built with `--with-ruby-version=''`. Pull
|
@@ -3573,7 +3593,7 @@ Security fixes:
|
|
3573
3593
|
* Fixed race condition when two threads require the same gem. Ruby bug report
|
3574
3594
|
#8374 by Joel VanderWerf
|
3575
3595
|
* Cleaned up siteconf between extension build and extension install. Pull
|
3576
|
-
request #587 by Dominic Cleal
|
3596
|
+
request [#587](https://github.com/rubygems/rubygems/pull/587) by Dominic Cleal
|
3577
3597
|
* Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
|
3578
3598
|
r41148 by Yui Naruse
|
3579
3599
|
|
@@ -3591,7 +3611,7 @@ Security fixes:
|
|
3591
3611
|
* Use the absolute path to the generated siteconf in case the extension
|
3592
3612
|
changes directories to run extconf.rb (like memcached). Fixes #498 by
|
3593
3613
|
Chris Morris.
|
3594
|
-
* Fixed default gem key and cert locations. Pull request #511 by Samuel
|
3614
|
+
* Fixed default gem key and cert locations. Pull request [#511](https://github.com/rubygems/rubygems/pull/511) by Samuel
|
3595
3615
|
Cochran.
|
3596
3616
|
|
3597
3617
|
# 2.0.2 / 2013-03-06
|
@@ -3614,7 +3634,7 @@ Security fixes:
|
|
3614
3634
|
* "Done installing documentation" is no longer displayed when documentation
|
3615
3635
|
generation is disabled. Fixes bug #469 by Jeff Sandberg
|
3616
3636
|
* The existing executable check now respects --format-executable. Pull
|
3617
|
-
request #471 by Jeremy Evans.
|
3637
|
+
request [#471](https://github.com/rubygems/rubygems/pull/471) by Jeremy Evans.
|
3618
3638
|
* RubyGems no longer creates gem subdirectories when fetching gems. Fixes
|
3619
3639
|
#482 by Loren Segal.
|
3620
3640
|
* RubyGems does not require OpenSSL like RubyGems 1.8, but still prefers it.
|
@@ -3685,7 +3705,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
|
|
3685
3705
|
Skipper.
|
3686
3706
|
* Gem::DependencyInstaller now passes build_args down to the installer.
|
3687
3707
|
Pull Request #412 by Sam Rawlins.
|
3688
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
3708
|
+
* Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
|
3689
3709
|
* Removed rubyforge page from gem list output
|
3690
3710
|
* Added --only-executables option to `gem pristine`. Fixes #326
|
3691
3711
|
* Added -I flag for 'gem query' to exclude installed items
|
@@ -3815,7 +3835,7 @@ Changes since RubyGems 2.0.0.rc.2:
|
|
3815
3835
|
# 2.0.0.preview2.2 / 2012-12-14
|
3816
3836
|
|
3817
3837
|
## Enhancements:
|
3818
|
-
* Added a cmake builder. Pull request #265 by Allan Espinosa.
|
3838
|
+
* Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
|
3819
3839
|
* Removed rubyforge page from gem list output
|
3820
3840
|
|
3821
3841
|
## Bug fixes:
|
@@ -3981,7 +4001,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
|
|
3981
4001
|
* Remove redundant built-in certificates not needed for https://rubygems.org
|
3982
4002
|
Fixes #654 by Vít Ondruch.
|
3983
4003
|
* Added test for missing certificates for https://s3.amazonaws.com or
|
3984
|
-
https://rubygems.org. Pull request #673 by Hannes Georg.
|
4004
|
+
https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
|
3985
4005
|
|
3986
4006
|
# 1.8.27 / 2013-09-24
|
3987
4007
|
|