rubygems-update 3.2.3 → 3.2.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (116) hide show
  1. checksums.yaml +4 -4
  2. data/{History.txt → CHANGELOG.md} +480 -427
  3. data/Manifest.txt +30 -27
  4. data/Rakefile +20 -28
  5. data/bundler/CHANGELOG.md +73 -2
  6. data/bundler/bundler.gemspec +1 -1
  7. data/bundler/lib/bundler.rb +0 -1
  8. data/bundler/lib/bundler/build_metadata.rb +2 -2
  9. data/bundler/lib/bundler/cli.rb +3 -5
  10. data/bundler/lib/bundler/cli/cache.rb +1 -0
  11. data/bundler/lib/bundler/cli/gem.rb +14 -0
  12. data/bundler/lib/bundler/compact_index_client/updater.rb +0 -8
  13. data/bundler/lib/bundler/definition.rb +17 -27
  14. data/bundler/lib/bundler/dep_proxy.rb +15 -8
  15. data/bundler/lib/bundler/feature_flag.rb +0 -1
  16. data/bundler/lib/bundler/fetcher.rb +0 -1
  17. data/bundler/lib/bundler/gem_helper.rb +9 -7
  18. data/bundler/lib/bundler/gem_version_promoter.rb +2 -2
  19. data/bundler/lib/bundler/index.rb +6 -5
  20. data/bundler/lib/bundler/installer.rb +0 -17
  21. data/bundler/lib/bundler/installer/standalone.rb +15 -0
  22. data/bundler/lib/bundler/lazy_specification.rb +9 -18
  23. data/bundler/{man → lib/bundler/man}/bundle-add.1 +1 -1
  24. data/bundler/{man → lib/bundler/man}/bundle-binstubs.1 +1 -1
  25. data/bundler/{man → lib/bundler/man}/bundle-cache.1 +1 -1
  26. data/bundler/{man → lib/bundler/man}/bundle-check.1 +1 -1
  27. data/bundler/{man → lib/bundler/man}/bundle-clean.1 +1 -1
  28. data/bundler/{man → lib/bundler/man}/bundle-config.1 +4 -4
  29. data/bundler/lib/bundler/man/bundle-config.1.ronn +3 -3
  30. data/bundler/{man → lib/bundler/man}/bundle-doctor.1 +1 -1
  31. data/bundler/{man → lib/bundler/man}/bundle-exec.1 +1 -1
  32. data/bundler/{man → lib/bundler/man}/bundle-gem.1 +1 -1
  33. data/bundler/{man → lib/bundler/man}/bundle-info.1 +1 -1
  34. data/bundler/{man → lib/bundler/man}/bundle-init.1 +1 -1
  35. data/bundler/{man → lib/bundler/man}/bundle-inject.1 +1 -1
  36. data/bundler/{man → lib/bundler/man}/bundle-install.1 +1 -1
  37. data/bundler/{man → lib/bundler/man}/bundle-list.1 +1 -1
  38. data/bundler/{man → lib/bundler/man}/bundle-lock.1 +1 -1
  39. data/bundler/{man → lib/bundler/man}/bundle-open.1 +1 -1
  40. data/bundler/{man → lib/bundler/man}/bundle-outdated.1 +1 -1
  41. data/bundler/{man → lib/bundler/man}/bundle-platform.1 +1 -1
  42. data/bundler/{man → lib/bundler/man}/bundle-pristine.1 +1 -1
  43. data/bundler/{man → lib/bundler/man}/bundle-remove.1 +1 -1
  44. data/bundler/{man → lib/bundler/man}/bundle-show.1 +1 -1
  45. data/bundler/{man → lib/bundler/man}/bundle-update.1 +1 -1
  46. data/bundler/{man → lib/bundler/man}/bundle-viz.1 +1 -1
  47. data/bundler/{man → lib/bundler/man}/bundle.1 +1 -1
  48. data/bundler/{man → lib/bundler/man}/gemfile.5 +1 -1
  49. data/bundler/{man → lib/bundler/man}/index.txt +0 -0
  50. data/bundler/lib/bundler/resolver.rb +82 -43
  51. data/bundler/lib/bundler/resolver/spec_group.rb +56 -44
  52. data/bundler/lib/bundler/rubygems_ext.rb +16 -0
  53. data/bundler/lib/bundler/settings.rb +1 -1
  54. data/bundler/lib/bundler/shared_helpers.rb +2 -2
  55. data/bundler/lib/bundler/source/git.rb +19 -17
  56. data/bundler/lib/bundler/source/git/git_proxy.rb +54 -49
  57. data/bundler/lib/bundler/source/path/installer.rb +2 -0
  58. data/bundler/lib/bundler/source/rubygems.rb +10 -2
  59. data/bundler/lib/bundler/source_list.rb +2 -4
  60. data/bundler/lib/bundler/spec_set.rb +5 -4
  61. data/bundler/lib/bundler/templates/newgem/CHANGELOG.md.tt +5 -0
  62. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -1
  63. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +1 -1
  64. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +3 -0
  65. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
  66. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +0 -1
  67. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -5
  68. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +2 -2
  69. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +11 -0
  70. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +11 -7
  71. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +5 -6
  72. data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +1 -1
  73. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +4 -2
  74. data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +1 -1
  75. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +5 -1
  76. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +9 -8
  77. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +5 -2
  78. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +5 -1
  79. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  80. data/bundler/lib/bundler/version.rb +1 -1
  81. data/lib/rubygems.rb +2 -2
  82. data/lib/rubygems/commands/setup_command.rb +16 -62
  83. data/lib/rubygems/ext/builder.rb +5 -4
  84. data/lib/rubygems/ext/cmake_builder.rb +1 -2
  85. data/lib/rubygems/ext/configure_builder.rb +1 -2
  86. data/lib/rubygems/installer_uninstaller_utils.rb +6 -1
  87. data/lib/rubygems/platform.rb +0 -4
  88. data/lib/rubygems/remote_fetcher.rb +3 -1
  89. data/lib/rubygems/requirement.rb +1 -1
  90. data/lib/rubygems/resolver/best_set.rb +1 -1
  91. data/lib/rubygems/resolver/index_specification.rb +8 -2
  92. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +7 -0
  93. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +0 -1
  94. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +11 -5
  95. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +2 -2
  96. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +11 -0
  97. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +11 -7
  98. data/lib/rubygems/specification.rb +18 -14
  99. data/lib/rubygems/test_case.rb +17 -4
  100. data/rubygems-update.gemspec +2 -2
  101. data/test/rubygems/data/null-required-ruby-version.gemspec.rz +0 -0
  102. data/test/rubygems/data/null-required-rubygems-version.gemspec.rz +0 -0
  103. data/test/rubygems/test_gem.rb +5 -0
  104. data/test/rubygems/test_gem_commands_setup_command.rb +21 -37
  105. data/test/rubygems/test_gem_dependency_installer.rb +52 -47
  106. data/test/rubygems/test_gem_ext_builder.rb +30 -6
  107. data/test/rubygems/test_gem_ext_cmake_builder.rb +2 -4
  108. data/test/rubygems/test_gem_ext_configure_builder.rb +2 -2
  109. data/test/rubygems/test_gem_installer.rb +2 -0
  110. data/test/rubygems/test_gem_platform.rb +8 -0
  111. data/test/rubygems/test_gem_remote_fetcher.rb +1 -1
  112. data/test/rubygems/test_gem_requirement.rb +35 -1
  113. data/test/rubygems/test_gem_resolver_best_set.rb +23 -0
  114. data/test/rubygems/test_gem_specification.rb +9 -3
  115. data/test/rubygems/test_gem_stream_ui.rb +1 -1
  116. metadata +34 -55
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 482ec42938f23bcf5d942d87a0a5a173ac7810be736c08d533fca4100bea4cc1
4
- data.tar.gz: 61c6a87a139ae0030f021bb8c7ca41af73ad62ee845aa4f32dee4e5accb400b8
3
+ metadata.gz: 8c88809da851f0467214e490fb43a1d4c54b9980d7c0099881d10b19bd5f668c
4
+ data.tar.gz: adc3c7278c9bca2021b7bfb3f3ba0a215447512d2af3cc7bba8bd8c3781944d5
5
5
  SHA512:
6
- metadata.gz: 0fc4d232c9f2b42bbc3982c548287d70af78c2b85f202b0e5de89039a4b6ffdc7aa38940007779ba5fe5cbb882043edab224188c64247b4eda086a5626f236a8
7
- data.tar.gz: 13e095493a3d3e5872d5873d076f2e5295c8694ab1e007ce00730ce467934b577e782d39721c1cc4a41660f90001368f1b125f13eb9549640578d7671fd7f9d4
6
+ metadata.gz: 6ce421e400fcb3e38ad14f83e5614f0ee77ad0f9cfba73c7a51b8afca807f1ef3f166a585e4ec377fb41f2526d02055dcaff66bf54d9dde221f68f256e0bf777
7
+ data.tar.gz: b8da7349c0f8c7c71e95405a8748006c70c5917613f85f5ed56d7188d1cc6afa7b348d07e133535e9959c9505c9b86dc9087c1d4af25501a93535e0301d31bf4
@@ -1,18 +1,71 @@
1
- === 3.2.3 / 2020-12-22
1
+ # 3.2.8 / 2021-02-02
2
2
 
3
- Enhancements:
3
+ ## Bug fixes:
4
+
5
+ * Fix `gem install` crashing on gemspec with nil required_ruby_version.
6
+ Pull request #4334 by pbernays
7
+
8
+ # 3.2.7 / 2021-01-26
9
+
10
+ ## Bug fixes:
11
+
12
+ * Generate plugin wrappers with relative requires. Pull request #4317 by
13
+ deivid-rodriguez
14
+
15
+ # 3.2.6 / 2021-01-18
16
+
17
+ ## Enhancements:
18
+
19
+ * Fix `Gem::Platform#inspect` showing duplicate information. Pull request
20
+ #4276 by deivid-rodriguez
21
+
22
+ ## Bug fixes:
23
+
24
+ * Swallow any system call error in `ensure_gem_subdirs` to support jruby
25
+ embedded paths. Pull request #4291 by kares
26
+ * Restore accepting custom make command with extra options as the `make`
27
+ env variable. Pull request #4271 by terceiro
28
+
29
+ # 3.2.5 / 2021-01-11
30
+
31
+ ## Bug fixes:
32
+
33
+ * Don't load more specs after the whole set of specs has been setup. Pull
34
+ request #4262 by deivid-rodriguez
35
+ * Fix broken `bundler` executable after `gem update --system`. Pull
36
+ request #4221 by deivid-rodriguez
37
+
38
+ # 3.2.4 / 2020-12-31
39
+
40
+ ## Enhancements:
41
+
42
+ * Use a CHANGELOG in markdown for rubygems. Pull request #4168 by
43
+ deivid-rodriguez
44
+ * Never spawn subshells when building extensions. Pull request #4190 by
45
+ deivid-rodriguez
46
+
47
+ ## Bug fixes:
48
+
49
+ * Fix fallback to the old index and installation from it not working. Pull
50
+ request #4213 by deivid-rodriguez
51
+ * Fix installing from source on truffleruby. Pull request #4201 by
52
+ deivid-rodriguez
53
+
54
+ # 3.2.3 / 2020-12-22
55
+
56
+ ## Enhancements:
4
57
 
5
58
  * Fix misspellings in default API key name. Pull request #4177 by hsbt
6
59
 
7
- Bug fixes:
60
+ ## Bug fixes:
8
61
 
9
62
  * Respect `required_ruby_version` and `required_rubygems_version`
10
63
  constraints when looking for `gem install` candidates. Pull request #4110
11
64
  by deivid-rodriguez
12
65
 
13
- === 3.2.2 / 2020-12-17
66
+ # 3.2.2 / 2020-12-17
14
67
 
15
- Bug fixes:
68
+ ## Bug fixes:
16
69
 
17
70
  * Fix issue where CLI commands making more than one request to
18
71
  rubygems.org needing an OTP code would crash or ask for the code twice.
@@ -22,23 +75,23 @@ Bug fixes:
22
75
  * Fix `gem update --system` displaying too many changelog entries. Pull
23
76
  request #4145 by deivid-rodriguez
24
77
 
25
- === 3.2.1 / 2020-12-14
78
+ # 3.2.1 / 2020-12-14
26
79
 
27
- Enhancements:
80
+ ## Enhancements:
28
81
 
29
82
  * Added help message for gem i webrick in gem server command. Pull request
30
83
  #4117 by hsbt
31
84
 
32
- Bug fixes:
85
+ ## Bug fixes:
33
86
 
34
87
  * Added the missing loading of fileutils same as load_specs. Pull request
35
88
  #4124 by hsbt
36
89
  * Fix Resolver::APISet to always include prereleases when necessary. Pull
37
90
  request #4113 by deivid-rodriguez
38
91
 
39
- === 3.2.0 / 2020-12-07
92
+ # 3.2.0 / 2020-12-07
40
93
 
41
- Enhancements:
94
+ ## Enhancements:
42
95
 
43
96
  * Do not override Kernel#warn when there is no need. Pull request #4075 by
44
97
  eregon
@@ -57,7 +110,7 @@ Enhancements:
57
110
  * Pass more information when comparing platforms. Pull request #3817 by
58
111
  eregon
59
112
 
60
- Bug fixes:
113
+ ## Bug fixes:
61
114
 
62
115
  * Use better owner & group for files in rubygems package. Pull request
63
116
  #4065 by deivid-rodriguez
@@ -83,18 +136,18 @@ Bug fixes:
83
136
  * Make `--default` and `--install-dir` options to `gem install` play nice
84
137
  together. Pull request #3906 by deivid-rodriguez
85
138
 
86
- Deprecations:
139
+ ## Deprecations:
87
140
 
88
141
  * Deprecate server command. Pull request #3868 by bronzdoc
89
142
 
90
- Performance:
143
+ ## Performance:
91
144
 
92
145
  * Don't change ruby process CWD when building extensions. Pull request
93
146
  #3498 by deivid-rodriguez
94
147
 
95
- === 3.2.0.rc.2 / 2020-10-08
148
+ # 3.2.0.rc.2 / 2020-10-08
96
149
 
97
- Enhancements:
150
+ ## Enhancements:
98
151
 
99
152
  * Make --dry-run flag consistent across rubygems commands. Pull request
100
153
  #3867 by bronzdoc
@@ -111,7 +164,7 @@ Enhancements:
111
164
  * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
112
165
  eregon
113
166
 
114
- Bug fixes:
167
+ ## Bug fixes:
115
168
 
116
169
  * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
117
170
  * Fix false positive warning on Windows when PATH has
@@ -123,7 +176,7 @@ Bug fixes:
123
176
  * `gem install --user` fails with `Gem::FilePermissionError` on the system
124
177
  plugins directory. Pull request #3804 by nobu
125
178
 
