rubygems-update 3.2.2 → 3.2.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (118) hide show
  1. checksums.yaml +4 -4
  2. data/{History.txt → CHANGELOG.md} +482 -424
  3. data/Manifest.txt +30 -27
  4. data/Rakefile +11 -15
  5. data/bundler/CHANGELOG.md +67 -2
  6. data/bundler/bundler.gemspec +1 -1
  7. data/bundler/lib/bundler.rb +3 -7
  8. data/bundler/lib/bundler/build_metadata.rb +2 -2
  9. data/bundler/lib/bundler/cli.rb +2 -5
  10. data/bundler/lib/bundler/cli/cache.rb +1 -0
  11. data/bundler/lib/bundler/cli/gem.rb +2 -0
  12. data/bundler/lib/bundler/cli/update.rb +1 -1
  13. data/bundler/lib/bundler/compact_index_client/cache.rb +5 -13
  14. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  15. data/bundler/lib/bundler/compact_index_client/updater.rb +0 -8
  16. data/bundler/lib/bundler/definition.rb +29 -21
  17. data/bundler/lib/bundler/dep_proxy.rb +15 -8
  18. data/bundler/lib/bundler/feature_flag.rb +0 -1
  19. data/bundler/lib/bundler/fetcher.rb +0 -1
  20. data/bundler/lib/bundler/gem_helper.rb +9 -7
  21. data/bundler/lib/bundler/gem_helpers.rb +30 -24
  22. data/bundler/lib/bundler/gem_version_promoter.rb +2 -2
  23. data/bundler/lib/bundler/installer.rb +0 -17
  24. data/bundler/lib/bundler/installer/standalone.rb +14 -0
  25. data/bundler/lib/bundler/lazy_specification.rb +10 -11
  26. data/bundler/{man → lib/bundler/man}/bundle-add.1 +1 -1
  27. data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +1 -1
  28. data/bundler/{man → lib/bundler/man}/bundle-cache.1 +1 -1
  29. data/bundler/{man → lib/bundler/man}/bundle-check.1 +1 -1
  30. data/bundler/{man → lib/bundler/man}/bundle-clean.1 +1 -1
  31. data/bundler/{man → lib/bundler/man}/bundle-config.1 +4 -4
  32. data/bundler/lib/bundler/man/bundle-config.1.ronn +3 -3
  33. data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
  34. data/bundler/{man → lib/bundler/man}/bundle-exec.1 +1 -1
  35. data/bundler/{man → lib/bundler/man}/bundle-gem.1 +1 -1
  36. data/bundler/{man → lib/bundler/man}/bundle-info.1 +1 -1
  37. data/bundler/{man → lib/bundler/man}/bundle-init.1 +1 -1
  38. data/bundler/{man → lib/bundler/man}/bundle-inject.1 +1 -1
  39. data/bundler/{man → lib/bundler/man}/bundle-install.1 +1 -1
  40. data/bundler/{man → lib/bundler/man}/bundle-list.1 +1 -1
  41. data/bundler/{man → lib/bundler/man}/bundle-lock.1 +1 -1
  42. data/bundler/{man → lib/bundler/man}/bundle-open.1 +1 -1
  43. data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +1 -1
  44. data/bundler/{man → lib/bundler/man}/bundle-platform.1 +1 -1
  45. data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
  46. data/bundler/{man → lib/bundler/man}/bundle-remove.1 +1 -1
  47. data/bundler/{man → lib/bundler/man}/bundle-show.1 +1 -1
  48. data/bundler/{man → lib/bundler/man}/bundle-update.1 +1 -1
  49. data/bundler/{man → lib/bundler/man}/bundle-viz.1 +1 -1
  50. data/bundler/{man → lib/bundler/man}/bundle.1 +1 -1
  51. data/bundler/{man → lib/bundler/man}/gemfile.5 +1 -1
  52. data/bundler/{man → lib/bundler/man}/index.txt +0 -0
  53. data/bundler/lib/bundler/resolver.rb +36 -16
  54. data/bundler/lib/bundler/resolver/spec_group.rb +18 -23
  55. data/bundler/lib/bundler/rubygems_ext.rb +16 -0
  56. data/bundler/lib/bundler/rubygems_integration.rb +0 -5
  57. data/bundler/lib/bundler/settings.rb +1 -1
  58. data/bundler/lib/bundler/source/git.rb +19 -17
  59. data/bundler/lib/bundler/source/git/git_proxy.rb +54 -49
  60. data/bundler/lib/bundler/source/path/installer.rb +2 -0
  61. data/bundler/lib/bundler/source/rubygems.rb +10 -2
  62. data/bundler/lib/bundler/spec_set.rb +6 -9
  63. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  64. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
  65. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +3 -0
  66. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
  67. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  68. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +11 -0
  69. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +11 -7
  70. data/bundler/lib/bundler/version.rb +1 -1
  71. data/lib/rubygems.rb +2 -2
  72. data/lib/rubygems/commands/setup_command.rb +16 -62
  73. data/lib/rubygems/dependency_installer.rb +1 -0
  74. data/lib/rubygems/ext/builder.rb +5 -4
  75. data/lib/rubygems/ext/cmake_builder.rb +1 -2
  76. data/lib/rubygems/ext/configure_builder.rb +1 -2
  77. data/lib/rubygems/gemcutter_utilities.rb +2 -2
  78. data/lib/rubygems/installer.rb +0 -23
  79. data/lib/rubygems/installer_uninstaller_utils.rb +6 -1
  80. data/lib/rubygems/platform.rb +0 -4
  81. data/lib/rubygems/remote_fetcher.rb +4 -2
  82. data/lib/rubygems/request_set.rb +2 -13
  83. data/lib/rubygems/requirement.rb +1 -1
  84. data/lib/rubygems/resolver.rb +6 -1
  85. data/lib/rubygems/resolver/api_set.rb +28 -19
  86. data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
  87. data/lib/rubygems/resolver/api_specification.rb +4 -3
  88. data/lib/rubygems/resolver/best_set.rb +2 -2
  89. data/lib/rubygems/resolver/index_specification.rb +18 -0
  90. data/lib/rubygems/resolver/installer_set.rb +57 -7
  91. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +1 -1
  92. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +1 -1
  93. data/lib/rubygems/resolver/spec_specification.rb +14 -0
  94. data/lib/rubygems/resolver/specification.rb +12 -0
  95. data/lib/rubygems/source.rb +10 -6
  96. data/lib/rubygems/specification.rb +18 -14
  97. data/lib/rubygems/test_case.rb +17 -4
  98. data/rubygems-update.gemspec +2 -2
  99. data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
  100. data/test/rubygems/test_gem.rb +5 -0
  101. data/test/rubygems/test_gem_commands_install_command.rb +131 -0
  102. data/test/rubygems/test_gem_commands_setup_command.rb +21 -37
  103. data/test/rubygems/test_gem_dependency_installer.rb +27 -47
  104. data/test/rubygems/test_gem_ext_builder.rb +30 -6
  105. data/test/rubygems/test_gem_ext_cmake_builder.rb +2 -4
  106. data/test/rubygems/test_gem_ext_configure_builder.rb +2 -2
  107. data/test/rubygems/test_gem_installer.rb +8 -60
  108. data/test/rubygems/test_gem_platform.rb +8 -0
  109. data/test/rubygems/test_gem_remote_fetcher.rb +1 -1
  110. data/test/rubygems/test_gem_requirement.rb +34 -0
  111. data/test/rubygems/test_gem_resolver_api_set.rb +26 -52
  112. data/test/rubygems/test_gem_resolver_api_specification.rb +3 -3
  113. data/test/rubygems/test_gem_resolver_best_set.rb +26 -3
  114. data/test/rubygems/test_gem_source.rb +2 -2
  115. data/test/rubygems/test_gem_source_subpath_problem.rb +2 -2
  116. data/test/rubygems/test_gem_specification.rb +9 -3
  117. data/test/rubygems/test_gem_stream_ui.rb +1 -1
  118. metadata +34 -55
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 89d8b149374def285695109ddc454c37bce9e4237c234c5effd43d9cf4ccc26a
4
- data.tar.gz: d47581abe6eeacc1037e20a882df82001f5742fb33418d38829c788bb341f073
3
+ metadata.gz: 6c18e3412218b88b1351a2dcd3096240a1b5fa833aa26c58efee7a70e72601d4
4
+ data.tar.gz: 9f8fff96b275641a2fd60220cbfa98343af11c177c8797261f1d99089f4345c0
5
5
  SHA512:
6
- metadata.gz: 34fe6a294d1aaed49dc46a1a3aecdc211a2fb308a88ab352cbc732a0b9dc8ffdedc0e87302efc29275972051f77a275b8caf3c436538dcbb43e569b75ce1e429
7
- data.tar.gz: 10af836317bb8539971af80345a129963d56149affab1a89498abde570c31802a374246c0cee85bf3bdfd6c37d6dcfd1db33677b4db9c5514d6cd5102741be89
6
+ metadata.gz: cb78b68b419a3ffa8e70a9688c563510c93982c0d3c26969594639bcf41ba6345b3a48cf1c4f756689a202d1b8d9be416d19715d18acea2640dd6dcb53cee2d1
7
+ data.tar.gz: 98fb817e049053336bd47a5525a4247096558eef13efd10e5a7c38ea407569ef62fe29d135142854759874424c624bf51ed292606257a9539e60d991f891abd2
@@ -1,6 +1,64 @@
1
- === 3.2.2 / 2020-12-17
1
+ # 3.2.7 / 2021-01-26
2
2
 
3
- Bug fixes:
3
+ ## Bug fixes:
4
+
5
+ * Generate plugin wrappers with relative requires. Pull request #4317 by
6
+ deivid-rodriguez
7
+
8
+ # 3.2.6 / 2021-01-18
9
+
10
+ ## Enhancements:
11
+
12
+ * Fix `Gem::Platform#inspect` showing duplicate information. Pull request
13
+ #4276 by deivid-rodriguez
14
+
15
+ ## Bug fixes:
16
+
17
+ * Swallow any system call error in `ensure_gem_subdirs` to support jruby
18
+ embedded paths. Pull request #4291 by kares
19
+ * Restore accepting custom make command with extra options as the `make`
20
+ env variable. Pull request #4271 by terceiro
21
+
22
+ # 3.2.5 / 2021-01-11
23
+
24
+ ## Bug fixes:
25
+
26
+ * Don't load more specs after the whole set of specs has been setup. Pull
27
+ request #4262 by deivid-rodriguez
28
+ * Fix broken `bundler` executable after `gem update --system`. Pull
29
+ request #4221 by deivid-rodriguez
30
+
31
+ # 3.2.4 / 2020-12-31
32
+
33
+ ## Enhancements:
34
+
35
+ * Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
36
+ deivid-rodriguez
37
+ * Never spawn subshells when building extensions. Pull request #4190 by
38
+ deivid-rodriguez
39
+
40
+ ## Bug fixes:
41
+
42
+ * Fix fallback to the old index and installation from it not working. Pull
43
+ request #4213 by deivid-rodriguez
44
+ * Fix installing from source on truffleruby. Pull request #4201 by
45
+ deivid-rodriguez
46
+
47
+ # 3.2.3 / 2020-12-22
48
+
49
+ ## Enhancements:
50
+
51
+ * Fix misspellings in default API key name. Pull request #4177 by hsbt
52
+
53
+ ## Bug fixes:
54
+
55
+ * Respect `required_ruby_version` and `required_rubygems_version`
56
+ constraints when looking for `gem install` candidates. Pull request #4110
57
+ by deivid-rodriguez
58
+
59
+ # 3.2.2 / 2020-12-17
60
+
61
+ ## Bug fixes:
4
62
 
5
63
  * Fix issue where CLI commands making more than one request to
6
64
  rubygems.org needing an OTP code would crash or ask for the code twice.
@@ -10,23 +68,23 @@ Bug fixes:
10
68
  * Fix `gem update --system` displaying too many changelog entries. Pull
11
69
  request #4145 by deivid-rodriguez
12
70
 
13
- === 3.2.1 / 2020-12-14
71
+ # 3.2.1 / 2020-12-14
14
72
 
15
- Enhancements:
73
+ ## Enhancements:
16
74
 
17
75
  * Added help message for gem i webrick in gem server command. Pull request
18
76
  #4117 by hsbt
19
77
 
20
- Bug fixes:
78
+ ## Bug fixes:
21
79
 
22
80
  * Added the missing loading of fileutils same as load_specs. Pull request
23
81
  #4124 by hsbt
24
82
  * Fix Resolver::APISet to always include prereleases when necessary. Pull
25
83
  request #4113 by deivid-rodriguez
26
84
 
27
- === 3.2.0 / 2020-12-07
85
+ # 3.2.0 / 2020-12-07
28
86
 
29
- Enhancements:
87
+ ## Enhancements:
30
88
 
31
89
  * Do not override Kernel#warn when there is no need. Pull request #4075 by
32
90
  eregon
@@ -45,7 +103,7 @@ Enhancements:
45
103
  * Pass more information when comparing platforms. Pull request #3817 by
46
104
  eregon
47
105
 
48
- Bug fixes:
106
+ ## Bug fixes:
49
107
 
50
108
  * Use better owner & group for files in rubygems package. Pull request
51
109
  #4065 by deivid-rodriguez
@@ -71,18 +129,18 @@ Bug fixes:
71
129
  * Make `--default` and `--install-dir` options to `gem install` play nice
72
130
  together. Pull request #3906 by deivid-rodriguez
73
131
 
74
- Deprecations:
132
+ ## Deprecations:
75
133
 
76
134
  * Deprecate server command. Pull request #3868 by bronzdoc
77
135
 
78
- Performance:
136
+ ## Performance:
79
137
 
80
138
  * Don't change ruby process CWD when building extensions. Pull request
81
139
  #3498 by deivid-rodriguez
82
140
 
83
- === 3.2.0.rc.2 / 2020-10-08
141
+ # 3.2.0.rc.2 / 2020-10-08
84
142
 
85
- Enhancements:
143
+ ## Enhancements:
86
144
 
87
145
  * Make --dry-run flag consistent across rubygems commands. Pull request
88
146
  #3867 by bronzdoc
@@ -99,7 +157,7 @@ Enhancements:
99
157
  * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
100
158
  eregon
101
159
 
102
- Bug fixes:
160
+ ## Bug fixes:
103
161
 
104
162
  * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
105
163
  * Fix false positive warning on Windows when PATH has
@@ -111,7 +169,7 @@ Bug fixes:
111
169
  * `gem install --user` fails with `Gem::FilePermissionError` on the system
