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