126
- Performance:
179
+ ## Performance:
127
180
 
128
181
  * Avoid duplicated generation of APISpecification objects. Pull request
129
182
  #3940 by mame
@@ -133,9 +186,9 @@ Performance:
133
186
  casperisfine
134
187
  * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
135
188
 
136
- === 3.2.0.rc.1 / 2020-07-04
189
+ # 3.2.0.rc.1 / 2020-07-04
137
190
 
138
- Enhancements:
191
+ ## Enhancements:
139
192
 
140
193
  * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
141
194
  * Rework plugins system and speed up rubygems. Pull request #3108 by David
@@ -182,7 +235,7 @@ Enhancements:
182
235
  * Only rescue the errors we actually want to rescue. Pull request #3156 by
183
236
  David Rodríguez.
184
237
 
185
- Bug fixes:
238
+ ## Bug fixes:
186
239
 
187
240
  * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
188
241
  request #3422 by Yusuke Endoh.
@@ -204,12 +257,12 @@ Bug fixes:
204
257
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
205
258
  Rodríguez.
206
259
 
207
- Deprecations:
260
+ ## Deprecations:
208
261
 
209
262
  * Set deprecation warning on query command. Pull request #2967 by Luis
210
263
  Sagastume.
211
264
 
212
- Breaking changes:
265
+ ## Breaking changes:
213
266
 
214
267
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
215
268
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
@@ -236,9 +289,9 @@ Breaking changes:
236
289
  * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
237
290
  request #3114 by Luis Sagastume.
238
291
 
239
- === 3.1.4 / 2020-06-03
292
+ # 3.1.4 / 2020-06-03
240
293
 
241
- Enhancements:
294
+ ## Enhancements:
242
295
 
243
296
  * Deprecate rubyforge_project attribute only during build
244
297
  time. Pull request #3609 by Josef Šimánek.
@@ -247,9 +300,9 @@ Enhancements:
247
300
  * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
248
301
  Josef Šimánek.
249
302
 
250
- === 3.1.3 / 2020-05-05
303
+ # 3.1.3 / 2020-05-05
251
304
 
252
- Enhancements:
305
+ ## Enhancements:
253
306
 
254
307
  * Resolver: require NameTuple before use. Pull request #3171 by Olle
255
308
  Jonsson.
@@ -260,7 +313,7 @@ Enhancements:
260
313
  * Add tests to check if Gem.ruby_version works with ruby git master.
261
314
  Pull request #3049 by Yusuke Endoh.
262
315
 
263
- Bug fixes:
316
+ ## Bug fixes:
264
317
 
265
318
  * Fix platform comparison check in #contains_requirable_file?. Pull
266
319
  request #3495 by Benoit Daloze.
@@ -272,9 +325,9 @@ Bug fixes:
272
325
  * Fix gem install from a gemdeps file with complex dependencies.
273
326
  Pull request #3054 by Luis Sagastume.
274
327
 
275
- === 3.1.2 / 2019-12-20
328
+ # 3.1.2 / 2019-12-20
276
329
 
277
- Enhancements:
330
+ ## Enhancements:
278
331
 
279
332
  * Restore non prompting `gem update --system` behavior. Pull request #3040
280
333
  by David Rodríguez.
@@ -284,24 +337,24 @@ Enhancements:
284
337
  Pull request #3042 by David Rodríguez.
285
338
  * Use Bundler 2.1.2. Pull request #3043 by SHIBATA Hiroshi.
286
339
 
287
- Bug fixes:
340
+ ## Bug fixes:
288
341
 
289
342
  * Require `uri` in source.rb. Pull request #3034 by mihaibuzgau.
290
343
  * Fix `gem update --system --force`. Pull request #3035 by David
291
344
  Rodríguez.
292
345
  * Move `require uri` to source_list. Pull request #3038 by mihaibuzgau.
293
346
 
294
- === 3.1.1 / 2019-12-16
347
+ # 3.1.1 / 2019-12-16
295
348
 
296
- Bug fixes:
349
+ ## Bug fixes:
297
350
 
298
351
  * Vendor Bundler 2.1.0 again. The version of Bundler with
299
352
  RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request #3029 by
300
353
  SHIBATA Hiroshi.
301
354
 
302
- === 3.1.0 / 2019-12-16
355
+ # 3.1.0 / 2019-12-16
303
356
 
304
- Enhancements:
357
+ ## Enhancements:
305
358
 
306
359
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
307
360
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
@@ -315,25 +368,25 @@ Enhancements:
315
368
  * Use bundler to manage development dependencies. Pull request #3012 by
316
369
  David Rodríguez.
317
370
 
318
- Bug fixes:
371
+ ## Bug fixes:
319
372
 
320
373
  * Remove unnecessary executable flags. Pull request #2982 by David
321
374
  Rodríguez.
322
375
  * Remove configuration that contained a typo. Pull request #2989 by David
323
376
  Rodríguez.
324
377
 
325
- Deprecations:
378
+ ## Deprecations:
326
379
 
327
380
  * Deprecate `gem generate_index --modern` and `gem generate_index
328
381
  --no-modern`. Pull request #2992 by David Rodríguez.
329
382
 
330
- Breaking changes:
383
+ ## Breaking changes:
331
384
 
332
385
  * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
333
386
 
334
- === 3.1.0.pre3 / 2019-11-11
387
+ # 3.1.0.pre3 / 2019-11-11
335
388
 
336
- Enhancements:
389
+ ## Enhancements:
337
390
 
338
391
  * Fix gem pristine not accounting for user installed gems. Pull request
339
392
  #2914 by Luis Sagastume.
@@ -352,18 +405,18 @@ Enhancements:
352
405
  * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
353
406
  #2985 by MSP-Greg.
354
407
 
355
- === 3.1.0.pre2 / 2019-10-15
408
+ # 3.1.0.pre2 / 2019-10-15
356
409
 
357
- Enhancements:
410
+ ## Enhancements:
358
411
 
359
412
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
360
413
  Boussier.
361
414
  * Time comparison around date boundary. Pull request #2944 by Nobuyoshi
362
415
  Nakada.
363
416
 
364
- === 3.1.0.pre1 / 2019-10-08
417
+ # 3.1.0.pre1 / 2019-10-08
365
418
 
366
- Enhancements:
419
+ ## Enhancements:
367
420
 
368
421
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
369
422
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -493,7 +546,7 @@ Enhancements:
493
546
  Berger.
494
547
  * Remove useless TODO comment. Pull request #2818 by Luis Sagastume.
495
548
 
496
- Bug fixes:
549
+ ## Bug fixes:
497
550
 
498
551
  * Fix typos in History.txt. Pull request #2565 by Igor Zubkov.
499
552
  * Remove unused empty sources array. Pull request #2598 by Aaron
@@ -526,7 +579,7 @@ Bug fixes:
526
579
  * Fix cryptic error on local and ignore-dependencies combination. Pull
527
580
  request #2650 by David Rodríguez.
528
581
 
529
- Deprecations:
582
+ ## Deprecations:
530
583
 
531
584
  * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
532
585
  #2857 by SHIBATA Hiroshi.
@@ -540,7 +593,7 @@ Deprecations:
540
593
  * Add deprecation warnings for cli options. Pull request #2607 by Luis
541
594
  Sagastume.
542
595
 
543
- Breaking changes:
596
+ ## Breaking changes:
544
597
 
545
598
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
546
599
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
@@ -563,16 +616,16 @@ Breaking changes:
563
616
  #2685 by SHIBATA Hiroshi.
564
617
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
565
618
 
566
- === 3.0.8 / 2020-02-19
619
+ # 3.0.8 / 2020-02-19
567
620
 
568
- Bug fixes:
621
+ ## Bug fixes:
569
622
 
570
623
  * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
571
624
  Nobuyoshi Nakada.
572
625
 
573
- === 3.0.7 / 2020-02-18
626
+ # 3.0.7 / 2020-02-18
574
627
 
575
- Bug fixes:
628
+ ## Bug fixes:
576
629
 
577
630
  * Fix underscore version selection for bundler #2908 by David Rodríguez.
578
631
  * Add missing wrapper. Pull request #2690 by David Rodríguez.
@@ -582,15 +635,15 @@ Bug fixes:
582
635
  * Use IAM role to extract security-credentials for EC2 instance. Pull
583
636
  request #2894 by Alexander Pakulov.
584
637
 
585
- === 3.0.6 / 2019-08-17
638
+ # 3.0.6 / 2019-08-17
586
639
 
587
- Bug fixes:
640
+ ## Bug fixes:
588
641
 
589
642
  * Revert #2813. It broke the compatibility with 3.0.x versions.
590
643
 
591
- === 3.0.5 / 2019-08-16
644
+ # 3.0.5 / 2019-08-16
592
645
 
593
- Enhancements:
646
+ ## Enhancements:
594
647
 
595
648
  * Use env var to configure api key on push. Pull request #2559 by Luis
596
649
  Sagastume.
@@ -625,7 +678,7 @@ Enhancements:
625
678
  by Alexander Pakulov.
626
679
  * Fixup #2844. Pull request #2878 by SHIBATA Hiroshi.
627
680
 
628
- Bug fixes:
681
+ ## Bug fixes:
629
682
 
630
683
  * Fix intermittent test error on Appveyor & Travis. Pull request #2568 by
631
684
  MSP-Greg.
@@ -641,9 +694,9 @@ Bug fixes:
641
694
  * Ignore GEMRC variable for test suite. Pull request #2837 by SHIBATA
642
695
  Hiroshi.
643
696
 
644
- === 3.0.4 / 2019-06-14
697
+ # 3.0.4 / 2019-06-14
645
698
 
646
- Enhancements:
699
+ ## Enhancements:
647
700
 
648
701
  * Add support for TruffleRuby #2612 by Benoit Daloze
649
702
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -680,7 +733,7 @@ Enhancements:
680
733
  request #2777 by Yusuke Endoh.
681
734
  * Backport ruby core changes. Pull request #2778 by SHIBATA Hiroshi.
682
735
 
683
- Bug fixes:
736
+ ## Bug fixes:
684
737
 
685
738
  * Test_gem.rb - intermittent failure fix. Pull request #2613 by MSP-Greg.
686
739
  * Fix sporadic CI failures. Pull request #2617 by David Rodríguez.
@@ -696,7 +749,7 @@ Bug fixes:
696
749
  #2732 by Alex Junger.
697
750
  * Fix TODOs. Pull request #2748 by David Rodríguez.
698
751
 
699
- === 3.0.3 / 2019-03-05
752
+ # 3.0.3 / 2019-03-05
700
753
 
701
754
  Security fixes:
702
755
 
@@ -707,14 +760,14 @@ Security fixes:
707
760
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
708
761
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
709
762
 
710
- === 3.0.2 / 2019-01-01
763
+ # 3.0.2 / 2019-01-01
711
764
 
712
- Enhancements:
765
+ ## Enhancements:
713
766
 
714
767
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
715
768
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
716
769
 
717
- Bug fixes:
770
+ ## Bug fixes:
718
771
 
719
772
  * Fix tests when ruby --program-suffix is used without rubygems
720
773
  --format-executable. Pull request #2549 by Jeremy Evans.
@@ -724,9 +777,9 @@ Bug fixes:
724
777
  Fukumori.
725
778
  * Restore SOURCE_DATE_EPOCH. Pull request #2560 by SHIBATA Hiroshi.
726
779
 
727
- === 3.0.1 / 2018-12-23
780
+ # 3.0.1 / 2018-12-23
728
781
 
729
- Bug fixes:
782
+ ## Bug fixes:
730
783
 
731
784
  * Ensure globbed files paths are expanded. Pull request #2536 by Tony Ta.
732
785
  * Dup the Dir.home string before passing it on. Pull request #2545 by
@@ -735,9 +788,9 @@ Bug fixes:
735
788
  by SHIBATA Hiroshi.
736
789
  * Restore release task without hoe. Pull request #2547 by SHIBATA Hiroshi.
737
790
 
738
- === 3.0.0 / 2018-12-19
791
+ # 3.0.0 / 2018-12-19
739
792
 
740
- Enhancements:
793
+ ## Enhancements:
741
794
 
742
795
  * S3 source. Pull request #1690 by Aditya Prakash.
743
796
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -902,7 +955,7 @@ Enhancements:
902
955
  * Support the environment without OpenSSL. Pull request #2528 by SHIBATA
903
956
  Hiroshi.
904
957
 
905
- Bug fixes:
958
+ ## Bug fixes:
906
959
 
907
960
  * Fix undefined method error when printing alert. Pull request #1884 by
908
961
  Robert Ross.
@@ -955,7 +1008,7 @@ Bug fixes:
955
1008
  * Fix tests when --program-suffix and similar ruby configure options are
956
1009
  used. Pull request #2529 by Jeremy Evans.
957
1010
 
958
- Breaking changes:
1011
+ ## Breaking changes:
959
1012
 
960
1013
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
961
1014
  Hiroshi.
@@ -1008,9 +1061,9 @@ Breaking changes:
1008
1061
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
1009
1062
  major versions. Pull request #2515 by Colby Swandale.
1010
1063
 
1011
- === 2.7.10 / 2019-06-14
1064
+ # 2.7.10 / 2019-06-14
1012
1065
 
1013
- Enhancements:
1066
+ ## Enhancements:
1014
1067
 
1015
1068
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
1016
1069
  by David Rodríguez.
@@ -1018,7 +1071,7 @@ Enhancements:
1018
1071
  Pull request #2515 by Colby Swandale.
1019
1072
  + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
1020
1073
 
1021
- === 2.7.9 / 2019-03-05
1074
+ # 2.7.9 / 2019-03-05
1022
1075
 
1023
1076
  Security fixes:
1024
1077
 
@@ -1029,9 +1082,9 @@ Security fixes:
1029
1082
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
1030
1083
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
1031
1084
 
1032
- === 2.7.8 / 2018-11-02
1085
+ # 2.7.8 / 2018-11-02
1033
1086
 
1034
- Enhancements:
1087
+ ## Enhancements:
1035
1088
 
1036
1089
  * [Requirement] Treat requirements with == versions as equal. Pull
1037
1090
  request #2230 by Samuel Giddins.
@@ -1050,7 +1103,7 @@ Enhancements:
1050
1103
  * Improve bindir flag description. Pull request #2383 by Luis Sagastume.
1051
1104
  * Update bundler-1.16.6. Pull request #2423 by SHIBATA Hiroshi.
1052
1105
 
1053
- Bug fixes:
1106
+ ## Bug fixes:
1054
1107
 
1055
1108
  * Fix #1470: generate documentation when --install-dir is present. Pull
1056
1109
  request #2229 by Elias Hernandis.
@@ -1063,9 +1116,9 @@ Bug fixes:
1063
1116
  * Gem::Version should handle nil like it used to before. Pull request
1064
1117
  #2363 by Luis Sagastume.