112
170
  plugins directory. Pull request #3804 by nobu
113
171
 
114
- Performance:
172
+ ## Performance:
115
173
 
116
174
  * Avoid duplicated generation of APISpecification objects. Pull request
117
175
  #3940 by mame
@@ -121,9 +179,9 @@ Performance:
121
179
  casperisfine
122
180
  * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
123
181
 
124
- === 3.2.0.rc.1 / 2020-07-04
182
+ # 3.2.0.rc.1 / 2020-07-04
125
183
 
126
- Enhancements:
184
+ ## Enhancements:
127
185
 
128
186
  * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
129
187
  * Rework plugins system and speed up rubygems. Pull request #3108 by David
@@ -170,7 +228,7 @@ Enhancements:
170
228
  * Only rescue the errors we actually want to rescue. Pull request #3156 by
171
229
  David Rodríguez.
172
230
 
173
- Bug fixes:
231
+ ## Bug fixes:
174
232
 
175
233
  * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
176
234
  request #3422 by Yusuke Endoh.
@@ -192,12 +250,12 @@ Bug fixes:
192
250
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
193
251
  Rodríguez.
194
252
 
195
- Deprecations:
253
+ ## Deprecations:
196
254
 
197
255
  * Set deprecation warning on query command. Pull request #2967 by Luis
198
256
  Sagastume.
199
257
 
200
- Breaking changes:
258
+ ## Breaking changes:
201
259
 
202
260
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
203
261
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
@@ -224,9 +282,9 @@ Breaking changes:
224
282
  * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
225
283
  request #3114 by Luis Sagastume.
226
284
 
227
- === 3.1.4 / 2020-06-03
285
+ # 3.1.4 / 2020-06-03
228
286
 
229
- Enhancements:
287
+ ## Enhancements:
230
288
 
231
289
  * Deprecate rubyforge_project attribute only during build
232
290
  time. Pull request #3609 by Josef Šimánek.
@@ -235,9 +293,9 @@ Enhancements:
235
293
  * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
236
294
  Josef Šimánek.
237
295
 
238
- === 3.1.3 / 2020-05-05
296
+ # 3.1.3 / 2020-05-05
239
297
 
240
- Enhancements:
298
+ ## Enhancements:
241
299
 
242
300
  * Resolver: require NameTuple before use. Pull request #3171 by Olle
243
301
  Jonsson.
@@ -248,7 +306,7 @@ Enhancements:
248
306
  * Add tests to check if Gem.ruby_version works with ruby git master.
249
307
  Pull request #3049 by Yusuke Endoh.
250
308
 
251
- Bug fixes:
309
+ ## Bug fixes:
252
310
 
253
311
  * Fix platform comparison check in #contains_requirable_file?. Pull
254
312
  request #3495 by Benoit Daloze.
@@ -260,9 +318,9 @@ Bug fixes:
260
318
  * Fix gem install from a gemdeps file with complex dependencies.
261
319
  Pull request #3054 by Luis Sagastume.
262
320
 
263
- === 3.1.2 / 2019-12-20
321
+ # 3.1.2 / 2019-12-20
264
322
 
265
- Enhancements:
323
+ ## Enhancements:
266
324
 
267
325
  * Restore non prompting `gem update --system` behavior. Pull request #3040
268
326
  by David Rodríguez.
@@ -272,24 +330,24 @@ Enhancements:
272
330
  Pull request #3042 by David Rodríguez.
273
331
  * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
274
332
 
275
- Bug fixes:
333
+ ## Bug fixes:
276
334
 
277
335
  * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
278
336
  * Fix `gem update --system --force`. Pull request #3035 by David
279
337
  Rodríguez.
280
338
  * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
281
339
 
282
- === 3.1.1 / 2019-12-16
340
+ # 3.1.1 / 2019-12-16
283
341
 
284
- Bug fixes:
342
+ ## Bug fixes:
285
343
 
286
344
  * Vendor Bundler 2.1.0 again. The version of Bundler with
287
345
  RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
288
346
  SHIBATA Hiroshi.
289
347
 
290
- === 3.1.0 / 2019-12-16
348
+ # 3.1.0 / 2019-12-16
291
349
 
292
- Enhancements:
350
+ ## Enhancements:
293
351
 
294
352
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
295
353
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
@@ -303,25 +361,25 @@ Enhancements:
303
361
  * Use bundler to manage development dependencies. Pull request #3012 by
304
362
  David Rodríguez.
305
363
 
306
- Bug fixes:
364
+ ## Bug fixes:
307
365
 
308
366
  * Remove unnecessary executable flags. Pull request #2982 by David
309
367
  Rodríguez.
310
368
  * Remove configuration that contained a typo. Pull request #2989 by David
311
369
  Rodríguez.
312
370
 
313
- Deprecations:
371
+ ## Deprecations:
314
372
 
315
373
  * Deprecate `gem generate_index --modern` and `gem generate_index
316
374
  --no-modern`. Pull request #2992 by David Rodríguez.
317
375
 
318
- Breaking changes:
376
+ ## Breaking changes:
319
377
 
320
378
  * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
321
379
 
322
- === 3.1.0.pre3 / 2019-11-11
380
+ # 3.1.0.pre3 / 2019-11-11
323
381
 
324
- Enhancements:
382
+ ## Enhancements:
325
383
 
326
384
  * Fix gem pristine not accounting for user installed gems. Pull request
327
385
  #2914 by Luis Sagastume.
@@ -340,18 +398,18 @@ Enhancements:
340
398
  * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
341
399
  #2985 by MSP-Greg.
342
400
 
343
- === 3.1.0.pre2 / 2019-10-15
401
+ # 3.1.0.pre2 / 2019-10-15
344
402
 
345
- Enhancements:
403
+ ## Enhancements:
346
404
 
347
405
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
348
406
  Boussier.
349
407
  * Time comparison around date boundary. Pull request #2944 by Nobuyoshi
350
408
  Nakada.
351
409
 
352
- === 3.1.0.pre1 / 2019-10-08
410
+ # 3.1.0.pre1 / 2019-10-08
353
411
 
354
- Enhancements:
412
+ ## Enhancements:
355
413
 
356
414
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
357
415
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -481,7 +539,7 @@ Enhancements:
481
539
  Berger.
482
540
  * Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
483
541
 
484
- Bug fixes:
542
+ ## Bug fixes:
485
543
 
486
544
  * Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
487
545
  * Remove unused empty sources array. Pull request #2598 by Aaron
@@ -514,7 +572,7 @@ Bug fixes:
514
572
  * Fix cryptic error on local and ignore-dependencies combination. Pull
515
573
  request #2650 by David Rodríguez.
516
574
 
517
- Deprecations:
575
+ ## Deprecations:
518
576
 
519
577
  * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
520
578
  #2857 by SHIBATA Hiroshi.
@@ -528,7 +586,7 @@ Deprecations:
528
586
  * Add deprecation warnings for cli options. Pull request #2607 by Luis
529
587
  Sagastume.
530
588
 
531
- Breaking changes:
589
+ ## Breaking changes:
532
590
 
533
591
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
534
592
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
@@ -551,16 +609,16 @@ Breaking changes:
551
609
  #2685 by SHIBATA Hiroshi.
552
610
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
553
611
 
554
- === 3.0.8 / 2020-02-19
612
+ # 3.0.8 / 2020-02-19
555
613
 
556
- Bug fixes:
614
+ ## Bug fixes:
557
615
 
558
616
  * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
559
617
  Nobuyoshi Nakada.
560
618
 
561
- === 3.0.7 / 2020-02-18
619
+ # 3.0.7 / 2020-02-18
562
620
 
563
- Bug fixes:
621
+ ## Bug fixes:
564
622
 
565
623
  * Fix underscore version selection for bundler #2908 by David Rodríguez.
566
624
  * Add missing wrapper. Pull request #2690 by David Rodríguez.
@@ -570,15 +628,15 @@ Bug fixes:
570
628
  * Use IAM role to extract security-credentials for EC2 instance. Pull
571
629
  request #2894 by Alexander Pakulov.
572
630
 
573
- === 3.0.6 / 2019-08-17
631
+ # 3.0.6 / 2019-08-17
574
632
 
575
- Bug fixes:
633
+ ## Bug fixes:
576
634
 
577
635
  * Revert #2813. It broke the compatibility with 3.0.x versions.
578
636
 
579
- === 3.0.5 / 2019-08-16
637
+ # 3.0.5 / 2019-08-16
580
638
 
581
- Enhancements:
639
+ ## Enhancements:
582
640
 
583
641
  * Use env var to configure api key on push. Pull request #2559 by Luis
584
642
  Sagastume.
@@ -613,7 +671,7 @@ Enhancements:
613
671
  by Alexander Pakulov.
614
672
  * Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
615
673
 
616
- Bug fixes:
674
+ ## Bug fixes:
617
675
 
618
676
  * Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
619
677
  MSP-Greg.
@@ -629,9 +687,9 @@ Bug fixes:
629
687
  * Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
630
688
  Hiroshi.
631
689
 
632
- === 3.0.4 / 2019-06-14
690
+ # 3.0.4 / 2019-06-14
633
691
 
634
- Enhancements:
692
+ ## Enhancements:
635
693
 
636
694
  * Add support for TruffleRuby #2612 by Benoit Daloze
637
695
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -668,7 +726,7 @@ Enhancements:
668
726
  request #2777 by Yusuke Endoh.
669
727
  * Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
670
728
 
671
- Bug fixes:
729
+ ## Bug fixes:
672
730
 
673
731
  * Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
674
732
  * Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
@@ -684,7 +742,7 @@ Bug fixes:
684
742
  #2732 by Alex Junger.
685
743
  * Fix TODOs. Pull request #2748 by David Rodríguez.
686
744
 
687
- === 3.0.3 / 2019-03-05
745
+ # 3.0.3 / 2019-03-05
688
746
 
689
747
  Security fixes:
690
748
 
@@ -695,14 +753,14 @@ Security fixes:
695
753
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
696
754
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
697
755
 
698
- === 3.0.2 / 2019-01-01
756
+ # 3.0.2 / 2019-01-01
699
757
 
700
- Enhancements:
758
+ ## Enhancements:
701
759
 
702
760
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
703
761
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
704
762
 
705
- Bug fixes:
763
+ ## Bug fixes:
706
764
 
707
765
  * Fix tests when ruby --program-suffix is used without rubygems
708
766
  --format-executable. Pull request #2549 by Jeremy Evans.
@@ -712,9 +770,9 @@ Bug fixes:
712
770
  Fukumori.
713
771
  * Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
714
772
 
715
- === 3.0.1 / 2018-12-23
773
+ # 3.0.1 / 2018-12-23
716
774
 
717
- Bug fixes:
775
+ ## Bug fixes:
718
776
 
719
777
  * Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
720
778
  * Dup the Dir.home string before passing it on. Pull request #2545 by
@@ -723,9 +781,9 @@ Bug fixes:
723
781
  by SHIBATA Hiroshi.
724
782
  * Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
725
783
 
726
- === 3.0.0 / 2018-12-19
784
+ # 3.0.0 / 2018-12-19
727
785
 
728
- Enhancements:
786
+ ## Enhancements:
729
787
 
730
788
  * S3 source. Pull request #1690 by Aditya Prakash.
731
789
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -890,7 +948,7 @@ Enhancements:
890
948
  * Support the environment without OpenSSL. Pull request #2528 by SHIBATA
891
949
  Hiroshi.
892
950
 
893
- Bug fixes:
951
+ ## Bug fixes:
894
952
 
895
953
  * Fix undefined method error when printing alert. Pull request #1884 by
896
954
  Robert Ross.
@@ -943,7 +1001,7 @@ Bug fixes:
943
1001
  * Fix tests when --program-suffix and similar ruby configure options are
944
1002
  used. Pull request #2529 by Jeremy Evans.
945
1003
 
946
- Breaking changes:
1004
+ ## Breaking changes:
947
1005
 
948
1006
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
949
1007
  Hiroshi.
@@ -996,9 +1054,9 @@ Breaking changes:
996
1054
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
997
1055
  major versions. Pull request #2515 by Colby Swandale.
998
1056
 
999
- === 2.7.10 / 2019-06-14
1057
+ # 2.7.10 / 2019-06-14
1000
1058
 
1001
- Enhancements:
1059
+ ## Enhancements:
1002
1060
 
1003
1061
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
1004
1062
  by David Rodríguez.
@@ -1006,7 +1064,7 @@ Enhancements:
1006
1064
  Pull request #2515 by Colby Swandale.
1007
1065
  + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
1008
1066
 
1009
- === 2.7.9 / 2019-03-05
1067
+ # 2.7.9 / 2019-03-05
1010
1068
 
1011
1069
  Security fixes:
1012
1070
 
@@ -1017,9 +1075,9 @@ Security fixes:
1017
1075
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
1018
1076
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
1019
1077
 
1020
- === 2.7.8 / 2018-11-02
1078
+ # 2.7.8 / 2018-11-02
1021
1079
 
1022
- Enhancements:
1080
+ ## Enhancements:
1023
1081
 
1024
1082
  * [Requirement] Treat requirements with == versions as equal. Pull
1025
1083
  request #2230 by Samuel Giddins.
@@ -1038,7 +1096,7 @@ Enhancements:
1038
1096
  * Improve bindir flag description. Pull request #2383 by Luis Sagastume.
1039
1097
  * Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
1040
1098
 
1041
- Bug fixes:
1099
+ ## Bug fixes:
1042
1100
 
1043
1101
  * Fix #1470: generate documentation when --install-dir is present. Pull
1044
1102
  request #2229 by Elias Hernandis.
@@ -1051,9 +1109,9 @@ Bug fixes:
1051
1109
  * Gem::Version should handle nil like it used to before. Pull request
1052
1110
  #2363 by Luis Sagastume.
1053
1111
 
1054
- === 2.7.7 / 2018-05-08
1112
+ # 2.7.7 / 2018-05-08
1055
1113
 
1056
- Enhancements:
1114
+ ## Enhancements:
1057
1115
 
1058
1116
  * [RequestSet] Only suggest a gem version with an installable platform.
1059
1117
  Pull request #2175 by Samuel Giddins.
@@ -1068,7 +1126,7 @@ Enhancements:
1068
1126
  Sagastume.
1069
1127
  * Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
1070
1128
 
1071
- Bug fixes:
1129
+ ## Bug fixes:
1072
1130
 
1073
1131
  * Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
1074
1132
  #2115 by MSP-Greg.
@@ -1081,7 +1139,7 @@ Bug fixes:
1081
1139
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1082
1140
  Lars Kanis.
