rubygems-update 3.2.0 → 3.2.5

Sign up to get free protection for your applications and to get access to all the features.
Files changed (110) hide show
  1. checksums.yaml +4 -4
  2. data/{History.txt → CHANGELOG.md} +482 -457
  3. data/Manifest.txt +31 -27
  4. data/POLICIES.md +4 -3
  5. data/Rakefile +23 -18
  6. data/bundler/CHANGELOG.md +67 -20
  7. data/bundler/bundler.gemspec +1 -1
  8. data/bundler/lib/bundler.rb +8 -2
  9. data/bundler/lib/bundler/build_metadata.rb +2 -2
  10. data/bundler/lib/bundler/cli.rb +3 -6
  11. data/bundler/lib/bundler/cli/gem.rb +2 -0
  12. data/bundler/lib/bundler/cli/install.rb +14 -5
  13. data/bundler/lib/bundler/cli/outdated.rb +2 -2
  14. data/bundler/lib/bundler/cli/update.rb +1 -1
  15. data/bundler/lib/bundler/compact_index_client/cache.rb +5 -13
  16. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  17. data/bundler/lib/bundler/compact_index_client/updater.rb +0 -8
  18. data/bundler/lib/bundler/definition.rb +24 -21
  19. data/bundler/lib/bundler/dependency.rb +3 -1
  20. data/bundler/lib/bundler/gem_helper.rb +3 -3
  21. data/bundler/lib/bundler/gem_helpers.rb +30 -24
  22. data/bundler/lib/bundler/lazy_specification.rb +16 -3
  23. data/bundler/{man → lib/bundler/man}/bundle-add.1 +0 -0
  24. data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +0 -0
  25. data/bundler/{man → lib/bundler/man}/bundle-cache.1 +0 -0
  26. data/bundler/{man → lib/bundler/man}/bundle-check.1 +0 -0
  27. data/bundler/{man → lib/bundler/man}/bundle-clean.1 +0 -0
  28. data/bundler/{man → lib/bundler/man}/bundle-config.1 +0 -0
  29. data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +0 -0
  30. data/bundler/{man → lib/bundler/man}/bundle-exec.1 +0 -0
  31. data/bundler/{man → lib/bundler/man}/bundle-gem.1 +0 -0
  32. data/bundler/{man → lib/bundler/man}/bundle-info.1 +0 -0
  33. data/bundler/{man → lib/bundler/man}/bundle-init.1 +0 -0
  34. data/bundler/{man → lib/bundler/man}/bundle-inject.1 +0 -0
  35. data/bundler/{man → lib/bundler/man}/bundle-install.1 +0 -0
  36. data/bundler/{man → lib/bundler/man}/bundle-list.1 +0 -0
  37. data/bundler/{man → lib/bundler/man}/bundle-lock.1 +0 -0
  38. data/bundler/{man → lib/bundler/man}/bundle-open.1 +0 -0
  39. data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +0 -0
  40. data/bundler/{man → lib/bundler/man}/bundle-platform.1 +0 -0
  41. data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +0 -0
  42. data/bundler/{man → lib/bundler/man}/bundle-remove.1 +0 -0
  43. data/bundler/{man → lib/bundler/man}/bundle-show.1 +0 -0
  44. data/bundler/{man → lib/bundler/man}/bundle-update.1 +0 -0
  45. data/bundler/{man → lib/bundler/man}/bundle-viz.1 +0 -0
  46. data/bundler/{man → lib/bundler/man}/bundle.1 +0 -0
  47. data/bundler/{man → lib/bundler/man}/gemfile.5 +0 -0
  48. data/bundler/{man → lib/bundler/man}/index.txt +0 -0
  49. data/bundler/lib/bundler/resolver.rb +29 -27
  50. data/bundler/lib/bundler/resolver/spec_group.rb +19 -25
  51. data/bundler/lib/bundler/rubygems_integration.rb +0 -6
  52. data/bundler/lib/bundler/source/git.rb +18 -16
  53. data/bundler/lib/bundler/source/git/git_proxy.rb +54 -49
  54. data/bundler/lib/bundler/source/path/installer.rb +2 -0
  55. data/bundler/lib/bundler/source/rubygems.rb +10 -1
  56. data/bundler/lib/bundler/spec_set.rb +5 -8
  57. data/bundler/lib/bundler/stub_specification.rb +0 -2
  58. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  59. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
  60. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +3 -0
  61. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +8 -1
  62. data/bundler/lib/bundler/version.rb +1 -1
  63. data/lib/rubygems.rb +1 -1
  64. data/lib/rubygems/commands/owner_command.rb +0 -1
  65. data/lib/rubygems/commands/push_command.rb +0 -1
  66. data/lib/rubygems/commands/setup_command.rb +16 -62
  67. data/lib/rubygems/commands/yank_command.rb +0 -1
  68. data/lib/rubygems/dependency_installer.rb +1 -0
  69. data/lib/rubygems/ext/builder.rb +3 -3
  70. data/lib/rubygems/ext/cmake_builder.rb +1 -2
  71. data/lib/rubygems/ext/configure_builder.rb +1 -2
  72. data/lib/rubygems/ext/rake_builder.rb +1 -1
  73. data/lib/rubygems/gemcutter_utilities.rb +22 -17
  74. data/lib/rubygems/installer.rb +0 -23
  75. data/lib/rubygems/remote_fetcher.rb +4 -2
  76. data/lib/rubygems/request_set.rb +2 -13
  77. data/lib/rubygems/resolver.rb +6 -1
  78. data/lib/rubygems/resolver/api_set.rb +29 -20
  79. data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
  80. data/lib/rubygems/resolver/api_specification.rb +4 -3
  81. data/lib/rubygems/resolver/best_set.rb +2 -2
  82. data/lib/rubygems/resolver/index_specification.rb +18 -0
  83. data/lib/rubygems/resolver/installer_set.rb +57 -7
  84. data/lib/rubygems/resolver/spec_specification.rb +14 -0
  85. data/lib/rubygems/resolver/specification.rb +12 -0
  86. data/lib/rubygems/server.rb +6 -1
  87. data/lib/rubygems/source.rb +11 -6
  88. data/lib/rubygems/specification.rb +18 -14
  89. data/lib/rubygems/test_case.rb +17 -4
  90. data/lib/rubygems/test_utilities.rb +6 -5
  91. data/rubygems-update.gemspec +2 -2
  92. data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
  93. data/test/rubygems/test_gem_commands_install_command.rb +131 -0
  94. data/test/rubygems/test_gem_commands_push_command.rb +41 -2
  95. data/test/rubygems/test_gem_commands_setup_command.rb +21 -37
  96. data/test/rubygems/test_gem_dependency_installer.rb +27 -47
  97. data/test/rubygems/test_gem_ext_builder.rb +6 -6
  98. data/test/rubygems/test_gem_ext_cmake_builder.rb +2 -4
  99. data/test/rubygems/test_gem_ext_configure_builder.rb +2 -2
  100. data/test/rubygems/test_gem_ext_rake_builder.rb +25 -0
  101. data/test/rubygems/test_gem_installer.rb +6 -60
  102. data/test/rubygems/test_gem_remote_fetcher.rb +1 -1
  103. data/test/rubygems/test_gem_resolver_api_set.rb +54 -51
  104. data/test/rubygems/test_gem_resolver_api_specification.rb +3 -3
  105. data/test/rubygems/test_gem_resolver_best_set.rb +26 -3
  106. data/test/rubygems/test_gem_source.rb +2 -2
  107. data/test/rubygems/test_gem_source_subpath_problem.rb +2 -2
  108. data/test/rubygems/test_gem_specification.rb +9 -3
  109. data/test/test_changelog_generator.rb +17 -0
  110. metadata +38 -58
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8e535991039093b466602143c2faf7a2a20bfa8321710f2dd5cf0b148dce1c61
4
- data.tar.gz: 39a3eb132fab5eac5a07517f0b7d8554d9ae645d49040226e38f092dc641cd0a
3
+ metadata.gz: 2f6bb6c4c3306717f1cbb6c31a681fb34fe87a80908be9788cf9b8670acd0f45
4
+ data.tar.gz: 54f8871259d5e897c28946c66908e8ee64cf96be9dfd13e3fe47ed75f92a0fca
5
5
  SHA512:
6
- metadata.gz: a206521bd4393212b53f4f281d501c9e7fbeec8fb9dab8a863e7590037998c371ca55da029ba569fff6898efe07e22a8b9ec46924f13fdd975aadcca9a03e015
7
- data.tar.gz: 38c0dc3e7ea2961b1fd8020948a83ee2caa527a5355c975748c57efdd17fd23a85c82d2e90e6a39d59ac3a3cd6799ae319fcb0892b94e0bceec4fcac720f2017
6
+ metadata.gz: 56a73fe1ec095a370b2b8ebc93e0a4aa8e8986841b33b02a5eca4475e89fa59929039a4a9aae248e4aa8f6cef2236d7e47d887c98df2487ab5f5f265af1f2084
7
+ data.tar.gz: 50aacfbe514a2c5a0567325bded2095de0fdb2a33f794bb8f2872855848ad88594d82189bfcf67767909daf9e8e6f984f3a7b9de5dcd1bf1c4c34f018ea51ec2
@@ -1,6 +1,69 @@
1
- === 3.2.0 / 2020-12-7
1
+ # 3.2.5 / 2021-01-11
2
2
 
3
- Enhancements:
3
+ ## Bug fixes:
4
+
5
+ * Don't load more specs after the whole set of specs has been setup. Pull
6
+ request #4262 by deivid-rodriguez
7
+ * Fix broken `bundler` executable after `gem update --system`. Pull
8
+ request #4221 by deivid-rodriguez
9
+
10
+ # 3.2.4 / 2020-12-31
11
+
12
+ ## Enhancements:
13
+
14
+ * Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
15
+ deivid-rodriguez
16
+ * Never spawn subshells when building extensions. Pull request #4190 by
17
+ deivid-rodriguez
18
+
19
+ ## Bug fixes:
20
+
21
+ * Fix fallback to the old index and installation from it not working. Pull
22
+ request #4213 by deivid-rodriguez
23
+ * Fix installing from source on truffleruby. Pull request #4201 by
24
+ deivid-rodriguez
25
+
26
+ # 3.2.3 / 2020-12-22
27
+
28
+ ## Enhancements:
29
+
30
+ * Fix misspellings in default API key name. Pull request #4177 by hsbt
31
+
32
+ ## Bug fixes:
33
+
34
+ * Respect `required_ruby_version` and `required_rubygems_version`
35
+ constraints when looking for `gem install` candidates. Pull request #4110
36
+ by deivid-rodriguez
37
+
38
+ # 3.2.2 / 2020-12-17
39
+
40
+ ## Bug fixes:
41
+
42
+ * Fix issue where CLI commands making more than one request to
43
+ rubygems.org needing an OTP code would crash or ask for the code twice.
44
+ Pull request #4162 by sonalkr132
45
+ * Fix building rake extensions that require openssl. Pull request #4165 by
46
+ deivid-rodriguez
47
+ * Fix `gem update --system` displaying too many changelog entries. Pull
48
+ request #4145 by deivid-rodriguez
49
+
50
+ # 3.2.1 / 2020-12-14
51
+
52
+ ## Enhancements:
53
+
54
+ * Added help message for gem i webrick in gem server command. Pull request
55
+ #4117 by hsbt
56
+
57
+ ## Bug fixes:
58
+
59
+ * Added the missing loading of fileutils same as load_specs. Pull request
60
+ #4124 by hsbt
61
+ * Fix Resolver::APISet to always include prereleases when necessary. Pull
62
+ request #4113 by deivid-rodriguez
63
+
64
+ # 3.2.0 / 2020-12-07
65
+
66
+ ## Enhancements:
4
67
 
5
68
  * Do not override Kernel#warn when there is no need. Pull request #4075 by
6
69
  eregon
@@ -19,7 +82,7 @@ Enhancements:
19
82
  * Pass more information when comparing platforms. Pull request #3817 by
20
83
  eregon
21
84
 
22
- Bug fixes:
85
+ ## Bug fixes:
23
86
 
24
87
  * Use better owner & group for files in rubygems package. Pull request
25
88
  #4065 by deivid-rodriguez
@@ -45,18 +108,18 @@ Bug fixes:
45
108
  * Make `--default` and `--install-dir` options to `gem install` play nice
46
109
  together. Pull request #3906 by deivid-rodriguez
47
110
 
48
- Deprecations:
111
+ ## Deprecations:
49
112
 
50
113
  * Deprecate server command. Pull request #3868 by bronzdoc
51
114
 
52
- Performance:
115
+ ## Performance:
53
116
 
54
117
  * Don't change ruby process CWD when building extensions. Pull request
55
118
  #3498 by deivid-rodriguez
56
119
 
57
- === 3.2.0.rc.2 / 2020-10-8
120
+ # 3.2.0.rc.2 / 2020-10-08
58
121
 
59
- Minor enhancements:
122
+ ## Enhancements:
60
123
 
61
124
  * Make --dry-run flag consistent across rubygems commands. Pull request
62
125
  #3867 by bronzdoc
@@ -73,7 +136,7 @@ Minor enhancements:
73
136
  * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
74
137
  eregon
75
138
 
76
- Bug fixes:
139
+ ## Bug fixes:
77
140
 
78
141
  * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
79
142
  * Fix false positive warning on Windows when PATH has
@@ -85,7 +148,7 @@ Bug fixes:
85
148
  * `gem install --user` fails with `Gem::FilePermissionError` on the system
86
149
  plugins directory. Pull request #3804 by nobu
87
150
 
88
- Performance:
151
+ ## Performance:
89
152
 
90
153
  * Avoid duplicated generation of APISpecification objects. Pull request
91
154
  #3940 by mame
@@ -95,16 +158,13 @@ Performance:
95
158
  casperisfine
96
159
  * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
97
160
 
98
- === 3.2.0.rc.1 / 2020-07-04
161
+ # 3.2.0.rc.1 / 2020-07-04
99
162
 
100
- Major enhancements:
163
+ ## Enhancements:
101
164
 
102
165
  * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
103
166
  * Rework plugins system and speed up rubygems. Pull request #3108 by David
104
167
  Rodríguez.
105
-
106
- Minor enhancements:
107
-
108
168
  * Specify explicit separator not to be affected by $;. Pull request #3424
109
169
  by Nobuyoshi Nakada.
110
170
  * Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
@@ -147,7 +207,7 @@ Minor enhancements:
147
207
  * Only rescue the errors we actually want to rescue. Pull request #3156 by
148
208
  David Rodríguez.
149
209
 
150
- Bug fixes:
210
+ ## Bug fixes:
151
211
 
152
212
  * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
153
213
  request #3422 by Yusuke Endoh.
@@ -169,12 +229,12 @@ Bug fixes:
169
229
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
170
230
  Rodríguez.
171
231
 
172
- Deprecations:
232
+ ## Deprecations:
173
233
 
174
234
  * Set deprecation warning on query command. Pull request #2967 by Luis
175
235
  Sagastume.
176
236
 