1065
1118
 
1066
- === 2.7.7 / 2018-05-08
1119
+ # 2.7.7 / 2018-05-08
1067
1120
 
1068
- Enhancements:
1121
+ ## Enhancements:
1069
1122
 
1070
1123
  * [RequestSet] Only suggest a gem version with an installable platform.
1071
1124
  Pull request #2175 by Samuel Giddins.
@@ -1080,7 +1133,7 @@ Enhancements:
1080
1133
  Sagastume.
1081
1134
  * Backport ruby core commits. Pull request #2264 by SHIBATA Hiroshi.
1082
1135
 
1083
- Bug fixes:
1136
+ ## Bug fixes:
1084
1137
 
1085
1138
  * Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
1086
1139
  #2115 by MSP-Greg.
@@ -1093,7 +1146,7 @@ Bug fixes:
1093
1146
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1094
1147
  Lars Kanis.
1095
1148
 
1096
- Deprecations:
1149
+ ## Deprecations:
1097
1150
 
1098
1151
  * Deprecate unused code before removing them at #1524. Pull request #2197
1099
1152
  by SHIBATA Hiroshi.
@@ -1101,11 +1154,11 @@ Deprecations:
1101
1154
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1102
1155
  SHIBATA Hiroshi.
1103
1156
 
1104
- Breaking changes:
1157
+ ## Breaking changes:
1105
1158
 
1106
1159
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1107
1160
 
1108
- === 2.7.6 / 2018-02-16
1161
+ # 2.7.6 / 2018-02-16
1109
1162
 
1110
1163
  Security fixes:
1111
1164
 
@@ -1124,9 +1177,9 @@ Security fixes:
1124
1177
  * Prevent Path Traversal issue during gem installation.
1125
1178
  Discovered by nmalkin.
1126
1179
 
1127
- === 2.7.5
1180
+ # 2.7.5
1128
1181
 
1129
- Bug fixes:
1182
+ ## Bug fixes:
1130
1183
 
1131
1184
  * To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
1132
1185
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
@@ -1138,9 +1191,9 @@ Bug fixes:
1138
1191
  * Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
1139
1192
  * Fix undefined method error when printing alert #1884 by Robert Ross.
1140
1193
 
1141
- === 2.7.4
1194
+ # 2.7.4
1142
1195
 
1143
- Bug fixes:
1196
+ ## Bug fixes:
1144
1197
 
1145
1198
  * Fixed leaked FDs. Pull request #2127 by Nobuyoshi Nakada.
1146
1199
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -1149,9 +1202,9 @@ Bug fixes:
1149
1202
  * Handle environment that does not have `flock` system call. Pull request
1150
1203
  #2107 by SHIBATA Hiroshi.
1151
1204
 
1152
- === 2.7.3
1205
+ # 2.7.3
1153
1206
 
1154
- Enhancements:
1207
+ ## Enhancements:
1155
1208
 
1156
1209
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
1157
1210
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -1164,7 +1217,7 @@ Enhancements:
1164
1217
  * Remove multi load warning from plugins documentation. Pull request #2103
1165
1218
  by Thibault Jouan.
1166
1219
 
1167
- Bug fixes:
1220
+ ## Bug fixes:
1168
1221
 
1169
1222
  * Fix test failure on Alpine Linux. Pull request #2079 by Ellen Marie
1170
1223
  Dash.
@@ -1183,25 +1236,25 @@ Bug fixes:
1183
1236
  * Use setup command --regenerate-binstubs option flag. Pull request #2099
1184
1237
  by Thibault Jouan.
1185
1238
 
1186
- === 2.7.2
1239
+ # 2.7.2
1187
1240
 
1188
- Bug fixes:
1241
+ ## Bug fixes:
1189
1242
 
1190
1243
  * Added template files to vendoerd bundler. Pull request #2065 by SHIBATA
1191
1244
  Hiroshi.
1192
1245
  * Added workaround for non-git environment. Pull request #2066 by SHIBATA
1193
1246
  Hiroshi.
1194
1247
 
1195
- === 2.7.1 (2017-11-03)
1248
+ # 2.7.1 (2017-11-03)
1196
1249
 
1197
- Bug fixes:
1250
+ ## Bug fixes:
1198
1251
 
1199
1252
  * Fix `gem update --system` with RubyGems 2.7+. Pull request #2054 by
1200
1253
  Samuel Giddins.
1201
1254
 
1202
- === 2.7.0 (2017-11-02)
1255
+ # 2.7.0 (2017-11-02)
1203
1256
 
1204
- Enhancements:
1257
+ ## Enhancements:
1205
1258
 
1206
1259
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
1207
1260
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
@@ -1292,7 +1345,7 @@ Enhancements:
1292
1345
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1293
1346
  Dash.
1294
1347
 
1295
- Deprecations:
1348
+ ## Deprecations:
1296
1349
 
1297
1350
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1298
1351
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
@@ -1302,7 +1355,7 @@ Deprecations:
1302
1355
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1303
1356
  Pull request #1731 by Jon Moss.
1304
1357
 
1305
- Breaking changes:
1358
+ ## Breaking changes:
1306
1359
 
1307
1360
  * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1308
1361
  unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
@@ -1310,7 +1363,7 @@ Breaking changes:
1310
1363
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1311
1364
  #1796 by Matej.
1312
1365
 
1313
- Bug fixes:
1366
+ ## Bug fixes:
1314
1367
 
1315
1368
  * Fix issue for MinGW / MSYS2 builds and testing. Pull request #1876 by
1316
1369
  MSP-Greg.