1083
1141
 
1084
- Deprecations:
1142
+ ## Deprecations:
1085
1143
 
1086
1144
  * Deprecate unused code before removing them at #1524. Pull request #2197
1087
1145
  by SHIBATA Hiroshi.
@@ -1089,11 +1147,11 @@ Deprecations:
1089
1147
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1090
1148
  SHIBATA Hiroshi.
1091
1149
 
1092
- Breaking changes:
1150
+ ## Breaking changes:
1093
1151
 
1094
1152
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1095
1153
 
1096
- === 2.7.6 / 2018-02-16
1154
+ # 2.7.6 / 2018-02-16
1097
1155
 
1098
1156
  Security fixes:
1099
1157
 
@@ -1112,9 +1170,9 @@ Security fixes:
1112
1170
  * Prevent Path Traversal issue during gem installation.
1113
1171
  Discovered by nmalkin.
1114
1172
 
1115
- === 2.7.5
1173
+ # 2.7.5
1116
1174
 
1117
- Bug fixes:
1175
+ ## Bug fixes:
1118
1176
 
1119
1177
  * To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
1120
1178
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
@@ -1126,9 +1184,9 @@ Bug fixes:
1126
1184
  * Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
1127
1185
  * Fix undefined method error when printing alert #1884 by Robert Ross.
1128
1186
 
1129
- === 2.7.4
1187
+ # 2.7.4
1130
1188
 
1131
- Bug fixes:
1189
+ ## Bug fixes:
1132
1190
 
1133
1191
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
1134
1192
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -1137,9 +1195,9 @@ Bug fixes:
1137
1195
  * Handle environment that does not have `flock` system call. Pull request
1138
1196
  #2107 by SHIBATA Hiroshi.
1139
1197
 
1140
- === 2.7.3
1198
+ # 2.7.3
1141
1199
 
1142
- Enhancements:
1200
+ ## Enhancements:
1143
1201
 
1144
1202
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
1145
1203
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -1152,7 +1210,7 @@ Enhancements:
1152
1210
  * Remove multi load warning from plugins documentation. Pull request #2103
1153
1211
  by Thibault Jouan.
1154
1212
 
1155
- Bug fixes:
1213
+ ## Bug fixes:
1156
1214
 
1157
1215
  * Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
1158
1216
  Dash.
@@ -1171,25 +1229,25 @@ Bug fixes:
1171
1229
  * Use setup command --regenerate-binstubs option flag. Pull request #2099
1172
1230
  by Thibault Jouan.
1173
1231
 
1174
- === 2.7.2
1232
+ # 2.7.2
1175
1233
 
1176
- Bug fixes:
1234
+ ## Bug fixes:
1177
1235
 
1178
1236
  * Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
1179
1237
  Hiroshi.
1180
1238
  * Added workaround for non-git environment. Pull request #2066 by SHIBATA
1181
1239
  Hiroshi.
1182
1240
 
1183
- === 2.7.1 (2017-11-03)
1241
+ # 2.7.1 (2017-11-03)
1184
1242
 
1185
- Bug fixes:
1243
+ ## Bug fixes:
1186
1244
 
1187
1245
  * Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
1188
1246
  Samuel Giddins.
1189
1247
 
1190
- === 2.7.0 (2017-11-02)
1248
+ # 2.7.0 (2017-11-02)
1191
1249
 
1192
- Enhancements:
1250
+ ## Enhancements:
1193
1251
 
1194
1252
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
1195
1253
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
@@ -1280,7 +1338,7 @@ Enhancements:
1280
1338
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1281
1339
  Dash.
1282
1340
 
1283
- Deprecations:
1341
+ ## Deprecations:
1284
1342
 
1285
1343
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1286
1344
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
@@ -1290,7 +1348,7 @@ Deprecations:
1290
1348
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1291
1349
  Pull request #1731 by Jon Moss.
1292
1350
 
1293
- Breaking changes:
1351
+ ## Breaking changes:
1294
1352
 
1295
1353
  * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1296
1354
  unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
@@ -1298,7 +1356,7 @@ Breaking changes:
1298
1356
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1299
1357
  #1796 by Matej.
1300
1358
 
1301
- Bug fixes:
1359
+ ## Bug fixes:
1302
1360
 
1303
1361
  * Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
1304
1362
  MSP-Greg.