177
- Breaking changes:
237
+ ## Breaking changes:
178
238
 
179
239
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
180
240
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
@@ -201,9 +261,9 @@ Breaking changes:
201
261
  * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
202
262
  request #3114 by Luis Sagastume.
203
263
 
204
- === 3.1.4 / 2020-06-03
264
+ # 3.1.4 / 2020-06-03
205
265
 
206
- Minor enhancements:
266
+ ## Enhancements:
207
267
 
208
268
  * Deprecate rubyforge_project attribute only during build
209
269
  time. Pull request #3609 by Josef Šimánek.
@@ -212,9 +272,9 @@ Minor enhancements:
212
272
  * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
213
273
  Josef Šimánek.
214
274
 
215
- === 3.1.3 / 2020-05-05
275
+ # 3.1.3 / 2020-05-05
216
276
 
217
- Minor enhancements:
277
+ ## Enhancements:
218
278
 
219
279
  * Resolver: require NameTuple before use. Pull request #3171 by Olle
220
280
  Jonsson.
@@ -225,7 +285,7 @@ Minor enhancements:
225
285
  * Add tests to check if Gem.ruby_version works with ruby git master.
226
286
  Pull request #3049 by Yusuke Endoh.
227
287
 
228
- Bug fixes:
288
+ ## Bug fixes:
229
289
 
230
290
  * Fix platform comparison check in #contains_requirable_file?. Pull
231
291
  request #3495 by Benoit Daloze.
@@ -237,9 +297,9 @@ Bug fixes:
237
297
  * Fix gem install from a gemdeps file with complex dependencies.
238
298
  Pull request #3054 by Luis Sagastume.
239
299
 
240
- === 3.1.2 / 2019-12-20
300
+ # 3.1.2 / 2019-12-20
241
301
 
242
- Minor enhancements:
302
+ ## Enhancements:
243
303
 
244
304
  * Restore non prompting `gem update --system` behavior. Pull request #3040
245
305
  by David Rodríguez.
@@ -249,29 +309,26 @@ Minor enhancements:
249
309
  Pull request #3042 by David Rodríguez.
250
310
  * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
251
311
 
252
- Bug fixes:
312
+ ## Bug fixes:
253
313
 
254
314
  * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
255
315
  * Fix `gem update --system --force`. Pull request #3035 by David
256
316
  Rodríguez.
257
317
  * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
258
318
 
259
- === 3.1.1 / 2019-12-16
319
+ # 3.1.1 / 2019-12-16
260
320
 
261
- Bug fixes:
321
+ ## Bug fixes:
262
322
 
263
323
  * Vendor Bundler 2.1.0 again. The version of Bundler with
264
324
  RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
265
325
  SHIBATA Hiroshi.
266
326
 
267
- === 3.1.0 / 2019-12-16
327
+ # 3.1.0 / 2019-12-16
268
328
 
269
- Major enhancements:
329
+ ## Enhancements:
270
330
 
271
331
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
272
-
273
- Minor enhancements:
274
-
275
332
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
276
333
  Luis Sagastume.
277
334
  * Refactor remote fetcher. Pull request #3017 by David Rodríguez.
@@ -283,25 +340,25 @@ Minor enhancements:
283
340
  * Use bundler to manage development dependencies. Pull request #3012 by
284
341
  David Rodríguez.
285
342
 
286
- Bug fixes:
343
+ ## Bug fixes:
287
344
 
288
345
  * Remove unnecessary executable flags. Pull request #2982 by David
289
346
  Rodríguez.
290
347
  * Remove configuration that contained a typo. Pull request #2989 by David
291
348
  Rodríguez.
292
349
 
293
- Deprecations:
350
+ ## Deprecations:
294
351
 
295
352
  * Deprecate `gem generate_index --modern` and `gem generate_index
296
353
  --no-modern`. Pull request #2992 by David Rodríguez.
297
354
 
298
- Breaking changes:
355
+ ## Breaking changes:
299
356
 
300
357
  * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
301
358
 
302
- === 3.1.0.pre3 / 2019-11-11
359
+ # 3.1.0.pre3 / 2019-11-11
303
360
 
304
- Minor enhancements:
361
+ ## Enhancements:
305
362
 
306
363
  * Fix gem pristine not accounting for user installed gems. Pull request
307
364
  #2914 by Luis Sagastume.
@@ -320,18 +377,18 @@ Minor enhancements:
320
377
  * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
321
378
  #2985 by MSP-Greg.
322
379
 
323
- === 3.1.0.pre2 / 2019-10-15
380
+ # 3.1.0.pre2 / 2019-10-15
324
381
 
325
- Minor enhancements:
382
+ ## Enhancements:
326
383
 
327
384
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
328
385
  Boussier.
329
386
  * Time comparison around date boundary. Pull request #2944 by Nobuyoshi
330
387
  Nakada.
331
388
 
332
- === 3.1.0.pre1 / 2019-10-08
389
+ # 3.1.0.pre1 / 2019-10-08
333
390
 
334
- Major enhancements:
391
+ ## Enhancements:
335
392
 
336
393
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
337
394
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -342,9 +399,6 @@ Major enhancements:
342
399
  Chaofan.
343
400
  * Autoswitch to exact bundler version if present. Pull request #2583 by
344
401
  David Rodríguez.
345
-
346
- Minor enhancements:
347
-
348
402
  * Fix Gem::Requirement equality comparison when ~> operator is used. Pull
349
403
  request #2554 by Grey Baker.
350
404
  * Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
@@ -464,7 +518,7 @@ Minor enhancements:
464
518
  Berger.
465
519
  * Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
466
520
 
467
- Bug fixes:
521
+ ## Bug fixes:
468
522
 
469
523
  * Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
470
524
  * Remove unused empty sources array. Pull request #2598 by Aaron
@@ -497,7 +551,7 @@ Bug fixes:
497
551
  * Fix cryptic error on local and ignore-dependencies combination. Pull
498
552
  request #2650 by David Rodríguez.
499
553
 
500
- Deprecations:
554
+ ## Deprecations:
501
555
 
502
556
  * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
503
557
  #2857 by SHIBATA Hiroshi.
@@ -511,7 +565,7 @@ Deprecations:
511
565
  * Add deprecation warnings for cli options. Pull request #2607 by Luis
512
566
  Sagastume.
513
567
 
514
- Breaking changes:
568
+ ## Breaking changes:
515
569
 
516
570
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
517
571
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
@@ -534,16 +588,16 @@ Breaking changes:
534
588
  #2685 by SHIBATA Hiroshi.
535
589
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
536
590
 
537
- === 3.0.8 / 2020-02-19
591
+ # 3.0.8 / 2020-02-19
538
592
 
539
- Bug fixes:
593
+ ## Bug fixes:
540
594
 
541
595
  * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
542
596
  Nobuyoshi Nakada.
543
597
 
544
- === 3.0.7 / 2020-02-18
598
+ # 3.0.7 / 2020-02-18
545
599
 
546
- Bug fixes:
600
+ ## Bug fixes:
547
601
 
548
602
  * Fix underscore version selection for bundler #2908 by David Rodríguez.
549
603
  * Add missing wrapper. Pull request #2690 by David Rodríguez.
@@ -553,15 +607,15 @@ Bug fixes:
553
607
  * Use IAM role to extract security-credentials for EC2 instance. Pull
554
608
  request #2894 by Alexander Pakulov.
555
609
 
556
- === 3.0.6 / 2019-08-17
610
+ # 3.0.6 / 2019-08-17
557
611
 
558
- Bug fixes:
612
+ ## Bug fixes:
559
613
 
560
614
  * Revert #2813. It broke the compatibility with 3.0.x versions.
561
615
 
562
- === 3.0.5 / 2019-08-16
616
+ # 3.0.5 / 2019-08-16
563
617
 
564
- Minor enhancements:
618
+ ## Enhancements:
565
619
 
566
620
  * Use env var to configure api key on push. Pull request #2559 by Luis
567
621
  Sagastume.
@@ -596,7 +650,7 @@ Minor enhancements:
596
650
  by Alexander Pakulov.
597
651
  * Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
598
652
 
599
- Bug fixes:
653
+ ## Bug fixes:
600
654
 
601
655
  * Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
602
656
  MSP-Greg.
@@ -612,9 +666,9 @@ Bug fixes:
612
666
  * Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
613
667
  Hiroshi.
614
668
 
615
- === 3.0.4 / 2019-06-14
669
+ # 3.0.4 / 2019-06-14
616
670
 
617
- Minor enhancements:
671
+ ## Enhancements:
618
672
 
619
673
  * Add support for TruffleRuby #2612 by Benoit Daloze
620
674
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -651,7 +705,7 @@ Minor enhancements:
651
705
  request #2777 by Yusuke Endoh.
652
706
  * Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
653
707
 
654
- Bug fixes:
708
+ ## Bug fixes:
655
709
 
656
710
  * Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
657
711
  * Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
@@ -667,7 +721,7 @@ Bug fixes:
667
721
  #2732 by Alex Junger.
668
722
  * Fix TODOs. Pull request #2748 by David Rodríguez.
669
723
 
670
- === 3.0.3 / 2019-03-05
724
+ # 3.0.3 / 2019-03-05
671
725
 
672
726
  Security fixes:
673
727
 
@@ -678,14 +732,14 @@ Security fixes:
678
732
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
679
733
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
680
734
 
681
- === 3.0.2 / 2019-01-01
735
+ # 3.0.2 / 2019-01-01
682
736
 
683
- Minor enhancements:
737
+ ## Enhancements:
684
738
 
685
739
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
686
740
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
687
741
 
688
- Bug fixes:
742
+ ## Bug fixes:
689
743
 
690
744
  * Fix tests when ruby --program-suffix is used without rubygems
691
745
  --format-executable. Pull request #2549 by Jeremy Evans.
@@ -695,9 +749,9 @@ Bug fixes:
695
749
  Fukumori.
696
750
  * Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
697
751
 
698
- === 3.0.1 / 2018-12-23
752
+ # 3.0.1 / 2018-12-23
699
753
 
700
- Bug fixes:
754
+ ## Bug fixes:
701
755
 
702
756
  * Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
703
757
  * Dup the Dir.home string before passing it on. Pull request #2545 by
@@ -706,9 +760,9 @@ Bug fixes:
706
760
  by SHIBATA Hiroshi.
707
761
  * Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
708
762
 
709
- === 3.0.0 / 2018-12-19
763
+ # 3.0.0 / 2018-12-19
710
764
 
711
- Major enhancements:
765
+ ## Enhancements:
712
766
 
713
767
  * S3 source. Pull request #1690 by Aditya Prakash.