@@ -1363,7 +1416,7 @@ Bug fixes:
1363
1416
  * [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
1364
1417
  Pull request #1738 by Samuel Giddins.
1365
1418
 
1366
- === 2.6.14 / 2017-10-09
1419
+ # 2.6.14 / 2017-10-09
1367
1420
 
1368
1421
  Security fixes:
1369
1422
 
@@ -1371,7 +1424,7 @@ Security fixes:
1371
1424
  See CVE-2017-0903 for full details.
1372
1425
  Fix by Aaron Patterson.
1373
1426
 
1374
- === 2.6.13 / 2017-08-27
1427
+ # 2.6.13 / 2017-08-27
1375
1428
 
1376
1429
  Security fixes:
1377
1430
 
@@ -1385,9 +1438,9 @@ Security fixes:
1385
1438
  to overwrite arbitrary files. (CVE-2017-0901)
1386
1439
  Discovered by Yusuke Endoh, fix by Samuel Giddins.
1387
1440
 
1388
- === 2.6.12 / 2017-04-30
1441
+ # 2.6.12 / 2017-04-30
1389
1442
 
1390
- Bug fixes:
1443
+ ## Bug fixes:
1391
1444
 
1392
1445
  * Fix test_self_find_files_with_gemfile to sort expected files. Pull
1393
1446
  request #1880 by Kazuaki Matsuo.
@@ -1408,9 +1461,9 @@ Bug fixes:
1408
1461
  * Allow Gem.finish_resolve to respect already-activated specs. Pull
1409
1462
  request #1910 by Samuel Giddins.
1410
1463
 
1411
- === 2.6.11 / 2017-03-16
1464
+ # 2.6.11 / 2017-03-16
1412
1465
 
1413
- Bug fixes:
1466
+ ## Bug fixes:
1414
1467
 
1415
1468
  * Fixed broken tests on ruby-head. Pull request #1841 by
1416
1469
  SHIBATA Hiroshi.
@@ -1421,16 +1474,16 @@ Bug fixes:
1421
1474
  * Use improved resolver sorting algorithm. Pull request #1856 by
1422
1475
  Samuel Giddins.
1423
1476
 
1424
- === 2.6.10 / 2017-01-23
1477
+ # 2.6.10 / 2017-01-23
1425
1478
 
1426
- Bug fixes:
1479
+ ## Bug fixes:
1427
1480
 
1428
1481
  * Fix `require` calling the wrong `gem` method when it is overridden.
1429
1482
  Pull request #1822 by Samuel Giddins.
1430
1483
 
1431
- === 2.6.9 / 2017-01-20
1484
+ # 2.6.9 / 2017-01-20
1432
1485
 
1433
- Bug fixes:
1486
+ ## Bug fixes:
1434
1487
 
1435
1488
  * Allow initializing versions with empty strings. Pull request #1767 by
1436
1489
  Luis Sagastume.
@@ -1444,9 +1497,9 @@ Bug fixes:
1444
1497
  * RakeBuilder: avoid frozen string issue. Pull request #1819 by Olle
1445
1498
  Jonsson.
1446
1499
 
1447
- === 2.6.8 / 2016-10-29
1500
+ # 2.6.8 / 2016-10-29
1448
1501
 
1449
- Bug fixes:
1502
+ ## Bug fixes:
1450
1503
 
1451
1504
  * Improve SSL verification failure message. Pull request #1751
1452
1505
  by Eric Hodel.
@@ -1455,9 +1508,9 @@ Bug fixes:
1455
1508
  * Update vendored Molinillo to 0.5.3. Pull request #1763 by
1456
1509
  Samuel Giddins.
1457
1510
 
1458
- === 2.6.7 / 2016-09-26
1511
+ # 2.6.7 / 2016-09-26
1459
1512
 
1460
- Bug fixes:
1513
+ ## Bug fixes:
1461
1514
 
1462
1515
  * Install native extensions in the correct location when using the
1463
1516
  `--user-install` flag. Pull request #1683 by Noah Kantrowitz.
@@ -1469,24 +1522,24 @@ Bug fixes:
1469
1522
  * Update vendored Molinillo to 0.5.1. Pull request #1714 by
1470
1523
  Samuel Giddins.
1471
1524
 
1472
- === 2.6.6 / 2016-06-22
1525
+ # 2.6.6 / 2016-06-22
1473
1526
 
1474
- Bug fixes:
1527
+ ## Bug fixes:
1475
1528
 
1476
1529
  * Sort installed versions to make sure we install the latest version when
1477
1530
  running `gem update --system`. As a one-time fix, run
1478
1531
  `gem update --system=2.6.6`. Pull request #1601 by David Radcliffe.
1479
1532
 
1480
- === 2.6.5 / 2016-06-21
1533
+ # 2.6.5 / 2016-06-21
1481
1534
 
1482
- Enhancements:
1535
+ ## Enhancements:
1483
1536
 
1484
1537
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1485
1538
  by SHIBATA Hiroshi.
1486
1539
  * Update vendored Molinillo to 0.5.0 for performance improvements.
1487
1540
  Pull request #1638 by Samuel Giddins.
1488
1541
 
1489
- Bug fixes:
1542
+ ## Bug fixes:
1490
1543
 
1491
1544
  * Raise an explicit error if Signer#sign is called with no certs. Pull
1492
1545
  request #1605 by Daniel Berger.
@@ -1506,16 +1559,16 @@ Bug fixes:
1506
1559
  Pull request #1644 by Charles Oliver Nutter.
1507
1560
  * Run Bundler tests on TravisCI. Pull request #1650 by Samuel Giddins.
1508
1561
 
1509
- === 2.6.4 / 2016-04-26
1562
+ # 2.6.4 / 2016-04-26
1510
1563
 
1511
- Enhancements:
1564
+ ## Enhancements:
1512
1565
 
1513
1566
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1514
1567
  by Chris Charabaruk.
1515
1568
  * Use File.symlink on MS Windows if supported. Pull request #1418
1516
1569
  by Nobuyoshi Nakada.
1517
1570
 
1518
- Bug fixes:
1571
+ ## Bug fixes:
1519
1572
 
1520
1573
  * Redact uri password from error output when gem fetch fails. Pull request
1521
1574
  #1565 by Brian Fletcher.
@@ -1523,9 +1576,9 @@ Bug fixes:
1523
1576
  * Escape user-supplied content served on web pages by `gem server` to avoid
1524
1577
  potential XSS vulnerabilities. Samuel Giddins.
1525
1578
 
1526
- === 2.6.3 / 2016-04-05
1579
+ # 2.6.3 / 2016-04-05
1527
1580
 
1528
- Enhancements:
1581
+ ## Enhancements:
1529
1582
 
1530
1583
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1531
1584
  by Aaron Patterson.
@@ -1536,7 +1589,7 @@ Enhancements:
1536
1589
  * Show default gems when using "gem list". Pull request #1570 by Luis
1537
1590
  Sagastume.
1538
1591
 
1539
- Bug fixes:
1592
+ ## Bug fixes:
1540
1593
 
1541
1594
  * Stub ordering should be consistent regardless of how cache is populated.
1542
1595
  Pull request #1552 by Aaron Patterson.
@@ -1552,9 +1605,9 @@ Bug fixes:
1552
1605
  Giddins.
1553
1606
  * Allow two digit version numbers in the tests. Pull request #1575 by unak.
1554
1607
 
1555
- === 2.6.2 / 2016-03-12
1608
+ # 2.6.2 / 2016-03-12
1556
1609
 
1557
- Bug fixes:
1610
+ ## Bug fixes:
1558
1611
 
1559
1612
  * Fix wrong version of gem activation for bin stub. Pull request #1527 by
1560
1613
  Aaron Patterson.
@@ -1565,9 +1618,9 @@ Bug fixes:
1565
1618
  #1538 by Charles Oliver Nutter.
1566
1619
 
1567
1620
 
1568
- === 2.6.1 / 2016-02-28
1621
+ # 2.6.1 / 2016-02-28
1569
1622
 
1570
- Bug fixes:
1623
+ ## Bug fixes:
1571
1624
 
1572
1625
  * Ensure `default_path` and `home` are set for paths. Pull request #1513
1573
1626
  by Aaron Patterson.
@@ -1576,9 +1629,9 @@ Bug fixes:
1576
1629
  * Fix invalid gem file preventing gem install from working. Pull request
1577
1630
  #1499 by Luis Sagastume.
1578
1631
 
1579
- === 2.6.0 / 2016-02-26
1632
+ # 2.6.0 / 2016-02-26
1580
1633
 
1581
- Enhancements:
1634
+ ## Enhancements:
1582
1635
 
1583
1636
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1584
1637
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1589,7 +1642,7 @@ Enhancements:
1589
1642
  * Allow specifying gem requirements via env variables. Pull request #1472
1590
1643
  by Samuel E. Giddins.
1591
1644
 
1592
- Bug fixes:
1645
+ ## Bug fixes:
1593
1646
 
1594
1647
  * RubyGems now stores `gem push` credentials under the host you signed-in for.
1595
1648
  Pull request #1485 by Josh Lane.
@@ -1615,9 +1668,9 @@ Bug fixes:
1615
1668
  * Find_files only from loaded_gems when using gemdeps. Pull request #1277
1616
1669
  by Michal Papis.
1617
1670
 
1618
- === 2.5.2 / 2016-01-31
1671
+ # 2.5.2 / 2016-01-31
1619
1672
 
1620
- Bug fixes:
1673
+ ## Bug fixes:
1621
1674
 
1622
1675
  * Fix memoization of Gem::Version#prerelease? Pull request #1125 by Matijs van
1623
1676
  Zuijlen.
@@ -1633,7 +1686,7 @@ Bug fixes:
1633
1686
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1634
1687
  Giddins.
1635
1688
 
1636
- Enhancements:
1689
+ ## Enhancements:
1637
1690
 
1638
1691
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1639
1692
  Sagastume.
@@ -1658,9 +1711,9 @@ Enhancements:
1658
1711
  * Function correctly when string literals are frozen on Ruby 2.3. Pull request
1659
1712
  #1408 by Samuel E. Giddins.
1660
1713
 
1661
- === 2.5.1 / 2015-12-10
1714
+ # 2.5.1 / 2015-12-10
1662
1715
 
1663
- Bug fixes:
1716
+ ## Bug fixes:
1664
1717
 
1665
1718
  * Ensure platform sorting only uses strings. Affected binary installs on Windows.
1666
1719
  Issue #1369 reported by Ryan Atball (among others).
@@ -1689,9 +1742,9 @@ Bug fixes:
1689
1742
  Kudo.
1690
1743
  * Fixed double word typo. Pull request #1411 by Jake Worth.
1691
1744
 
1692
- === 2.5.0 / 2015-11-03
1745
+ # 2.5.0 / 2015-11-03
1693
1746
 
1694
- Enhancements:
1747
+ ## Enhancements:
1695
1748
 
1696
1749
  * Added the Gem::Licenses class which provides a set of standard license
1697
1750
  identifiers as set by spdx.org. This is now used by the
@@ -1761,7 +1814,7 @@ Enhancements:
1761
1814
  * Gem::RemoteFetcher allows users to set HTTP headers. Pull request #1363 by
1762
1815
  Agis Anastasopoulos.
1763
1816
 
1764
- Bug fixes:
1817
+ ## Bug fixes:
1765
1818
 
1766
1819
  * Fixed Rake homepage url in example for Gem::Specification#homepage.
1767
1820
  Pull request #1171 by Arthur Nogueira Neves
@@ -1818,22 +1871,22 @@ Bug fixes:
1818
1871
  * RubyGems handles invalid config files better. Pull request #1367 by Agis
1819
1872
  Anastasopoulos.
1820
1873
 
1821
- === 2.4.8 / 2015-06-08
1874
+ # 2.4.8 / 2015-06-08
1822
1875
 
1823
- Bug fixes:
1876
+ ## Bug fixes:
1824
1877
 
1825
1878
  * Tightened API endpoint checks for CVE-2015-3900
1826
1879
 
1827
- === 2.4.7 / 2015-05-14
1880
+ # 2.4.7 / 2015-05-14
1828
1881
 
1829
- Bug fixes:
1882
+ ## Bug fixes:
1830
1883
 
1831
1884
  * Limit API endpoint to original security domain for CVE-2015-3900.
1832
1885
  Fix by claudijd
1833
1886
 
1834
- === 2.4.6 / 2015-02-05
1887
+ # 2.4.6 / 2015-02-05
1835
1888
 
1836
- Bug fixes:
1889
+ ## Bug fixes:
1837
1890
 
1838
1891
  * Fixed resolving gems with both upper and lower requirement boundaries.
1839
1892
  Issue #1141 by Jakub Jirutka.
@@ -1858,9 +1911,9 @@ Bug fixes:
1858
1911
  Ondruch.
1859
1912
  * Relaxed Psych dependency. Pull request #1128 by Vít Ondruch.
1860
1913
 
1861
- === 2.4.5 / 2014-12-03
1914
+ # 2.4.5 / 2014-12-03
1862
1915
 
1863
- Bug fixes:
1916
+ ## Bug fixes:
1864
1917
 
1865
1918
  * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
1866
1919
  request #1060 by unak.
@@ -1900,27 +1953,27 @@ Bug fixes:
1900
1953
  * Fixed grouped expression warning. Pull request #1081 by André Arko.
1901
1954
  * Fixed handling of platforms when writing lockfiles.
1902
1955
 
1903
- === 2.4.4 / 2014-11-12
1956
+ # 2.4.4 / 2014-11-12
1904
1957
 
1905
- Bug fixes:
1958
+ ## Bug fixes:
1906
1959
 
1907
1960
  * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
1908
1961
  Protosac
1909
1962
 
1910
- === 2.4.3 / 2014-11-10
1963
+ # 2.4.3 / 2014-11-10
1911
1964
 
1912
- Bug fixes:
1965
+ ## Bug fixes:
1913
1966
 
1914
1967
  * Fix redefine MirrorCommand issue. Pull request #1044 by @akr.
1915
1968
  * Fix typo in platform= docs. Pull request #1048 by @jasonrclark
1916
1969
  * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
1917
1970
  Protosac
1918
1971
 
1919
- === 2.4.2 / 2014-10-01
1972
+ # 2.4.2 / 2014-10-01
1920
1973
 
1921
1974
  This release was sponsored by Ruby Central.
1922
1975
 
1923
- Bug fixes:
1976
+ ## Bug fixes:
1924
1977
 
1925
1978
  * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
1926
1979
  voelzemo.
@@ -1954,16 +2007,16 @@ Bug fixes:
1954
2007
  * RubyGems now fails immediately when a git reference cannot be found instead
1955
2008
  of spewing git errors. Issue #1031 by Michal Papis
1956
2009
 
1957
- === 2.4.1 / 2014-07-17
2010
+ # 2.4.1 / 2014-07-17
1958
2011
 
1959
- Bug fixes:
2012
+ ## Bug fixes:
1960
2013
 
1961
2014
  * RubyGems can now be updated on Ruby implementations that do not support
1962
2015
  vendordir in RbConfig::CONFIG. Issue #974 by net1957.
1963
2016
 
1964
- === 2.4.0 / 2014-07-16
2017
+ # 2.4.0 / 2014-07-16
1965
2018
 
1966
- Enhancements:
2019
+ ## Enhancements:
1967
2020
 
1968
2021
  * The contents command now supports a --show-install-dir option that shows
1969
2022
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1974,7 +2027,7 @@ Enhancements:
1974
2027
  in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
1975
2028
  Marcus Rückert.
1976
2029
 
1977
- Bug fixes:
2030
+ ## Bug fixes:
1978
2031
 
1979
2032
  * Kernel#gem now respects the prerelease flag when activating gems.
1980
2033
  Previously this behavior was undefined which could lead to bugs when a
@@ -2024,9 +2077,9 @@ Bug fixes:
2024
2077
  during gem resolution.
2025
2078
 
2026
2079
 
2027
- === 2.3.0 / 2014-06-10
2080
+ # 2.3.0 / 2014-06-10
2028
2081
 
2029
- Enhancements:
2082
+ ## Enhancements:
2030
2083
 
2031
2084
  * Added the `open` command which allows you to inspect the source of a gem
2032
2085
  using your editor.
@@ -2067,7 +2120,7 @@ Enhancements:
2067
2120
  * RubyGems recommends SPDX IDs for licenses now. Pull request #917 by
2068
2121
  Benjamin Fleischer.
2069
2122
 
2070
- Bug fixes:
2123
+ ## Bug fixes:
2071
2124
 
2072
2125
  * RubyGems now only fetches the latest specs to find misspellings which speeds
2073
2126
  up gem suggestions. Pull request #808 by Aaron Patterson.
@@ -2147,29 +2200,29 @@ Bug fixes:
2147
2200
  * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
2148
2201
  #852 by Vít Ondruch.
2149
2202
 
2150
- === 2.2.5 / 2015-06-08
2203
+ # 2.2.5 / 2015-06-08
2151
2204
 
2152
- Bug fixes:
2205
+ ## Bug fixes:
2153
2206
 
2154
2207
  * Tightened API endpoint checks for CVE-2015-3900
2155
2208
 
2156
- === 2.2.4 / 2015-05-14
2209
+ # 2.2.4 / 2015-05-14
2157
2210
 
2158
- Bug fixes:
2211
+ ## Bug fixes:
2159
2212
 
2160
2213
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2161
2214
  Fix by claudijd
2162
2215
 
2163
- === 2.2.3 / 2014-12-21
2216
+ # 2.2.3 / 2014-12-21
2164
2217
 
2165
- Bug fixes:
2218
+ ## Bug fixes:
2166
2219
 
2167
2220
  * Backport: Add alternate Root CA for upcoming certificate change.
2168
2221
  Fixes #1050 by Protosac
2169
2222
 
2170
- === 2.2.2 / 2014-02-05
2223
+ # 2.2.2 / 2014-02-05
2171
2224
 
2172
- Bug fixes:
2225
+ ## Bug fixes:
2173
2226
 
2174
2227
  * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
2175
2228
  Nakada.
@@ -2194,9 +2247,9 @@ Bug fixes:
2194
2247
  * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
2195
2248
  Sergio Rubio.
2196
2249
 
2197
- === 2.2.1 / 2014-01-06
2250
+ # 2.2.1 / 2014-01-06
2198
2251
 
2199
- Bug fixes:
2252
+ ## Bug fixes:
2200
2253
 
2201
2254
  * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
2202
2255
  #767 by Diego Viola.
@@ -2222,12 +2275,12 @@ Bug fixes:
2222
2275
  * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
2223
2276
  request #763 by James Mead
2224
2277
 
2225
- === 2.2.0 / 2013-12-26
2278
+ # 2.2.0 / 2013-12-26
2226
2279
 
2227
2280
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
2228
2281
  RubyGems as it was prepared for the 2.2.0 release.
2229
2282
 
2230
- Enhancements:
2283
+ ## Enhancements:
2231
2284
 
2232
2285
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
2233
2286
  rubygems executables are started and uses the found dependencies. This
@@ -2295,7 +2348,7 @@ Enhancements:
2295
2348
  * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
2296
2349
  Request #755 by strzibny.
2297
2350
 
2298
- Bug fixes:
2351
+ ## Bug fixes:
2299
2352
 
2300
2353
  * RubyGems now returns an error status when any file given to `gem which`
2301
2354
  cannot be found. Ruby bug #9004 by Eugene Vilensky.
@@ -2312,9 +2365,9 @@ Bug fixes:
2312
2365
  * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
2313
2366
  Lee.
2314
2367
 
2315
- === 2.1.11 / 2013-11-12
2368
+ # 2.1.11 / 2013-11-12
2316
2369
 
2317
- Bug fixes:
2370
+ ## Bug fixes:
2318
2371
 
2319
2372
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2320
2373
  to be removed. Issue #698 by Tiago Macedo.
@@ -2324,9 +2377,9 @@ Bug fixes:
2324
2377
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2325
2378
  Pull Request #706 by akr.
2326
2379
 
2327
- === 2.1.10 / 2013-10-24
2380
+ # 2.1.10 / 2013-10-24
2328
2381
 
2329
- Bug fixes:
2382
+ ## Bug fixes:
2330
2383
 
2331
2384
  * Use class check instead of :version method check when creating Gem::Version
2332
2385
  objects. Fixes #674 by jkanywhere.
@@ -2345,18 +2398,18 @@ Bug fixes:
2345
2398
  * The --ignore-dependencies option for gem installation works again. Issue
2346
2399
  #695
2347
2400
 
2348
- === 2.1.9 / 2013-10-14
2401
+ # 2.1.9 / 2013-10-14
2349
2402
 
2350
- Bug fixes:
2403
+ ## Bug fixes:
2351
2404
 
2352
2405
  * Reduce sorting when fetching specifications. This speeds up the update and
2353
2406
  outdated commands, and others. Issue #657 by windwiny.
2354
2407
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2355
2408
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2356
2409
 
2357
- === 2.1.8 / 2013-10-10
2410
+ # 2.1.8 / 2013-10-10
2358
2411
 
2359
- Bug fixes:
2412
+ ## Bug fixes:
2360
2413
 
2361
2414
  * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
2362
2415
  * Files starting with "." in the root directory are installed again. Issue
@@ -2364,9 +2417,9 @@ Bug fixes:
2364
2417
  * The index generator no longer indexes default gems. Issue #661 by
2365
2418
  Jeremy Hinegardner.
2366
2419
 
2367
- === 2.1.7 / 2013-10-09
2420
+ # 2.1.7 / 2013-10-09
2368
2421
 
2369
- Bug fixes:
2422
+ ## Bug fixes:
2370
2423
 
2371
2424
  * `gem sources --list` now displays a list of sources. Pull request #672 by
2372
2425
  Nathan Marley.
@@ -2379,9 +2432,9 @@ Bug fixes:
2379
2432
  * Expand unpack destination directory. This fixes problems when File.realpath
2380
2433
  is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
2381
2434
 
2382
- === 2.1.6 / 2013-10-08
2435
+ # 2.1.6 / 2013-10-08
2383
2436
 
2384
- Bug fixes:
2437
+ ## Bug fixes:
2385
2438
 
2386
2439
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2387
2440
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2396,7 +2449,7 @@ Bug fixes:
2396
2449
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2397
2450
  Thomas Sänger.
2398
2451
 
2399
- === 2.1.5 / 2013-09-24
2452
+ # 2.1.5 / 2013-09-24
2400
2453
 
2401
2454
  Security fixes:
2402
2455
 
@@ -2405,25 +2458,25 @@ Security fixes:
2405
2458
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2406
2459
  1.8.23.2 (for Ruby 1.9.3).
2407
2460
 
2408
- === 2.1.4 / 2013-09-17
2461
+ # 2.1.4 / 2013-09-17
2409
2462
 
2410
- Bug fixes:
2463
+ ## Bug fixes:
2411
2464
 
2412
2465
  * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
2413
2466
  #650 by Kyle (remkade).
2414
2467
  * Fixed uninstalling gems installed in the home directory (as in
2415
2468
  `--user-install`). Issue #653 by Lin Jen-Shin.
2416
2469
 
2417
- === 2.1.3 / 2013-09-12
2470
+ # 2.1.3 / 2013-09-12
2418
2471
 
2419
- Bug fixes:
2472
+ ## Bug fixes:
2420
2473
 
2421
2474
  * Gems with files entries starting with "./" no longer install 0 files. Issue
2422
2475
  #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
2423
2476
 
2424
- === 2.1.2 / 2013-09-11
2477
+ # 2.1.2 / 2013-09-11
2425
2478
 
2426
- Bug fixes:
2479
+ ## Bug fixes:
2427
2480
 
2428
2481
  * Restore concurrent requires following the fix for ruby bug #8374. Pull
2429
2482
  request #637 and issue #640 by Charles Nutter.
@@ -2432,14 +2485,14 @@ Bug fixes:
2432
2485
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2433
2486
  Issue #643 by Brian Shirai.
2434
2487
 
2435
- === 2.1.1 / 2013-09-10
2488
+ # 2.1.1 / 2013-09-10
2436
2489
 
2437
- Bug fixes:
2490
+ ## Bug fixes:
2438
2491
 
2439
2492
  * Only matching gems matching your local platform are considered for
2440
2493
  installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
2441
2494
 
2442
- === 2.1.0 / 2013-09-09
2495
+ # 2.1.0 / 2013-09-09
2443
2496
 
2444
2497
  Security fixes:
2445
2498
 
@@ -2448,7 +2501,7 @@ Security fixes:
2448
2501
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2449
2502
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2450
2503
 
2451
- Enhancements:
2504
+ ## Enhancements:
2452
2505
 
2453
2506
  * RubyGems uses a new dependency resolver for gem installation which works
2454
2507
  similar to the bundler resolver. The new resolver can resolve conflicts the
@@ -2524,7 +2577,7 @@ Enhancements:
2524
2577
  still slow, but I see a near 50% improvement for 250 gems on a fast
2525
2578
  connection). See also Gem::Specification::outdated_and_latest_version