@@ -1351,7 +1409,7 @@ Bug fixes:
1351
1409
  * [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
1352
1410
  Pull request #1738 by Samuel Giddins.
1353
1411
 
1354
- === 2.6.14 / 2017-10-09
1412
+ # 2.6.14 / 2017-10-09
1355
1413
 
1356
1414
  Security fixes:
1357
1415
 
@@ -1359,7 +1417,7 @@ Security fixes:
1359
1417
  See CVE-2017-0903 for full details.
1360
1418
  Fix by Aaron Patterson.
1361
1419
 
1362
- === 2.6.13 / 2017-08-27
1420
+ # 2.6.13 / 2017-08-27
1363
1421
 
1364
1422
  Security fixes:
1365
1423
 
@@ -1373,9 +1431,9 @@ Security fixes:
1373
1431
  to overwrite arbitrary files. (CVE-2017-0901)
1374
1432
  Discovered by Yusuke Endoh, fix by Samuel Giddins.
1375
1433
 
1376
- === 2.6.12 / 2017-04-30
1434
+ # 2.6.12 / 2017-04-30
1377
1435
 
1378
- Bug fixes:
1436
+ ## Bug fixes:
1379
1437
 
1380
1438
  * Fix test_self_find_files_with_gemfile to sort expected files. Pull
1381
1439
  request #1880 by Kazuaki Matsuo.
@@ -1396,9 +1454,9 @@ Bug fixes:
1396
1454
  * Allow Gem.finish_resolve to respect already-activated specs. Pull
1397
1455
  request #1910 by Samuel Giddins.
1398
1456
 
1399
- === 2.6.11 / 2017-03-16
1457
+ # 2.6.11 / 2017-03-16
1400
1458
 
1401
- Bug fixes:
1459
+ ## Bug fixes:
1402
1460
 
1403
1461
  * Fixed broken tests on ruby-head. Pull request #1841 by
1404
1462
  SHIBATA Hiroshi.
@@ -1409,16 +1467,16 @@ Bug fixes:
1409
1467
  * Use improved resolver sorting algorithm. Pull request #1856 by
1410
1468
  Samuel Giddins.
1411
1469
 
1412
- === 2.6.10 / 2017-01-23
1470
+ # 2.6.10 / 2017-01-23
1413
1471
 
1414
- Bug fixes:
1472
+ ## Bug fixes:
1415
1473
 
1416
1474
  * Fix `require` calling the wrong `gem` method when it is overridden.
1417
1475
  Pull request #1822 by Samuel Giddins.
1418
1476
 
1419
- === 2.6.9 / 2017-01-20
1477
+ # 2.6.9 / 2017-01-20
1420
1478
 
1421
- Bug fixes:
1479
+ ## Bug fixes:
1422
1480
 
1423
1481
  * Allow initializing versions with empty strings. Pull request #1767 by
1424
1482
  Luis Sagastume.
@@ -1432,9 +1490,9 @@ Bug fixes:
1432
1490
  * RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
1433
1491
  Jonsson.
1434
1492
 
1435
- === 2.6.8 / 2016-10-29
1493
+ # 2.6.8 / 2016-10-29
1436
1494
 
1437
- Bug fixes:
1495
+ ## Bug fixes:
1438
1496
 
1439
1497
  * Improve SSL verification failure message. Pull request #1751
1440
1498
  by Eric Hodel.
@@ -1443,9 +1501,9 @@ Bug fixes:
1443
1501
  * Update vendored Molinillo to 0.5.3. Pull request #1763 by
1444
1502
  Samuel Giddins.
1445
1503
 
1446
- === 2.6.7 / 2016-09-26
1504
+ # 2.6.7 / 2016-09-26
1447
1505
 
1448
- Bug fixes:
1506
+ ## Bug fixes:
1449
1507
 
1450
1508
  * Install native extensions in the correct location when using the
1451
1509
  `--user-install` flag. Pull request #1683 by Noah Kantrowitz.
@@ -1457,24 +1515,24 @@ Bug fixes:
1457
1515
  * Update vendored Molinillo to 0.5.1. Pull request #1714 by
1458
1516
  Samuel Giddins.
1459
1517
 
1460
- === 2.6.6 / 2016-06-22
1518
+ # 2.6.6 / 2016-06-22
1461
1519
 
1462
- Bug fixes:
1520
+ ## Bug fixes:
1463
1521
 
1464
1522
  * Sort installed versions to make sure we install the latest version when
1465
1523
  running `gem update --system`. As a one-time fix, run
1466
1524
  `gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
1467
1525
 
1468
- === 2.6.5 / 2016-06-21
1526
+ # 2.6.5 / 2016-06-21
1469
1527
 
1470
- Enhancements:
1528
+ ## Enhancements:
1471
1529
 
1472
1530
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1473
1531
  by SHIBATA Hiroshi.
1474
1532
  * Update vendored Molinillo to 0.5.0 for performance improvements.
1475
1533
  Pull request #1638 by Samuel Giddins.
1476
1534
 
1477
- Bug fixes:
1535
+ ## Bug fixes:
1478
1536
 
1479
1537
  * Raise an explicit error if Signer#sign is called with no certs. Pull
1480
1538
  request #1605 by Daniel Berger.
@@ -1494,16 +1552,16 @@ Bug fixes:
1494
1552
  Pull request #1644 by Charles Oliver Nutter.
1495
1553
  * Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
1496
1554
 
1497
- === 2.6.4 / 2016-04-26
1555
+ # 2.6.4 / 2016-04-26
1498
1556
 
1499
- Enhancements:
1557
+ ## Enhancements:
1500
1558
 
1501
1559
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1502
1560
  by Chris Charabaruk.
1503
1561
  * Use File.symlink on MS Windows if supported. Pull request #1418
1504
1562
  by Nobuyoshi Nakada.
1505
1563
 
1506
- Bug fixes:
1564
+ ## Bug fixes:
1507
1565
 
1508
1566
  * Redact uri password from error output when gem fetch fails. Pull request
1509
1567
  #1565 by Brian Fletcher.
@@ -1511,9 +1569,9 @@ Bug fixes:
1511
1569
  * Escape user-supplied content served on web pages by `gem server` to avoid
1512
1570
  potential XSS vulnerabilities. Samuel Giddins.
1513
1571
 
1514
- === 2.6.3 / 2016-04-05
1572
+ # 2.6.3 / 2016-04-05
1515
1573
 
1516
- Enhancements:
1574
+ ## Enhancements:
1517
1575
 
1518
1576
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1519
1577
  by Aaron Patterson.
@@ -1524,7 +1582,7 @@ Enhancements:
1524
1582
  * Show default gems when using "gem list". Pull request #1570 by Luis
1525
1583
  Sagastume.
1526
1584
 
1527
- Bug fixes:
1585
+ ## Bug fixes:
1528
1586
 
1529
1587
  * Stub ordering should be consistent regardless of how cache is populated.
1530
1588
  Pull request #1552 by Aaron Patterson.
@@ -1540,9 +1598,9 @@ Bug fixes:
1540
1598
  Giddins.
1541
1599
  * Allow two digit version numbers in the tests. Pull request #1575 by unak.
1542
1600
 
1543
- === 2.6.2 / 2016-03-12
1601
+ # 2.6.2 / 2016-03-12
1544
1602
 
1545
- Bug fixes:
1603
+ ## Bug fixes:
1546
1604
 
1547
1605
  * Fix wrong version of gem activation for bin stub. Pull request #1527 by
1548
1606
  Aaron Patterson.
@@ -1553,9 +1611,9 @@ Bug fixes:
1553
1611
  #1538 by Charles Oliver Nutter.
1554
1612
 
1555
1613
 
1556
- === 2.6.1 / 2016-02-28
1614
+ # 2.6.1 / 2016-02-28
1557
1615
 
1558
- Bug fixes:
1616
+ ## Bug fixes:
1559
1617
 
1560
1618
  * Ensure `default_path` and `home` are set for paths. Pull request #1513
1561
1619
  by Aaron Patterson.
@@ -1564,9 +1622,9 @@ Bug fixes:
1564
1622
  * Fix invalid gem file preventing gem install from working. Pull request
1565
1623
  #1499 by Luis Sagastume.
1566
1624
 
1567
- === 2.6.0 / 2016-02-26
1625
+ # 2.6.0 / 2016-02-26
1568
1626
 
1569
- Enhancements:
1627
+ ## Enhancements:
1570
1628
 
1571
1629
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1572
1630
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1577,7 +1635,7 @@ Enhancements:
1577
1635
  * Allow specifying gem requirements via env variables. Pull request #1472
1578
1636
  by Samuel E. Giddins.
1579
1637
 
1580
- Bug fixes:
1638
+ ## Bug fixes:
1581
1639
 
1582
1640
  * RubyGems now stores `gem push` credentials under the host you signed-in for.
1583
1641
  Pull request #1485 by Josh Lane.
@@ -1603,9 +1661,9 @@ Bug fixes:
1603
1661
  * Find_files only from loaded_gems when using gemdeps. Pull request #1277
1604
1662
  by Michal Papis.
1605
1663
 
1606
- === 2.5.2 / 2016-01-31
1664
+ # 2.5.2 / 2016-01-31
1607
1665
 
1608
- Bug fixes:
1666
+ ## Bug fixes:
1609
1667
 
1610
1668
  * Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
1611
1669
  Zuijlen.
@@ -1621,7 +1679,7 @@ Bug fixes:
1621
1679
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1622
1680
  Giddins.
1623
1681
 
1624
- Enhancements:
1682
+ ## Enhancements:
1625
1683
 
1626
1684
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1627
1685
  Sagastume.
@@ -1646,9 +1704,9 @@ Enhancements:
1646
1704
  * Function correctly when string literals are frozen on Ruby 2.3. Pull request
1647
1705
  #1408 by Samuel E. Giddins.
1648
1706
 
1649
- === 2.5.1 / 2015-12-10
1707
+ # 2.5.1 / 2015-12-10
1650
1708
 
1651
- Bug fixes:
1709
+ ## Bug fixes:
1652
1710
 
1653
1711
  * Ensure platform sorting only uses strings. Affected binary installs on Windows.
1654
1712
  Issue #1369 reported by Ryan Atball (among others).
@@ -1677,9 +1735,9 @@ Bug fixes:
1677
1735
  Kudo.
1678
1736
  * Fixed double word typo. Pull request #1411 by Jake Worth.
1679
1737
 
1680
- === 2.5.0 / 2015-11-03
1738
+ # 2.5.0 / 2015-11-03
1681
1739
 
1682
- Enhancements:
1740
+ ## Enhancements:
1683
1741
 
1684
1742
  * Added the Gem::Licenses class which provides a set of standard license
1685
1743
  identifiers as set by spdx.org. This is now used by the
@@ -1749,7 +1807,7 @@ Enhancements:
1749
1807
  * Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
1750
1808
  Agis Anastasopoulos.
1751
1809
 
1752
- Bug fixes:
1810
+ ## Bug fixes:
1753
1811
 
1754
1812
  * Fixed Rake homepage url in example for Gem::Specification#homepage.
1755
1813
  Pull request #1171 by Arthur Nogueira Neves
@@ -1806,22 +1864,22 @@ Bug fixes:
1806
1864
  * RubyGems handles invalid config files better. Pull request #1367 by Agis
1807
1865
  Anastasopoulos.
1808
1866
 
1809
- === 2.4.8 / 2015-06-08
1867
+ # 2.4.8 / 2015-06-08
1810
1868
 
1811
- Bug fixes:
1869
+ ## Bug fixes:
1812
1870
 
1813
1871
  * Tightened API endpoint checks for CVE-2015-3900
1814
1872
 
1815
- === 2.4.7 / 2015-05-14
1873
+ # 2.4.7 / 2015-05-14
1816
1874
 
1817
- Bug fixes:
1875
+ ## Bug fixes:
1818
1876
 
1819
1877
  * Limit API endpoint to original security domain for CVE-2015-3900.
1820
1878
  Fix by claudijd
1821
1879
 
1822
- === 2.4.6 / 2015-02-05
1880
+ # 2.4.6 / 2015-02-05
1823
1881
 
1824
- Bug fixes:
1882
+ ## Bug fixes:
1825
1883
 
1826
1884
  * Fixed resolving gems with both upper and lower requirement boundaries.
1827
1885
  Issue #1141 by Jakub Jirutka.
@@ -1846,9 +1904,9 @@ Bug fixes:
1846
1904
  Ondruch.
1847
1905
  * Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
1848
1906
 
1849
- === 2.4.5 / 2014-12-03
1907
+ # 2.4.5 / 2014-12-03
1850
1908
 
1851
- Bug fixes:
1909
+ ## Bug fixes:
1852
1910
 
1853
1911
  * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
1854
1912
  request #1060 by unak.
@@ -1888,27 +1946,27 @@ Bug fixes:
1888
1946
  * Fixed grouped expression warning. Pull request #1081 by André Arko.
1889
1947
  * Fixed handling of platforms when writing lockfiles.
1890
1948
 
1891
- === 2.4.4 / 2014-11-12
1949
+ # 2.4.4 / 2014-11-12
1892
1950
 
1893
- Bug fixes:
1951
+ ## Bug fixes:
1894
1952
 
1895
1953
  * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
1896
1954
  Protosac
1897
1955
 
1898
- === 2.4.3 / 2014-11-10
1956
+ # 2.4.3 / 2014-11-10
1899
1957
 
1900
- Bug fixes:
1958
+ ## Bug fixes:
1901
1959
 
1902
1960
  * Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
1903
1961
  * Fix typo in platform= docs. Pull request #1048 by @jasonrclark
1904
1962
  * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
1905
1963
  Protosac
1906
1964
 
1907
- === 2.4.2 / 2014-10-01
1965
+ # 2.4.2 / 2014-10-01
1908
1966
 
1909
1967
  This release was sponsored by Ruby Central.
1910
1968
 
1911
- Bug fixes:
1969
+ ## Bug fixes:
1912
1970
 
1913
1971
  * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
1914
1972
  voelzemo.
@@ -1942,16 +2000,16 @@ Bug fixes:
1942
2000
  * RubyGems now fails immediately when a git reference cannot be found instead
1943
2001
  of spewing git errors. Issue #1031 by Michal Papis
1944
2002
 
1945
- === 2.4.1 / 2014-07-17
2003
+ # 2.4.1 / 2014-07-17
1946
2004
 
1947
- Bug fixes:
2005
+ ## Bug fixes:
1948
2006
 
1949
2007
  * RubyGems can now be updated on Ruby implementations that do not support
1950
2008
  vendordir in RbConfig::CONFIG. Issue #974 by net1957.
1951
2009
 
1952
- === 2.4.0 / 2014-07-16
2010
+ # 2.4.0 / 2014-07-16
1953
2011
 
1954
- Enhancements:
2012
+ ## Enhancements:
1955
2013
 
1956
2014
  * The contents command now supports a --show-install-dir option that shows
1957
2015
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1962,7 +2020,7 @@ Enhancements:
1962
2020
  in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
1963
2021
  Marcus Rückert.
1964
2022
 
1965
- Bug fixes:
2023
+ ## Bug fixes:
1966
2024
 
1967
2025
  * Kernel#gem now respects the prerelease flag when activating gems.
1968
2026
  Previously this behavior was undefined which could lead to bugs when a
@@ -2012,9 +2070,9 @@ Bug fixes:
2012
2070
  during gem resolution.
2013
2071
 
2014
2072
 
2015
- === 2.3.0 / 2014-06-10
2073
+ # 2.3.0 / 2014-06-10
2016
2074
 
2017
- Enhancements:
2075
+ ## Enhancements:
2018
2076
 
2019
2077
  * Added the `open` command which allows you to inspect the source of a gem
2020
2078
  using your editor.
@@ -2055,7 +2113,7 @@ Enhancements:
2055
2113
  * RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
2056
2114
  Benjamin Fleischer.
2057
2115
 
2058
- Bug fixes:
2116
+ ## Bug fixes:
2059
2117
 
2060
2118
  * RubyGems now only fetches the latest specs to find misspellings which speeds
2061
2119
  up gem suggestions. Pull request #808 by Aaron Patterson.
@@ -2135,29 +2193,29 @@ Bug fixes:
2135
2193
  * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
2136
2194
  #852 by Vít Ondruch.
2137
2195
 
2138
- === 2.2.5 / 2015-06-08
2196
+ # 2.2.5 / 2015-06-08
2139
2197
 
2140
- Bug fixes:
2198
+ ## Bug fixes:
2141
2199
 
2142
2200
  * Tightened API endpoint checks for CVE-2015-3900
2143
2201
 
2144
- === 2.2.4 / 2015-05-14
2202
+ # 2.2.4 / 2015-05-14
2145
2203
 
2146
- Bug fixes:
2204
+ ## Bug fixes:
2147
2205
 
2148
2206
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2149
2207
  Fix by claudijd
2150
2208
 
2151
- === 2.2.3 / 2014-12-21
2209
+ # 2.2.3 / 2014-12-21
2152
2210
 
2153
- Bug fixes:
2211
+ ## Bug fixes:
2154
2212
 
2155
2213
  * Backport: Add alternate Root CA for upcoming certificate change.
2156
2214
  Fixes #1050 by Protosac
2157
2215
 
2158
- === 2.2.2 / 2014-02-05
2216
+ # 2.2.2 / 2014-02-05
2159
2217
 
2160
- Bug fixes:
2218
+ ## Bug fixes:
2161
2219
 
2162
2220
  * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
2163
2221
  Nakada.
@@ -2182,9 +2240,9 @@ Bug fixes:
2182
2240
  * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
2183
2241
  Sergio Rubio.
2184
2242
 
2185
- === 2.2.1 / 2014-01-06
2243
+ # 2.2.1 / 2014-01-06
2186
2244
 
2187
- Bug fixes:
2245
+ ## Bug fixes:
2188
2246
 
2189
2247
  * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
2190
2248
  #767 by Diego Viola.
@@ -2210,12 +2268,12 @@ Bug fixes:
2210
2268
  * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
2211
2269
  request #763 by James Mead
2212
2270
 
2213
- === 2.2.0 / 2013-12-26
2271
+ # 2.2.0 / 2013-12-26
2214
2272
 
2215
2273
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
2216
2274
  RubyGems as it was prepared for the 2.2.0 release.
2217
2275
 
2218
- Enhancements:
2276
+ ## Enhancements:
2219
2277
 
2220
2278
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
2221
2279
  rubygems executables are started and uses the found dependencies. This
@@ -2283,7 +2341,7 @@ Enhancements:
2283
2341
  * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
2284
2342
  Request #755 by strzibny.
2285
2343
 
2286
- Bug fixes:
2344
+ ## Bug fixes:
2287
2345
 
2288
2346
  * RubyGems now returns an error status when any file given to `gem which`
2289
2347
  cannot be found. Ruby bug #9004 by Eugene Vilensky.
@@ -2300,9 +2358,9 @@ Bug fixes:
2300
2358
  * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
2301
2359
  Lee.
2302
2360
 
2303
- === 2.1.11 / 2013-11-12
2361
+ # 2.1.11 / 2013-11-12
2304
2362
 
2305
- Bug fixes:
2363
+ ## Bug fixes:
2306
2364
 
2307
2365
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2308
2366
  to be removed. Issue #698 by Tiago Macedo.
@@ -2312,9 +2370,9 @@ Bug fixes:
2312
2370
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2313
2371
  Pull Request #706 by akr.
2314
2372
 
2315
- === 2.1.10 / 2013-10-24
2373
+ # 2.1.10 / 2013-10-24
2316
2374
 
2317
- Bug fixes:
2375
+ ## Bug fixes:
2318
2376
 
2319
2377
  * Use class check instead of :version method check when creating Gem::Version
2320
2378
  objects. Fixes #674 by jkanywhere.
@@ -2333,18 +2391,18 @@ Bug fixes:
2333
2391
  * The --ignore-dependencies option for gem installation works again. Issue
2334
2392
  #695
2335
2393
 
2336
- === 2.1.9 / 2013-10-14
2394
+ # 2.1.9 / 2013-10-14
2337
2395
 
2338
- Bug fixes:
2396
+ ## Bug fixes:
2339
2397
 
2340
2398
  * Reduce sorting when fetching specifications. This speeds up the update and
2341
2399
  outdated commands, and others. Issue #657 by windwiny.
2342
2400
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2343
2401
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2344
2402
 
2345
- === 2.1.8 / 2013-10-10
2403
+ # 2.1.8 / 2013-10-10
2346
2404
 
2347
- Bug fixes:
2405
+ ## Bug fixes:
2348
2406
 
2349
2407
  * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
2350
2408
  * Files starting with "." in the root directory are installed again. Issue
@@ -2352,9 +2410,9 @@ Bug fixes:
2352
2410
  * The index generator no longer indexes default gems. Issue #661 by
2353
2411
  Jeremy Hinegardner.
2354
2412
 
2355
- === 2.1.7 / 2013-10-09
2413
+ # 2.1.7 / 2013-10-09
2356
2414
 
2357
- Bug fixes:
2415
+ ## Bug fixes:
2358
2416
 
2359
2417
  * `gem sources --list` now displays a list of sources. Pull request #672 by
2360
2418
  Nathan Marley.
@@ -2367,9 +2425,9 @@ Bug fixes:
2367
2425
  * Expand unpack destination directory. This fixes problems when File.realpath
2368
2426
  is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
2369
2427
 
2370
- === 2.1.6 / 2013-10-08
2428
+ # 2.1.6 / 2013-10-08
2371
2429
 
2372
- Bug fixes:
2430
+ ## Bug fixes:
2373
2431
 
2374
2432
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2375
2433
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2384,7 +2442,7 @@ Bug fixes:
2384
2442
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2385
2443
  Thomas Sänger.
2386
2444
 
2387
- === 2.1.5 / 2013-09-24
2445
+ # 2.1.5 / 2013-09-24
2388
2446
 
2389
2447
  Security fixes:
2390
2448
 
@@ -2393,25 +2451,25 @@ Security fixes:
2393
2451
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2394
2452
  1.8.23.2 (for Ruby 1.9.3).
2395
2453
 
2396
- === 2.1.4 / 2013-09-17
2454
+ # 2.1.4 / 2013-09-17
2397
2455
 
2398
- Bug fixes:
2456
+ ## Bug fixes:
2399
2457
 
2400
2458
  * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
2401
2459
  #650 by Kyle (remkade).
2402
2460
  * Fixed uninstalling gems installed in the home directory (as in
2403
2461
  `--user-install`). Issue #653 by Lin Jen-Shin.
2404
2462
 
2405
- === 2.1.3 / 2013-09-12
2463
+ # 2.1.3 / 2013-09-12
2406
2464
 
2407
- Bug fixes:
2465
+ ## Bug fixes:
2408
2466
 
2409
2467
  * Gems with files entries starting with "./" no longer install 0 files. Issue
2410
2468
  #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
2411
2469
 
2412
- === 2.1.2 / 2013-09-11
2470
+ # 2.1.2 / 2013-09-11
2413
2471
 
2414
- Bug fixes:
2472
+ ## Bug fixes:
2415
2473
 
2416
2474
  * Restore concurrent requires following the fix for ruby bug #8374. Pull
2417
2475
  request #637 and issue #640 by Charles Nutter.
@@ -2420,14 +2478,14 @@ Bug fixes:
2420
2478
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2421
2479
  Issue #643 by Brian Shirai.
2422
2480
 
2423
- === 2.1.1 / 2013-09-10
2481
+ # 2.1.1 / 2013-09-10
2424
2482
 
2425
- Bug fixes:
2483
+ ## Bug fixes:
2426
2484
 
2427
2485
  * Only matching gems matching your local platform are considered for
2428
2486
  installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
2429
2487
 
2430
- === 2.1.0 / 2013-09-09
2488
+ # 2.1.0 / 2013-09-09
2431
2489
 
2432
2490
  Security fixes:
2433
2491
 
@@ -2436,7 +2494,7 @@ Security fixes:
2436
2494
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2437
2495
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2438
2496
 
2439
- Enhancements:
2497
+ ## Enhancements:
2440
2498
 
2441
2499
  * RubyGems uses a new dependency resolver for gem installation which works
2442
2500
  similar to the bundler resolver. The new resolver can resolve conflicts the
@@ -2512,7 +2570,7 @@ Enhancements:
2512
2570
  still slow, but I see a near 50% improvement for 250 gems on a fast
2513
2571
  connection). See also Gem::Specification::outdated_and_latest_version
2514
2572
 
2515
- Bug fixes:
2573
+ ## Bug fixes:
2516
2574
 
2517
2575
  * rubygems_plugin.rb files are now only loaded from the latest installed gem.
2518
2576
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
@@ -2520,29 +2578,29 @@ Bug fixes:
2520
2578
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2521
2579
  request #622 by Arthur Nogueira Neves
2522
2580
 
2523
- === 2.0.17 / 2015-06-08
2581
+ # 2.0.17 / 2015-06-08
2524
2582
 
2525
- Bug fixes:
2583
+ ## Bug fixes:
2526
2584
 
2527
2585
  * Tightened API endpoint checks for CVE-2015-3900
2528
2586
 
2529
- === 2.0.16 / 2015-05-14
2587
+ # 2.0.16 / 2015-05-14
2530
2588
 
2531
- Bug fixes:
2589
+ ## Bug fixes:
2532
2590
 
2533
2591
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2534
2592
  Fix by claudijd
2535
2593
 
2536
- === 2.0.15 / 2014-12-21
2594
+ # 2.0.15 / 2014-12-21
2537
2595
 
2538
- Bug fixes:
2596
+ ## Bug fixes:
2539
2597
 
2540
2598
  * Backport: Add alternate Root CA for upcoming certificate change.
2541
2599
  Fixes #1050 by Protosac
2542
2600
 
2543
- === 2.0.14 / 2013-11-12
2601
+ # 2.0.14 / 2013-11-12
2544
2602
 
2545
- Bug fixes:
2603
+ ## Bug fixes:
2546
2604
 
2547
2605
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2548
2606
  to be removed. Issue #698 by Tiago Macedo.
@@ -2552,9 +2610,9 @@ Bug fixes:
2552
2610
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2553
2611
  Pull Request #706 by akr.
2554
2612
 
2555
- === 2.0.13 / 2013-10-24
2613
+ # 2.0.13 / 2013-10-24
2556
2614
 
2557
- Bug fixes:
2615
+ ## Bug fixes:
2558
2616
 
2559
2617
  * Use class check instead of :version method check when creating Gem::Version
2560
2618
  objects. Fixes #674 by jkanywhere.
@@ -2563,16 +2621,16 @@ Bug fixes:
2563
2621
  * Fix updating gems which have multiple platforms. Issue #693 by Ookami
2564
2622
  Kenrou.
2565
2623
 
2566
- === 2.0.12 / 2013-10-14
2624
+ # 2.0.12 / 2013-10-14
2567
2625
 
2568
- Bug fixes:
2626
+ ## Bug fixes:
2569
2627
 
2570
2628
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2571
2629
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2572
2630
 
2573
- === 2.0.11 / 2013-10-08
2631
+ # 2.0.11 / 2013-10-08
2574
2632
 
2575
- Bug fixes:
2633
+ ## Bug fixes:
2576
2634
 
2577
2635
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2578
2636
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2587,7 +2645,7 @@ Bug fixes:
2587
2645
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2588
2646
  Thomas Sänger.
2589
2647
 
2590
- === 2.0.10 / 2013-09-24
2648
+ # 2.0.10 / 2013-09-24
2591
2649
 
2592
2650
  Security fixes:
2593
2651
 
@@ -2596,16 +2654,16 @@ Security fixes:
2596
2654
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2597
2655
  1.8.23.2 (for Ruby 1.9.3).
2598
2656
 
2599
- === 2.0.9 / 2013-09-13
2657
+ # 2.0.9 / 2013-09-13
2600
2658
 
2601
- Bug fixes:
2659
+ ## Bug fixes:
2602
2660
 
2603
2661
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2604
2662
  Issue #643 by Brian Shirai.
2605
2663
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2606
2664
  request #622 by Arthur Nogueira Neves
2607
2665
 
2608
- === 2.0.8 / 2013-09-09
2666
+ # 2.0.8 / 2013-09-09
2609
2667
 
2610
2668
  Security fixes:
2611
2669
 
@@ -2614,14 +2672,14 @@ Security fixes:
2614
2672
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2615
2673
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2616
2674
 
2617
- Bug fixes:
2675
+ ## Bug fixes:
2618
2676
 
2619
2677
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
2620
2678
  #625 by elarkin
2621
2679
 
2622
- === 2.0.7 / 2013-08-15
2680
+ # 2.0.7 / 2013-08-15
2623
2681
 
2624
- Bug fixes:
2682
+ ## Bug fixes:
2625
2683
 
2626
2684
  * Extensions may now be built in parallel (therefore gems may be installed in
2627
2685
  parallel). Bug #607 by Hemant Kumar.
@@ -2631,9 +2689,9 @@ Bug fixes:
2631
2689
  Patches by Yui Naruse and Koichi Sasada.
2632
2690
  * Fixed documentation for Kernel#require.
2633
2691
 
2634
- === 2.0.6 / 2013-07-24
2692
+ # 2.0.6 / 2013-07-24
2635
2693
 
2636
- Bug fixes:
2694
+ ## Bug fixes:
2637
2695
 
2638
2696
  * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
2639
2697
  #593 by Blargel.
@@ -2645,14 +2703,14 @@ Bug fixes:
2645
2703
  Bug #599 by Chris Riesbeck
2646
2704
  * Restored default of remote search to `gem search`.
2647
2705
 
2648
- === 2.0.5 / 2013-07-11
2706
+ # 2.0.5 / 2013-07-11
2649
2707
 
2650
2708
  * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
2651
2709
  Zachary Salzbank.
2652
2710
 
2653
- === 2.0.4 / 2013-07-09
2711
+ # 2.0.4 / 2013-07-09
2654
2712
 
2655
- Bug fixes:
2713
+ ## Bug fixes:
2656
2714
 
2657
2715
  * Fixed error caused by gem install not finding the right platform for your
2658
2716
  platform. Bug #576 by John Anderson
@@ -2691,9 +2749,9 @@ Bug fixes:
2691
2749
  * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
2692
2750
  r41148 by Yui Naruse
2693
2751
 
2694
- === 2.0.3 / 2013-03-11
2752
+ # 2.0.3 / 2013-03-11
2695
2753
 
2696
- Bug fixes:
2754
+ ## Bug fixes:
2697
2755
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2698
2756
  #506 by André Arko
2699
2757
  * Use File.realpath to remove extra / while checking if files are
@@ -2708,17 +2766,17 @@ Bug fixes:
2708
2766
  * Fixed default gem key and cert locations. Pull request #511 by Samuel
2709
2767
  Cochran.
2710
2768
 
2711
- === 2.0.2 / 2013-03-06
2769
+ # 2.0.2 / 2013-03-06
2712
2770
 
2713
- Bug fixes:
2771
+ ## Bug fixes:
2714
2772
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2715
2773
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2716
2774
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
2717
2775
  * Fixed HTTP to HTTPS upgrade for rubygems.org.
2718
2776
 
2719
- === 2.0.1 / 2013-03-05
2777
+ # 2.0.1 / 2013-03-05
2720
2778
 
2721
- Bug fixes:
2779
+ ## Bug fixes:
2722
2780
  * Lazily load RubyGems.org API credentials to avoid failure during
2723
2781
  RubyGems installation. Bug #465 by Isaac Sanders.
2724
2782
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2740,7 +2798,7 @@ Bug fixes:
2740
2798
  Ruby bug #7713 by nobu
2741
2799
  * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
2742
2800
 
2743
- === 2.0.0 / 2013-02-24
2801
+ # 2.0.0 / 2013-02-24
2744
2802
 
2745
2803
  RubyGems 2.0 includes several new features and many breaking changes. Some of
2746
2804
  these changes will cause existing software to break. These changes are a
@@ -2752,7 +2810,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2752
2810
 
2753
2811
  Changes since RubyGems 1.8.25 (including past pre-releases):
2754
2812
 
2755
- Breaking changes:
2813
+ ## Breaking changes:
2756
2814
 
2757
2815
  * Deprecated Gem.unresolved_deps in favor of
2758
2816
  Gem::Specification.unresolved_deps
@@ -2774,7 +2832,7 @@ Breaking changes:
2774
2832
  * Removed support for Ruby 1.9.1
2775
2833
  * Removed many deprecated methods
2776
2834
 
2777
- Enhancements:
2835
+ ## Enhancements:
2778
2836
 
2779
2837
  * Improved support for default gems shipping with ruby 2.0.0+
2780
2838
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2834,7 +2892,7 @@ Enhancements:
2834
2892
  GEM_HOME
2835
2893
  * When building gems with non-world-readable files a warning is shown.
2836
2894
 
2837
- Bug fixes:
2895
+ ## Bug fixes:
2838
2896
  * Gem.refresh now maintains the active gem list. Clearing the list would
2839
2897
  cause double-loads which would cause other bugs. Pull Request #427 by
2840
2898
  Jeremy Evans
@@ -2891,7 +2949,7 @@ Bug fixes:
2891
2949
 
2892
2950
  Changes since RubyGems 2.0.0.rc.2:
2893
2951
 
2894
- Bug fixes:
2952
+ ## Bug fixes:
2895
2953
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2896
2954
  #450 by Jeremy Kemper
2897
2955
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2904,48 +2962,48 @@ Bug fixes:
2904
2962
  * Fixed verification of gems at LowSecurity due to missing signature.
2905
2963
  Thanks to André Arko.
2906
2964
 
2907
- === 2.0.0.rc.2 / 2013-02-08
2965
+ # 2.0.0.rc.2 / 2013-02-08
2908
2966
 
2909
- Bug fixes:
2967
+ ## Bug fixes:
2910
2968
  * Fixed signature verification of gems which was broken only on master.
2911
2969
  Thanks to Brian Buchanan.
2912
2970
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
2913
2971
  André Arko.
2914
2972
 
2915
- === 2.0.0.rc.1 / 2013-01-08
2973
+ # 2.0.0.rc.1 / 2013-01-08
2916
2974
 
2917
- Enhancements:
2975
+ ## Enhancements:
2918
2976
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2919
2977
  prerelease versions of RubyGems cannot push gems.
2920
2978
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2921
2979
  #419 by Erik Hollensbe
2922
2980
 
2923
- Bug fixes:
2981
+ ## Bug fixes:
2924
2982
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2925
2983
  #418 by André Arko
2926
2984
  * Gem installation will fail if RubyGems cannot load the specification from
2927
2985
  the gem. Bug #419 by Erik Hollensbe
2928
2986
 
2929
- === 2.0.0.preview2.2 / 2012-12-14
2987
+ # 2.0.0.preview2.2 / 2012-12-14
2930
2988
 
2931
- Enhancements:
2989
+ ## Enhancements:
2932
2990
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2933
2991
  * Removed rubyforge page from gem list output
2934
2992
 
2935
- Bug fixes:
2993
+ ## Bug fixes:
2936
2994
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2937
2995
  #413 by Jeremy Kemper.
2938
2996
 
2939
- === 2.0.0.preview2.1 / 2012-12-08
2997
+ # 2.0.0.preview2.1 / 2012-12-08
2940
2998
 
2941
- Enhancements:
2999
+ ## Enhancements:
2942
3000
  * Gem::DependencyInstaller now passes build_args down to the installer.
2943
3001
  Pull Request #412 by Sam Rawlins.
2944
3002
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2945
3003
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2946
3004
  Skipper.
2947
3005
 
2948
- Bug fixes:
3006
+ ## Bug fixes:
2949
3007
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2950
3008
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2951
3009
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2957,13 +3015,13 @@ Bug fixes:
2957
3015
  * gem install now ignores directories that match the gem to install. Bug
2958
3016
  #407 by Santiago Pastorino.
2959
3017
 
2960
- === 2.0.0.preview2 / 2012-12-01
3018
+ # 2.0.0.preview2 / 2012-12-01
2961
3019
 
2962
3020
  This release contains two commits not present in Ruby 2.0.0.preview2. One
2963
3021
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2964
3022
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2965
3023
 
2966
- Breaking changes:
3024
+ ## Breaking changes:
2967
3025
 
2968
3026
  * Deprecated Gem.unresolved_deps in favor of
2969
3027
  Gem::Specification.unresolved_deps
@@ -2985,7 +3043,7 @@ Breaking changes:
2985
3043
  * Removed support for Ruby 1.9.1
2986
3044
  * Removed many deprecated methods
2987
3045
 
2988
- Enhancements:
3046
+ ## Enhancements:
2989
3047
 
2990
3048
  * Improved support for default gems shipping with ruby 2.0.0+
2991
3049
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -3036,7 +3094,7 @@ Enhancements:
3036
3094
  GEM_HOME
3037
3095
  * When building gems with non-world-readable files a warning is shown.
3038
3096
 
3039
- Bug fixes:
3097
+ ## Bug fixes:
3040
3098
 
3041
3099
  * Added PID to setup bin_file while installing RubyGems to protect against
3042
3100
  errors. Fixes #328 by ConradIrwin
@@ -3077,17 +3135,17 @@ Bug fixes:
3077
3135
  * URI scheme matching is no longer case-sensitive. Fixes #322
3078
3136
  * ext/builder now checks $MAKE as well as $make (okkez)
3079
3137
 
3080
- === 1.8.29 / 2013-11-23
3138
+ # 1.8.29 / 2013-11-23
3081
3139
 
3082
- Bug fixes:
3140
+ ## Bug fixes:
3083
3141
 
3084
3142
  * Fixed installation when the LANG environment variable is empty.
3085
3143
  * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
3086
3144
  cloudfront.
3087
3145
 
3088
- === 1.8.28 / 2013-10-08
3146
+ # 1.8.28 / 2013-10-08
3089
3147
 
3090
- Bug fixes:
3148
+ ## Bug fixes:
3091
3149
 
3092
3150
  * Added the Verisign Class 3 Public Primary Certification Authority G5
3093
3151
  certificate and its intermediary to follow the s3.amazonaws.com certificate
@@ -3097,7 +3155,7 @@ Bug fixes:
3097
3155
  * Added test for missing certificates for https://s3.amazonaws.com or
3098
3156
  https://rubygems.org. Pull request #673 by Hannes Georg.
3099
3157
 
3100
- === 1.8.27 / 2013-09-24
3158
+ # 1.8.27 / 2013-09-24
3101
3159
 
3102
3160
  Security fixes:
3103
3161
 
@@ -3106,7 +3164,7 @@ Security fixes:
3106
3164
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3107
3165
  1.8.23.2 (for Ruby 1.9.3).
3108
3166
 
3109
- === 1.8.26 / 2013-09-09
3167
+ # 1.8.26 / 2013-09-09
3110
3168
 
3111
3169
  Security fixes:
3112
3170
 
@@ -3115,13 +3173,13 @@ Security fixes:
3115
3173
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3116
3174
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3117
3175
 
3118
- Bug fixes:
3176
+ ## Bug fixes:
3119
3177
 
3120
3178
  * Fixed editing of a Makefile with 8-bit characters. Fixes #181
3121
3179
 
3122
- === 1.8.25 / 2013-01-24
3180
+ # 1.8.25 / 2013-01-24
3123
3181
 
3124
- Bug fixes:
3182
+ ## Bug fixes:
3125
3183
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3126
3184
  #328 by ConradIrwin
3127
3185
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3130,14 +3188,14 @@ Bug fixes:
3130
3188
  * Fix missing load_yaml in YAML-related requirement.rb code.
3131
3189
  * Manually backport encoding-aware YAML gemspec
3132
3190
 
3133
- === 1.8.24 / 2012-04-27
3191
+ # 1.8.24 / 2012-04-27
3134
3192
 
3135
- Bug fixes:
3193
+ ## Bug fixes:
3136
3194
 
3137
3195
  * Install the .pem files properly. Fixes #320
3138
3196
  * Remove OpenSSL dependency from the http code path
3139
3197
 
3140
- === 1.8.23.2 / 2013-09-24
3198
+ # 1.8.23.2 / 2013-09-24
3141
3199
 
3142
3200
  Security fixes:
3143
3201
 
@@ -3146,7 +3204,7 @@ Security fixes:
3146
3204
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3147
3205
  1.8.23.2 (for Ruby 1.9.3).
3148
3206
 
3149
- === 1.8.23.1 / 2013-09-09
3207
+ # 1.8.23.1 / 2013-09-09
3150
3208
 
3151
3209
  Security fixes:
3152
3210
 
@@ -3155,7 +3213,7 @@ Security fixes:
3155
3213
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3156
3214
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3157
3215
 
3158
- === 1.8.23 / 2012-04-19
3216
+ # 1.8.23 / 2012-04-19
3159
3217
 
3160
3218
  This release increases the security used when RubyGems is talking to
3161
3219
  an https server. If you use a custom RubyGems server over SSL, this
@@ -3175,49 +3233,49 @@ Security fixes:
3175
3233
  * Disallow redirects from https to http
3176
3234
  * Turn on verification of server SSL certs
3177
3235
 
3178
- Enhancements:
3236
+ ## Enhancements:
3179
3237
  * Add --clear-sources to fetch
3180
3238
 
3181
- Bug fixes:
3239
+ ## Bug fixes:
3182
3240
  * Use File.identical? to check if two files are the same.
3183
3241
  * Fixed init_with warning when using psych
3184
3242
 
3185
- === 1.8.22 / 2012-04-13
3243
+ # 1.8.22 / 2012-04-13
3186
3244
 
3187
- Bug fixes:
3245
+ ## Bug fixes:
3188
3246
 
3189
3247
  * Workaround for psych/syck YAML date parsing issue
3190
3248
  * Don't trust the encoding of ARGV. Fixes #307
3191
3249
  * Quiet default warnings about missing spec variables
3192
3250
  * Read a binary file properly (windows fix)
3193
3251
 
3194
- === 1.8.21 / 2012-03-22
3252
+ # 1.8.21 / 2012-03-22
3195
3253
 
3196
- Bug fixes:
3254
+ ## Bug fixes:
3197
3255
 
3198
3256
  * Add workaround for buggy yaml output from 1.9.2
3199
3257
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3200
3258
 
3201
- === 1.8.20 / 2012-03-21
3259
+ # 1.8.20 / 2012-03-21
3202
3260
 
3203
- Bug fixes:
3261
+ ## Bug fixes:
3204
3262
 
3205
3263
  * Add --force to `gem build` to skip validation. Fixes #297
3206
3264
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
3207
3265
  * Treat the source as a proper url base. Fixes #304
3208
3266
  * Warn when updating the specs cache fails. Fixes #300
3209
3267
 
3210
- === 1.8.19 / 2012-03-14
3268
+ # 1.8.19 / 2012-03-14
3211
3269
 
3212
- Bug fixes:
3270
+ ## Bug fixes:
3213
3271
 
3214
3272
  * Handle loading psych vs syck properly. Fixes #298
3215
3273
  * Make sure Date objects don't leak in via Marshal
3216
3274
  * Perform Date => Time coercion on yaml loading. Fixes #266
3217
3275
 
3218
- === 1.8.18 / 2012-03-11
3276
+ # 1.8.18 / 2012-03-11
3219
3277
 
3220
- Bug fixes:
3278
+ ## Bug fixes:
3221
3279
 
3222
3280
  * Use Psych API to emit more compatible YAML
3223
3281
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3225,14 +3283,14 @@ Bug fixes:
3225
3283
  * Search everywhere for a spec for `gem spec`. Fixes #288
3226
3284
  * Fix Gem.all_load_path. Fixes #171
3227
3285
 
3228
- === 1.8.17 / 2012-02-17
3286
+ # 1.8.17 / 2012-02-17
3229
3287
 
3230
- Enhancements:
3288
+ ## Enhancements:
3231
3289
 
3232
3290
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3233
3291
  * Add a default for where to install rubygems itself
3234
3292
 
3235
- Bug fixes:
3293
+ ## Bug fixes:
3236
3294
 
3237
3295
  * Fixed gem loading issue caused by dependencies not resolving.
3238
3296
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3240,59 +3298,59 @@ Bug fixes:
3240
3298
  * Define SUCKAGE better, ie only MRI 1.9.2
3241
3299
  * Propagate env-shebang to the pristine command if set for install.
3242
3300
 
3243
- === 1.8.16 / 2012-02-12
3301
+ # 1.8.16 / 2012-02-12
3244
3302
 
3245
- Bug fixes:
3303
+ ## Bug fixes:
3246
3304
 
3247
3305
  * Fix gem specification loading when encoding is not UTF-8. #146
3248
3306
  * Allow group writable if umask allows it already.
3249
3307
  * Uniquify the spec list based on directory order priority
3250
3308
 
3251
- === 1.8.15 / 2012-01-06
3309
+ # 1.8.15 / 2012-01-06
3252
3310
 
3253
- Bug fixes:
3311
+ ## Bug fixes:
3254
3312
 
3255
3313
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3256
3314
 
3257
- === 1.8.14 / 2012-01-05
3315
+ # 1.8.14 / 2012-01-05
3258
3316
 
3259
- Bug fixes:
3317
+ ## Bug fixes:
3260
3318
 
3261
3319
  * Ignore old/bad cache data in Version
3262
3320
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3263
3321
 
3264
- === 1.8.13 / 2011-12-21
3322
+ # 1.8.13 / 2011-12-21
3265
3323
 
3266
- Bug fixes:
3324
+ ## Bug fixes:
3267
3325
 
3268
3326
  * Check loaded_specs properly when trying to satisfy a dep
3269
3327
 
3270
- Enhancements:
3328
+ ## Enhancements:
3271
3329
 
3272
3330
  * Remove using #loaded_path? for performance
3273
3331
  * Remove Zlib workaround for Windows build.
3274
3332
 
3275
- === 1.8.12 / 2011-12-02
3333
+ # 1.8.12 / 2011-12-02
3276
3334
 
3277
- Bug fixes:
3335
+ ## Bug fixes:
3278
3336
 
3279
3337
  * Handle more cases where Syck's DefaultKey showed up in requirements
3280
3338
  and wasn't cleaned out.
3281
3339
 
3282
- === 1.8.11 / 2011-10-03
3340
+ # 1.8.11 / 2011-10-03
3283
3341
 
3284
- Bug fixes:
3342
+ ## Bug fixes:
3285
3343
 
3286
3344
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3287
3345
  namespace.
3288
3346
 
3289
- === 1.8.10 / 2011-08-25
3347
+ # 1.8.10 / 2011-08-25
3290
3348
 
3291
3349
  RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3292
3350
  executing code when their specification is loaded. See
3293
3351
  https://github.com/rubygems/rubygems/pull/165 for details.
3294
3352
 
3295
- Bug fixes:
3353
+ ## Bug fixes:
3296
3354
 
3297
3355
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3298
3356
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3303,21 +3361,21 @@ Bug fixes:
3303
3361
  * Fixed Syck DefaultKey infecting ruby-format specifications.
3304
3362
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
3305
3363
 
3306
- === 1.8.9 / 2011-08-23
3364
+ # 1.8.9 / 2011-08-23
3307
3365
 
3308
- Bug fixes:
3366
+ ## Bug fixes:
3309
3367
 
3310
3368
  * Fixed uninstalling multiple gems using `gem uninstall`
3311
3369
  * Gem.use_paths splatted to take multiple paths! Issue #148
3312
3370
 
3313
- === 1.8.8 / 2011-08-11
3371
+ # 1.8.8 / 2011-08-11
3314
3372
 
3315
- Bug fixes:
3373
+ ## Bug fixes:
3316
3374
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3317
3375
 
3318
- === 1.8.7 / 2011-08-04
3376
+ # 1.8.7 / 2011-08-04
3319
3377
 
3320
- Bug fixes:
3378
+ ## Bug fixes:
3321
3379
  * Added missing require for `gem uninstall --format-executable`
3322
3380
  * The correct name of the executable being uninstalled is now displayed with
3323
3381
  --format-executable
@@ -3329,14 +3387,14 @@ Bug fixes:
3329
3387
  * Gem repository directories are no longer created world-writable. Patch by
3330
3388
  Sakuro OZAWA. Ruby Bug #4930
3331
3389
 
3332
- === 1.8.6 / 2011-07-25
3390
+ # 1.8.6 / 2011-07-25
3333
3391
 
3334
- Enhancements:
3392
+ ## Enhancements:
3335
3393
 
3336
3394
  * Add autorequires and delay startup of RubyGems until require is called.
3337
3395
  See Ruby bug #4962
3338
3396
 
3339
- Bug fixes:
3397
+ ## Bug fixes:
3340
3398
 
3341
3399
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3342
3400
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3348,27 +3406,27 @@ Bug fixes:
3348
3406
  * Handle the Syck DefaultKey problem once and for all.
3349
3407
  * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
3350
3408
 
3351
- === 1.8.5 / 2011-05-31
3409
+ # 1.8.5 / 2011-05-31
3352
3410
 
3353
- Enhancements:
3411
+ ## Enhancements:
3354
3412
 
3355
3413
  * The -u option to 'update local source cache' is official deprecated.
3356
3414
  * Remove has_rdoc deprecations from Specification.
3357
3415
 
3358
- Bug fixes:
3416
+ ## Bug fixes:
3359
3417
 
3360
3418
  * Handle bad specs more gracefully.
3361
3419
  * Reset any Gem paths changed in the installer.
3362
3420
 
3363
- === 1.8.4 / 2011-05-25
3421
+ # 1.8.4 / 2011-05-25
3364
3422
 
3365
- Enhancements:
3423
+ ## Enhancements:
3366
3424
 
3367
3425
  * Removed default_executable deprecations from Specification.
3368
3426
 
3369
- === 1.8.3 / 2011-05-19
3427
+ # 1.8.3 / 2011-05-19
3370
3428
 
3371
- Bug fixes:
3429
+ ## Bug fixes:
3372
3430
 
3373
3431
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3374
3432
  Shota Fukumori
@@ -3377,33 +3435,33 @@ Bug fixes:
3377
3435
  * Fixed some bad calls left behind after rolling out some refactorings.
3378
3436
  * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
3379
3437
 
3380
- === 1.8.2 / 2011-05-11
3438
+ # 1.8.2 / 2011-05-11
3381
3439
 
3382
- Enhancements:
3440
+ ## Enhancements:
3383
3441
 
3384
3442
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3385
3443
  * Print out a warning about missing executables.
3386
3444
 
3387
- Bug fixes:
3445
+ ## Bug fixes:
3388
3446
 
3389
3447
  * Added missing requires to fix various upgrade issues.
3390
3448
  * `gem pristine` respects multiple gem repositories.
3391
3449
  * setup.rb now execs with --disable-gems when possible
3392
3450
 
3393
- === 1.8.1 / 2011-05-05
3451
+ # 1.8.1 / 2011-05-05
3394
3452
 
3395
- Enhancements:
3453
+ ## Enhancements:
3396
3454
 
3397
3455
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3398
3456
 
3399
- Bug fixes:
3457
+ ## Bug fixes:
3400
3458
 
3401
3459
  * Typo on Indexer rendered it useless on Windows
3402
3460
  * gem dep can fetch remote dependencies for non-latest gems again.
3403
3461
  * gem uninstall with multiple versions no longer crashes with ArgumentError
3404
3462
  * Always use binary mode for File.open to keep Windows happy
3405
3463
 
3406
- === 1.8.0 / 2011-04-34
3464
+ # 1.8.0 / 2011-04-34
3407
3465
 
3408
3466
  This release focused on properly encapsulating functionality. Most of this
3409
3467
  work focused on moving functionality out of Gem::SourceIndex and
@@ -3418,7 +3476,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3418
3476
  --build-arg` to regenerate a gem with an extension where it requires special
3419
3477
  build arguments.
3420
3478
 
3421
- Deprecations:
3479
+ ## Deprecations:
3422
3480
 
3423
3481
  * DependencyList.from_source_index deprecated the source_index argument.
3424
3482
  * Deprecated Dependency.new(/regex/).
@@ -3439,7 +3497,7 @@ Deprecations:
3439
3497
  * Deprecated all of Gem::GemPathSearcher.
3440
3498
  * Deprecated Gem::Specification#default_executable.
3441
3499
 
3442
- Enhancements:
3500
+ ## Enhancements:
3443
3501
 
3444
3502
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3445
3503
  Gem::SourceIndex is completely disconnected from Gem::Specification
@@ -3491,7 +3549,7 @@ Enhancements:
3491
3549
  extensions.
3492
3550
  * `gem pristine` can now restore multiple gems.
3493
3551
 
3494
- Bug fixes:
3552
+ ## Bug fixes:
3495
3553
 
3496
3554
  * DependencyInstaller passed around a source_index instance but used
3497
3555
  Gem.source_index.
@@ -3503,15 +3561,15 @@ Bug fixes:
3503
3561
  * `gem pristine` can now restore non-latest gems where the cached gem was
3504
3562
  removed.
3505
3563
 
3506
- === 1.7.1 / 2011-03-32
3564
+ # 1.7.1 / 2011-03-32
3507
3565
 
3508
- Bug fixes:
3566
+ ## Bug fixes:
3509
3567
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3510
3568
  `rake check_manifest` showing a diff would not exit with an error.)