714
768
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -716,9 +770,6 @@ Major enhancements:
716
770
  * [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
717
771
  Chaofan.
718
772
  * Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
719
-
720
- Minor enhancements:
721
-
722
773
  * Don't treat inaccessible working directories as build failures. Pull
723
774
  request #1135 by Pete.
724
775
  * Remove useless directory parameter from builders .build methods.
@@ -876,7 +927,7 @@ Minor enhancements:
876
927
  * Support the environment without OpenSSL. Pull request #2528 by SHIBATA
877
928
  Hiroshi.
878
929
 
879
- Bug fixes:
930
+ ## Bug fixes:
880
931
 
881
932
  * Fix undefined method error when printing alert. Pull request #1884 by
882
933
  Robert Ross.
@@ -929,7 +980,7 @@ Bug fixes:
929
980
  * Fix tests when --program-suffix and similar ruby configure options are
930
981
  used. Pull request #2529 by Jeremy Evans.
931
982
 
932
- Breaking changes:
983
+ ## Breaking changes:
933
984
 
934
985
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
935
986
  Hiroshi.
@@ -982,9 +1033,9 @@ Breaking changes:
982
1033
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
983
1034
  major versions. Pull request #2515 by Colby Swandale.
984
1035
 
985
- === 2.7.10 / 2019-06-14
1036
+ # 2.7.10 / 2019-06-14
986
1037
 
987
- Minor enhancements:
1038
+ ## Enhancements:
988
1039
 
989
1040
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
990
1041
  by David Rodríguez.
@@ -992,7 +1043,7 @@ Minor enhancements:
992
1043
  Pull request #2515 by Colby Swandale.
993
1044
  + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
994
1045
 
995
- === 2.7.9 / 2019-03-05
1046
+ # 2.7.9 / 2019-03-05
996
1047
 
997
1048
  Security fixes:
998
1049
 
@@ -1003,9 +1054,9 @@ Security fixes:
1003
1054
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
1004
1055
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
1005
1056
 
1006
- === 2.7.8 / 2018-11-02
1057
+ # 2.7.8 / 2018-11-02
1007
1058
 
1008
- Minor enhancements:
1059
+ ## Enhancements:
1009
1060
 
1010
1061
  * [Requirement] Treat requirements with == versions as equal. Pull
1011
1062
  request #2230 by Samuel Giddins.
@@ -1024,7 +1075,7 @@ Minor enhancements:
1024
1075
  * Improve bindir flag description. Pull request #2383 by Luis Sagastume.
1025
1076
  * Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
1026
1077
 
1027
- Bug fixes:
1078
+ ## Bug fixes:
1028
1079
 
1029
1080
  * Fix #1470: generate documentation when --install-dir is present. Pull
1030
1081
  request #2229 by Elias Hernandis.
@@ -1037,9 +1088,9 @@ Bug fixes:
1037
1088
  * Gem::Version should handle nil like it used to before. Pull request
1038
1089
  #2363 by Luis Sagastume.
1039
1090
 
1040
- === 2.7.7 / 2018-05-08
1091
+ # 2.7.7 / 2018-05-08
1041
1092
 
1042
- Minor enhancements:
1093
+ ## Enhancements:
1043
1094
 
1044
1095
  * [RequestSet] Only suggest a gem version with an installable platform.
1045
1096
  Pull request #2175 by Samuel Giddins.
@@ -1054,7 +1105,7 @@ Minor enhancements:
1054
1105
  Sagastume.
1055
1106
  * Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
1056
1107
 
1057
- Bug fixes:
1108
+ ## Bug fixes:
1058
1109
 
1059
1110
  * Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
1060
1111
  #2115 by MSP-Greg.
@@ -1067,7 +1118,7 @@ Bug fixes:
1067
1118
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1068
1119
  Lars Kanis.
1069
1120
 
1070
- Deprecations:
1121
+ ## Deprecations:
1071
1122
 
1072
1123
  * Deprecate unused code before removing them at #1524. Pull request #2197
1073
1124
  by SHIBATA Hiroshi.
@@ -1075,11 +1126,11 @@ Deprecations:
1075
1126
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1076
1127
  SHIBATA Hiroshi.
1077
1128
 
1078
- Breaking changes:
1129
+ ## Breaking changes:
1079
1130
 
1080
1131
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1081
1132
 
1082
- === 2.7.6 / 2018-02-16
1133
+ # 2.7.6 / 2018-02-16
1083
1134
 
1084
1135
  Security fixes:
1085
1136
 
@@ -1098,9 +1149,9 @@ Security fixes:
1098
1149
  * Prevent Path Traversal issue during gem installation.
1099
1150
  Discovered by nmalkin.
1100
1151
 
1101
- === 2.7.5
1152
+ # 2.7.5
1102
1153
 
1103
- Bug fixes:
1154
+ ## Bug fixes:
1104
1155
 
1105
1156
  * To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
1106
1157
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
@@ -1112,9 +1163,9 @@ Bug fixes:
1112
1163
  * Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
1113
1164
  * Fix undefined method error when printing alert #1884 by Robert Ross.
1114
1165
 
1115
- === 2.7.4
1166
+ # 2.7.4
1116
1167
 
1117
- Bug fixes:
1168
+ ## Bug fixes:
1118
1169
 
1119
1170
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
1120
1171
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -1123,9 +1174,9 @@ Bug fixes:
1123
1174
  * Handle environment that does not have `flock` system call. Pull request
1124
1175
  #2107 by SHIBATA Hiroshi.
1125
1176
 
1126
- === 2.7.3
1177
+ # 2.7.3
1127
1178
 
1128
- Minor enhancements:
1179
+ ## Enhancements:
1129
1180
 
1130
1181
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
1131
1182
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -1138,7 +1189,7 @@ Minor enhancements:
1138
1189
  * Remove multi load warning from plugins documentation. Pull request #2103
1139
1190
  by Thibault Jouan.
1140
1191
 
1141
- Bug fixes:
1192
+ ## Bug fixes:
1142
1193
 
1143
1194
  * Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
1144
1195
  Dash.
@@ -1157,33 +1208,30 @@ Bug fixes:
1157
1208
  * Use setup command --regenerate-binstubs option flag. Pull request #2099
1158
1209
  by Thibault Jouan.
1159
1210
 
1160
- === 2.7.2
1211
+ # 2.7.2
1161
1212
 
1162
- Bug fixes:
1213
+ ## Bug fixes:
1163
1214
 
1164
1215
  * Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
1165
1216
  Hiroshi.
1166
1217
  * Added workaround for non-git environment. Pull request #2066 by SHIBATA
1167
1218
  Hiroshi.
1168
1219
 
1169
- === 2.7.1 (2017-11-03)
1220
+ # 2.7.1 (2017-11-03)
1170
1221
 
1171
- Bug fixes:
1222
+ ## Bug fixes:
1172
1223
 
1173
1224
  * Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
1174
1225
  Samuel Giddins.
1175
1226
 
1176
- === 2.7.0 (2017-11-02)
1227
+ # 2.7.0 (2017-11-02)
1177
1228
 
1178
- Major enhancements:
1229
+ ## Enhancements:
1179
1230
 
1180
1231
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
1181
1232
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
1182
1233
  * Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
1183
1234
  * Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
1184
-
1185
- Minor enhancements:
1186
-
1187
1235
  * Added message to uninstall command for gem that is not installed. Pull
1188
1236
  request #1979 by anant anil kolvankar.
1189
1237
  * Add --trust-policy option to unpack command. Pull request #1718 by
@@ -1269,7 +1317,7 @@ Minor enhancements:
1269
1317
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1270
1318
  Dash.
1271
1319
 
1272
- Deprecations:
1320
+ ## Deprecations:
1273
1321
 
1274
1322
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1275
1323
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
@@ -1279,7 +1327,7 @@ Deprecations:
1279
1327
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1280
1328
  Pull request #1731 by Jon Moss.
1281
1329
 
1282
- Breaking changes:
1330
+ ## Breaking changes:
1283
1331
 
1284
1332
  * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1285
1333
  unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
@@ -1287,7 +1335,7 @@ Breaking changes:
1287
1335
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1288
1336
  #1796 by Matej.
1289
1337
 
1290
- Bug fixes:
1338
+ ## Bug fixes:
1291
1339
 
1292
1340
  * Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
1293
1341
  MSP-Greg.
@@ -1340,7 +1388,7 @@ Bug fixes:
1340
1388
  * [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
1341
1389
  Pull request #1738 by Samuel Giddins.
1342
1390
 
1343
- === 2.6.14 / 2017-10-09
1391
+ # 2.6.14 / 2017-10-09
1344
1392
 
1345
1393
  Security fixes:
1346
1394
 
@@ -1348,7 +1396,7 @@ Security fixes:
1348
1396
  See CVE-2017-0903 for full details.
1349
1397
  Fix by Aaron Patterson.
1350
1398
 
1351
- === 2.6.13 / 2017-08-27
1399
+ # 2.6.13 / 2017-08-27
1352
1400
 
1353
1401
  Security fixes:
1354
1402
 
@@ -1362,9 +1410,9 @@ Security fixes:
1362
1410
  to overwrite arbitrary files. (CVE-2017-0901)
1363
1411
  Discovered by Yusuke Endoh, fix by Samuel Giddins.
1364
1412
 
1365
- === 2.6.12 / 2017-04-30
1413
+ # 2.6.12 / 2017-04-30
1366
1414
 
1367
- Bug fixes:
1415
+ ## Bug fixes:
1368
1416
 
1369
1417
  * Fix test_self_find_files_with_gemfile to sort expected files. Pull
1370
1418
  request #1880 by Kazuaki Matsuo.
@@ -1385,9 +1433,9 @@ Bug fixes:
1385
1433
  * Allow Gem.finish_resolve to respect already-activated specs. Pull
1386
1434
  request #1910 by Samuel Giddins.
1387
1435
 
1388
- === 2.6.11 / 2017-03-16
1436
+ # 2.6.11 / 2017-03-16
1389
1437
 
1390
- Bug fixes:
1438
+ ## Bug fixes:
1391
1439
 
1392
1440
  * Fixed broken tests on ruby-head. Pull request #1841 by
1393
1441
  SHIBATA Hiroshi.
@@ -1398,16 +1446,16 @@ Bug fixes:
1398
1446
  * Use improved resolver sorting algorithm. Pull request #1856 by
1399
1447
  Samuel Giddins.
1400
1448
 
1401
- === 2.6.10 / 2017-01-23
1449
+ # 2.6.10 / 2017-01-23
1402
1450
 
1403
- Bug fixes:
1451
+ ## Bug fixes:
1404
1452
 
1405
1453
  * Fix `require` calling the wrong `gem` method when it is overridden.
1406
1454
  Pull request #1822 by Samuel Giddins.
1407
1455
 
1408
- === 2.6.9 / 2017-01-20
1456
+ # 2.6.9 / 2017-01-20
1409
1457
 
1410
- Bug fixes:
1458
+ ## Bug fixes:
1411
1459
 
1412
1460
  * Allow initializing versions with empty strings. Pull request #1767 by
1413
1461
  Luis Sagastume.
@@ -1421,9 +1469,9 @@ Bug fixes:
1421
1469
  * RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
1422
1470
  Jonsson.
1423
1471
 
1424
- === 2.6.8 / 2016-10-29
1472
+ # 2.6.8 / 2016-10-29
1425
1473
 
1426
- Bug fixes:
1474
+ ## Bug fixes:
1427
1475
 
1428
1476
  * Improve SSL verification failure message. Pull request #1751
1429
1477
  by Eric Hodel.
@@ -1432,9 +1480,9 @@ Bug fixes:
1432
1480
  * Update vendored Molinillo to 0.5.3. Pull request #1763 by
1433
1481
  Samuel Giddins.
1434
1482
 
1435
- === 2.6.7 / 2016-09-26
1483
+ # 2.6.7 / 2016-09-26
1436
1484
 
1437
- Bug fixes:
1485
+ ## Bug fixes:
1438
1486
 
1439
1487
  * Install native extensions in the correct location when using the
1440
1488
  `--user-install` flag. Pull request #1683 by Noah Kantrowitz.
@@ -1446,24 +1494,24 @@ Bug fixes:
1446
1494
  * Update vendored Molinillo to 0.5.1. Pull request #1714 by
1447
1495
  Samuel Giddins.
1448
1496
 
1449
- === 2.6.6 / 2016-06-22
1497
+ # 2.6.6 / 2016-06-22
1450
1498
 
1451
- Bug fixes:
1499
+ ## Bug fixes:
1452
1500
 
1453
1501
  * Sort installed versions to make sure we install the latest version when
1454
1502
  running `gem update --system`. As a one-time fix, run
1455
1503
  `gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
1456
1504
 
1457
- === 2.6.5 / 2016-06-21
1505
+ # 2.6.5 / 2016-06-21
1458
1506
 
1459
- Minor enhancements:
1507
+ ## Enhancements:
1460
1508
 
1461
1509
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1462
1510
  by SHIBATA Hiroshi.
1463
1511
  * Update vendored Molinillo to 0.5.0 for performance improvements.
1464
1512
  Pull request #1638 by Samuel Giddins.
1465
1513
 
1466
- Bug fixes:
1514
+ ## Bug fixes:
1467
1515
 
1468
1516
  * Raise an explicit error if Signer#sign is called with no certs. Pull
1469
1517
  request #1605 by Daniel Berger.
@@ -1483,16 +1531,16 @@ Bug fixes:
1483
1531
  Pull request #1644 by Charles Oliver Nutter.
1484
1532
  * Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
1485
1533
 
1486
- === 2.6.4 / 2016-04-26
1534
+ # 2.6.4 / 2016-04-26
1487
1535
 
1488
- Minor enhancements:
1536
+ ## Enhancements:
1489
1537
 
1490
1538
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1491
1539
  by Chris Charabaruk.
1492
1540
  * Use File.symlink on MS Windows if supported. Pull request #1418
1493
1541
  by Nobuyoshi Nakada.
1494
1542
 
1495
- Bug fixes:
1543
+ ## Bug fixes:
1496
1544
 
1497
1545
  * Redact uri password from error output when gem fetch fails. Pull request
1498
1546
  #1565 by Brian Fletcher.
@@ -1500,9 +1548,9 @@ Bug fixes:
1500
1548
  * Escape user-supplied content served on web pages by `gem server` to avoid
1501
1549
  potential XSS vulnerabilities. Samuel Giddins.
1502
1550
 
1503
- === 2.6.3 / 2016-04-05
1551
+ # 2.6.3 / 2016-04-05
1504
1552
 
1505
- Minor enhancements:
1553
+ ## Enhancements:
1506
1554
 
1507
1555
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1508
1556
  by Aaron Patterson.
@@ -1513,7 +1561,7 @@ Minor enhancements:
1513
1561
  * Show default gems when using "gem list". Pull request #1570 by Luis
1514
1562
  Sagastume.
1515
1563
 
1516
- Bug fixes:
1564
+ ## Bug fixes:
1517
1565
 
1518
1566
  * Stub ordering should be consistent regardless of how cache is populated.
1519
1567
  Pull request #1552 by Aaron Patterson.
@@ -1529,9 +1577,9 @@ Bug fixes:
1529
1577
  Giddins.
1530
1578
  * Allow two digit version numbers in the tests. Pull request #1575 by unak.
1531
1579
 
1532
- === 2.6.2 / 2016-03-12
1580
+ # 2.6.2 / 2016-03-12
1533
1581
 
1534
- Bug fixes:
1582
+ ## Bug fixes:
1535
1583
 
1536
1584
  * Fix wrong version of gem activation for bin stub. Pull request #1527 by
1537
1585
  Aaron Patterson.
@@ -1542,9 +1590,9 @@ Bug fixes:
1542
1590
  #1538 by Charles Oliver Nutter.
1543
1591
 
1544
1592
 
1545
- === 2.6.1 / 2016-02-28
1593
+ # 2.6.1 / 2016-02-28
1546
1594
 
1547
- Bug fixes:
1595
+ ## Bug fixes:
1548
1596
 
1549
1597
  * Ensure `default_path` and `home` are set for paths. Pull request #1513
1550
1598
  by Aaron Patterson.
@@ -1553,9 +1601,9 @@ Bug fixes:
1553
1601
  * Fix invalid gem file preventing gem install from working. Pull request
1554
1602
  #1499 by Luis Sagastume.
1555
1603
 
1556
- === 2.6.0 / 2016-02-26
1604
+ # 2.6.0 / 2016-02-26
1557
1605
 
1558
- Minor enhancements:
1606
+ ## Enhancements:
1559
1607
 
1560
1608
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1561
1609
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1566,7 +1614,7 @@ Minor enhancements:
1566
1614
  * Allow specifying gem requirements via env variables. Pull request #1472
1567
1615
  by Samuel E. Giddins.
1568
1616
 
1569
- Bug fixes:
1617
+ ## Bug fixes:
1570
1618
 
1571
1619
  * RubyGems now stores `gem push` credentials under the host you signed-in for.
1572
1620
  Pull request #1485 by Josh Lane.
@@ -1592,9 +1640,9 @@ Bug fixes:
1592
1640
  * Find_files only from loaded_gems when using gemdeps. Pull request #1277
1593
1641
  by Michal Papis.
1594
1642
 
1595
- === 2.5.2 / 2016-01-31
1643
+ # 2.5.2 / 2016-01-31
1596
1644
 
1597
- Bug fixes:
1645
+ ## Bug fixes:
1598
1646
 
1599
1647
  * Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
1600
1648
  Zuijlen.
@@ -1610,7 +1658,7 @@ Bug fixes:
1610
1658
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1611
1659
  Giddins.
1612
1660
 
1613
- Minor enhancements:
1661
+ ## Enhancements:
1614
1662
 
1615
1663
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1616
1664
  Sagastume.
@@ -1635,9 +1683,9 @@ Minor enhancements:
1635
1683
  * Function correctly when string literals are frozen on Ruby 2.3. Pull request
1636
1684
  #1408 by Samuel E. Giddins.
1637
1685
 
1638
- === 2.5.1 / 2015-12-10
1686
+ # 2.5.1 / 2015-12-10
1639
1687
 
1640
- Bug fixes:
1688
+ ## Bug fixes:
1641
1689
 
1642
1690
  * Ensure platform sorting only uses strings. Affected binary installs on Windows.
1643
1691
  Issue #1369 reported by Ryan Atball (among others).
@@ -1666,9 +1714,9 @@ Bug fixes:
1666
1714
  Kudo.
1667
1715
  * Fixed double word typo. Pull request #1411 by Jake Worth.
1668
1716
 
1669
- === 2.5.0 / 2015-11-03
1717
+ # 2.5.0 / 2015-11-03
1670
1718
 
1671
- Major enhancements:
1719
+ ## Enhancements:
1672
1720
 
1673
1721
  * Added the Gem::Licenses class which provides a set of standard license
1674
1722
  identifiers as set by spdx.org. This is now used by the
@@ -1677,8 +1725,6 @@ Major enhancements:
1677
1725
 
1678
1726
  Pull request #1249 by Kyle Mitchell.
1679
1727
 
1680
- Minor enhancements:
1681
-
1682
1728
  * Use Molinillo as the resolver library. This is the same resolver as used by
1683
1729
  Bundler. Pull request #1189 by Samuel E. Giddins.
1684
1730
  * Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
@@ -1740,7 +1786,7 @@ Minor enhancements:
1740
1786
  * Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
1741
1787
  Agis Anastasopoulos.
1742
1788
 
1743
- Bug fixes:
1789
+ ## Bug fixes:
1744
1790
 
1745
1791
  * Fixed Rake homepage url in example for Gem::Specification#homepage.
1746
1792
  Pull request #1171 by Arthur Nogueira Neves
@@ -1797,22 +1843,22 @@ Bug fixes:
1797
1843
  * RubyGems handles invalid config files better. Pull request #1367 by Agis
1798
1844
  Anastasopoulos.
1799
1845
 
1800
- === 2.4.8 / 2015-06-08
1846
+ # 2.4.8 / 2015-06-08
1801
1847
 
1802
- Bug fixes:
1848
+ ## Bug fixes:
1803
1849
 
1804
1850
  * Tightened API endpoint checks for CVE-2015-3900
1805
1851
 
1806
- === 2.4.7 / 2015-05-14
1852
+ # 2.4.7 / 2015-05-14
1807
1853
 
1808
- Bug fixes:
1854
+ ## Bug fixes:
1809
1855
 
1810
1856
  * Limit API endpoint to original security domain for CVE-2015-3900.
1811
1857
  Fix by claudijd
1812
1858
 
1813
- === 2.4.6 / 2015-02-05
1859
+ # 2.4.6 / 2015-02-05
1814
1860
 
1815
- Bug fixes:
1861
+ ## Bug fixes:
1816
1862
 
1817
1863
  * Fixed resolving gems with both upper and lower requirement boundaries.
1818
1864
  Issue #1141 by Jakub Jirutka.
@@ -1837,9 +1883,9 @@ Bug fixes:
1837
1883
  Ondruch.
1838
1884
  * Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
1839
1885
 
1840
- === 2.4.5 / 2014-12-03
1886
+ # 2.4.5 / 2014-12-03
1841
1887
 
1842
- Bug fixes:
1888
+ ## Bug fixes:
1843
1889
 
1844
1890
  * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
1845
1891
  request #1060 by unak.
@@ -1879,27 +1925,27 @@ Bug fixes:
1879
1925
  * Fixed grouped expression warning. Pull request #1081 by André Arko.
1880
1926
  * Fixed handling of platforms when writing lockfiles.
1881
1927
 
1882
- === 2.4.4 / 2014-11-12
1928
+ # 2.4.4 / 2014-11-12
1883
1929
 
1884
- Bug fixes:
1930
+ ## Bug fixes:
1885
1931
 
1886
1932
  * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
1887
1933
  Protosac
1888
1934
 
1889
- === 2.4.3 / 2014-11-10
1935
+ # 2.4.3 / 2014-11-10
1890
1936
 
1891
- Bug fixes:
1937
+ ## Bug fixes:
1892
1938
 
1893
1939
  * Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
1894
1940
  * Fix typo in platform= docs. Pull request #1048 by @jasonrclark
1895
1941
  * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
1896
1942
  Protosac
1897
1943
 
1898
- === 2.4.2 / 2014-10-01
1944
+ # 2.4.2 / 2014-10-01
1899
1945
 
1900
1946
  This release was sponsored by Ruby Central.
1901
1947
 
1902
- Bug fixes:
1948
+ ## Bug fixes:
1903
1949
 
1904
1950
  * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
1905
1951
  voelzemo.
@@ -1933,16 +1979,16 @@ Bug fixes:
1933
1979
  * RubyGems now fails immediately when a git reference cannot be found instead
1934
1980
  of spewing git errors. Issue #1031 by Michal Papis
1935
1981
 
1936
- === 2.4.1 / 2014-07-17
1982
+ # 2.4.1 / 2014-07-17
1937
1983
 
1938
- Bug fixes:
1984
+ ## Bug fixes:
1939
1985
 
1940
1986
  * RubyGems can now be updated on Ruby implementations that do not support
1941
1987
  vendordir in RbConfig::CONFIG. Issue #974 by net1957.
1942
1988
 
1943
- === 2.4.0 / 2014-07-16
1989
+ # 2.4.0 / 2014-07-16
1944
1990
 
1945
- Minor enhancements:
1991
+ ## Enhancements:
1946
1992
 
1947
1993
  * The contents command now supports a --show-install-dir option that shows
1948
1994
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1953,7 +1999,7 @@ Minor enhancements:
1953
1999
  in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
1954
2000
  Marcus Rückert.
1955
2001
 
1956
- Bug fixes:
2002
+ ## Bug fixes:
1957
2003
 
1958
2004
  * Kernel#gem now respects the prerelease flag when activating gems.
1959
2005
  Previously this behavior was undefined which could lead to bugs when a
@@ -2003,9 +2049,9 @@ Bug fixes:
2003
2049
  during gem resolution.
2004
2050
 
2005
2051
 
2006
- === 2.3.0 / 2014-06-10
2052
+ # 2.3.0 / 2014-06-10
2007
2053
 
2008
- Minor enhancements:
2054
+ ## Enhancements:
2009
2055
 
2010
2056
  * Added the `open` command which allows you to inspect the source of a gem
2011
2057
  using your editor.
@@ -2046,7 +2092,7 @@ Minor enhancements:
2046
2092
  * RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
2047
2093
  Benjamin Fleischer.
2048
2094
 
2049
- Bug fixes:
2095
+ ## Bug fixes:
2050
2096
 
2051
2097
  * RubyGems now only fetches the latest specs to find misspellings which speeds
2052
2098
  up gem suggestions. Pull request #808 by Aaron Patterson.
@@ -2126,29 +2172,29 @@ Bug fixes:
2126
2172
  * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
2127
2173
  #852 by Vít Ondruch.
2128
2174
 
2129
- === 2.2.5 / 2015-06-08
2175
+ # 2.2.5 / 2015-06-08
2130
2176
 
2131
- Bug fixes:
2177
+ ## Bug fixes:
2132
2178
 
2133
2179
  * Tightened API endpoint checks for CVE-2015-3900
2134
2180
 
2135
- === 2.2.4 / 2015-05-14
2181
+ # 2.2.4 / 2015-05-14
2136
2182
 
2137
- Bug fixes:
2183
+ ## Bug fixes:
2138
2184
 
2139
2185
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2140
2186
  Fix by claudijd
2141
2187
 
2142
- === 2.2.3 / 2014-12-21
2188
+ # 2.2.3 / 2014-12-21
2143
2189
 
2144
- Bug fixes:
2190
+ ## Bug fixes:
2145
2191
 
2146
2192
  * Backport: Add alternate Root CA for upcoming certificate change.
2147
2193
  Fixes #1050 by Protosac
2148
2194
 
2149
- === 2.2.2 / 2014-02-05
2195
+ # 2.2.2 / 2014-02-05
2150
2196
 
2151
- Bug fixes:
2197
+ ## Bug fixes:
2152
2198
 
2153
2199
  * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
2154
2200
  Nakada.
@@ -2173,9 +2219,9 @@ Bug fixes:
2173
2219
  * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
2174
2220
  Sergio Rubio.
2175
2221
 
2176
- === 2.2.1 / 2014-01-06
2222
+ # 2.2.1 / 2014-01-06
2177
2223
 
2178
- Bug fixes:
2224
+ ## Bug fixes:
2179
2225
 
2180
2226
  * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
2181
2227
  #767 by Diego Viola.
@@ -2201,12 +2247,12 @@ Bug fixes:
2201
2247
  * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
2202
2248
  request #763 by James Mead
2203
2249
 
2204
- === 2.2.0 / 2013-12-26
2250
+ # 2.2.0 / 2013-12-26
2205
2251
 
2206
2252
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
2207
2253
  RubyGems as it was prepared for the 2.2.0 release.
2208
2254
 
2209
- Major enhancements:
2255
+ ## Enhancements:
2210
2256
 
2211
2257
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
2212
2258
  rubygems executables are started and uses the found dependencies. This
@@ -2229,8 +2275,6 @@ Major enhancements:
2229
2275
  The default sharing location may be configured by RubyGems packagers through
2230
2276
  Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
2231
2277
 
2232
- Minor enhancements:
2233
-
2234
2278
  * RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
2235
2279
  prevent an accidental push to a public repository (such as rubygems.org).
2236
2280
  If you have private gems you should set this value in your gem specification
@@ -2276,7 +2320,7 @@ Minor enhancements:
2276
2320
  * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
2277
2321
  Request #755 by strzibny.
2278
2322
 
2279
- Bug fixes:
2323
+ ## Bug fixes:
2280
2324
 
2281
2325
  * RubyGems now returns an error status when any file given to `gem which`
2282
2326
  cannot be found. Ruby bug #9004 by Eugene Vilensky.
@@ -2293,9 +2337,9 @@ Bug fixes:
2293
2337
  * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
2294
2338
  Lee.
2295
2339
 
2296
- === 2.1.11 / 2013-11-12
2340
+ # 2.1.11 / 2013-11-12
2297
2341
 
2298
- Bug fixes:
2342
+ ## Bug fixes:
2299
2343
 
2300
2344
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2301
2345
  to be removed. Issue #698 by Tiago Macedo.
@@ -2305,9 +2349,9 @@ Bug fixes:
2305
2349
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2306
2350
  Pull Request #706 by akr.
2307
2351
 
2308
- === 2.1.10 / 2013-10-24
2352
+ # 2.1.10 / 2013-10-24
2309
2353
 
2310
- Bug fixes:
2354
+ ## Bug fixes:
2311
2355
 
2312
2356
  * Use class check instead of :version method check when creating Gem::Version
2313
2357
  objects. Fixes #674 by jkanywhere.
@@ -2326,18 +2370,18 @@ Bug fixes:
2326
2370
  * The --ignore-dependencies option for gem installation works again. Issue
2327
2371
  #695
2328
2372
 
2329
- === 2.1.9 / 2013-10-14
2373
+ # 2.1.9 / 2013-10-14
2330
2374
 
2331
- Bug fixes:
2375
+ ## Bug fixes:
2332
2376
 
2333
2377
  * Reduce sorting when fetching specifications. This speeds up the update and
2334
2378
  outdated commands, and others. Issue #657 by windwiny.
2335
2379
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2336
2380
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2337
2381
 
2338
- === 2.1.8 / 2013-10-10
2382
+ # 2.1.8 / 2013-10-10
2339
2383
 
2340
- Bug fixes:
2384
+ ## Bug fixes:
2341
2385
 
2342
2386
  * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
2343
2387
  * Files starting with "." in the root directory are installed again. Issue
@@ -2345,9 +2389,9 @@ Bug fixes:
2345
2389
  * The index generator no longer indexes default gems. Issue #661 by
2346
2390
  Jeremy Hinegardner.
2347
2391
 
2348
- === 2.1.7 / 2013-10-09
2392
+ # 2.1.7 / 2013-10-09
2349
2393
 
2350
- Bug fixes:
2394
+ ## Bug fixes:
2351
2395
 
2352
2396
  * `gem sources --list` now displays a list of sources. Pull request #672 by
2353
2397
  Nathan Marley.
@@ -2360,9 +2404,9 @@ Bug fixes:
2360
2404
  * Expand unpack destination directory. This fixes problems when File.realpath
2361
2405
  is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
2362
2406
 
2363
- === 2.1.6 / 2013-10-08
2407
+ # 2.1.6 / 2013-10-08
2364
2408
 
2365
- Bug fixes:
2409
+ ## Bug fixes:
2366
2410
 
2367
2411
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2368
2412
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2377,7 +2421,7 @@ Bug fixes:
2377
2421
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2378
2422
  Thomas Sänger.
2379
2423
 
2380
- === 2.1.5 / 2013-09-24
2424
+ # 2.1.5 / 2013-09-24
2381
2425
 
2382
2426
  Security fixes:
2383
2427
 
@@ -2386,25 +2430,25 @@ Security fixes:
2386
2430
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2387
2431
  1.8.23.2 (for Ruby 1.9.3).
2388
2432
 
2389
- === 2.1.4 / 2013-09-17
2433
+ # 2.1.4 / 2013-09-17
2390
2434
 
2391
- Bug fixes:
2435
+ ## Bug fixes:
2392
2436
 
2393
2437
  * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
2394
2438
  #650 by Kyle (remkade).
2395
2439
  * Fixed uninstalling gems installed in the home directory (as in
2396
2440
  `--user-install`). Issue #653 by Lin Jen-Shin.
2397
2441
 
2398
- === 2.1.3 / 2013-09-12
2442
+ # 2.1.3 / 2013-09-12
2399
2443
 
2400
- Bug fixes:
2444
+ ## Bug fixes:
2401
2445
 
2402
2446
  * Gems with files entries starting with "./" no longer install 0 files. Issue
2403
2447
  #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
2404
2448
 
2405
- === 2.1.2 / 2013-09-11
2449
+ # 2.1.2 / 2013-09-11
2406
2450
 
2407
- Bug fixes:
2451
+ ## Bug fixes:
2408
2452
 
2409
2453
  * Restore concurrent requires following the fix for ruby bug #8374. Pull
2410
2454
  request #637 and issue #640 by Charles Nutter.
@@ -2413,14 +2457,14 @@ Bug fixes:
2413
2457
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2414
2458
  Issue #643 by Brian Shirai.
2415
2459
 
2416
- === 2.1.1 / 2013-09-10
2460
+ # 2.1.1 / 2013-09-10
2417
2461
 
2418
- Bug fixes:
2462
+ ## Bug fixes:
2419
2463
 
2420
2464
  * Only matching gems matching your local platform are considered for
2421
2465
  installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
2422
2466
 
2423
- === 2.1.0 / 2013-09-09
2467
+ # 2.1.0 / 2013-09-09
2424
2468
 
2425
2469
  Security fixes:
2426
2470
 
@@ -2429,15 +2473,13 @@ Security fixes:
2429
2473
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2430
2474
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2431
2475
 
2432
- Major enhancements:
2476
+ ## Enhancements:
2433
2477
 
2434
2478
  * RubyGems uses a new dependency resolver for gem installation which works
2435
2479
  similar to the bundler resolver. The new resolver can resolve conflicts the
2436
2480
  previous resolver could not and offers improved diagnostics when conflicts
2437
2481
  are discovered.
2438
2482
 
2439
- Minor enhancements:
2440
-
2441
2483
  * RubyGems now has improved platform matching for the ARM architecture. Gems
2442
2484
  built with a CPU of "arm" will match any specific ARM CPU. See `gem help
2443
2485
  platform` for further details. Fixes #532 by Kim Burgestrand.
@@ -2507,7 +2549,7 @@ Minor enhancements:
2507
2549
  still slow, but I see a near 50% improvement for 250 gems on a fast
2508
2550
  connection). See also Gem::Specification::outdated_and_latest_version
2509
2551
 
2510
- Bug fixes:
2552
+ ## Bug fixes:
2511
2553
 
2512
2554
  * rubygems_plugin.rb files are now only loaded from the latest installed gem.
2513
2555
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
@@ -2515,29 +2557,29 @@ Bug fixes:
2515
2557
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2516
2558
  request #622 by Arthur Nogueira Neves
2517
2559
 
2518
- === 2.0.17 / 2015-06-08
2560
+ # 2.0.17 / 2015-06-08
2519
2561
 
2520
- Bug fixes:
2562
+ ## Bug fixes:
2521
2563
 
2522
2564
  * Tightened API endpoint checks for CVE-2015-3900
2523
2565
 
2524
- === 2.0.16 / 2015-05-14
2566
+ # 2.0.16 / 2015-05-14
2525
2567
 
2526
- Bug fixes:
2568
+ ## Bug fixes:
2527
2569
 
2528
2570
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2529
2571
  Fix by claudijd
2530
2572
 
2531
- === 2.0.15 / 2014-12-21
2573
+ # 2.0.15 / 2014-12-21
2532
2574
 
2533
- Bug fixes:
2575
+ ## Bug fixes:
2534
2576
 
2535
2577
  * Backport: Add alternate Root CA for upcoming certificate change.
2536
2578
  Fixes #1050 by Protosac
2537
2579
 
2538
- === 2.0.14 / 2013-11-12
2580
+ # 2.0.14 / 2013-11-12
2539
2581
 
2540
- Bug fixes:
2582
+ ## Bug fixes:
2541
2583
 
2542
2584
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2543
2585
  to be removed. Issue #698 by Tiago Macedo.
@@ -2547,9 +2589,9 @@ Bug fixes:
2547
2589
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2548
2590
  Pull Request #706 by akr.
2549
2591
 
2550
- === 2.0.13 / 2013-10-24
2592
+ # 2.0.13 / 2013-10-24
2551
2593
 
2552
- Bug fixes:
2594
+ ## Bug fixes:
2553
2595
 
2554
2596
  * Use class check instead of :version method check when creating Gem::Version
2555
2597
  objects. Fixes #674 by jkanywhere.
@@ -2558,16 +2600,16 @@ Bug fixes:
2558
2600
  * Fix updating gems which have multiple platforms. Issue #693 by Ookami
2559
2601
  Kenrou.
2560
2602
 
2561
- === 2.0.12 / 2013-10-14
2603
+ # 2.0.12 / 2013-10-14
2562
2604
 
2563
- Bug fixes:
2605
+ ## Bug fixes:
2564
2606
 
2565
2607
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2566
2608
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2567
2609
 
2568
- === 2.0.11 / 2013-10-08
2610
+ # 2.0.11 / 2013-10-08
2569
2611
 
2570
- Bug fixes:
2612
+ ## Bug fixes:
2571
2613
 
2572
2614
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2573
2615
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2582,7 +2624,7 @@ Bug fixes:
2582
2624
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2583
2625
  Thomas Sänger.
2584
2626
 
2585
- === 2.0.10 / 2013-09-24
2627
+ # 2.0.10 / 2013-09-24
2586
2628
 
2587
2629
  Security fixes:
2588
2630
 
@@ -2591,16 +2633,16 @@ Security fixes:
2591
2633
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2592
2634
  1.8.23.2 (for Ruby 1.9.3).
2593
2635
 
2594
- === 2.0.9 / 2013-09-13
2636
+ # 2.0.9 / 2013-09-13
2595
2637
 
2596
- Bug fixes:
2638
+ ## Bug fixes:
2597
2639
 
2598
2640
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2599
2641
  Issue #643 by Brian Shirai.
2600
2642
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2601
2643
  request #622 by Arthur Nogueira Neves
2602
2644
 
2603
- === 2.0.8 / 2013-09-09
2645
+ # 2.0.8 / 2013-09-09
2604
2646
 
2605
2647
  Security fixes:
2606
2648
 
@@ -2609,14 +2651,14 @@ Security fixes:
2609
2651
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2610
2652
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2611
2653
 
2612
- Bug fixes:
2654
+ ## Bug fixes:
2613
2655
 
2614
2656
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
2615
2657
  #625 by elarkin
2616
2658
 
2617
- === 2.0.7 / 2013-08-15
2659
+ # 2.0.7 / 2013-08-15
2618
2660
 
2619
- Bug fixes:
2661
+ ## Bug fixes:
2620
2662
 
2621
2663
  * Extensions may now be built in parallel (therefore gems may be installed in
2622
2664
  parallel). Bug #607 by Hemant Kumar.
@@ -2626,9 +2668,9 @@ Bug fixes:
2626
2668
  Patches by Yui Naruse and Koichi Sasada.
2627
2669
  * Fixed documentation for Kernel#require.
2628
2670
 
2629
- === 2.0.6 / 2013-07-24
2671
+ # 2.0.6 / 2013-07-24
2630
2672
 
2631
- Bug fixes:
2673
+ ## Bug fixes:
2632
2674
 
2633
2675
  * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
2634
2676
  #593 by Blargel.
@@ -2640,14 +2682,14 @@ Bug fixes:
2640
2682
  Bug #599 by Chris Riesbeck
2641
2683
  * Restored default of remote search to `gem search`.
2642
2684
 
2643
- === 2.0.5 / 2013-07-11
2685
+ # 2.0.5 / 2013-07-11
2644
2686
 
2645
2687
  * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
2646
2688
  Zachary Salzbank.
2647
2689
 
2648
- === 2.0.4 / 2013-07-09
2690
+ # 2.0.4 / 2013-07-09
2649
2691
 
2650
- Bug fixes:
2692
+ ## Bug fixes:
2651
2693
 
2652
2694
  * Fixed error caused by gem install not finding the right platform for your
2653
2695
  platform. Bug #576 by John Anderson
@@ -2686,9 +2728,9 @@ Bug fixes:
2686
2728
  * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
2687
2729
  r41148 by Yui Naruse
2688
2730
 
2689
- === 2.0.3 / 2013-03-11
2731
+ # 2.0.3 / 2013-03-11
2690
2732
 
2691
- Bug fixes:
2733
+ ## Bug fixes:
2692
2734
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2693
2735
  #506 by André Arko
2694
2736
  * Use File.realpath to remove extra / while checking if files are
@@ -2703,17 +2745,17 @@ Bug fixes:
2703
2745
  * Fixed default gem key and cert locations. Pull request #511 by Samuel
2704
2746
  Cochran.
2705
2747
 
2706
- === 2.0.2 / 2013-03-06
2748
+ # 2.0.2 / 2013-03-06
2707
2749
 
2708
- Bug fixes:
2750
+ ## Bug fixes:
2709
2751
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2710
2752
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2711
2753
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
2712
2754
  * Fixed HTTP to HTTPS upgrade for rubygems.org.
2713
2755
 
2714
- === 2.0.1 / 2013-03-05
2756
+ # 2.0.1 / 2013-03-05
2715
2757
 
2716
- Bug fixes:
2758
+ ## Bug fixes:
2717
2759
  * Lazily load RubyGems.org API credentials to avoid failure during
2718
2760
  RubyGems installation. Bug #465 by Isaac Sanders.
2719
2761
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2735,7 +2777,7 @@ Bug fixes:
2735
2777
  Ruby bug #7713 by nobu
2736
2778
  * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
2737
2779
 
2738
- === 2.0.0 / 2013-02-24
2780
+ # 2.0.0 / 2013-02-24
2739
2781
 
2740
2782
  RubyGems 2.0 includes several new features and many breaking changes. Some of
2741
2783
  these changes will cause existing software to break. These changes are a
@@ -2747,7 +2789,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2747
2789
 
2748
2790
  Changes since RubyGems 1.8.25 (including past pre-releases):
2749
2791
 
2750
- Breaking changes:
2792
+ ## Breaking changes:
2751
2793
 
2752
2794
  * Deprecated Gem.unresolved_deps in favor of
2753
2795
  Gem::Specification.unresolved_deps
@@ -2769,7 +2811,7 @@ Breaking changes:
2769
2811
  * Removed support for Ruby 1.9.1
2770
2812
  * Removed many deprecated methods
2771
2813
 
2772
- Major enhancements:
2814
+ ## Enhancements:
2773
2815
 
2774
2816
  * Improved support for default gems shipping with ruby 2.0.0+
2775
2817
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2787,8 +2829,6 @@ Major enhancements:
2787
2829
  file (Gemfile, Isolate, gem.deps.rb).
2788
2830
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2789
2831
  to autodetect (current and parent directories are searched).
2790
-
2791
- Minor enhancements:
2792
2832
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2793
2833
  #419 by Erik Hollensbe
2794
2834
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
@@ -2831,7 +2871,7 @@ Minor enhancements:
2831
2871
  GEM_HOME
2832
2872
  * When building gems with non-world-readable files a warning is shown.
2833
2873
 
2834
- Bug fixes:
2874
+ ## Bug fixes:
2835
2875
  * Gem.refresh now maintains the active gem list. Clearing the list would
2836
2876
  cause double-loads which would cause other bugs. Pull Request #427 by
2837
2877
  Jeremy Evans
@@ -2888,7 +2928,7 @@ Bug fixes:
2888
2928
 
2889
2929
  Changes since RubyGems 2.0.0.rc.2:
2890
2930
 
2891
- Bug fixes:
2931
+ ## Bug fixes:
2892
2932
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2893
2933
  #450 by Jeremy Kemper
2894
2934
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2901,48 +2941,48 @@ Bug fixes:
2901
2941
  * Fixed verification of gems at LowSecurity due to missing signature.
2902
2942
  Thanks to André Arko.
2903
2943
 
2904
- === 2.0.0.rc.2 / 2013-02-08
2944
+ # 2.0.0.rc.2 / 2013-02-08
2905
2945
 
2906
- Bug fixes:
2946
+ ## Bug fixes:
2907
2947
  * Fixed signature verification of gems which was broken only on master.
2908
2948
  Thanks to Brian Buchanan.
2909
2949
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
2910
2950
  André Arko.
2911
2951
 
2912
- === 2.0.0.rc.1 / 2013-01-08
2952
+ # 2.0.0.rc.1 / 2013-01-08
2913
2953
 
2914
- Minor enhancements:
2954
+ ## Enhancements:
2915
2955
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2916
2956
  prerelease versions of RubyGems cannot push gems.
2917
2957
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2918
2958
  #419 by Erik Hollensbe
2919
2959
 
2920
- Bug fixes:
2960
+ ## Bug fixes:
2921
2961
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2922
2962
  #418 by André Arko
2923
2963
  * Gem installation will fail if RubyGems cannot load the specification from
2924
2964
  the gem. Bug #419 by Erik Hollensbe
2925
2965
 
2926
- === 2.0.0.preview2.2 / 2012-12-14
2966
+ # 2.0.0.preview2.2 / 2012-12-14
2927
2967
 
2928
- Minor enhancements:
2968
+ ## Enhancements:
2929
2969
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2930
2970
  * Removed rubyforge page from gem list output
2931
2971
 
2932
- Bug fixes:
2972
+ ## Bug fixes:
2933
2973
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2934
2974
  #413 by Jeremy Kemper.
2935
2975
 
2936
- === 2.0.0.preview2.1 / 2012-12-08
2976
+ # 2.0.0.preview2.1 / 2012-12-08
2937
2977
 
2938
- Minor enhancements:
2978
+ ## Enhancements:
2939
2979
  * Gem::DependencyInstaller now passes build_args down to the installer.
2940
2980
  Pull Request #412 by Sam Rawlins.
2941
2981
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2942
2982
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2943
2983
  Skipper.
2944
2984
 
2945
- Bug fixes:
2985
+ ## Bug fixes:
2946
2986
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2947
2987
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2948
2988
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2954,13 +2994,13 @@ Bug fixes:
2954
2994
  * gem install now ignores directories that match the gem to install. Bug
2955
2995
  #407 by Santiago Pastorino.
2956
2996
 
2957
- === 2.0.0.preview2 / 2012-12-01
2997
+ # 2.0.0.preview2 / 2012-12-01
2958
2998
 
2959
2999
  This release contains two commits not present in Ruby 2.0.0.preview2. One
2960
3000
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2961
3001
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2962
3002
 
2963
- Breaking changes:
3003
+ ## Breaking changes:
2964
3004
 
2965
3005
  * Deprecated Gem.unresolved_deps in favor of
2966
3006
  Gem::Specification.unresolved_deps
@@ -2982,7 +3022,7 @@ Breaking changes:
2982
3022
  * Removed support for Ruby 1.9.1
2983
3023
  * Removed many deprecated methods
2984
3024
 
2985
- Major enhancements:
3025
+ ## Enhancements:
2986
3026
 
2987
3027
  * Improved support for default gems shipping with ruby 2.0.0+
2988
3028
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -3000,9 +3040,6 @@ Major enhancements:
3000
3040
  file (Gemfile, Isolate, gem.deps.rb).
3001
3041
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
3002
3042
  to autodetect (current and parent directories are searched).
3003
-
3004
- Minor enhancements:
3005
-
3006
3043
  * Added --only-executables option to `gem pristine`. Fixes #326
3007
3044
  * Added -I flag for 'gem query' to exclude installed items
3008
3045
  * Added Gem.install(name, version=default) for interactive sessions
@@ -3036,7 +3073,7 @@ Minor enhancements:
3036
3073
  GEM_HOME
3037
3074
  * When building gems with non-world-readable files a warning is shown.
3038
3075
 
3039
- Bug fixes:
3076
+ ## Bug fixes:
3040
3077
 
3041
3078
  * Added PID to setup bin_file while installing RubyGems to protect against
3042
3079
  errors. Fixes #328 by ConradIrwin
@@ -3077,17 +3114,17 @@ Bug fixes:
3077
3114
  * URI scheme matching is no longer case-sensitive. Fixes #322
3078
3115
  * ext/builder now checks $MAKE as well as $make (okkez)
3079
3116
 
3080
- === 1.8.29 / 2013-11-23
3117
+ # 1.8.29 / 2013-11-23
3081
3118
 
3082
- Bug fixes:
3119
+ ## Bug fixes:
3083
3120
 
3084
3121
  * Fixed installation when the LANG environment variable is empty.
3085
3122
  * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
3086
3123
  cloudfront.
3087
3124
 
3088
- === 1.8.28 / 2013-10-08
3125
+ # 1.8.28 / 2013-10-08
3089
3126
 
3090
- Bug fixes:
3127
+ ## Bug fixes:
3091
3128
 
3092
3129
  * Added the Verisign Class 3 Public Primary Certification Authority G5
3093
3130
  certificate and its intermediary to follow the s3.amazonaws.com certificate
@@ -3097,7 +3134,7 @@ Bug fixes:
3097
3134
  * Added test for missing certificates for https://s3.amazonaws.com or
3098
3135
  https://rubygems.org. Pull request #673 by Hannes Georg.
3099
3136
 
3100
- === 1.8.27 / 2013-09-24
3137
+ # 1.8.27 / 2013-09-24
3101
3138
 
3102
3139
  Security fixes:
3103
3140
 
@@ -3106,7 +3143,7 @@ Security fixes:
3106
3143
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3107
3144
  1.8.23.2 (for Ruby 1.9.3).
3108
3145
 
3109
- === 1.8.26 / 2013-09-09
3146
+ # 1.8.26 / 2013-09-09
3110
3147
 
3111
3148
  Security fixes:
3112
3149
 
@@ -3115,13 +3152,13 @@ Security fixes:
3115
3152
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3116
3153
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3117
3154
 
3118
- Bug fixes:
3155
+ ## Bug fixes:
3119
3156
 
3120
3157
  * Fixed editing of a Makefile with 8-bit characters. Fixes #181
3121
3158
 
3122
- === 1.8.25 / 2013-01-24
3159
+ # 1.8.25 / 2013-01-24
3123
3160
 
3124
- Bug fixes:
3161
+ ## Bug fixes:
3125
3162
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3126
3163
  #328 by ConradIrwin
3127
3164
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3130,14 +3167,14 @@ Bug fixes:
3130
3167
  * Fix missing load_yaml in YAML-related requirement.rb code.
3131
3168
  * Manually backport encoding-aware YAML gemspec
3132
3169
 
3133
- === 1.8.24 / 2012-04-27
3170
+ # 1.8.24 / 2012-04-27
3134
3171
 
3135
- Bug fixes:
3172
+ ## Bug fixes:
3136
3173
 
3137
3174
  * Install the .pem files properly. Fixes #320
3138
3175
  * Remove OpenSSL dependency from the http code path
3139
3176
 
3140
- === 1.8.23.2 / 2013-09-24
3177
+ # 1.8.23.2 / 2013-09-24
3141
3178
 
3142
3179
  Security fixes:
3143
3180
 
@@ -3146,7 +3183,7 @@ Security fixes:
3146
3183
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3147
3184
  1.8.23.2 (for Ruby 1.9.3).
3148
3185
 
3149
- === 1.8.23.1 / 2013-09-09
3186
+ # 1.8.23.1 / 2013-09-09
3150
3187
 
3151
3188
  Security fixes:
3152
3189
 
@@ -3155,7 +3192,7 @@ Security fixes:
3155
3192
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3156
3193
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3157
3194
 
3158
- === 1.8.23 / 2012-04-19
3195
+ # 1.8.23 / 2012-04-19
3159
3196
 
3160
3197
  This release increases the security used when RubyGems is talking to
3161
3198
  an https server. If you use a custom RubyGems server over SSL, this
@@ -3175,49 +3212,49 @@ Security fixes:
3175
3212
  * Disallow redirects from https to http
3176
3213
  * Turn on verification of server SSL certs
3177
3214
 
3178
- Minor enhancements:
3215
+ ## Enhancements:
3179
3216
  * Add --clear-sources to fetch
3180
3217
 
3181
- Bug fixes:
3218
+ ## Bug fixes:
3182
3219
  * Use File.identical? to check if two files are the same.
3183
3220
  * Fixed init_with warning when using psych
3184
3221
 
3185
- === 1.8.22 / 2012-04-13
3222
+ # 1.8.22 / 2012-04-13
3186
3223
 
3187
- Bug fixes:
3224
+ ## Bug fixes:
3188
3225
 
3189
3226
  * Workaround for psych/syck YAML date parsing issue
3190
3227
  * Don't trust the encoding of ARGV. Fixes #307
3191
3228
  * Quiet default warnings about missing spec variables
3192
3229
  * Read a binary file properly (windows fix)
3193
3230
 
3194
- === 1.8.21 / 2012-03-22
3231
+ # 1.8.21 / 2012-03-22
3195
3232
 
3196
- Bug fixes:
3233
+ ## Bug fixes:
3197
3234
 
3198
3235
  * Add workaround for buggy yaml output from 1.9.2
3199
3236
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3200
3237
 
3201
- === 1.8.20 / 2012-03-21
3238
+ # 1.8.20 / 2012-03-21
3202
3239
 
3203
- Bug fixes:
3240
+ ## Bug fixes:
3204
3241
 
3205
3242
  * Add --force to `gem build` to skip validation. Fixes #297
3206
3243
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
3207
3244
  * Treat the source as a proper url base. Fixes #304
3208
3245
  * Warn when updating the specs cache fails. Fixes #300
3209
3246
 
3210
- === 1.8.19 / 2012-03-14
3247
+ # 1.8.19 / 2012-03-14
3211
3248
 
3212
- Bug fixes:
3249
+ ## Bug fixes:
3213
3250
 
3214
3251
  * Handle loading psych vs syck properly. Fixes #298
3215
3252
  * Make sure Date objects don't leak in via Marshal
3216
3253
  * Perform Date => Time coercion on yaml loading. Fixes #266
3217
3254
 
3218
- === 1.8.18 / 2012-03-11
3255
+ # 1.8.18 / 2012-03-11
3219
3256
 
3220
- Bug fixes:
3257
+ ## Bug fixes:
3221
3258
 
3222
3259
  * Use Psych API to emit more compatible YAML
3223
3260
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3225,14 +3262,14 @@ Bug fixes:
3225
3262
  * Search everywhere for a spec for `gem spec`. Fixes #288
3226
3263
  * Fix Gem.all_load_path. Fixes #171
3227
3264
 
3228
- === 1.8.17 / 2012-02-17
3265
+ # 1.8.17 / 2012-02-17
3229
3266
 
3230
- Minor enhancements:
3267
+ ## Enhancements:
3231
3268
 
3232
3269
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3233
3270
  * Add a default for where to install rubygems itself
3234
3271
 
3235
- Bug fixes:
3272
+ ## Bug fixes:
3236
3273
 
3237
3274
  * Fixed gem loading issue caused by dependencies not resolving.
3238
3275
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3240,59 +3277,59 @@ Bug fixes:
3240
3277
  * Define SUCKAGE better, ie only MRI 1.9.2
3241
3278
  * Propagate env-shebang to the pristine command if set for install.
3242
3279
 
3243
- === 1.8.16 / 2012-02-12
3280
+ # 1.8.16 / 2012-02-12
3244
3281
 
3245
- Bug fixes:
3282
+ ## Bug fixes:
3246
3283
 
3247
3284
  * Fix gem specification loading when encoding is not UTF-8. #146
3248
3285
  * Allow group writable if umask allows it already.
3249
3286
  * Uniquify the spec list based on directory order priority
3250
3287
 
3251
- === 1.8.15 / 2012-01-06
3288
+ # 1.8.15 / 2012-01-06
3252
3289
 
3253
- Bug fixes:
3290
+ ## Bug fixes:
3254
3291
 
3255
3292
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3256
3293
 
3257
- === 1.8.14 / 2012-01-05
3294
+ # 1.8.14 / 2012-01-05
3258
3295
 
3259
- Bug fixes:
3296
+ ## Bug fixes:
3260
3297
 
3261
3298
  * Ignore old/bad cache data in Version
3262
3299
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3263
3300
 
3264
- === 1.8.13 / 2011-12-21
3301
+ # 1.8.13 / 2011-12-21
3265
3302
 
3266
- Bug fixes:
3303
+ ## Bug fixes:
3267
3304
 
3268
3305
  * Check loaded_specs properly when trying to satisfy a dep
3269
3306
 
3270
- Minor enhancements:
3307
+ ## Enhancements:
3271
3308
 
3272
3309
  * Remove using #loaded_path? for performance
3273
3310
  * Remove Zlib workaround for Windows build.
3274
3311
 
3275
- === 1.8.12 / 2011-12-02
3312
+ # 1.8.12 / 2011-12-02
3276
3313
 
3277
- Bug fixes:
3314
+ ## Bug fixes:
3278
3315
 
3279
3316
  * Handle more cases where Syck's DefaultKey showed up in requirements
3280
3317
  and wasn't cleaned out.
3281
3318
 
3282
- === 1.8.11 / 2011-10-03
3319
+ # 1.8.11 / 2011-10-03
3283
3320
 
3284
- Bug fixes:
3321
+ ## Bug fixes:
3285
3322
 
3286
3323
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3287
3324
  namespace.
3288
3325
 
3289
- === 1.8.10 / 2011-08-25
3326
+ # 1.8.10 / 2011-08-25
3290
3327
 
3291
3328
  RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3292
3329
  executing code when their specification is loaded. See
3293
3330
  https://github.com/rubygems/rubygems/pull/165 for details.
3294
3331
 
3295
- Bug fixes:
3332
+ ## Bug fixes:
3296
3333
 
3297
3334
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3298
3335
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3303,21 +3340,21 @@ Bug fixes:
3303
3340
  * Fixed Syck DefaultKey infecting ruby-format specifications.
3304
3341
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
3305
3342
 
3306
- === 1.8.9 / 2011-08-23
3343
+ # 1.8.9 / 2011-08-23
3307
3344
 
3308
- Bug fixes:
3345
+ ## Bug fixes:
3309
3346
 
3310
3347
  * Fixed uninstalling multiple gems using `gem uninstall`
3311
3348
  * Gem.use_paths splatted to take multiple paths! Issue #148
3312
3349
 
3313
- === 1.8.8 / 2011-08-11
3350
+ # 1.8.8 / 2011-08-11
3314
3351
 
3315
- Bug fixes:
3352
+ ## Bug fixes:
3316
3353
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3317
3354
 
3318
- === 1.8.7 / 2011-08-04
3355
+ # 1.8.7 / 2011-08-04
3319
3356
 
3320
- Bug fixes:
3357
+ ## Bug fixes:
3321
3358
  * Added missing require for `gem uninstall --format-executable`
3322
3359
  * The correct name of the executable being uninstalled is now displayed with
3323
3360
  --format-executable
@@ -3329,14 +3366,14 @@ Bug fixes:
3329
3366
  * Gem repository directories are no longer created world-writable. Patch by
3330
3367
  Sakuro OZAWA. Ruby Bug #4930
3331
3368
 
3332
- === 1.8.6 / 2011-07-25
3369
+ # 1.8.6 / 2011-07-25
3333
3370
 
3334
- Minor enhancements:
3371
+ ## Enhancements:
3335
3372
 
3336
3373
  * Add autorequires and delay startup of RubyGems until require is called.
3337
3374
  See Ruby bug #4962
3338
3375
 
3339
- Bug fixes:
3376
+ ## Bug fixes:
3340
3377
 
3341
3378
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3342
3379
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3348,27 +3385,27 @@ Bug fixes:
3348
3385
  * Handle the Syck DefaultKey problem once and for all.
3349
3386
  * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
3350
3387
 
3351
- === 1.8.5 / 2011-05-31
3388
+ # 1.8.5 / 2011-05-31
3352
3389
 
3353
- Minor enhancements:
3390
+ ## Enhancements:
3354
3391
 
3355
3392
  * The -u option to 'update local source cache' is official deprecated.
3356
3393
  * Remove has_rdoc deprecations from Specification.
3357
3394
 
3358
- Bug fixes:
3395
+ ## Bug fixes:
3359
3396
 
3360
3397
  * Handle bad specs more gracefully.
3361
3398
  * Reset any Gem paths changed in the installer.
3362
3399
 
3363
- === 1.8.4 / 2011-05-25
3400
+ # 1.8.4 / 2011-05-25
3364
3401
 
3365
- Minor enhancements:
3402
+ ## Enhancements:
3366
3403
 
3367
3404
  * Removed default_executable deprecations from Specification.
3368
3405
 
3369
- === 1.8.3 / 2011-05-19
3406
+ # 1.8.3 / 2011-05-19
3370
3407
 
3371
- Bug fixes:
3408
+ ## Bug fixes:
3372
3409
 
3373
3410
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3374
3411
  Shota Fukumori
@@ -3377,33 +3414,33 @@ Bug fixes:
3377
3414
  * Fixed some bad calls left behind after rolling out some refactorings.
3378
3415
  * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
3379
3416
 
3380
- === 1.8.2 / 2011-05-11
3417
+ # 1.8.2 / 2011-05-11
3381
3418
 
3382
- Minor enhancements:
3419
+ ## Enhancements:
3383
3420
 
3384
3421
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3385
3422
  * Print out a warning about missing executables.
3386
3423
 
3387
- Bug fixes:
3424
+ ## Bug fixes:
3388
3425
 
3389
3426
  * Added missing requires to fix various upgrade issues.
3390
3427
  * `gem pristine` respects multiple gem repositories.
3391
3428
  * setup.rb now execs with --disable-gems when possible
3392
3429
 
3393
- === 1.8.1 / 2011-05-05
3430
+ # 1.8.1 / 2011-05-05
3394
3431
 
3395
- Minor enhancements:
3432
+ ## Enhancements:
3396
3433
 
3397
3434
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3398
3435
 
3399
- Bug fixes:
3436
+ ## Bug fixes:
3400
3437
 
3401
3438
  * Typo on Indexer rendered it useless on Windows
3402
3439
  * gem dep can fetch remote dependencies for non-latest gems again.
3403
3440
  * gem uninstall with multiple versions no longer crashes with ArgumentError
3404
3441
  * Always use binary mode for File.open to keep Windows happy
3405
3442
 
3406
- === 1.8.0 / 2011-04-34
3443
+ # 1.8.0 / 2011-04-34
3407
3444
 
3408
3445
  This release focused on properly encapsulating functionality. Most of this
3409
3446
  work focused on moving functionality out of Gem::SourceIndex and
@@ -3418,7 +3455,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3418
3455
  --build-arg` to regenerate a gem with an extension where it requires special
3419
3456
  build arguments.
3420
3457
 
3421
- Deprecations:
3458
+ ## Deprecations:
3422
3459
 
3423
3460
  * DependencyList.from_source_index deprecated the source_index argument.
3424
3461
  * Deprecated Dependency.new(/regex/).
@@ -3439,14 +3476,11 @@ Deprecations:
3439
3476
  * Deprecated all of Gem::GemPathSearcher.
3440
3477
  * Deprecated Gem::Specification#default_executable.
3441
3478
 
3442
- Major enhancements:
3479
+ ## Enhancements:
3443
3480
 
3444
3481
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3445
3482
  Gem::SourceIndex is completely disconnected from Gem::Specification
3446
3483
  * Refactored GemPathSearcher entirely out. RIPMF
3447
-
3448
- Minor enhancements:
3449
-
3450
3484
  * Added CommandManager#unregister_command
3451
3485
  * Added Dependency#matching_specs + to_specs.
3452
3486
  * Added Dependency#to_spec
@@ -3494,7 +3528,7 @@ Minor enhancements:
3494
3528
  extensions.
3495
3529
  * `gem pristine` can now restore multiple gems.
3496
3530
 
3497
- Bug fixes:
3531
+ ## Bug fixes:
3498
3532
 
3499
3533
  * DependencyInstaller passed around a source_index instance but used
3500
3534
  Gem.source_index.
@@ -3506,15 +3540,15 @@ Bug fixes:
3506
3540
  * `gem pristine` can now restore non-latest gems where the cached gem was
3507
3541
  removed.
3508
3542
 
3509
- === 1.7.1 / 2011-03-32
3543
+ # 1.7.1 / 2011-03-32
3510
3544
 
3511
- Bug fixes:
3545
+ ## Bug fixes:
3512
3546
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3513
3547
  `rake check_manifest` showing a diff would not exit with an error.)
3514
3548
 
3515
- === 1.7.0 / 2011-03-32
3549
+ # 1.7.0 / 2011-03-32
3516
3550
 
3517
- Deprecations:
3551
+ ## Deprecations:
3518
3552
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3519
3553
  cache.
3520
3554
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3526,7 +3560,7 @@ Deprecations:
3526
3560
  test_suite_file(=).
3527
3561
  * Deprecated Specification#has_rdoc= and default_executable=
3528
3562
 
3529
- Minor enhancements:
3563
+ ## Enhancements:
3530
3564
  * Added stupid simple deprecation module.
3531
3565
  * Added --spec option to `gem unpack` to output a gem's original metadata
3532
3566
  * Added packaging option to Specification#validate
@@ -3558,7 +3592,7 @@ Minor enhancements:
3558
3592
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3559
3593
  * UpdateCommand#which_to_update now takes an optional system argument.
3560
3594
 
3561
- Bug fixes:
3595
+ ## Bug fixes:
3562
3596
  * Added missing remote fetcher require to pristine command (aarnell)
3563
3597
  * Building gems now checks to ensure all required fields are non-nil
3564
3598
  * Fix option parser when summary is nil.
@@ -3574,17 +3608,17 @@ Bug fixes:
3574
3608
  Elias Baixas
3575
3609
  * `gem update` now uniq's command line arguments.
3576
3610
 
3577
- === 1.6.2 / 2011-03-08
3611
+ # 1.6.2 / 2011-03-08
3578
3612
 
3579
- Bug fixes:
3613
+ ## Bug fixes:
3580
3614
 
3581
3615
  * require of an activated gem could cause activation conflicts. Fixes
3582
3616
  Bug #29056 by Dave Verwer.
3583
3617
  * `gem outdated` now works with up-to-date prerelease gems.
3584
3618
 
3585
- === 1.6.1 / 2011-03-03
3619
+ # 1.6.1 / 2011-03-03
3586
3620
 
3587
- Bug fixes:
3621
+ ## Bug fixes:
3588
3622
 
3589
3623
  * Installation no longer fails when a dependency from a version that won't be
3590
3624
  installed is unsatisfied.
@@ -3593,9 +3627,9 @@ Bug fixes:
3593
3627
  * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
3594
3628
  * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
3595
3629
 
3596
- === 1.6.0 / 2011-02-29
3630
+ # 1.6.0 / 2011-02-29
3597
3631
 
3598
- Deprecations:
3632
+ ## Deprecations:
3599
3633
 
3600
3634
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3601
3635
  'thread' to their applications.
@@ -3604,14 +3638,11 @@ Deprecations:
3604
3638
  * Gem::LoadError#version_requirements has been removed. Use
3605
3639
  Gem::LoadError#requirement.
3606
3640
 
3607
- Major enhancements:
3641
+ ## Enhancements:
3608
3642
 
3609
3643
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3610
3644
  * Gem::LoadError#version_requirement has been removed. Use
3611
3645
  Gem::LoadError#requirement.
3612
-
3613
- Minor enhancements:
3614
-
3615
3646
  * Added --key to `gem push` for setting alternate API keys.
3616
3647
  * Added --format-executable support to gem uninstall.
3617
3648
  * Added Gem::DependencyList#clear.
@@ -3635,7 +3666,7 @@ Minor enhancements:
3635
3666
  locally cached gem specifications.
3636
3667
  * SpecFetcher.fetch_spec can now take a string source_uri.
3637
3668
 
3638
- Bug fixes:
3669
+ ## Bug fixes:
3639
3670
 
3640
3671
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3641
3672
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3648,28 +3679,28 @@ Bug fixes:
3648
3679
  * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
3649
3680
  * Gem::Uninstaller now respects --format-executable.
3650
3681
 
3651
- === 1.5.3 / 2011-02-26
3682
+ # 1.5.3 / 2011-02-26
3652
3683
 
3653
- Bug fixes:
3684
+ ## Bug fixes:
3654
3685
 
3655
3686
  * Fix for a bug in Syck which causes install failures for gems packaged with
3656
3687
  Psych. Bug #28965 by Aaron Patterson.
3657
3688
 
3658
- === 1.5.2 / 2011-02-10
3689
+ # 1.5.2 / 2011-02-10
3659
3690
 
3660
- Bug fixes:
3691
+ ## Bug fixes:
3661
3692
 
3662
3693
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3663
3694
 
3664
- === 1.5.1 / 2011-02-09
3695
+ # 1.5.1 / 2011-02-09
3665
3696
 
3666
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3697
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3667
3698
 
3668
- Minor enhancements:
3699
+ ## Enhancements:
3669
3700
 
3670
3701
  * Added ability to do gem update --system X.Y.Z.
3671
3702
 
3672
- Bug fixes:
3703
+ ## Bug fixes:
3673
3704
 
3674
3705
  * Scrub !!null YAML from 1.9.2 (install and build).
3675
3706
  * Added missing requires for user_interaction.
@@ -3678,17 +3709,14 @@ Bug fixes:
3678
3709
  * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
3679
3710
  * RubyGems now enforces ruby 1.8.7 or newer.
3680
3711
 
3681
- === 1.5.0 / 2011-01-31
3712
+ # 1.5.0 / 2011-01-31
3682
3713
 
3683
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3714
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3684
3715
 
3685
- Major enhancements:
3716
+ ## Enhancements:
3686
3717
 
3687
3718
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3688
3719
  * Merged huge 1.3.7/ruby-core changes to master.
3689
-
3690
- Minor enhancements:
3691
-
3692
3720
  * Added UPGRADING.rdoc to help deal with 1.9 issues.
3693
3721
  * Gem::Format now gives better errors for corrupt gem files and includes paths
3694
3722
  * Pre-install hooks can now abort gem installation by returning false
@@ -3700,7 +3728,7 @@ Minor enhancements:
3700
3728
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3701
3729
  Erik Hollensbe.
3702
3730
 
3703
- Bug fixes:
3731
+ ## Bug fixes:
3704
3732
 
3705
3733
  * `gem update` was implicitly doing --system.
3706
3734
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3712,25 +3740,25 @@ Bug fixes:
3712
3740
  Erik Hollensbe.
3713
3741
  * rubygems-update lists its development dependencies again
3714
3742
 
3715
- === 1.4.2 / 2011-01-06
3743
+ # 1.4.2 / 2011-01-06
3716
3744
 
3717
- Bug fixes:
3745
+ ## Bug fixes:
3718
3746
 
3719
3747
  * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
3720
3748
  * Fixed Gem.find_files.
3721
3749
  * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
3722
3750
 
3723
- === 1.4.1 / 2010-12-31
3751
+ # 1.4.1 / 2010-12-31
3724
3752
 
3725
3753
  Since apparently nobody reads my emails, blog posts or the README:
3726
3754
 
3727
3755
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3728
3756
 
3729
- Bug fixes:
3757
+ ## Bug fixes:
3730
3758
 
3731
3759
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3732
3760
 
3733
- === 1.4.0 / 2010-12-30
3761
+ # 1.4.0 / 2010-12-30
3734
3762
 
3735
3763
  NOTE: In order to better maintain rubygems and to get it in sync with
3736
3764
  the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
@@ -3740,7 +3768,7 @@ You have been warned!
3740
3768
 
3741
3769
  NOTE: We've switched to git/github. See README.rdoc for details.
3742
3770
 
3743
- Features:
3771
+ ## Features:
3744
3772
 
3745
3773
  * Added --launch option to `gem server`. (gthiesfeld)
3746
3774
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3750,7 +3778,7 @@ Features:
3750
3778
  * --source is now additive with your current sources.
3751
3779
  Use --clear-sources first to maintain previous behavior.
3752
3780
 
3753
- Bug fixes:
3781
+ ## Bug fixes:
3754
3782
 
3755
3783
  * Dependency "~>"s now respect lower-bound prerelease versions.
3756
3784
  * Ensure the gem directories exist on download.
@@ -3761,7 +3789,7 @@ Bug fixes:
3761
3789
  Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
3762
3790
  * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
3763
3791
 
3764
- === 1.3.7 / 2010-05-13
3792
+ # 1.3.7 / 2010-05-13
3765
3793
 
3766
3794
  NOTE:
3767
3795
 
@@ -3772,7 +3800,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3772
3800
 
3773
3801
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3774
3802
 
3775
- Features:
3803
+ ## Features:
3776
3804
 
3777
3805
  * `gem` commands
3778
3806
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3791,7 +3819,7 @@ Features:
3791
3819
  in 1.3.6)