2526
2579
 
2527
- Bug fixes:
2580
+ ## Bug fixes:
2528
2581
 
2529
2582
  * rubygems_plugin.rb files are now only loaded from the latest installed gem.
2530
2583
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
@@ -2532,29 +2585,29 @@ Bug fixes:
2532
2585
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2533
2586
  request #622 by Arthur Nogueira Neves
2534
2587
 
2535
- === 2.0.17 / 2015-06-08
2588
+ # 2.0.17 / 2015-06-08
2536
2589
 
2537
- Bug fixes:
2590
+ ## Bug fixes:
2538
2591
 
2539
2592
  * Tightened API endpoint checks for CVE-2015-3900
2540
2593
 
2541
- === 2.0.16 / 2015-05-14
2594
+ # 2.0.16 / 2015-05-14
2542
2595
 
2543
- Bug fixes:
2596
+ ## Bug fixes:
2544
2597
 
2545
2598
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
2546
2599
  Fix by claudijd
2547
2600
 
2548
- === 2.0.15 / 2014-12-21
2601
+ # 2.0.15 / 2014-12-21
2549
2602
 
2550
- Bug fixes:
2603
+ ## Bug fixes:
2551
2604
 
2552
2605
  * Backport: Add alternate Root CA for upcoming certificate change.
2553
2606
  Fixes #1050 by Protosac
2554
2607
 
2555
- === 2.0.14 / 2013-11-12
2608
+ # 2.0.14 / 2013-11-12
2556
2609
 
2557
- Bug fixes:
2610
+ ## Bug fixes:
2558
2611
 
2559
2612
  * Gem::Specification::remove_spec no longer checks for existence of the spec
2560
2613
  to be removed. Issue #698 by Tiago Macedo.
@@ -2564,9 +2617,9 @@ Bug fixes:
2564
2617
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
2565
2618
  Pull Request #706 by akr.
2566
2619
 
2567
- === 2.0.13 / 2013-10-24
2620
+ # 2.0.13 / 2013-10-24
2568
2621
 
2569
- Bug fixes:
2622
+ ## Bug fixes:
2570
2623
 
2571
2624
  * Use class check instead of :version method check when creating Gem::Version
2572
2625
  objects. Fixes #674 by jkanywhere.
@@ -2575,16 +2628,16 @@ Bug fixes:
2575
2628
  * Fix updating gems which have multiple platforms. Issue #693 by Ookami
2576
2629
  Kenrou.
2577
2630
 
2578
- === 2.0.12 / 2013-10-14
2631
+ # 2.0.12 / 2013-10-14
2579
2632
 
2580
- Bug fixes:
2633
+ ## Bug fixes:
2581
2634
 
2582
2635
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
2583
2636
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
2584
2637
 
2585
- === 2.0.11 / 2013-10-08
2638
+ # 2.0.11 / 2013-10-08
2586
2639
 
2587
- Bug fixes:
2640
+ ## Bug fixes:
2588
2641
 
2589
2642
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
2590
2643
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -2599,7 +2652,7 @@ Bug fixes:
2599
2652
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
2600
2653
  Thomas Sänger.
2601
2654
 
2602
- === 2.0.10 / 2013-09-24
2655
+ # 2.0.10 / 2013-09-24
2603
2656
 
2604
2657
  Security fixes:
2605
2658
 
@@ -2608,16 +2661,16 @@ Security fixes:
2608
2661
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
2609
2662
  1.8.23.2 (for Ruby 1.9.3).
2610
2663
 
2611
- === 2.0.9 / 2013-09-13
2664
+ # 2.0.9 / 2013-09-13
2612
2665
 
2613
- Bug fixes:
2666
+ ## Bug fixes:
2614
2667
 
2615
2668
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
2616
2669
  Issue #643 by Brian Shirai.
2617
2670
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
2618
2671
  request #622 by Arthur Nogueira Neves
2619
2672
 
2620
- === 2.0.8 / 2013-09-09
2673
+ # 2.0.8 / 2013-09-09
2621
2674
 
2622
2675
  Security fixes:
2623
2676
 
@@ -2626,14 +2679,14 @@ Security fixes:
2626
2679
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2627
2680
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2628
2681
 
2629
- Bug fixes:
2682
+ ## Bug fixes:
2630
2683
 
2631
2684
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
2632
2685
  #625 by elarkin
2633
2686
 
2634
- === 2.0.7 / 2013-08-15
2687
+ # 2.0.7 / 2013-08-15
2635
2688
 
2636
- Bug fixes:
2689
+ ## Bug fixes:
2637
2690
 
2638
2691
  * Extensions may now be built in parallel (therefore gems may be installed in
2639
2692
  parallel). Bug #607 by Hemant Kumar.
@@ -2643,9 +2696,9 @@ Bug fixes:
2643
2696
  Patches by Yui Naruse and Koichi Sasada.
2644
2697
  * Fixed documentation for Kernel#require.
2645
2698
 
2646
- === 2.0.6 / 2013-07-24
2699
+ # 2.0.6 / 2013-07-24
2647
2700
 
2648
- Bug fixes:
2701
+ ## Bug fixes:
2649
2702
 
2650
2703
  * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
2651
2704
  #593 by Blargel.
@@ -2657,14 +2710,14 @@ Bug fixes:
2657
2710
  Bug #599 by Chris Riesbeck
2658
2711
  * Restored default of remote search to `gem search`.
2659
2712
 
2660
- === 2.0.5 / 2013-07-11
2713
+ # 2.0.5 / 2013-07-11
2661
2714
 
2662
2715
  * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
2663
2716
  Zachary Salzbank.
2664
2717
 
2665
- === 2.0.4 / 2013-07-09
2718
+ # 2.0.4 / 2013-07-09
2666
2719
 
2667
- Bug fixes:
2720
+ ## Bug fixes:
2668
2721
 
2669
2722
  * Fixed error caused by gem install not finding the right platform for your
2670
2723
  platform. Bug #576 by John Anderson
@@ -2703,9 +2756,9 @@ Bug fixes:
2703
2756
  * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
2704
2757
  r41148 by Yui Naruse
2705
2758
 
2706
- === 2.0.3 / 2013-03-11
2759
+ # 2.0.3 / 2013-03-11
2707
2760
 
2708
- Bug fixes:
2761
+ ## Bug fixes:
2709
2762
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2710
2763
  #506 by André Arko
2711
2764
  * Use File.realpath to remove extra / while checking if files are
@@ -2720,17 +2773,17 @@ Bug fixes:
2720
2773
  * Fixed default gem key and cert locations. Pull request #511 by Samuel
2721
2774
  Cochran.
2722
2775
 
2723
- === 2.0.2 / 2013-03-06
2776
+ # 2.0.2 / 2013-03-06
2724
2777
 
2725
- Bug fixes:
2778
+ ## Bug fixes:
2726
2779
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2727
2780
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2728
2781
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
2729
2782
  * Fixed HTTP to HTTPS upgrade for rubygems.org.
2730
2783
 
2731
- === 2.0.1 / 2013-03-05
2784
+ # 2.0.1 / 2013-03-05
2732
2785
 
2733
- Bug fixes:
2786
+ ## Bug fixes:
2734
2787
  * Lazily load RubyGems.org API credentials to avoid failure during
2735
2788
  RubyGems installation. Bug #465 by Isaac Sanders.
2736
2789
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2752,7 +2805,7 @@ Bug fixes:
2752
2805
  Ruby bug #7713 by nobu
2753
2806
  * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
2754
2807
 
2755
- === 2.0.0 / 2013-02-24
2808
+ # 2.0.0 / 2013-02-24
2756
2809
 
2757
2810
  RubyGems 2.0 includes several new features and many breaking changes. Some of
2758
2811
  these changes will cause existing software to break. These changes are a
@@ -2764,7 +2817,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2764
2817
 
2765
2818
  Changes since RubyGems 1.8.25 (including past pre-releases):
2766
2819
 
2767
- Breaking changes:
2820
+ ## Breaking changes:
2768
2821
 
2769
2822
  * Deprecated Gem.unresolved_deps in favor of
2770
2823
  Gem::Specification.unresolved_deps
@@ -2786,7 +2839,7 @@ Breaking changes:
2786
2839
  * Removed support for Ruby 1.9.1
2787
2840
  * Removed many deprecated methods
2788
2841
 
2789
- Enhancements:
2842
+ ## Enhancements:
2790
2843
 
2791
2844
  * Improved support for default gems shipping with ruby 2.0.0+
2792
2845
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2846,7 +2899,7 @@ Enhancements:
2846
2899
  GEM_HOME
2847
2900
  * When building gems with non-world-readable files a warning is shown.
2848
2901
 
2849
- Bug fixes:
2902
+ ## Bug fixes:
2850
2903
  * Gem.refresh now maintains the active gem list. Clearing the list would
2851
2904
  cause double-loads which would cause other bugs. Pull Request #427 by
2852
2905
  Jeremy Evans
@@ -2903,7 +2956,7 @@ Bug fixes:
2903
2956
 
2904
2957
  Changes since RubyGems 2.0.0.rc.2:
2905
2958
 
2906
- Bug fixes:
2959
+ ## Bug fixes:
2907
2960
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2908
2961
  #450 by Jeremy Kemper
2909
2962
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2916,48 +2969,48 @@ Bug fixes:
2916
2969
  * Fixed verification of gems at LowSecurity due to missing signature.
2917
2970
  Thanks to André Arko.
2918
2971
 
2919
- === 2.0.0.rc.2 / 2013-02-08
2972
+ # 2.0.0.rc.2 / 2013-02-08
2920
2973
 
2921
- Bug fixes:
2974
+ ## Bug fixes:
2922
2975
  * Fixed signature verification of gems which was broken only on master.
2923
2976
  Thanks to Brian Buchanan.
2924
2977
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
2925
2978
  André Arko.
2926
2979
 
2927
- === 2.0.0.rc.1 / 2013-01-08
2980
+ # 2.0.0.rc.1 / 2013-01-08
2928
2981
 
2929
- Enhancements:
2982
+ ## Enhancements:
2930
2983
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2931
2984
  prerelease versions of RubyGems cannot push gems.
2932
2985
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2933
2986
  #419 by Erik Hollensbe
2934
2987
 
2935
- Bug fixes:
2988
+ ## Bug fixes:
2936
2989
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2937
2990
  #418 by André Arko
2938
2991
  * Gem installation will fail if RubyGems cannot load the specification from
2939
2992
  the gem. Bug #419 by Erik Hollensbe
2940
2993
 
2941
- === 2.0.0.preview2.2 / 2012-12-14
2994
+ # 2.0.0.preview2.2 / 2012-12-14
2942
2995
 
2943
- Enhancements:
2996
+ ## Enhancements:
2944
2997
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2945
2998
  * Removed rubyforge page from gem list output
2946
2999
 
2947
- Bug fixes:
3000
+ ## Bug fixes:
2948
3001
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2949
3002
  #413 by Jeremy Kemper.
2950
3003
 
2951
- === 2.0.0.preview2.1 / 2012-12-08
3004
+ # 2.0.0.preview2.1 / 2012-12-08
2952
3005
 
2953
- Enhancements:
3006
+ ## Enhancements:
2954
3007
  * Gem::DependencyInstaller now passes build_args down to the installer.
2955
3008
  Pull Request #412 by Sam Rawlins.
2956
3009
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2957
3010
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2958
3011
  Skipper.
2959
3012
 
2960
- Bug fixes:
3013
+ ## Bug fixes:
2961
3014
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2962
3015
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2963
3016
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2969,13 +3022,13 @@ Bug fixes:
2969
3022
  * gem install now ignores directories that match the gem to install. Bug
2970
3023
  #407 by Santiago Pastorino.
2971
3024
 
2972
- === 2.0.0.preview2 / 2012-12-01
3025
+ # 2.0.0.preview2 / 2012-12-01
2973
3026
 
2974
3027
  This release contains two commits not present in Ruby 2.0.0.preview2. One
2975
3028
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2976
3029
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2977
3030
 
2978
- Breaking changes:
3031
+ ## Breaking changes:
2979
3032
 
2980
3033
  * Deprecated Gem.unresolved_deps in favor of
2981
3034
  Gem::Specification.unresolved_deps
@@ -2997,7 +3050,7 @@ Breaking changes:
2997
3050
  * Removed support for Ruby 1.9.1
2998
3051
  * Removed many deprecated methods
2999
3052
 
3000
- Enhancements:
3053
+ ## Enhancements:
3001
3054
 
3002
3055
  * Improved support for default gems shipping with ruby 2.0.0+
3003
3056
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -3048,7 +3101,7 @@ Enhancements:
3048
3101
  GEM_HOME
3049
3102
  * When building gems with non-world-readable files a warning is shown.
3050
3103
 
3051
- Bug fixes:
3104
+ ## Bug fixes:
3052
3105
 
3053
3106
  * Added PID to setup bin_file while installing RubyGems to protect against
3054
3107
  errors. Fixes #328 by ConradIrwin
@@ -3089,17 +3142,17 @@ Bug fixes:
3089
3142
  * URI scheme matching is no longer case-sensitive. Fixes #322
3090
3143
  * ext/builder now checks $MAKE as well as $make (okkez)
3091
3144
 
3092
- === 1.8.29 / 2013-11-23
3145
+ # 1.8.29 / 2013-11-23
3093
3146
 
3094
- Bug fixes:
3147
+ ## Bug fixes:
3095
3148
 
3096
3149
  * Fixed installation when the LANG environment variable is empty.
3097
3150
  * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
3098
3151
  cloudfront.
3099
3152
 
3100
- === 1.8.28 / 2013-10-08
3153
+ # 1.8.28 / 2013-10-08
3101
3154
 
3102
- Bug fixes:
3155
+ ## Bug fixes:
3103
3156
 
3104
3157
  * Added the Verisign Class 3 Public Primary Certification Authority G5
3105
3158
  certificate and its intermediary to follow the s3.amazonaws.com certificate
