rubygems-update 3.4.5 → 3.4.7

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