3792
3820
  * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
3793
3821
 
3794
- Bug fixes:
3822
+ ## Bug fixes:
3795
3823
 
3796
3824
  * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
3797
3825
  Roger Pack.
@@ -3803,9 +3831,9 @@ Bug fixes:
3803
3831
  * Gem::PackageTask depends on the package dir like the other rake package
3804
3832
  tasks so dependencies can be hooked up correctly.
3805
3833
 
3806
- === 1.3.6 / 2010-02-17
3834
+ # 1.3.6 / 2010-02-17
3807
3835
 
3808
- Features:
3836
+ ## Features:
3809
3837
 
3810
3838
  * `gem` commands
3811
3839
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3817,7 +3845,7 @@ Features:
3817
3845
  force rebuilding. Patch #25982 by Akinori MUSHA.
3818
3846
  * Capital letters are now allowed in prerelease versions.
3819
3847
 
3820
- Bug fixes:
3848
+ ## Bug fixes:
3821
3849
 
3822
3850
  * Development deps are no longer added to rubygems-update gem so older
3823
3851
  versions can update successfully.
@@ -3836,7 +3864,7 @@ Bug fixes:
3836
3864
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3837
3865
  Patch #27409 by Jakub Šťastný.
3838
3866
 
3839
- Deprecations:
3867
+ ## Deprecations:
3840
3868
 