@@ -3109,7 +3162,7 @@ Bug fixes:
3109
3162
  * Added test for missing certificates for https://s3.amazonaws.com or
3110
3163
  https://rubygems.org. Pull request #673 by Hannes Georg.
3111
3164
 
3112
- === 1.8.27 / 2013-09-24
3165
+ # 1.8.27 / 2013-09-24
3113
3166
 
3114
3167
  Security fixes:
3115
3168
 
@@ -3118,7 +3171,7 @@ Security fixes:
3118
3171
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3119
3172
  1.8.23.2 (for Ruby 1.9.3).
3120
3173
 
3121
- === 1.8.26 / 2013-09-09
3174
+ # 1.8.26 / 2013-09-09
3122
3175
 
3123
3176
  Security fixes:
3124
3177
 
@@ -3127,13 +3180,13 @@ Security fixes:
3127
3180
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3128
3181
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3129
3182
 
3130
- Bug fixes:
3183
+ ## Bug fixes:
3131
3184
 
3132
3185
  * Fixed editing of a Makefile with 8-bit characters. Fixes #181
3133
3186
 
3134
- === 1.8.25 / 2013-01-24
3187
+ # 1.8.25 / 2013-01-24
3135
3188
 
3136
- Bug fixes:
3189
+ ## Bug fixes:
3137
3190
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3138
3191
  #328 by ConradIrwin
3139
3192
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3142,14 +3195,14 @@ Bug fixes:
3142
3195
  * Fix missing load_yaml in YAML-related requirement.rb code.
3143
3196
  * Manually backport encoding-aware YAML gemspec
3144
3197
 
3145
- === 1.8.24 / 2012-04-27
3198
+ # 1.8.24 / 2012-04-27
3146
3199
 
3147
- Bug fixes:
3200
+ ## Bug fixes:
3148
3201
 
3149
3202
  * Install the .pem files properly. Fixes #320
3150
3203
  * Remove OpenSSL dependency from the http code path
3151
3204
 
3152
- === 1.8.23.2 / 2013-09-24
3205
+ # 1.8.23.2 / 2013-09-24
3153
3206
 
3154
3207
  Security fixes:
3155
3208
 
@@ -3158,7 +3211,7 @@ Security fixes:
3158
3211
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3159
3212
  1.8.23.2 (for Ruby 1.9.3).
3160
3213
 
3161
- === 1.8.23.1 / 2013-09-09
3214
+ # 1.8.23.1 / 2013-09-09
3162
3215
 
3163
3216
  Security fixes:
3164
3217
 
@@ -3167,7 +3220,7 @@ Security fixes:
3167
3220
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3168
3221
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3169
3222
 
3170
- === 1.8.23 / 2012-04-19
3223
+ # 1.8.23 / 2012-04-19
3171
3224
 
3172
3225
  This release increases the security used when RubyGems is talking to
3173
3226
  an https server. If you use a custom RubyGems server over SSL, this
@@ -3187,49 +3240,49 @@ Security fixes:
3187
3240
  * Disallow redirects from https to http
3188
3241
  * Turn on verification of server SSL certs
3189
3242
 
3190
- Enhancements:
3243
+ ## Enhancements:
3191
3244
  * Add --clear-sources to fetch
3192
3245
 
3193
- Bug fixes:
3246
+ ## Bug fixes:
3194
3247
  * Use File.identical? to check if two files are the same.
3195
3248
  * Fixed init_with warning when using psych
3196
3249
 
3197
- === 1.8.22 / 2012-04-13
3250
+ # 1.8.22 / 2012-04-13
3198
3251
 
3199
- Bug fixes:
3252
+ ## Bug fixes:
3200
3253
 
3201
3254
  * Workaround for psych/syck YAML date parsing issue
3202
3255
  * Don't trust the encoding of ARGV. Fixes #307
3203
3256
  * Quiet default warnings about missing spec variables
3204
3257
  * Read a binary file properly (windows fix)
3205
3258
 
3206
- === 1.8.21 / 2012-03-22
3259
+ # 1.8.21 / 2012-03-22
3207
3260
 
3208
- Bug fixes:
3261
+ ## Bug fixes:
3209
3262
 
3210
3263
  * Add workaround for buggy yaml output from 1.9.2
3211
3264
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3212
3265
 
3213
- === 1.8.20 / 2012-03-21
3266
+ # 1.8.20 / 2012-03-21
3214
3267
 
3215
- Bug fixes:
3268
+ ## Bug fixes:
3216
3269
 
3217
3270
  * Add --force to `gem build` to skip validation. Fixes #297
3218
3271
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
3219
3272
  * Treat the source as a proper url base. Fixes #304
3220
3273
  * Warn when updating the specs cache fails. Fixes #300
3221
3274
 
3222
- === 1.8.19 / 2012-03-14
3275
+ # 1.8.19 / 2012-03-14
3223
3276
 
3224
- Bug fixes:
3277
+ ## Bug fixes:
3225
3278
 
3226
3279
  * Handle loading psych vs syck properly. Fixes #298
3227
3280
  * Make sure Date objects don't leak in via Marshal
3228
3281
  * Perform Date => Time coercion on yaml loading. Fixes #266
3229
3282
 
3230
- === 1.8.18 / 2012-03-11
3283
+ # 1.8.18 / 2012-03-11
3231
3284
 
3232
- Bug fixes:
3285
+ ## Bug fixes:
3233
3286
 
3234
3287
  * Use Psych API to emit more compatible YAML
3235
3288
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3237,14 +3290,14 @@ Bug fixes:
3237
3290
  * Search everywhere for a spec for `gem spec`. Fixes #288
3238
3291
  * Fix Gem.all_load_path. Fixes #171
3239
3292
 
3240
- === 1.8.17 / 2012-02-17
3293
+ # 1.8.17 / 2012-02-17
3241
3294
 
3242
- Enhancements:
3295
+ ## Enhancements:
3243
3296
 
3244
3297
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3245
3298
  * Add a default for where to install rubygems itself
3246
3299
 
3247
- Bug fixes:
3300
+ ## Bug fixes:
3248
3301
 
3249
3302
  * Fixed gem loading issue caused by dependencies not resolving.
3250
3303
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3252,59 +3305,59 @@ Bug fixes:
3252
3305
  * Define SUCKAGE better, ie only MRI 1.9.2
3253
3306
  * Propagate env-shebang to the pristine command if set for install.
3254
3307
 
3255
- === 1.8.16 / 2012-02-12
3308
+ # 1.8.16 / 2012-02-12
3256
3309
 
3257
- Bug fixes:
3310
+ ## Bug fixes:
3258
3311
 
3259
3312
  * Fix gem specification loading when encoding is not UTF-8. #146
3260
3313
  * Allow group writable if umask allows it already.
3261
3314
  * Uniquify the spec list based on directory order priority
3262
3315
 
3263
- === 1.8.15 / 2012-01-06
3316
+ # 1.8.15 / 2012-01-06
3264
3317
 
3265
- Bug fixes:
3318
+ ## Bug fixes:
3266
3319
 
3267
3320
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3268
3321
 
3269
- === 1.8.14 / 2012-01-05
3322
+ # 1.8.14 / 2012-01-05
3270
3323
 
3271
- Bug fixes:
3324
+ ## Bug fixes:
3272
3325
 
3273
3326
  * Ignore old/bad cache data in Version
3274
3327
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3275
3328
 
3276
- === 1.8.13 / 2011-12-21
3329
+ # 1.8.13 / 2011-12-21
3277
3330
 
3278
- Bug fixes:
3331
+ ## Bug fixes:
3279
3332
 
3280
3333
  * Check loaded_specs properly when trying to satisfy a dep
3281
3334
 
3282
- Enhancements:
3335
+ ## Enhancements:
3283
3336
 
3284
3337
  * Remove using #loaded_path? for performance
3285
3338
  * Remove Zlib workaround for Windows build.
3286
3339
 
3287
- === 1.8.12 / 2011-12-02
3340
+ # 1.8.12 / 2011-12-02
3288
3341
 
3289
- Bug fixes:
3342
+ ## Bug fixes:
3290
3343
 
3291
3344
  * Handle more cases where Syck's DefaultKey showed up in requirements
3292
3345
  and wasn't cleaned out.
3293
3346
 
3294
- === 1.8.11 / 2011-10-03
3347
+ # 1.8.11 / 2011-10-03
3295
3348
 
3296
- Bug fixes:
3349
+ ## Bug fixes:
3297
3350
 
3298
3351
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3299
3352
  namespace.
3300
3353
 
3301
- === 1.8.10 / 2011-08-25
3354
+ # 1.8.10 / 2011-08-25
3302
3355
 
3303
3356
  RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3304
3357
  executing code when their specification is loaded. See
3305
3358
  https://github.com/rubygems/rubygems/pull/165 for details.
3306
3359
 
3307
- Bug fixes:
3360
+ ## Bug fixes:
3308
3361
 
3309
3362
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3310
3363
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3315,21 +3368,21 @@ Bug fixes:
3315
3368
  * Fixed Syck DefaultKey infecting ruby-format specifications.
3316
3369
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
3317
3370
 
3318
- === 1.8.9 / 2011-08-23
3371
+ # 1.8.9 / 2011-08-23
3319
3372
 
3320
- Bug fixes:
3373
+ ## Bug fixes:
3321
3374
 
3322
3375
  * Fixed uninstalling multiple gems using `gem uninstall`
3323
3376
  * Gem.use_paths splatted to take multiple paths! Issue #148
3324
3377
 
3325
- === 1.8.8 / 2011-08-11
3378
+ # 1.8.8 / 2011-08-11
3326
3379
 
3327
- Bug fixes:
3380
+ ## Bug fixes:
3328
3381
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3329
3382
 
3330
- === 1.8.7 / 2011-08-04
3383
+ # 1.8.7 / 2011-08-04
3331
3384
 
3332
- Bug fixes:
3385
+ ## Bug fixes:
3333
3386
  * Added missing require for `gem uninstall --format-executable`
3334
3387
  * The correct name of the executable being uninstalled is now displayed with
3335
3388
  --format-executable
@@ -3341,14 +3394,14 @@ Bug fixes:
3341
3394
  * Gem repository directories are no longer created world-writable. Patch by
3342
3395
  Sakuro OZAWA. Ruby Bug #4930
3343
3396
 
3344
- === 1.8.6 / 2011-07-25
3397
+ # 1.8.6 / 2011-07-25
3345
3398
 
3346
- Enhancements:
3399
+ ## Enhancements:
3347
3400
 
3348
3401
  * Add autorequires and delay startup of RubyGems until require is called.
3349
3402
  See Ruby bug #4962
3350
3403
 
3351
- Bug fixes:
3404
+ ## Bug fixes:
3352
3405
 
3353
3406
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3354
3407
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3360,27 +3413,27 @@ Bug fixes:
3360
3413
  * Handle the Syck DefaultKey problem once and for all.
3361
3414
  * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
3362
3415
 
3363
- === 1.8.5 / 2011-05-31
3416
+ # 1.8.5 / 2011-05-31
3364
3417
 
3365
- Enhancements:
3418
+ ## Enhancements:
3366
3419
 
3367
3420
  * The -u option to 'update local source cache' is official deprecated.
3368
3421
  * Remove has_rdoc deprecations from Specification.
3369
3422
 
3370
- Bug fixes:
3423
+ ## Bug fixes:
3371
3424
 
3372
3425
  * Handle bad specs more gracefully.
3373
3426
  * Reset any Gem paths changed in the installer.
3374
3427
 
3375
- === 1.8.4 / 2011-05-25
3428
+ # 1.8.4 / 2011-05-25
3376
3429
 
3377
- Enhancements:
3430
+ ## Enhancements:
3378
3431
 
3379
3432
  * Removed default_executable deprecations from Specification.
3380
3433
 
3381
- === 1.8.3 / 2011-05-19
3434
+ # 1.8.3 / 2011-05-19
3382
3435
 
3383
- Bug fixes:
3436
+ ## Bug fixes:
3384
3437
 
3385
3438
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3386
3439
  Shota Fukumori
@@ -3389,33 +3442,33 @@ Bug fixes:
3389
3442
  * Fixed some bad calls left behind after rolling out some refactorings.
3390
3443
  * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
3391
3444
 
3392
- === 1.8.2 / 2011-05-11
3445
+ # 1.8.2 / 2011-05-11
3393
3446
 
3394
- Enhancements:
3447
+ ## Enhancements:
3395
3448
 
3396
3449
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3397
3450
  * Print out a warning about missing executables.
3398
3451
 
3399
- Bug fixes:
3452
+ ## Bug fixes:
3400
3453
 
3401
3454
  * Added missing requires to fix various upgrade issues.
3402
3455
  * `gem pristine` respects multiple gem repositories.
3403
3456
  * setup.rb now execs with --disable-gems when possible
3404
3457
 
3405
- === 1.8.1 / 2011-05-05
3458
+ # 1.8.1 / 2011-05-05
3406
3459
 
3407
- Enhancements:
3460
+ ## Enhancements:
3408
3461
 
3409
3462
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3410
3463
 
3411
- Bug fixes:
3464
+ ## Bug fixes:
3412
3465
 
3413
3466
  * Typo on Indexer rendered it useless on Windows
3414
3467
  * gem dep can fetch remote dependencies for non-latest gems again.
3415
3468
  * gem uninstall with multiple versions no longer crashes with ArgumentError
3416
3469
  * Always use binary mode for File.open to keep Windows happy
3417
3470
 
3418
- === 1.8.0 / 2011-04-34
3471
+ # 1.8.0 / 2011-04-34
3419
3472
 
3420
3473
  This release focused on properly encapsulating functionality. Most of this
3421
3474
  work focused on moving functionality out of Gem::SourceIndex and