3511
3569
 
3512
- === 1.7.0 / 2011-03-32
3570
+ # 1.7.0 / 2011-03-32
3513
3571
 
3514
- Deprecations:
3572
+ ## Deprecations:
3515
3573
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3516
3574
  cache.
3517
3575
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3523,7 +3581,7 @@ Deprecations:
3523
3581
  test_suite_file(=).
3524
3582
  * Deprecated Specification#has_rdoc= and default_executable=
3525
3583
 
3526
- Enhancements:
3584
+ ## Enhancements:
3527
3585
  * Added stupid simple deprecation module.
3528
3586
  * Added --spec option to `gem unpack` to output a gem's original metadata
3529
3587
  * Added packaging option to Specification#validate
@@ -3555,7 +3613,7 @@ Enhancements:
3555
3613
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3556
3614
  * UpdateCommand#which_to_update now takes an optional system argument.
3557
3615
 
3558
- Bug fixes:
3616
+ ## Bug fixes:
3559
3617
  * Added missing remote fetcher require to pristine command (aarnell)
3560
3618
  * Building gems now checks to ensure all required fields are non-nil
3561
3619
  * Fix option parser when summary is nil.
@@ -3571,17 +3629,17 @@ Bug fixes:
3571
3629
  Elias Baixas
3572
3630
  * `gem update` now uniq's command line arguments.