3841
3869
  * lib/rubygems/timer.rb has been removed.
3842
3870
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3845,23 +3873,23 @@ Deprecations:
3845
3873
  * Gem::manage_gems was removed in 1.3.3.
3846
3874
  * Time::today was removed in 1.3.3.
3847
3875
 
3848
- === 1.3.5 / 2009-07-21
3876
+ # 1.3.5 / 2009-07-21
3849
3877
 
3850
- Bug fixes:
3878
+ ## Bug fixes:
3851
3879
 
3852
3880
  * Fix use of prerelease gems.
3853
3881
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3854
3882
 
3855
- Deprecations:
3883
+ ## Deprecations:
3856
3884
 
3857
3885
  * Bulk index update is no longer supported (the code currently remains, but not
3858
3886
  the tests)
3859
3887
  * Gem::manage_gems was removed in 1.3.3.
3860
3888
  * Time::today was removed in 1.3.3.
3861
3889
 
3862
- === 1.3.4 / 2009-05-03
3890
+ # 1.3.4 / 2009-05-03
3863
3891
 
3864
- Bug fixes:
3892
+ ## Bug fixes:
3865
3893
 
3866
3894
  * Fixed various warnings
3867
3895
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3872,16 +3900,16 @@ Bug fixes:
3872
3900
  drives. Bug #25882 by Lars Christensen