@@ -3430,7 +3483,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3430
3483
  --build-arg` to regenerate a gem with an extension where it requires special
3431
3484
  build arguments.
3432
3485
 
3433
- Deprecations:
3486
+ ## Deprecations:
3434
3487
 
3435
3488
  * DependencyList.from_source_index deprecated the source_index argument.
3436
3489
  * Deprecated Dependency.new(/regex/).
@@ -3451,7 +3504,7 @@ Deprecations:
3451
3504
  * Deprecated all of Gem::GemPathSearcher.
3452
3505
  * Deprecated Gem::Specification#default_executable.
3453
3506
 
3454
- Enhancements:
3507
+ ## Enhancements:
3455
3508
 
3456
3509
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3457
3510
  Gem::SourceIndex is completely disconnected from Gem::Specification
@@ -3503,7 +3556,7 @@ Enhancements:
3503
3556
  extensions.
3504
3557
  * `gem pristine` can now restore multiple gems.
3505
3558
 
3506
- Bug fixes:
3559
+ ## Bug fixes:
3507
3560
 
3508
3561
  * DependencyInstaller passed around a source_index instance but used
3509
3562
  Gem.source_index.
@@ -3515,15 +3568,15 @@ Bug fixes:
3515
3568
  * `gem pristine` can now restore non-latest gems where the cached gem was
3516
3569
  removed.
3517
3570
 
3518
- === 1.7.1 / 2011-03-32
3571
+ # 1.7.1 / 2011-03-32
3519
3572
 
3520
- Bug fixes:
3573
+ ## Bug fixes:
3521
3574
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3522
3575
  `rake check_manifest` showing a diff would not exit with an error.)
3523
3576
 
3524
- === 1.7.0 / 2011-03-32
3577
+ # 1.7.0 / 2011-03-32
3525
3578
 
3526
- Deprecations:
3579
+ ## Deprecations:
3527
3580
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3528
3581
  cache.
3529
3582
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3535,7 +3588,7 @@ Deprecations:
3535
3588
  test_suite_file(=).
3536
3589
  * Deprecated Specification#has_rdoc= and default_executable=
3537
3590
 
3538
- Enhancements:
3591
+ ## Enhancements:
3539
3592
  * Added stupid simple deprecation module.
3540
3593
  * Added --spec option to `gem unpack` to output a gem's original metadata
3541
3594
  * Added packaging option to Specification#validate
@@ -3567,7 +3620,7 @@ Enhancements:
3567
3620
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3568
3621
  * UpdateCommand#which_to_update now takes an optional system argument.
3569
3622
 
3570
- Bug fixes:
3623
+ ## Bug fixes:
3571
3624
  * Added missing remote fetcher require to pristine command (aarnell)
3572
3625
  * Building gems now checks to ensure all required fields are non-nil
3573
3626
  * Fix option parser when summary is nil.
@@ -3583,17 +3636,17 @@ Bug fixes:
3583
3636
  Elias Baixas
3584
3637
  * `gem update` now uniq's command line arguments.
3585
3638
 
3586
- === 1.6.2 / 2011-03-08
3639
+ # 1.6.2 / 2011-03-08
3587
3640
 
3588
- Bug fixes:
3641
+ ## Bug fixes:
3589
3642
 
3590
3643
  * require of an activated gem could cause activation conflicts. Fixes
3591
3644
  Bug #29056 by Dave Verwer.
3592
3645
  * `gem outdated` now works with up-to-date prerelease gems.
3593
3646
 
3594
- === 1.6.1 / 2011-03-03
3647
+ # 1.6.1 / 2011-03-03
3595
3648
 
3596
- Bug fixes:
3649
+ ## Bug fixes:
3597
3650
 
3598
3651
  * Installation no longer fails when a dependency from a version that won't be
3599
3652
  installed is unsatisfied.
@@ -3602,9 +3655,9 @@ Bug fixes:
3602
3655
  * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
3603
3656
  * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
3604
3657
 
3605
- === 1.6.0 / 2011-02-29
3658
+ # 1.6.0 / 2011-02-29
3606
3659
 
3607
- Deprecations:
3660
+ ## Deprecations:
3608
3661
 
3609
3662
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3610
3663
  'thread' to their applications.
@@ -3613,7 +3666,7 @@ Deprecations:
3613
3666
  * Gem::LoadError#version_requirements has been removed. Use
3614
3667
  Gem::LoadError#requirement.
3615
3668
 
3616
- Enhancements:
3669
+ ## Enhancements:
3617
3670
 
3618
3671
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3619
3672
  * Gem::LoadError#version_requirement has been removed. Use
@@ -3641,7 +3694,7 @@ Enhancements:
3641
3694
  locally cached gem specifications.
3642
3695
  * SpecFetcher.fetch_spec can now take a string source_uri.
3643
3696
 
3644
- Bug fixes:
3697
+ ## Bug fixes:
3645
3698
 
3646
3699
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3647
3700
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3654,28 +3707,28 @@ Bug fixes:
3654
3707
  * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
3655
3708
  * Gem::Uninstaller now respects --format-executable.
3656
3709
 
3657
- === 1.5.3 / 2011-02-26
3710
+ # 1.5.3 / 2011-02-26
3658
3711
 
3659
- Bug fixes:
3712
+ ## Bug fixes:
3660
3713
 
3661
3714
  * Fix for a bug in Syck which causes install failures for gems packaged with
3662
3715
  Psych. Bug #28965 by Aaron Patterson.
3663
3716
 
3664
- === 1.5.2 / 2011-02-10
3717
+ # 1.5.2 / 2011-02-10
3665
3718
 
3666
- Bug fixes:
3719
+ ## Bug fixes:
3667
3720
 
3668
3721
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3669
3722
 
3670
- === 1.5.1 / 2011-02-09
3723
+ # 1.5.1 / 2011-02-09
3671
3724
 
3672
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3725
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3673
3726
 
3674
- Enhancements:
3727
+ ## Enhancements:
3675
3728
 
3676
3729
  * Added ability to do gem update --system X.Y.Z.
3677
3730
 
3678
- Bug fixes:
3731
+ ## Bug fixes:
3679
3732
 
3680
3733
  * Scrub !!null YAML from 1.9.2 (install and build).
3681
3734
  * Added missing requires for user_interaction.
@@ -3684,11 +3737,11 @@ Bug fixes:
3684
3737
  * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
3685
3738
  * RubyGems now enforces ruby 1.8.7 or newer.
3686
3739
 
3687
- === 1.5.0 / 2011-01-31
3740
+ # 1.5.0 / 2011-01-31
3688
3741
 
3689
- ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3742
+ #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3690
3743
 
3691
- Enhancements:
3744
+ ## Enhancements:
3692
3745
 
3693
3746
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3694
3747
  * Merged huge 1.3.7/ruby-core changes to master.
@@ -3703,7 +3756,7 @@ Enhancements:
3703
3756
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3704
3757
  Erik Hollensbe.
3705
3758
 
3706
- Bug fixes:
3759
+ ## Bug fixes:
3707
3760
 
3708
3761
  * `gem update` was implicitly doing --system.
3709
3762
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3715,25 +3768,25 @@ Bug fixes:
3715
3768
  Erik Hollensbe.
3716
3769
  * rubygems-update lists its development dependencies again
3717
3770
 
3718
- === 1.4.2 / 2011-01-06
3771
+ # 1.4.2 / 2011-01-06
3719
3772
 
3720
- Bug fixes:
3773
+ ## Bug fixes:
3721
3774
 
3722
3775
  * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
3723
3776
  * Fixed Gem.find_files.
3724
3777
  * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
3725
3778
 
3726
- === 1.4.1 / 2010-12-31
3779
+ # 1.4.1 / 2010-12-31
3727
3780
 
3728
3781
  Since apparently nobody reads my emails, blog posts or the README:
3729
3782
 
3730
3783
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3731
3784
 
3732
- Bug fixes:
3785
+ ## Bug fixes:
3733
3786
 
3734
3787
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3735
3788
 
3736
- === 1.4.0 / 2010-12-30
3789
+ # 1.4.0 / 2010-12-30
3737
3790
 
3738
3791
  NOTE: In order to better maintain rubygems and to get it in sync with
3739
3792
  the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
@@ -3743,7 +3796,7 @@ You have been warned!
3743
3796
 
3744
3797
  NOTE: We've switched to git/github. See README.rdoc for details.
3745
3798
 
3746
- Features:
3799
+ ## Features:
3747
3800
 
3748
3801
  * Added --launch option to `gem server`. (gthiesfeld)
3749
3802
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3753,7 +3806,7 @@ Features:
3753
3806
  * --source is now additive with your current sources.
3754
3807
  Use --clear-sources first to maintain previous behavior.
3755
3808
 
3756
- Bug fixes:
3809
+ ## Bug fixes:
3757
3810
 
3758
3811
  * Dependency "~>"s now respect lower-bound prerelease versions.
3759
3812
  * Ensure the gem directories exist on download.
@@ -3764,7 +3817,7 @@ Bug fixes:
3764
3817
  Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
3765
3818
  * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
3766
3819
 
3767
- === 1.3.7 / 2010-05-13
3820
+ # 1.3.7 / 2010-05-13
3768
3821
 
3769
3822
  NOTE:
3770
3823
 
@@ -3775,7 +3828,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3775
3828
 
3776
3829
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3777
3830
 
3778
- Features:
3831
+ ## Features:
3779
3832
 
3780
3833
  * `gem` commands
3781
3834
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3794,7 +3847,7 @@ Features:
3794
3847
  in 1.3.6)
3795
3848
  * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
3796
3849
 
3797
- Bug fixes:
3850
+ ## Bug fixes:
3798
3851
 
3799
3852
  * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
3800
3853
  Roger Pack.
@@ -3806,9 +3859,9 @@ Bug fixes:
3806
3859
  * Gem::PackageTask depends on the package dir like the other rake package
3807
3860
  tasks so dependencies can be hooked up correctly.
3808
3861
 
3809
- === 1.3.6 / 2010-02-17
3862
+ # 1.3.6 / 2010-02-17
3810
3863
 
3811
- Features:
3864
+ ## Features:
3812
3865
 
3813
3866
  * `gem` commands
3814
3867
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3820,7 +3873,7 @@ Features:
3820
3873
  force rebuilding. Patch #25982 by Akinori MUSHA.
3821
3874
  * Capital letters are now allowed in prerelease versions.
3822
3875
 
3823
- Bug fixes:
3876
+ ## Bug fixes:
3824
3877
 
3825
3878
  * Development deps are no longer added to rubygems-update gem so older
3826
3879
  versions can update successfully.
@@ -3839,7 +3892,7 @@ Bug fixes:
3839
3892
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3840
3893
  Patch #27409 by Jakub Šťastný.
3841
3894
 
3842
- Deprecations:
3895
+ ## Deprecations:
3843
3896
 
3844
3897
  * lib/rubygems/timer.rb has been removed.
3845
3898
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3848,23 +3901,23 @@ Deprecations:
3848
3901
  * Gem::manage_gems was removed in 1.3.3.
3849
3902
  * Time::today was removed in 1.3.3.
3850
3903
 
3851
- === 1.3.5 / 2009-07-21
3904
+ # 1.3.5 / 2009-07-21
3852
3905
 
3853
- Bug fixes:
3906
+ ## Bug fixes:
3854
3907
 
3855
3908
  * Fix use of prerelease gems.
3856
3909
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3857
3910
 
3858
- Deprecations:
3911
+ ## Deprecations:
3859
3912
 
3860
3913
  * Bulk index update is no longer supported (the code currently remains, but not
3861
3914
  the tests)
3862
3915
  * Gem::manage_gems was removed in 1.3.3.
3863
3916
  * Time::today was removed in 1.3.3.
3864
3917
 
3865
- === 1.3.4 / 2009-05-03
3918
+ # 1.3.4 / 2009-05-03
3866
3919
 
3867
- Bug fixes:
3920
+ ## Bug fixes:
3868
3921
 
3869
3922
  * Fixed various warnings
3870
3923
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3875,16 +3928,16 @@ Bug fixes:
3875
3928
  drives. Bug #25882 by Lars Christensen
3876
3929
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3877
3930
 
3878
- Deprecations:
3931
+ ## Deprecations:
3879
3932
 
3880
3933
  * Bulk index update is no longer supported (the code currently remains, but not
3881
3934
  the tests)
3882
3935
  * Gem::manage_gems was removed in 1.3.3.
3883
3936
  * Time::today was removed in 1.3.3.
3884
3937
 
3885
- === 1.3.3 / 2009-05-04
3938
+ # 1.3.3 / 2009-05-04
3886
3939
 
3887
- Features:
3940
+ ## Features:
3888
3941
 
3889
3942
  * `gem server` allows port names (from /etc/services) with --port.
3890
3943
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3894,7 +3947,7 @@ Features:
3894
3947
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3895
3948
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3896
3949
 
3897
- Bug fixes:
3950
+ ## Bug fixes:
3898
3951
 
3899
3952
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3900
3953
  Eisenberg.
@@ -3916,15 +3969,15 @@ Bug fixes:
3916
3969
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3917
3970
  reported by Alf Mikula.
3918
3971
 
3919
- Deprecations:
3972
+ ## Deprecations:
3920
3973
 
3921
3974
  * Gem::manage_gems has been removed.
3922
3975
  * Time::today has been removed early. There was no way to make it warn and be
3923
3976
  easy to override with user code.
3924
3977
 
3925
- === 1.3.2 / 2009-04-15
3978
+ # 1.3.2 / 2009-04-15
3926
3979
 
3927
- Features:
3980
+ ## Features:
3928
3981
 
3929
3982
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3930
3983
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3952,7 +4005,7 @@ Features:
3952
4005
  * Modern indicies can now be updated incrementally.
3953
4006
  * Legacy indicies can be updated separately from modern.
3954
4007
 
3955
- Bug fixes:
4008
+ ## Bug fixes:
3956
4009
 
3957
4010
  * Better gem activation error message. Patch #23082.
3958
4011
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3978,7 +4031,7 @@ Bug fixes:
3978
4031
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3979
4032
  Windows. Bug #22712.
3980
4033
 
3981
- Deprecations:
4034
+ ## Deprecations:
3982
4035
 
3983
4036
  * Gem::manage_gems has been removed.
3984
4037
  * Time::today will be removed in RubyGems 1.4.
@@ -3986,9 +4039,9 @@ Deprecations:
3986
4039
  Special thanks to Chad Wooley for backwards compatibility testing and Luis
3987
4040
  Lavena and Daniel Berger for continuing windows support.
3988
4041
 
3989
- === 1.3.1 / 2008-10-28
4042
+ # 1.3.1 / 2008-10-28
3990
4043
 
3991
- Bug fixes:
4044
+ ## Bug fixes:
3992
4045
 
3993
4046
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3994
4047
  issues related to no uid support under Windows.
@@ -3999,13 +4052,13 @@ Bug fixes:
3999
4052
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
4000
4053
  * Silence PATH warning.
4001
4054
 
4002
- Deprecations:
4055
+ ## Deprecations:
4003
4056
 
4004
4057
  * Gem::manage_gems will be removed on or after March 2009.
4005
4058
 
4006
- === 1.3.0 / 2008-09-25
4059
+ # 1.3.0 / 2008-09-25
4007
4060
 
4008
- Features:
4061
+ ## Features:
4009
4062
 
4010
4063
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
4011
4064
  stdout is not a TTY, except with --both.
@@ -4019,12 +4072,12 @@ Features:
4019
4072
  * RubyGems now updates the ri cache when the rdoc gem is installed and
4020
4073
  documentation is generated.
4021
4074
 
4022
- Deprecations:
4075
+ ## Deprecations:
4023
4076
 
4024
4077
  * Gem::manage_gems now warns when called. It will be removed on or after March
4025
4078
  2009.
4026
4079
 
4027
- Bug fixes:
4080
+ ## Bug fixes:
4028
4081
 
4029
4082
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
4030
4083
  Bug #20775 by Hemant Kumar.
@@ -4048,7 +4101,7 @@ Bug fixes:
4048
4101
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
4049
4102
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
4050
4103
 
4051
- Enhancements:
4104
+ ## Enhancements:
4052
4105
 
4053
4106
  * `gem help install` now describes _version_ argument to executable stubs
4054
4107
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4074,9 +4127,9 @@ Enhancements:
4074
4127
  * test/test_ext_configure_builder.rb
4075
4128
  * Locale-free patch by Yusuke Endoh [ruby-core:17444].
4076
4129
 
4077
- === 1.2.0 / 2008-06-21
4130
+ # 1.2.0 / 2008-06-21
4078
4131
 
4079
- Features:
4132
+ ## Features:
4080
4133
 
4081
4134
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4082
4135
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4095,7 +4148,7 @@ Features:
4095
4148
  * setup.rb now handles --vendor and --destdir for packagers
4096
4149
  * `gem stale` command that lists gems by last access time
4097
4150
 
4098
- Bug fixes:
4151
+ ## Bug fixes:
4099
4152
 
4100
4153
  * File modes from gems are now honored, patch #19737
4101
4154
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4110,7 +4163,7 @@ Bug fixes:
4110
4163
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4111
4164
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4112
4165
 
4113
- Enhancements:
4166
+ ## Enhancements:
4114
4167
 
4115
4168
  * setup.rb
4116
4169
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4129,9 +4182,9 @@ Enhancements:
4129
4182
  * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
4130
4183
  bug #7973
4131
4184
 
4132
- === 1.1.1 / 2008-04-11
4185
+ # 1.1.1 / 2008-04-11
4133
4186
 
4134
- Bug fixes:
4187
+ ## Bug fixes:
4135
4188
 
4136
4189
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4137
4190
  sitelibdir or libdir.
@@ -4146,9 +4199,9 @@ Bug fixes:
4146
4199
  * Gem::RemoteFetcher handles Errno::ECONNABORTED.
4147
4200
  * Printing of release notes fixed.
4148
4201
 
4149
- === 1.1.0 / 2008-03-29
4202
+ # 1.1.0 / 2008-03-29
4150
4203
 
4151
- Features:
4204
+ ## Features:
4152
4205
 
4153
4206
  * RubyGems now uses persistent connections on index updates. Index updates are
4154
4207
  much faster now.
@@ -4160,7 +4213,7 @@ Features:
4160
4213
  * `gem spec` now extracts specifications from .gem files.
4161
4214
  * `gem query --installed` to aid automation of checking for gems.
4162
4215
 
4163
- Bug fixes:
4216
+ ## Bug fixes:
4164
4217
 
4165
4218
  * RubyGems works with both Config and RbConfig now.
4166
4219
  * Executables are now cleaned upon uninstall.
@@ -4176,7 +4229,7 @@ Bug fixes:
4176
4229
  * Gem stub scripts on windows now work outside Gem.bindir.
4177
4230
  * `gem sources -r` now works without network access.
4178
4231
 
4179
- Enhancements:
4232
+ ## Enhancements:
4180
4233
 
4181
4234
  * RubyGems now requires Ruby > 1.8.3.
4182
4235
  * Release notes are now printed upon installation.
@@ -4187,26 +4240,26 @@ Enhancements:
4187
4240
 
4188
4241
  For a full list of changes to RubyGems, see the ChangeLog file.
4189
4242
 
4190
- === 1.0.1 / 2007-12-20
4243
+ # 1.0.1 / 2007-12-20
4191
4244
 
4192
- Bug fixes:
4245
+ ## Bug fixes:
4193
4246
 
4194
4247
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4195
4248
  * `gem build` on 1.8.3 fixed
4196
4249
 
4197
- Enhancements:
4250
+ ## Enhancements:
4198
4251
 
4199
4252
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4200
4253
  this is official in RubyGems 1.0.1.
4201
4254
 
4202
- === 1.0.0 / 2007-12-20
4255
+ # 1.0.0 / 2007-12-20
4203
4256
 
4204
- Features:
4257
+ ## Features:
4205
4258
 
4206
4259
  * RubyGems warns about various problems with gemspecs during gem building
4207
4260
  * More-consistent versioning for the RubyGems software
4208
4261
 
4209
- Enhancements:
4262
+ ## Enhancements:
4210
4263
 
4211
4264
  * Fixed various bugs and problems with installing gems on Windows
4212
4265
  * Fixed using `gem server` for installing gems
@@ -4220,7 +4273,7 @@ Enhancements:
4220
4273
  * `gem unpack` can now unpack into a specific directory with --target
4221
4274
  * OpenSSL is no longer required by default
4222
4275
 
4223
- Breaking changes:
4276
+ ## Breaking changes:
4224
4277
 
4225
4278
  * Kernel#require_gem has been removed
4226
4279
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4232,9 +4285,9 @@ Breaking changes:
4232
4285
  * Gem::Specification#autorequire= has been deprecated
4233
4286
  * Time::today will be removed in a future version
4234
4287
 
4235
- === 0.9.5 / 2007-11-19
4288
+ # 0.9.5 / 2007-11-19
4236
4289
 
4237
- Features:
4290
+ ## Features:
4238
4291
 
4239
4292
  * Platform support
4240
4293
  * Automatic installation of platform gems
@@ -4246,7 +4299,7 @@ Features:
4246
4299
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4247
4300
  with the One-Click Installer.
4248
4301
 
4249
- Enhancements:
4302
+ ## Enhancements:
4250
4303
 
4251
4304
  * Time::today is deprecated and will be removed at a future date
4252
4305
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4291,13 +4344,13 @@ Special thanks to:
4291
4344
  * Tom Copeland
4292
4345
  * Wilson Bilkovich
4293
4346
 
4294
- === 0.9.4 / 2007-05-23
4347
+ # 0.9.4 / 2007-05-23
4295
4348
 
4296
4349
  If you are experiencing problems with the source index (e.g. strange
4297
4350
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4298
4351
  messsage), we recommend upgrading to RubyGems 0.9.4.
4299
4352
 
4300
- Bug fixes:
4353
+ ## Bug fixes:
4301
4354
 
4302
4355
  * Several people have been experiencing problems with no method errors
4303
4356
  on the source index cache. The source index cache is now a bit more
@@ -4309,9 +4362,9 @@ Bug fixes:
4309
4362
  * Several sub-commands were accidentally dropped from the "gem" command.
4310
4363
  These commands have been restored.
4311
4364
 
4312
- === 0.9.3 / 2007-05-10
4365
+ # 0.9.3 / 2007-05-10
4313
4366
 
4314
- Bug fixes:
4367
+ ## Bug fixes:
4315
4368
 
4316
4369
  The ZLib library on Windows will occasionally complains about a buffer error
4317
4370
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4319,19 +4372,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
4319
4372
  have received several reports of the error occurring with ZLib 1.2.3, so we
4320
4373
  have permanently enabled the work around on all versions.
4321
4374
 
4322
- === 0.9.2 / 2007-02-05
4375
+ # 0.9.2 / 2007-02-05
4323
4376
 
4324
- Bug fixes:
4377
+ ## Bug fixes:
4325
4378
 
4326
4379
  * The "unpack" command now works properly.
4327
4380
  * User name and password are now passed properly to the authenticating
4328
4381
  proxy when downloading gems.
4329
4382
 
4330
- === 0.9.1 / 2007-01-16
4383
+ # 0.9.1 / 2007-01-16
4331
4384
 
4332
4385
  See ChangeLog
4333
4386
 
4334
- === 0.9.0 / 2006-06-28
4387
+ # 0.9.0 / 2006-06-28
4335
4388
 
4336
4389
  Finally, the much anticipated RubyGems version 0.9.0 is now available.
4337
4390
  This release includes a number of new features and bug fixes. The
@@ -4339,7 +4392,7 @@ number one change is that we can now download the gem index
4339
4392
  incrementally. This will greatly speed up the gem command when only a
4340
4393
  few gems are out of date.
4341
4394
 
4342
- Enhancements:
4395
+ ## Enhancements:
4343
4396
 
4344
4397
  * The gem index is now downloaded incrementally, only updating entries
4345
4398
  that are out of date. If more than 50 entries are out of date, we
@@ -4366,7 +4419,7 @@ Enhancements:
4366
4419
  * .rbw is now a supported suffix for RubyGem's custom require.
4367
4420
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4368
4421
 
4369
- Bug fixes:
4422
+ ## Bug fixes:
4370
4423
 
4371
4424
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4372
4425
  cross-Ruby version compatibility issues.
@@ -4378,7 +4431,7 @@ Bug fixes:
4378
4431
  * Fixed prefix handling for native expressions (patch by Aaron Patterson).
4379
4432
  * Fixed several Upgrade => Update typos.
4380
4433
 
4381
- === 0.8.11 / 2005-07-13
4434
+ # 0.8.11 / 2005-07-13
4382
4435
 
4383
4436
  * -y is a synonym for --include-dependencies.
4384
4437
  * Better handling of errors in the top level rescue clause.
@@ -4397,7 +4450,7 @@ Bug fixes:
4397
4450
  * Added David Glasser's install-from-mirror patch.
4398
4451
  * Additional internal structural cleanup and test reorganization.
4399
4452
 
4400
- === 0.8.10 / 2005-03-27
4453
+ # 0.8.10 / 2005-03-27
4401
4454
 
4402
4455
  * In multi-user environments, it is common to supply multiple versions of gems
4403
4456
  (for example Rails), allowing individual users to select the version of the
@@ -4408,16 +4461,16 @@ Bug fixes:
4408
4461
  installed, then the "gem update --system" command will download a new
4409
4462
  update, but install the latest update prior to the download.
4410
4463
 
4411
- === 0.8.9
4464
+ # 0.8.9
4412
4465
 
4413
4466
  Never released
4414
4467
 
4415
- === 0.8.8 / 2005-03-14
4468
+ # 0.8.8 / 2005-03-14
4416
4469
 
4417
4470
  * Moved the master definition of class Requirement back under version.
4418
4471
  Kept the body of Requirement under Gem.
4419
4472
 
4420
- === 0.8.7 / 2005-03-14
4473
+ # 0.8.7 / 2005-03-14
4421
4474
 
4422
4475
  Even though it has only been a few weeks since that last release,
4423
4476
  there are quite a number of new features in 0.8.7. A complete list of
@@ -4470,11 +4523,11 @@ file system. You can read more about them here:
4470
4523
  * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
4471
4524
  * gemwhich: http://docs.rubygems.org/read/chapter/17
4472
4525
 
4473
- === 0.8.6 / 2005-02-27
4526
+ # 0.8.6 / 2005-02-27
4474
4527
 
4475
4528
  * Fixed a small bug with shebang construction
4476
4529
 
4477
- === 0.8.5 / 2005-02-26
4530
+ # 0.8.5 / 2005-02-26
4478
4531
 
4479
4532
  Do you know how you used to dread getting the following message while
4480
4533
  installing gems?
@@ -4496,7 +4549,7 @@ us. No RDoc generation was included in the following times.
4496
4549
  The new caching code is at least 3x faster than previous versions. Woo
4497
4550
  Hoo!
4498
4551
 
4499
- === 0.8.4 / 2005-01-01
4552
+ # 0.8.4 / 2005-01-01
4500
4553
 
4501
4554
  * Rubygems 0.8.3's installer was broken unless you already had an older
4502
4555
  version of RubyGems installed. That's fixed.
@@ -4506,7 +4559,7 @@ Hoo!
4506
4559
  * Support for lower-cased Gem file names (for you, Paul Duncan :)
4507
4560
  * Erik Veenstra's patch for making Gem versions sortable.
4508
4561
 
4509
- === 0.8.3 / 2004-12-07
4562
+ # 0.8.3 / 2004-12-07
4510
4563
 
4511
4564
  No real earth shattering news here, but there were a number of really
4512
4565
  annoying issues involving other libraries that RubyGems depends upon.
@@ -4548,11 +4601,11 @@ There has been some minor usability enhancements and changes ...
4548
4601
  names. This was useful for him while testing libs that he had in
4549
4602
  development.
4550
4603
 
4551
- === 0.8.1 / 2004-09-17
4604
+ # 0.8.1 / 2004-09-17
4552
4605
 
4553
4606
  * Quick release to capture some bug fixes.
4554
4607
 
4555
- === 0.8.0 / 2004-09-15
4608
+ # 0.8.0 / 2004-09-15
4556
4609
 
4557
4610
  * Remove need for library stubs. Set the RUBYOPT environment variable to
4558
4611
  include "rrubygems", and a normal require will find gem files. Continue to
@@ -4575,15 +4628,15 @@ There has been some minor usability enhancements and changes ...
4575
4628
  to pick.
4576
4629
  * Added "gem unpack" for "unpacking" a gem to the current directory
4577
4630
 
4578
- === 0.7.0 / 2004-07-09
4631
+ # 0.7.0 / 2004-07-09
4579
4632
 
4580
4633
  See ChangeLog
4581
4634
 
4582
- === 0.6.1 / 2004-06-08
4635
+ # 0.6.1 / 2004-06-08
4583
4636
 
4584
4637
  See ChangeLog
4585
4638
 
4586
- === 0.6.0 / 2004-06-08
4639
+ # 0.6.0 / 2004-06-08
4587
4640
 
4588
4641
  * Collapse output of --search and --list (and gem_server) operations so that
4589
4642
  each gem is listed only once, with each of its versions listed on the same
@@ -4596,7 +4649,7 @@ See ChangeLog
4596
4649
  spec.required_ruby_version = "> 1.8.0"
4597
4650
  * --install-stub defaults to true, so library stubs are created
4598
4651
 
4599
- === 0.5.0 / 2004-06-06
4652
+ # 0.5.0 / 2004-06-06
4600
4653
 
4601
4654
  * Jim added the ability to specify version constraints to avoid API
4602
4655
  incompatibilities. This has been the subject of much debate for the past
@@ -4619,11 +4672,11 @@ See ChangeLog
4619
4672
  automatically included.
4620
4673
  * Some small bug fixes
4621
4674
 
4622
- === 0.4.0 / 2004-05-30
4675
+ # 0.4.0 / 2004-05-30
4623
4676
 
4624
4677
  * Minor bug fixes including Windows compatibility issues
4625
4678
 
4626
- === 0.3.0 / 2004-04-30
4679
+ # 0.3.0 / 2004-04-30
4627
4680
 
4628
4681
  * Cleanup of command-line arguments and handling. Most commands accept a
4629
4682
  --local or --remote modifier.
@@ -4644,6 +4697,6 @@ See ChangeLog
4644
4697
  * Generally improved error messages (still more work to do)
4645
4698
  * Rearranged gem directory structure for cleanliness.
4646
4699
 
4647
- === 0.2.0 / 2004-03-14
4700
+ # 0.2.0 / 2004-03-14
4648
4701
 
4649
4702
  * Initial public release