3573
3631
 
3574
- === 1.6.2 / 2011-03-08
3632
+ # 1.6.2 / 2011-03-08
3575
3633
 
3576
- Bug fixes:
3634
+ ## Bug fixes:
3577
3635
 
3578
3636
  * require of an activated gem could cause activation conflicts. Fixes
3579
3637
  Bug #29056 by Dave Verwer.
3580
3638
  * `gem outdated` now works with up-to-date prerelease gems.
3581
3639
 
3582
- === 1.6.1 / 2011-03-03
3640
+ # 1.6.1 / 2011-03-03
3583
3641
 
3584
- Bug fixes:
3642
+ ## Bug fixes:
3585
3643
 
3586
3644
  * Installation no longer fails when a dependency from a version that won't be
3587
3645
  installed is unsatisfied.
@@ -3590,9 +3648,9 @@ Bug fixes:
3590
3648
  * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
3591
3649
  * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
3592
3650
 
3593
- === 1.6.0 / 2011-02-29
3651
+ # 1.6.0 / 2011-02-29
3594
3652
 
3595
- Deprecations:
3653
+ ## Deprecations:
3596
3654
 
3597
3655
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3598
3656
  'thread' to their applications.
@@ -3601,7 +3659,7 @@ Deprecations:
3601
3659
  * Gem::LoadError#version_requirements has been removed. Use