3873
3901
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3874
3902
 
3875
- Deprecations:
3903
+ ## Deprecations:
3876
3904
 
3877
3905
  * Bulk index update is no longer supported (the code currently remains, but not
3878
3906
  the tests)
3879
3907
  * Gem::manage_gems was removed in 1.3.3.
3880
3908
  * Time::today was removed in 1.3.3.
3881
3909
 
3882
- === 1.3.3 / 2009-05-04
3910
+ # 1.3.3 / 2009-05-04
3883
3911
 
3884
- Features:
3912
+ ## Features:
3885
3913
 
3886
3914
  * `gem server` allows port names (from /etc/services) with --port.
3887
3915
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3891,7 +3919,7 @@ Features:
3891
3919
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3892
3920
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3893
3921
 
3894
- Bug fixes:
3922
+ ## Bug fixes:
3895
3923
 
3896
3924
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3897
3925
  Eisenberg.
@@ -3913,15 +3941,15 @@ Bug fixes:
3913
3941
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3914
3942
  reported by Alf Mikula.
3915
3943
 
3916
- Deprecations:
3944
+ ## Deprecations:
3917
3945
 
3918
3946
  * Gem::manage_gems has been removed.
3919
3947
  * Time::today has been removed early. There was no way to make it warn and be
3920
3948
  easy to override with user code.
3921
3949
 
3922
- === 1.3.2 / 2009-04-15
3950
+ # 1.3.2 / 2009-04-15
3923
3951
 
3924
- Features:
3952
+ ## Features:
3925
3953
 
3926
3954
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3927
3955
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3949,7 +3977,7 @@ Features:
3949
3977
  * Modern indicies can now be updated incrementally.
3950
3978
  * Legacy indicies can be updated separately from modern.
3951
3979
 
3952
- Bug fixes:
3980
+ ## Bug fixes:
3953
3981
 
3954
3982
  * Better gem activation error message. Patch #23082.
3955
3983
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3975,7 +4003,7 @@ Bug fixes:
3975
4003
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3976
4004
  Windows. Bug #22712.
3977
4005
 
3978
- Deprecations:
4006
+ ## Deprecations:
3979
4007
 
3980
4008
  * Gem::manage_gems has been removed.
3981
4009
  * Time::today will be removed in RubyGems 1.4.
@@ -3983,9 +4011,9 @@ Deprecations:
3983
4011
  Special thanks to Chad Wooley for backwards compatibility testing and Luis
3984
4012
  Lavena and Daniel Berger for continuing windows support.
3985
4013
 
3986
- === 1.3.1 / 2008-10-28
4014
+ # 1.3.1 / 2008-10-28
3987
4015
 
3988
- Bug fixes:
4016
+ ## Bug fixes:
3989
4017
 
3990
4018
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3991
4019
  issues related to no uid support under Windows.
@@ -3996,13 +4024,13 @@ Bug fixes:
3996
4024
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3997
4025
  * Silence PATH warning.
3998
4026
 
3999
- Deprecations:
4027
+ ## Deprecations:
4000
4028
 
4001
4029
  * Gem::manage_gems will be removed on or after March 2009.
4002
4030
 
4003
- === 1.3.0 / 2008-09-25
4031
+ # 1.3.0 / 2008-09-25
4004
4032
 
4005
- Features:
4033
+ ## Features:
4006
4034
 
4007
4035
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
4008
4036
  stdout is not a TTY, except with --both.
@@ -4016,12 +4044,12 @@ Features:
4016
4044
  * RubyGems now updates the ri cache when the rdoc gem is installed and
4017
4045
  documentation is generated.
4018
4046
 
4019
- Deprecations:
4047
+ ## Deprecations:
4020
4048
 
4021
4049
  * Gem::manage_gems now warns when called. It will be removed on or after March
4022
4050
  2009.
4023
4051
 
4024
- Bug fixes:
4052
+ ## Bug fixes:
4025
4053
 
4026
4054
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
4027
4055
  Bug #20775 by Hemant Kumar.
@@ -4045,7 +4073,7 @@ Bug fixes:
4045
4073
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
4046
4074
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
4047
4075
 
4048
- Minor enhancements:
4076
+ ## Enhancements:
4049
4077
 
4050
4078
  * `gem help install` now describes _version_ argument to executable stubs
4051
4079
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4071,9 +4099,9 @@ Minor enhancements:
4071
4099
  * test/test_ext_configure_builder.rb