3602
3660
  Gem::LoadError#requirement.
3603
3661
 
3604
- Enhancements:
3662
+ ## Enhancements:
3605
3663
 
3606
3664
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3607
3665
  * Gem::LoadError#version_requirement has been removed. Use
@@ -3629,7 +3687,7 @@ Enhancements:
3629
3687
  locally cached gem specifications.
3630
3688
  * SpecFetcher.fetch_spec can now take a string source_uri.
3631
3689
 
3632
- Bug fixes:
3690
+ ## Bug fixes:
3633
3691
 
3634
3692
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3635
3693
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3642,28 +3700,28 @@ Bug fixes:
3642
3700
  * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
3643
3701
  * Gem::Uninstaller now respects --format-executable.
3644
3702
 
3645
- === 1.5.3 / 2011-02-26
3703
+ # 1.5.3 / 2011-02-26
3646
3704
 
3647
- Bug fixes:
3705
+ ## Bug fixes:
3648
3706
 
3649
3707
  * Fix for a bug in Syck which causes install failures for gems packaged with
3650
3708
  Psych. Bug #28965 by Aaron Patterson.
3651
3709
 
3652
- === 1.5.2 / 2011-02-10
3710
+ # 1.5.2 / 2011-02-10
3653
3711
 
3654
- Bug fixes:
3712
+ ## Bug fixes:
3655
3713
 
3656
3714
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3657
3715
 
3658
- === 1.5.1 / 2011-02-09
3716
+ # 1.5.1 / 2011-02-09
3659
3717
 
3660
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3718
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3661
3719
 
3662
- Enhancements:
3720
+ ## Enhancements:
3663
3721
 
3664
3722
  * Added ability to do gem update --system X.Y.Z.
3665
3723
 
3666
- Bug fixes:
3724
+ ## Bug fixes:
3667
3725
 
3668
3726
  * Scrub !!null YAML from 1.9.2 (install and build).
3669
3727
  * Added missing requires for user_interaction.
@@ -3672,11 +3730,11 @@ Bug fixes:
3672
3730
  * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
3673
3731
  * RubyGems now enforces ruby 1.8.7 or newer.
3674
3732
 
3675
- === 1.5.0 / 2011-01-31
3733
+ # 1.5.0 / 2011-01-31
3676
3734
 
3677
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3735
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3678
3736
 
3679
- Enhancements:
3737
+ ## Enhancements:
3680
3738
 
3681
3739
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3682
3740
  * Merged huge 1.3.7/ruby-core changes to master.
@@ -3691,7 +3749,7 @@ Enhancements:
3691
3749
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3692
3750
  Erik Hollensbe.
3693
3751
 
3694
- Bug fixes:
3752
+ ## Bug fixes:
3695
3753
 
3696
3754
  * `gem update` was implicitly doing --system.
3697
3755
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3703,25 +3761,25 @@ Bug fixes:
3703
3761
  Erik Hollensbe.
3704
3762
  * rubygems-update lists its development dependencies again
3705
3763
 
3706
- === 1.4.2 / 2011-01-06
3764
+ # 1.4.2 / 2011-01-06
3707
3765
 
3708
- Bug fixes:
3766
+ ## Bug fixes:
3709
3767
 
3710
3768
  * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
3711
3769
  * Fixed Gem.find_files.
3712
3770
  * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
3713
3771
 
3714
- === 1.4.1 / 2010-12-31
3772
+ # 1.4.1 / 2010-12-31
3715
3773
 
3716
3774
  Since apparently nobody reads my emails, blog posts or the README:
3717
3775
 
3718
3776
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3719
3777
 
3720
- Bug fixes:
3778
+ ## Bug fixes:
3721
3779
 
3722
3780
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3723
3781
 
3724
- === 1.4.0 / 2010-12-30
3782
+ # 1.4.0 / 2010-12-30
3725
3783
 
3726
3784
  NOTE: In order to better maintain rubygems and to get it in sync with
3727
3785
  the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
@@ -3731,7 +3789,7 @@ You have been warned!
3731
3789
 
3732
3790
  NOTE: We've switched to git/github. See README.rdoc for details.
3733
3791
 
3734
- Features:
3792
+ ## Features:
3735
3793
 
3736
3794
  * Added --launch option to `gem server`. (gthiesfeld)
3737
3795
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3741,7 +3799,7 @@ Features:
3741
3799
  * --source is now additive with your current sources.
3742
3800
  Use --clear-sources first to maintain previous behavior.
3743
3801
 
3744
- Bug fixes:
3802
+ ## Bug fixes:
3745
3803
 
3746
3804
  * Dependency "~>"s now respect lower-bound prerelease versions.
3747
3805
  * Ensure the gem directories exist on download.
@@ -3752,7 +3810,7 @@ Bug fixes:
3752
3810
  Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
3753
3811
  * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
3754
3812
 
3755
- === 1.3.7 / 2010-05-13
3813
+ # 1.3.7 / 2010-05-13
3756
3814
 
3757
3815
  NOTE:
3758
3816
 
@@ -3763,7 +3821,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3763
3821
 
3764
3822
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3765
3823
 
3766
- Features:
3824
+ ## Features:
3767
3825
 
3768
3826
  * `gem` commands
3769
3827
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3782,7 +3840,7 @@ Features:
3782
3840
  in 1.3.6)
3783
3841
  * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
3784
3842
 
3785
- Bug fixes:
3843
+ ## Bug fixes:
3786
3844
 
3787
3845
  * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
3788
3846
  Roger Pack.
@@ -3794,9 +3852,9 @@ Bug fixes:
3794
3852
  * Gem::PackageTask depends on the package dir like the other rake package
3795
3853
  tasks so dependencies can be hooked up correctly.
3796
3854
 
3797
- === 1.3.6 / 2010-02-17
3855
+ # 1.3.6 / 2010-02-17
3798
3856
 
3799
- Features:
3857
+ ## Features:
3800
3858
 
3801
3859
  * `gem` commands
3802
3860
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3808,7 +3866,7 @@ Features:
3808
3866
  force rebuilding. Patch #25982 by Akinori MUSHA.
3809
3867
  * Capital letters are now allowed in prerelease versions.
3810
3868
 
3811
- Bug fixes:
3869
+ ## Bug fixes:
3812
3870
 
3813
3871
  * Development deps are no longer added to rubygems-update gem so older
3814
3872
  versions can update successfully.
@@ -3827,7 +3885,7 @@ Bug fixes:
3827
3885
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3828
3886
  Patch #27409 by Jakub Šťastný.
3829
3887
 
3830
- Deprecations:
3888
+ ## Deprecations:
3831
3889
 
3832
3890
  * lib/rubygems/timer.rb has been removed.
3833
3891
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3836,23 +3894,23 @@ Deprecations:
3836
3894
  * Gem::manage_gems was removed in 1.3.3.
3837
3895
  * Time::today was removed in 1.3.3.
3838
3896
 
3839
- === 1.3.5 / 2009-07-21
3897
+ # 1.3.5 / 2009-07-21
3840
3898
 
3841
- Bug fixes:
3899
+ ## Bug fixes:
3842
3900
 
3843
3901
  * Fix use of prerelease gems.
3844
3902
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3845
3903
 
3846
- Deprecations:
3904
+ ## Deprecations:
3847
3905
 
3848
3906
  * Bulk index update is no longer supported (the code currently remains, but not
3849
3907
  the tests)
3850
3908
  * Gem::manage_gems was removed in 1.3.3.
3851
3909
  * Time::today was removed in 1.3.3.
3852
3910
 
3853
- === 1.3.4 / 2009-05-03
3911
+ # 1.3.4 / 2009-05-03
3854
3912
 
3855
- Bug fixes:
3913
+ ## Bug fixes:
3856
3914
 
3857
3915
  * Fixed various warnings
3858
3916
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3863,16 +3921,16 @@ Bug fixes:
3863
3921
  drives. Bug #25882 by Lars Christensen
3864
3922
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3865
3923
 
3866
- Deprecations:
3924
+ ## Deprecations:
3867
3925
 
3868
3926
  * Bulk index update is no longer supported (the code currently remains, but not
3869
3927
  the tests)
3870
3928
  * Gem::manage_gems was removed in 1.3.3.
3871
3929
  * Time::today was removed in 1.3.3.
3872
3930
 
3873
- === 1.3.3 / 2009-05-04
3931
+ # 1.3.3 / 2009-05-04
3874
3932
 
3875
- Features:
3933
+ ## Features:
3876
3934
 
3877
3935
  * `gem server` allows port names (from /etc/services) with --port.
3878
3936
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3882,7 +3940,7 @@ Features:
3882
3940
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3883
3941
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3884
3942
 
3885
- Bug fixes:
3943
+ ## Bug fixes:
3886
3944
 
3887
3945
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3888
3946
  Eisenberg.
@@ -3904,15 +3962,15 @@ Bug fixes:
3904
3962
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3905
3963
  reported by Alf Mikula.
3906
3964
 
3907
- Deprecations:
3965
+ ## Deprecations:
3908
3966
 
3909
3967
  * Gem::manage_gems has been removed.
3910
3968
  * Time::today has been removed early. There was no way to make it warn and be
3911
3969
  easy to override with user code.
3912
3970
 
3913
- === 1.3.2 / 2009-04-15
3971
+ # 1.3.2 / 2009-04-15
3914
3972
 
3915
- Features:
3973
+ ## Features:
3916
3974
 
3917
3975
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3918
3976
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3940,7 +3998,7 @@ Features:
3940
3998
  * Modern indicies can now be updated incrementally.
3941
3999
  * Legacy indicies can be updated separately from modern.
3942
4000
 
3943
- Bug fixes:
4001
+ ## Bug fixes:
3944
4002
 
3945
4003
  * Better gem activation error message. Patch #23082.
3946
4004
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3966,7 +4024,7 @@ Bug fixes:
3966
4024
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3967
4025
  Windows. Bug #22712.
3968
4026
 
3969
- Deprecations:
4027
+ ## Deprecations:
3970
4028
 
3971
4029
  * Gem::manage_gems has been removed.
3972
4030
  * Time::today will be removed in RubyGems 1.4.
@@ -3974,9 +4032,9 @@ Deprecations:
3974
4032
  Special thanks to Chad Wooley for backwards compatibility testing and Luis
3975
4033
  Lavena and Daniel Berger for continuing windows support.
3976
4034
 
3977
- === 1.3.1 / 2008-10-28
4035
+ # 1.3.1 / 2008-10-28
3978
4036
 
3979
- Bug fixes:
4037
+ ## Bug fixes:
3980
4038
 
3981
4039
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3982
4040
  issues related to no uid support under Windows.
@@ -3987,13 +4045,13 @@ Bug fixes:
3987
4045
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3988
4046
  * Silence PATH warning.
3989
4047
 
3990
- Deprecations:
4048
+ ## Deprecations:
3991
4049
 
3992
4050
  * Gem::manage_gems will be removed on or after March 2009.
3993
4051
 
3994
- === 1.3.0 / 2008-09-25
4052
+ # 1.3.0 / 2008-09-25
3995
4053
 
3996
- Features:
4054
+ ## Features:
3997
4055
 
3998
4056
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3999
4057
  stdout is not a TTY, except with --both.
@@ -4007,12 +4065,12 @@ Features:
4007
4065
  * RubyGems now updates the ri cache when the rdoc gem is installed and
4008
4066
  documentation is generated.
4009
4067
 
4010
- Deprecations:
4068
+ ## Deprecations:
4011
4069
 
4012
4070
  * Gem::manage_gems now warns when called. It will be removed on or after March
4013
4071
  2009.
4014
4072
 
4015
- Bug fixes:
4073
+ ## Bug fixes:
4016
4074
 
4017
4075
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
4018
4076
  Bug #20775 by Hemant Kumar.
@@ -4036,7 +4094,7 @@ Bug fixes:
4036
4094
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
4037
4095
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
4038
4096
 
4039
- Enhancements:
4097
+ ## Enhancements:
4040
4098
 
4041
4099
  * `gem help install` now describes _version_ argument to executable stubs