4072
4100
  * Locale-free patch by Yusuke Endoh [ruby-core:17444].
4073
4101
 
4074
- === 1.2.0 / 2008-06-21
4102
+ # 1.2.0 / 2008-06-21
4075
4103
 
4076
- Features:
4104
+ ## Features:
4077
4105
 
4078
4106
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4079
4107
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4092,7 +4120,7 @@ Features:
4092
4120
  * setup.rb now handles --vendor and --destdir for packagers
4093
4121
  * `gem stale` command that lists gems by last access time
4094
4122
 
4095
- Bug fixes:
4123
+ ## Bug fixes:
4096
4124
 
4097
4125
  * File modes from gems are now honored, patch #19737
4098
4126
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4107,7 +4135,7 @@ Bug fixes:
4107
4135
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4108
4136
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4109
4137
 
4110
- Minor enhancements:
4138
+ ## Enhancements:
4111
4139
 
4112
4140
  * setup.rb
4113
4141
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4126,9 +4154,9 @@ Minor enhancements:
4126
4154
  * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
4127
4155
  bug #7973
4128
4156
 
4129
- === 1.1.1 / 2008-04-11
4157
+ # 1.1.1 / 2008-04-11
4130
4158
 
4131
- Bug fixes:
4159
+ ## Bug fixes:
4132
4160
 
4133
4161
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4134
4162
  sitelibdir or libdir.
@@ -4143,9 +4171,9 @@ Bug fixes:
4143
4171
  * Gem::RemoteFetcher handles Errno::ECONNABORTED.
4144
4172
  * Printing of release notes fixed.
4145
4173
 
4146
- === 1.1.0 / 2008-03-29
4174
+ # 1.1.0 / 2008-03-29
4147
4175
 
4148
- Features:
4176
+ ## Features:
4149
4177
 
4150
4178
  * RubyGems now uses persistent connections on index updates. Index updates are
4151
4179
  much faster now.
@@ -4157,7 +4185,7 @@ Features:
4157
4185
  * `gem spec` now extracts specifications from .gem files.
4158
4186
  * `gem query --installed` to aid automation of checking for gems.
4159
4187
 
4160
- Bug fixes:
4188
+ ## Bug fixes:
4161
4189
 
4162
4190
  * RubyGems works with both Config and RbConfig now.
4163
4191
  * Executables are now cleaned upon uninstall.
@@ -4173,7 +4201,7 @@ Bug fixes:
4173
4201
  * Gem stub scripts on windows now work outside Gem.bindir.
4174
4202
  * `gem sources -r` now works without network access.
4175
4203
 
4176
- Minor enhancements:
4204
+ ## Enhancements:
4177
4205
 
4178
4206
  * RubyGems now requires Ruby > 1.8.3.
4179
4207
  * Release notes are now printed upon installation.
@@ -4184,26 +4212,26 @@ Minor enhancements:
4184
4212
 
4185
4213
  For a full list of changes to RubyGems, see the ChangeLog file.
4186
4214
 
4187
- === 1.0.1 / 2007-12-20
4215
+ # 1.0.1 / 2007-12-20
4188
4216
 
4189
- Bug fixes:
4217
+ ## Bug fixes:
4190
4218
 
4191
4219
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4192
4220
  * `gem build` on 1.8.3 fixed
4193
4221
 
4194
- Minor enhancements:
4222
+ ## Enhancements:
4195
4223
 
4196
4224
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4197
4225
  this is official in RubyGems 1.0.1.
4198
4226
 
4199
- === 1.0.0 / 2007-12-20
4227
+ # 1.0.0 / 2007-12-20
4200
4228
 
4201
- Features:
4229
+ ## Features:
4202
4230
 
4203
4231
  * RubyGems warns about various problems with gemspecs during gem building
4204
4232
  * More-consistent versioning for the RubyGems software
4205
4233
 
4206
- Minor enhancements:
4234
+ ## Enhancements:
4207
4235
 
4208
4236
  * Fixed various bugs and problems with installing gems on Windows
4209
4237
  * Fixed using `gem server` for installing gems
@@ -4217,7 +4245,7 @@ Minor enhancements:
4217
4245
  * `gem unpack` can now unpack into a specific directory with --target
4218
4246
  * OpenSSL is no longer required by default
4219
4247
 
4220
- Breaking changes:
4248
+ ## Breaking changes:
4221
4249
 
4222
4250
  * Kernel#require_gem has been removed
4223
4251
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4229,9 +4257,9 @@ Breaking changes:
4229
4257
  * Gem::Specification#autorequire= has been deprecated
4230
4258
  * Time::today will be removed in a future version
4231
4259
 
4232
- === 0.9.5 / 2007-11-19
4260
+ # 0.9.5 / 2007-11-19
4233
4261
 
4234
- Features:
4262
+ ## Features:
4235
4263
 
4236
4264
  * Platform support
4237
4265
  * Automatic installation of platform gems
@@ -4243,7 +4271,7 @@ Features:
4243
4271
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4244
4272
  with the One-Click Installer.
4245
4273
 
4246
- Minor enhancements:
4274
+ ## Enhancements:
4247
4275
 
4248
4276
  * Time::today is deprecated and will be removed at a future date
4249
4277
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4288,13 +4316,13 @@ Special thanks to:
4288
4316
  * Tom Copeland
4289
4317
  * Wilson Bilkovich
4290
4318
 
4291
- === 0.9.4 / 2007-05-23
4319
+ # 0.9.4 / 2007-05-23
4292
4320
 
4293
4321
  If you are experiencing problems with the source index (e.g. strange
4294
4322
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4295
4323
  messsage), we recommend upgrading to RubyGems 0.9.4.
4296
4324
 
4297
- Bug fixes:
4325
+ ## Bug fixes:
4298
4326
 
4299
4327
  * Several people have been experiencing problems with no method errors
4300
4328
  on the source index cache. The source index cache is now a bit more
@@ -4306,9 +4334,9 @@ Bug fixes:
4306
4334
  * Several sub-commands were accidentally dropped from the "gem" command.
4307
4335
  These commands have been restored.
4308
4336
 
4309
- === 0.9.3 / 2007-05-10
4337
+ # 0.9.3 / 2007-05-10
4310
4338
 
4311
- Bug fixes:
4339
+ ## Bug fixes:
4312
4340
 
4313
4341
  The ZLib library on Windows will occasionally complains about a buffer error
4314
4342
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4316,19 +4344,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
4316
4344
  have received several reports of the error occurring with ZLib 1.2.3, so we
4317
4345
  have permanently enabled the work around on all versions.
4318
4346
 
4319
- === 0.9.2 / 2007-02-05
4347
+ # 0.9.2 / 2007-02-05
4320
4348
 
4321
- Bug fixes:
4349
+ ## Bug fixes:
4322
4350
 
4323
4351
  * The "unpack" command now works properly.
4324
4352
  * User name and password are now passed properly to the authenticating
4325
4353
  proxy when downloading gems.
4326
4354
 
4327
- === 0.9.1 / 2007-01-16
4355
+ # 0.9.1 / 2007-01-16
4328
4356
 
4329
4357
  See ChangeLog
4330
4358
 
4331
- === 0.9.0 / 2006-06-28
4359
+ # 0.9.0 / 2006-06-28
4332
4360
 
4333
4361
  Finally, the much anticipated RubyGems version 0.9.0 is now available.
4334
4362
  This release includes a number of new features and bug fixes. The
@@ -4336,7 +4364,7 @@ number one change is that we can now download the gem index
4336
4364
  incrementally. This will greatly speed up the gem command when only a
4337
4365
  few gems are out of date.
4338
4366
 
4339
- Major enhancements:
4367
+ ## Enhancements:
4340
4368
 
4341
4369
  * The gem index is now downloaded incrementally, only updating entries
4342
4370
  that are out of date. If more than 50 entries are out of date, we
@@ -4351,9 +4379,6 @@ Major enhancements:
4351
4379
  * Both RI and RDOC documents are now generated by default.
4352
4380
  * A gemri command is included to read gem RI docs (only needed for
4353
4381
  Ruby 1.8.4 or earlier).
4354
-
4355
- Minor enhancements:
4356
-
4357
4382
  * Version 0.0.0 is now a valid gem version.
4358
4383
  * Better detection of missing SSL functionality.
4359
4384
  * SSL is not required if the security policy does not require
@@ -4366,7 +4391,7 @@ Minor enhancements:
4366
4391
  * .rbw is now a supported suffix for RubyGem's custom require.
4367
4392
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4368
4393
 
4369
- Bug fixes:
4394
+ ## Bug fixes:
4370
4395
 
4371
4396
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4372
4397
  cross-Ruby version compatibility issues.
@@ -4378,7 +4403,7 @@ Bug fixes:
4378
4403
  * Fixed prefix handling for native expressions (patch by Aaron Patterson).
4379
4404
  * Fixed several Upgrade => Update typos.
4380
4405
 
4381
- === 0.8.11 / 2005-07-13
4406
+ # 0.8.11 / 2005-07-13
4382
4407
 
4383
4408
  * -y is a synonym for --include-dependencies.
4384
4409
  * Better handling of errors in the top level rescue clause.
@@ -4397,7 +4422,7 @@ Bug fixes:
4397
4422
  * Added David Glasser's install-from-mirror patch.
4398
4423
  * Additional internal structural cleanup and test reorganization.
4399
4424
 
4400
- === 0.8.10 / 2005-03-27
4425
+ # 0.8.10 / 2005-03-27
4401
4426
 
4402
4427
  * In multi-user environments, it is common to supply multiple versions of gems
4403
4428
  (for example Rails), allowing individual users to select the version of the
@@ -4408,16 +4433,16 @@ Bug fixes:
4408
4433
  installed, then the "gem update --system" command will download a new
4409
4434
  update, but install the latest update prior to the download.
4410
4435
 
4411
- === 0.8.9
4436
+ # 0.8.9
4412
4437
 
4413
4438
  Never released
4414
4439
 
4415
- === 0.8.8 / 2005-03-14
4440
+ # 0.8.8 / 2005-03-14
4416
4441
 
4417
4442
  * Moved the master definition of class Requirement back under version.
4418
4443
  Kept the body of Requirement under Gem.
4419
4444
 
4420
- === 0.8.7 / 2005-03-14
4445
+ # 0.8.7 / 2005-03-14
4421
4446
 
4422
4447
  Even though it has only been a few weeks since that last release,
4423
4448
  there are quite a number of new features in 0.8.7. A complete list of
@@ -4470,11 +4495,11 @@ file system. You can read more about them here:
4470
4495
  * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
4471
4496
  * gemwhich: http://docs.rubygems.org/read/chapter/17
4472
4497
 
4473
- === 0.8.6 / 2005-02-27
4498
+ # 0.8.6 / 2005-02-27
4474
4499
 
4475
4500
  * Fixed a small bug with shebang construction
4476
4501
 
4477
- === 0.8.5 / 2005-02-26
4502
+ # 0.8.5 / 2005-02-26
4478
4503
 
4479
4504
  Do you know how you used to dread getting the following message while
4480
4505
  installing gems?
@@ -4496,7 +4521,7 @@ us. No RDoc generation was included in the following times.
4496
4521
  The new caching code is at least 3x faster than previous versions. Woo
4497
4522
  Hoo!
4498
4523
 
4499
- === 0.8.4 / 2005-01-01
4524
+ # 0.8.4 / 2005-01-01
4500
4525
 
4501
4526
  * Rubygems 0.8.3's installer was broken unless you already had an older
4502
4527
  version of RubyGems installed. That's fixed.
@@ -4506,7 +4531,7 @@ Hoo!
4506
4531
  * Support for lower-cased Gem file names (for you, Paul Duncan :)
4507
4532
  * Erik Veenstra's patch for making Gem versions sortable.
4508
4533
 
4509
- === 0.8.3 / 2004-12-07
4534
+ # 0.8.3 / 2004-12-07
4510
4535
 
4511
4536
  No real earth shattering news here, but there were a number of really
4512
4537
  annoying issues involving other libraries that RubyGems depends upon.
@@ -4548,11 +4573,11 @@ There has been some minor usability enhancements and changes ...
4548
4573
  names. This was useful for him while testing libs that he had in
4549
4574
  development.
4550
4575
 
4551
- === 0.8.1 / 2004-09-17
4576
+ # 0.8.1 / 2004-09-17
4552
4577
 
4553
4578
  * Quick release to capture some bug fixes.
4554
4579
 
4555
- === 0.8.0 / 2004-09-15
4580
+ # 0.8.0 / 2004-09-15
4556
4581
 
4557
4582
  * Remove need for library stubs. Set the RUBYOPT environment variable to
4558
4583
  include "rrubygems", and a normal require will find gem files. Continue to
@@ -4575,15 +4600,15 @@ There has been some minor usability enhancements and changes ...
4575
4600
  to pick.
4576
4601
  * Added "gem unpack" for "unpacking" a gem to the current directory
4577
4602
 
4578
- === 0.7.0 / 2004-07-09
4603
+ # 0.7.0 / 2004-07-09
4579
4604
 
4580
4605
  See ChangeLog
4581
4606
 
4582
- === 0.6.1 / 2004-06-08
4607
+ # 0.6.1 / 2004-06-08
4583
4608
 
4584
4609
  See ChangeLog
4585
4610
 
4586
- === 0.6.0 / 2004-06-08
4611
+ # 0.6.0 / 2004-06-08
4587
4612
 
4588
4613
  * Collapse output of --search and --list (and gem_server) operations so that
4589
4614
  each gem is listed only once, with each of its versions listed on the same
@@ -4596,7 +4621,7 @@ See ChangeLog
4596
4621
  spec.required_ruby_version = "> 1.8.0"
4597
4622
  * --install-stub defaults to true, so library stubs are created
4598
4623
 
4599
- === 0.5.0 / 2004-06-06
4624
+ # 0.5.0 / 2004-06-06
4600
4625
 
4601
4626
  * Jim added the ability to specify version constraints to avoid API
4602
4627
  incompatibilities. This has been the subject of much debate for the past
@@ -4619,11 +4644,11 @@ See ChangeLog
4619
4644
  automatically included.
4620
4645
  * Some small bug fixes
4621
4646
 
4622
- === 0.4.0 / 2004-05-30
4647
+ # 0.4.0 / 2004-05-30
4623
4648
 
4624
4649
  * Minor bug fixes including Windows compatibility issues
4625
4650
 
4626
- === 0.3.0 / 2004-04-30
4651
+ # 0.3.0 / 2004-04-30
4627
4652
 
4628
4653
  * Cleanup of command-line arguments and handling. Most commands accept a
4629
4654
  --local or --remote modifier.
@@ -4644,6 +4669,6 @@ See ChangeLog
4644
4669
  * Generally improved error messages (still more work to do)
4645
4670
  * Rearranged gem directory structure for cleanliness.
4646
4671
 
4647
- === 0.2.0 / 2004-03-14
4672
+ # 0.2.0 / 2004-03-14
4648
4673
 
4649
4674
  * Initial public release