4042
4100
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4062,9 +4120,9 @@ Enhancements:
4062
4120
  * test/test_ext_configure_builder.rb
4063
4121
  * Locale-free patch by Yusuke Endoh [ruby-core:17444].
4064
4122
 
4065
- === 1.2.0 / 2008-06-21
4123
+ # 1.2.0 / 2008-06-21
4066
4124
 
4067
- Features:
4125
+ ## Features:
4068
4126
 
4069
4127
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4070
4128
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4083,7 +4141,7 @@ Features:
4083
4141
  * setup.rb now handles --vendor and --destdir for packagers
4084
4142
  * `gem stale` command that lists gems by last access time
4085
4143
 
4086
- Bug fixes:
4144
+ ## Bug fixes:
4087
4145
 
4088
4146
  * File modes from gems are now honored, patch #19737
4089
4147
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4098,7 +4156,7 @@ Bug fixes:
4098
4156
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4099
4157
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4100
4158
 
4101
- Enhancements:
4159
+ ## Enhancements:
4102
4160
 
4103
4161
  * setup.rb
4104
4162
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4117,9 +4175,9 @@ Enhancements:
4117
4175
  * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
4118
4176
  bug #7973
4119
4177
 
4120
- === 1.1.1 / 2008-04-11
4178
+ # 1.1.1 / 2008-04-11
4121
4179
 
4122
- Bug fixes:
4180
+ ## Bug fixes:
4123
4181
 
4124
4182
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4125
4183
  sitelibdir or libdir.
@@ -4134,9 +4192,9 @@ Bug fixes:
4134
4192
  * Gem::RemoteFetcher handles Errno::ECONNABORTED.
4135
4193
  * Printing of release notes fixed.
4136
4194
 
4137
- === 1.1.0 / 2008-03-29
4195
+ # 1.1.0 / 2008-03-29
4138
4196
 
4139
- Features:
4197
+ ## Features:
4140
4198
 
4141
4199
  * RubyGems now uses persistent connections on index updates. Index updates are
4142
4200
  much faster now.
@@ -4148,7 +4206,7 @@ Features:
4148
4206
  * `gem spec` now extracts specifications from .gem files.
4149
4207
  * `gem query --installed` to aid automation of checking for gems.
4150
4208
 
4151
- Bug fixes:
4209
+ ## Bug fixes:
4152
4210
 
4153
4211
  * RubyGems works with both Config and RbConfig now.
4154
4212
  * Executables are now cleaned upon uninstall.
@@ -4164,7 +4222,7 @@ Bug fixes:
4164
4222
  * Gem stub scripts on windows now work outside Gem.bindir.
4165
4223
  * `gem sources -r` now works without network access.
4166
4224
 
4167
- Enhancements:
4225
+ ## Enhancements:
4168
4226
 
4169
4227
  * RubyGems now requires Ruby > 1.8.3.
4170
4228
  * Release notes are now printed upon installation.
@@ -4175,26 +4233,26 @@ Enhancements:
4175
4233
 
4176
4234
  For a full list of changes to RubyGems, see the ChangeLog file.
4177
4235
 
4178
- === 1.0.1 / 2007-12-20
4236
+ # 1.0.1 / 2007-12-20
4179
4237
 
4180
- Bug fixes:
4238
+ ## Bug fixes:
4181
4239
 
4182
4240
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4183
4241
  * `gem build` on 1.8.3 fixed
4184
4242
 
4185
- Enhancements:
4243
+ ## Enhancements:
4186
4244
 
4187
4245
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4188
4246
  this is official in RubyGems 1.0.1.
4189
4247
 
4190
- === 1.0.0 / 2007-12-20
4248
+ # 1.0.0 / 2007-12-20
4191
4249
 
4192
- Features:
4250
+ ## Features:
4193
4251
 
4194
4252
  * RubyGems warns about various problems with gemspecs during gem building
4195
4253
  * More-consistent versioning for the RubyGems software
4196
4254
 
4197
- Enhancements:
4255
+ ## Enhancements:
4198
4256
 
4199
4257
  * Fixed various bugs and problems with installing gems on Windows
4200
4258
  * Fixed using `gem server` for installing gems
@@ -4208,7 +4266,7 @@ Enhancements:
4208
4266
  * `gem unpack` can now unpack into a specific directory with --target
4209
4267
  * OpenSSL is no longer required by default
4210
4268
 
4211
- Breaking changes:
4269
+ ## Breaking changes:
4212
4270
 
4213
4271
  * Kernel#require_gem has been removed
4214
4272
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4220,9 +4278,9 @@ Breaking changes:
4220
4278
  * Gem::Specification#autorequire= has been deprecated
4221
4279
  * Time::today will be removed in a future version
4222
4280
 
4223
- === 0.9.5 / 2007-11-19
4281
+ # 0.9.5 / 2007-11-19
4224
4282
 
4225
- Features:
4283
+ ## Features:
4226
4284
 
4227
4285
  * Platform support
4228
4286
  * Automatic installation of platform gems
@@ -4234,7 +4292,7 @@ Features:
4234
4292
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4235
4293
  with the One-Click Installer.
4236
4294
 
4237
- Enhancements:
4295
+ ## Enhancements:
4238
4296
 
4239
4297
  * Time::today is deprecated and will be removed at a future date
4240
4298
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4279,13 +4337,13 @@ Special thanks to:
4279
4337
  * Tom Copeland
4280
4338
  * Wilson Bilkovich
4281
4339
 
4282
- === 0.9.4 / 2007-05-23
4340
+ # 0.9.4 / 2007-05-23
4283
4341
 
4284
4342
  If you are experiencing problems with the source index (e.g. strange
4285
4343
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4286
4344
  messsage), we recommend upgrading to RubyGems 0.9.4.
4287
4345
 
4288
- Bug fixes:
4346
+ ## Bug fixes:
4289
4347
 
4290
4348
  * Several people have been experiencing problems with no method errors
4291
4349
  on the source index cache. The source index cache is now a bit more
@@ -4297,9 +4355,9 @@ Bug fixes:
4297
4355
  * Several sub-commands were accidentally dropped from the "gem" command.
4298
4356
  These commands have been restored.
4299
4357
 
4300
- === 0.9.3 / 2007-05-10
4358
+ # 0.9.3 / 2007-05-10
4301
4359
 
4302
- Bug fixes:
4360
+ ## Bug fixes:
4303
4361
 
4304
4362
  The ZLib library on Windows will occasionally complains about a buffer error
4305
4363
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4307,19 +4365,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
4307
4365
  have received several reports of the error occurring with ZLib 1.2.3, so we
4308
4366
  have permanently enabled the work around on all versions.
4309
4367
 
4310
- === 0.9.2 / 2007-02-05
4368
+ # 0.9.2 / 2007-02-05
4311
4369
 
4312
- Bug fixes:
4370
+ ## Bug fixes:
4313
4371
 
4314
4372
  * The "unpack" command now works properly.
4315
4373
  * User name and password are now passed properly to the authenticating
4316
4374
  proxy when downloading gems.
4317
4375
 
4318
- === 0.9.1 / 2007-01-16
4376
+ # 0.9.1 / 2007-01-16
4319
4377
 
4320
4378
  See ChangeLog
4321
4379
 
4322
- === 0.9.0 / 2006-06-28
4380
+ # 0.9.0 / 2006-06-28
4323
4381
 
4324
4382
  Finally, the much anticipated RubyGems version 0.9.0 is now available.
4325
4383
  This release includes a number of new features and bug fixes. The
@@ -4327,7 +4385,7 @@ number one change is that we can now download the gem index
4327
4385
  incrementally. This will greatly speed up the gem command when only a
4328
4386
  few gems are out of date.
4329
4387
 
4330
- Enhancements:
4388
+ ## Enhancements:
4331
4389
 
4332
4390
  * The gem index is now downloaded incrementally, only updating entries
4333
4391
  that are out of date. If more than 50 entries are out of date, we
@@ -4354,7 +4412,7 @@ Enhancements:
4354
4412
  * .rbw is now a supported suffix for RubyGem's custom require.
4355
4413
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4356
4414
 
4357
- Bug fixes:
4415
+ ## Bug fixes:
4358
4416
 
4359
4417
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4360
4418
  cross-Ruby version compatibility issues.
@@ -4366,7 +4424,7 @@ Bug fixes:
4366
4424
  * Fixed prefix handling for native expressions (patch by Aaron Patterson).
4367
4425
  * Fixed several Upgrade => Update typos.
4368
4426
 
4369
- === 0.8.11 / 2005-07-13
4427
+ # 0.8.11 / 2005-07-13
4370
4428
 
4371
4429
  * -y is a synonym for --include-dependencies.
4372
4430
  * Better handling of errors in the top level rescue clause.
@@ -4385,7 +4443,7 @@ Bug fixes:
4385
4443
  * Added David Glasser's install-from-mirror patch.
4386
4444
  * Additional internal structural cleanup and test reorganization.
4387
4445
 
4388
- === 0.8.10 / 2005-03-27
4446
+ # 0.8.10 / 2005-03-27
4389
4447
 
4390
4448
  * In multi-user environments, it is common to supply multiple versions of gems
4391
4449
  (for example Rails), allowing individual users to select the version of the
@@ -4396,16 +4454,16 @@ Bug fixes:
4396
4454
  installed, then the "gem update --system" command will download a new
4397
4455
  update, but install the latest update prior to the download.
4398
4456
 
4399
- === 0.8.9
4457
+ # 0.8.9
4400
4458
 
4401
4459
  Never released
4402
4460
 
4403
- === 0.8.8 / 2005-03-14
4461
+ # 0.8.8 / 2005-03-14
4404
4462
 
4405
4463
  * Moved the master definition of class Requirement back under version.
4406
4464
  Kept the body of Requirement under Gem.
4407
4465
 
4408
- === 0.8.7 / 2005-03-14
4466
+ # 0.8.7 / 2005-03-14
4409
4467
 
4410
4468
  Even though it has only been a few weeks since that last release,
4411
4469
  there are quite a number of new features in 0.8.7. A complete list of
@@ -4458,11 +4516,11 @@ file system. You can read more about them here:
4458
4516
  * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
4459
4517
  * gemwhich: http://docs.rubygems.org/read/chapter/17
4460
4518
 
4461
- === 0.8.6 / 2005-02-27
4519
+ # 0.8.6 / 2005-02-27
4462
4520
 
4463
4521
  * Fixed a small bug with shebang construction
4464
4522
 
4465
- === 0.8.5 / 2005-02-26
4523
+ # 0.8.5 / 2005-02-26
4466
4524
 
4467
4525
  Do you know how you used to dread getting the following message while
4468
4526
  installing gems?
@@ -4484,7 +4542,7 @@ us. No RDoc generation was included in the following times.
4484
4542
  The new caching code is at least 3x faster than previous versions. Woo
4485
4543
  Hoo!
4486
4544
 
4487
- === 0.8.4 / 2005-01-01
4545
+ # 0.8.4 / 2005-01-01
4488
4546
 
4489
4547
  * Rubygems 0.8.3's installer was broken unless you already had an older
4490
4548
  version of RubyGems installed. That's fixed.
@@ -4494,7 +4552,7 @@ Hoo!
4494
4552
  * Support for lower-cased Gem file names (for you, Paul Duncan :)
4495
4553
  * Erik Veenstra's patch for making Gem versions sortable.
4496
4554
 
4497
- === 0.8.3 / 2004-12-07
4555
+ # 0.8.3 / 2004-12-07
4498
4556
 
4499
4557
  No real earth shattering news here, but there were a number of really
4500
4558
  annoying issues involving other libraries that RubyGems depends upon.
@@ -4536,11 +4594,11 @@ There has been some minor usability enhancements and changes ...
4536
4594
  names. This was useful for him while testing libs that he had in
4537
4595
  development.
4538
4596
 
4539
- === 0.8.1 / 2004-09-17
4597
+ # 0.8.1 / 2004-09-17
4540
4598
 
4541
4599
  * Quick release to capture some bug fixes.
4542
4600
 
4543
- === 0.8.0 / 2004-09-15
4601
+ # 0.8.0 / 2004-09-15
4544
4602
 
4545
4603
  * Remove need for library stubs. Set the RUBYOPT environment variable to
4546
4604
  include "rrubygems", and a normal require will find gem files. Continue to
@@ -4563,15 +4621,15 @@ There has been some minor usability enhancements and changes ...
4563
4621
  to pick.
4564
4622
  * Added "gem unpack" for "unpacking" a gem to the current directory
4565
4623
 
4566
- === 0.7.0 / 2004-07-09
4624
+ # 0.7.0 / 2004-07-09
4567
4625
 
4568
4626
  See ChangeLog
4569
4627
 
4570
- === 0.6.1 / 2004-06-08
4628
+ # 0.6.1 / 2004-06-08
4571
4629
 
4572
4630
  See ChangeLog
4573
4631
 
4574
- === 0.6.0 / 2004-06-08
4632
+ # 0.6.0 / 2004-06-08
4575
4633
 
4576
4634
  * Collapse output of --search and --list (and gem_server) operations so that
4577
4635
  each gem is listed only once, with each of its versions listed on the same
@@ -4584,7 +4642,7 @@ See ChangeLog
4584
4642
  spec.required_ruby_version = "> 1.8.0"
4585
4643
  * --install-stub defaults to true, so library stubs are created
4586
4644
 
4587
- === 0.5.0 / 2004-06-06
4645
+ # 0.5.0 / 2004-06-06
4588
4646
 
4589
4647
  * Jim added the ability to specify version constraints to avoid API
4590
4648
  incompatibilities. This has been the subject of much debate for the past
@@ -4607,11 +4665,11 @@ See ChangeLog
4607
4665
  automatically included.
4608
4666
  * Some small bug fixes
4609
4667
 
4610
- === 0.4.0 / 2004-05-30
4668
+ # 0.4.0 / 2004-05-30
4611
4669
 
4612
4670
  * Minor bug fixes including Windows compatibility issues
4613
4671
 
4614
- === 0.3.0 / 2004-04-30
4672
+ # 0.3.0 / 2004-04-30
4615
4673
 
4616
4674
  * Cleanup of command-line arguments and handling. Most commands accept a
4617
4675
  --local or --remote modifier.
@@ -4632,6 +4690,6 @@ See ChangeLog
4632
4690
  * Generally improved error messages (still more work to do)
4633
4691
  * Rearranged gem directory structure for cleanliness.
4634
4692
 
4635
- === 0.2.0 / 2004-03-14
4693
+ # 0.2.0 / 2004-03-14
4636
4694
 
4637
4695
  * Initial public release