rubygems-update 3.5.3 → 3.7.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (437) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +1410 -686
  3. data/CODE_OF_CONDUCT.md +79 -28
  4. data/CONTRIBUTING.md +4 -226
  5. data/Manifest.txt +107 -83
  6. data/README.md +16 -11
  7. data/SECURITY.md +7 -0
  8. data/bundler/CHANGELOG.md +1525 -931
  9. data/bundler/README.md +9 -9
  10. data/bundler/bundler.gemspec +2 -2
  11. data/bundler/lib/bundler/build_metadata.rb +10 -11
  12. data/bundler/lib/bundler/checksum.rb +22 -12
  13. data/bundler/lib/bundler/cli/add.rb +3 -1
  14. data/bundler/lib/bundler/cli/binstubs.rb +1 -1
  15. data/bundler/lib/bundler/cli/check.rb +3 -3
  16. data/bundler/lib/bundler/cli/common.rb +1 -1
  17. data/bundler/lib/bundler/cli/config.rb +2 -2
  18. data/bundler/lib/bundler/cli/console.rb +8 -10
  19. data/bundler/lib/bundler/cli/doctor/diagnose.rb +167 -0
  20. data/bundler/lib/bundler/cli/doctor/ssl.rb +249 -0
  21. data/bundler/lib/bundler/cli/doctor.rb +27 -151
  22. data/bundler/lib/bundler/cli/exec.rb +1 -0
  23. data/bundler/lib/bundler/cli/fund.rb +1 -1
  24. data/bundler/lib/bundler/cli/gem.rb +74 -46
  25. data/bundler/lib/bundler/cli/info.rb +6 -6
  26. data/bundler/lib/bundler/cli/inject.rb +3 -3
  27. data/bundler/lib/bundler/cli/install.rb +19 -10
  28. data/bundler/lib/bundler/cli/issue.rb +3 -3
  29. data/bundler/lib/bundler/cli/lock.rb +32 -11
  30. data/bundler/lib/bundler/cli/outdated.rb +23 -23
  31. data/bundler/lib/bundler/cli/plugin.rb +3 -2
  32. data/bundler/lib/bundler/cli/pristine.rb +1 -1
  33. data/bundler/lib/bundler/cli/show.rb +3 -3
  34. data/bundler/lib/bundler/cli/update.rb +3 -3
  35. data/bundler/lib/bundler/cli.rb +75 -145
  36. data/bundler/lib/bundler/compact_index_client/cache.rb +48 -73
  37. data/bundler/lib/bundler/compact_index_client/cache_file.rb +0 -5
  38. data/bundler/lib/bundler/compact_index_client/parser.rb +84 -0
  39. data/bundler/lib/bundler/compact_index_client/updater.rb +6 -16
  40. data/bundler/lib/bundler/compact_index_client.rb +52 -85
  41. data/bundler/lib/bundler/constants.rb +8 -1
  42. data/bundler/lib/bundler/current_ruby.rb +48 -34
  43. data/bundler/lib/bundler/definition.rb +501 -328
  44. data/bundler/lib/bundler/dependency.rb +93 -47
  45. data/bundler/lib/bundler/dsl.rb +147 -103
  46. data/bundler/lib/bundler/endpoint_specification.rb +30 -3
  47. data/bundler/lib/bundler/env.rb +1 -1
  48. data/bundler/lib/bundler/environment_preserver.rb +5 -23
  49. data/bundler/lib/bundler/errors.rb +53 -5
  50. data/bundler/lib/bundler/feature_flag.rb +18 -18
  51. data/bundler/lib/bundler/fetcher/compact_index.rb +16 -25
  52. data/bundler/lib/bundler/fetcher/dependency.rb +2 -1
  53. data/bundler/lib/bundler/fetcher/downloader.rb +34 -8
  54. data/bundler/lib/bundler/fetcher.rb +63 -26
  55. data/bundler/lib/bundler/force_platform.rb +0 -2
  56. data/bundler/lib/bundler/friendly_errors.rb +3 -2
  57. data/bundler/lib/bundler/gem_helper.rb +1 -1
  58. data/bundler/lib/bundler/gem_version_promoter.rb +42 -40
  59. data/bundler/lib/bundler/index.rb +7 -2
  60. data/bundler/lib/bundler/injector.rb +14 -16
  61. data/bundler/lib/bundler/inline.rb +42 -17
  62. data/bundler/lib/bundler/installer/gem_installer.rb +4 -3
  63. data/bundler/lib/bundler/installer/parallel_installer.rb +3 -2
  64. data/bundler/lib/bundler/installer/standalone.rb +2 -5
  65. data/bundler/lib/bundler/installer.rb +22 -45
  66. data/bundler/lib/bundler/lazy_specification.rb +121 -48
  67. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  68. data/bundler/lib/bundler/lockfile_parser.rb +36 -9
  69. data/bundler/lib/bundler/man/bundle-add.1 +44 -27
  70. data/bundler/lib/bundler/man/bundle-add.1.ronn +52 -23
  71. data/bundler/lib/bundler/man/bundle-binstubs.1 +9 -6
  72. data/bundler/lib/bundler/man/bundle-binstubs.1.ronn +6 -3
  73. data/bundler/lib/bundler/man/bundle-cache.1 +32 -4
  74. data/bundler/lib/bundler/man/bundle-cache.1.ronn +31 -2
  75. data/bundler/lib/bundler/man/bundle-check.1 +7 -5
  76. data/bundler/lib/bundler/man/bundle-check.1.ronn +7 -2
  77. data/bundler/lib/bundler/man/bundle-clean.1 +3 -3
  78. data/bundler/lib/bundler/man/bundle-config.1 +180 -138
  79. data/bundler/lib/bundler/man/bundle-config.1.ronn +96 -99
  80. data/bundler/lib/bundler/man/bundle-console.1 +4 -6
  81. data/bundler/lib/bundler/man/bundle-console.1.ronn +2 -7
  82. data/bundler/lib/bundler/man/bundle-doctor.1 +46 -7
  83. data/bundler/lib/bundler/man/bundle-doctor.1.ronn +49 -5
  84. data/bundler/lib/bundler/man/bundle-env.1 +9 -0
  85. data/bundler/lib/bundler/man/bundle-env.1.ronn +10 -0
  86. data/bundler/lib/bundler/man/bundle-exec.1 +9 -6
  87. data/bundler/lib/bundler/man/bundle-exec.1.ronn +6 -3
  88. data/bundler/lib/bundler/man/bundle-fund.1 +22 -0
  89. data/bundler/lib/bundler/man/bundle-fund.1.ronn +25 -0
  90. data/bundler/lib/bundler/man/bundle-gem.1 +69 -28
  91. data/bundler/lib/bundler/man/bundle-gem.1.ronn +42 -6
  92. data/bundler/lib/bundler/man/bundle-help.1 +3 -3
  93. data/bundler/lib/bundler/man/bundle-info.1 +7 -4
  94. data/bundler/lib/bundler/man/bundle-info.1.ronn +6 -2
  95. data/bundler/lib/bundler/man/bundle-init.1 +5 -5
  96. data/bundler/lib/bundler/man/bundle-init.1.ronn +3 -2
  97. data/bundler/lib/bundler/man/bundle-inject.1 +13 -5
  98. data/bundler/lib/bundler/man/bundle-inject.1.ronn +10 -2
  99. data/bundler/lib/bundler/man/bundle-install.1 +20 -17
  100. data/bundler/lib/bundler/man/bundle-install.1.ronn +26 -23
  101. data/bundler/lib/bundler/man/bundle-issue.1 +45 -0
  102. data/bundler/lib/bundler/man/bundle-issue.1.ronn +37 -0
  103. data/bundler/lib/bundler/man/bundle-licenses.1 +9 -0
  104. data/bundler/lib/bundler/man/bundle-licenses.1.ronn +10 -0
  105. data/bundler/lib/bundler/man/bundle-list.1 +3 -3
  106. data/bundler/lib/bundler/man/bundle-list.1.ronn +4 -1
  107. data/bundler/lib/bundler/man/bundle-lock.1 +23 -8
  108. data/bundler/lib/bundler/man/bundle-lock.1.ronn +25 -4
  109. data/bundler/lib/bundler/man/bundle-open.1 +4 -4
  110. data/bundler/lib/bundler/man/bundle-open.1.ronn +2 -1
  111. data/bundler/lib/bundler/man/bundle-outdated.1 +10 -7
  112. data/bundler/lib/bundler/man/bundle-outdated.1.ronn +8 -4
  113. data/bundler/lib/bundler/man/bundle-platform.1 +3 -3
  114. data/bundler/lib/bundler/man/bundle-plugin.1 +9 -6
  115. data/bundler/lib/bundler/man/bundle-plugin.1.ronn +7 -3
  116. data/bundler/lib/bundler/man/bundle-pristine.1 +3 -3
  117. data/bundler/lib/bundler/man/bundle-pristine.1.ronn +1 -1
  118. data/bundler/lib/bundler/man/bundle-remove.1 +3 -3
  119. data/bundler/lib/bundler/man/bundle-remove.1.ronn +1 -1
  120. data/bundler/lib/bundler/man/bundle-show.1 +7 -4
  121. data/bundler/lib/bundler/man/bundle-show.1.ronn +4 -0
  122. data/bundler/lib/bundler/man/bundle-update.1 +17 -11
  123. data/bundler/lib/bundler/man/bundle-update.1.ronn +17 -9
  124. data/bundler/lib/bundler/man/bundle-version.1 +3 -3
  125. data/bundler/lib/bundler/man/bundle-viz.1 +6 -6
  126. data/bundler/lib/bundler/man/bundle-viz.1.ronn +7 -3
  127. data/bundler/lib/bundler/man/bundle.1 +3 -3
  128. data/bundler/lib/bundler/man/gemfile.5 +7 -5
  129. data/bundler/lib/bundler/man/gemfile.5.ronn +8 -2
  130. data/bundler/lib/bundler/man/index.txt +4 -0
  131. data/bundler/lib/bundler/match_metadata.rb +13 -0
  132. data/bundler/lib/bundler/match_platform.rb +31 -12
  133. data/bundler/lib/bundler/materialization.rb +59 -0
  134. data/bundler/lib/bundler/mirror.rb +3 -3
  135. data/bundler/lib/bundler/plugin/api/source.rb +5 -4
  136. data/bundler/lib/bundler/plugin/events.rb +24 -0
  137. data/bundler/lib/bundler/plugin/index.rb +5 -1
  138. data/bundler/lib/bundler/plugin/installer/path.rb +26 -0
  139. data/bundler/lib/bundler/plugin/installer.rb +37 -17
  140. data/bundler/lib/bundler/plugin/source_list.rb +4 -4
  141. data/bundler/lib/bundler/plugin.rb +21 -2
  142. data/bundler/lib/bundler/process_lock.rb +10 -14
  143. data/bundler/lib/bundler/remote_specification.rb +6 -1
  144. data/bundler/lib/bundler/resolver/base.rb +14 -3
  145. data/bundler/lib/bundler/resolver/candidate.rb +18 -27
  146. data/bundler/lib/bundler/resolver/package.rb +20 -3
  147. data/bundler/lib/bundler/resolver/spec_group.rb +22 -27
  148. data/bundler/lib/bundler/resolver/strategy.rb +40 -0
  149. data/bundler/lib/bundler/resolver.rb +114 -52
  150. data/bundler/lib/bundler/retry.rb +1 -1
  151. data/bundler/lib/bundler/ruby_dsl.rb +12 -3
  152. data/bundler/lib/bundler/ruby_version.rb +7 -1
  153. data/bundler/lib/bundler/rubygems_ext.rb +303 -150
  154. data/bundler/lib/bundler/rubygems_gem_installer.rb +40 -5
  155. data/bundler/lib/bundler/rubygems_integration.rb +40 -73
  156. data/bundler/lib/bundler/runtime.rb +48 -35
  157. data/bundler/lib/bundler/self_manager.rb +36 -26
  158. data/bundler/lib/bundler/settings/validator.rb +0 -23
  159. data/bundler/lib/bundler/settings.rb +36 -27
  160. data/bundler/lib/bundler/setup.rb +6 -0
  161. data/bundler/lib/bundler/shared_helpers.rb +45 -25
  162. data/bundler/lib/bundler/source/gemspec.rb +1 -4
  163. data/bundler/lib/bundler/source/git/git_proxy.rb +26 -9
  164. data/bundler/lib/bundler/source/git.rb +113 -41
  165. data/bundler/lib/bundler/source/metadata.rb +4 -3
  166. data/bundler/lib/bundler/source/path.rb +14 -18
  167. data/bundler/lib/bundler/source/rubygems/remote.rb +12 -4
  168. data/bundler/lib/bundler/source/rubygems.rb +54 -48
  169. data/bundler/lib/bundler/source.rb +2 -0
  170. data/bundler/lib/bundler/source_list.rb +54 -12
  171. data/bundler/lib/bundler/source_map.rb +1 -1
  172. data/bundler/lib/bundler/spec_set.rb +227 -103
  173. data/bundler/lib/bundler/stub_specification.rb +29 -2
  174. data/bundler/lib/bundler/templates/Executable +0 -11
  175. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +77 -29
  176. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +1 -3
  177. data/bundler/lib/bundler/templates/newgem/README.md.tt +7 -3
  178. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +17 -15
  179. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +14 -12
  180. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +0 -5
  181. data/bundler/lib/bundler/ui/shell.rb +26 -4
  182. data/bundler/lib/bundler/ui/silent.rb +12 -1
  183. data/bundler/lib/bundler/uri_credentials_filter.rb +3 -3
  184. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +53 -3
  185. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +1 -1
  186. data/bundler/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +11 -0
  187. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +15 -13
  188. data/bundler/lib/bundler/vendor/net-http-persistent/README.rdoc +1 -1
  189. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +2 -1
  190. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +134 -57
  191. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/basic_package_source.rb +4 -24
  192. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/static_package_source.rb +1 -0
  193. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/strategy.rb +42 -0
  194. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_range.rb +20 -8
  195. data/bundler/lib/bundler/vendor/pub_grub/lib/pub_grub/version_solver.rb +17 -29
  196. data/bundler/lib/bundler/vendor/securerandom/COPYING +56 -0
  197. data/bundler/lib/bundler/vendor/securerandom/lib/securerandom.rb +102 -0
  198. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +3 -5
  199. data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +11 -0
  200. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +1 -4
  201. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +2 -2
  202. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +2 -1
  203. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +9 -9
  204. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +1 -1
  205. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/table_printer.rb +5 -21
  206. data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +1 -1
  207. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  208. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +11 -0
  209. data/bundler/lib/bundler/vendor/uri/COPYING +56 -0
  210. data/bundler/lib/bundler/vendor/uri/lib/uri/common.rb +43 -16
  211. data/bundler/lib/bundler/vendor/uri/lib/uri/file.rb +3 -3
  212. data/bundler/lib/bundler/vendor/uri/lib/uri/ftp.rb +1 -1
  213. data/bundler/lib/bundler/vendor/uri/lib/uri/generic.rb +28 -37
  214. data/bundler/lib/bundler/vendor/uri/lib/uri/http.rb +2 -2
  215. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +16 -9
  216. data/bundler/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +26 -3
  217. data/bundler/lib/bundler/vendor/uri/lib/uri/version.rb +1 -1
  218. data/bundler/lib/bundler/vendor/uri/lib/uri.rb +9 -9
  219. data/bundler/lib/bundler/vendored_net_http.rb +20 -5
  220. data/bundler/lib/bundler/vendored_securerandom.rb +12 -0
  221. data/bundler/lib/bundler/vendored_timeout.rb +7 -3
  222. data/bundler/lib/bundler/vendored_uri.rb +18 -1
  223. data/bundler/lib/bundler/version.rb +10 -2
  224. data/bundler/lib/bundler/worker.rb +1 -1
  225. data/bundler/lib/bundler/yaml_serializer.rb +12 -7
  226. data/bundler/lib/bundler.rb +101 -61
  227. data/{bundler → doc/bundler}/UPGRADING.md +132 -127
  228. data/doc/rubygems/CONTRIBUTING.md +227 -0
  229. data/{POLICIES.md → doc/rubygems/POLICIES.md} +86 -17
  230. data/exe/update_rubygems +1 -1
  231. data/lib/rubygems/basic_specification.rb +50 -10
  232. data/lib/rubygems/bundler_version_finder.rb +1 -1
  233. data/lib/rubygems/command.rb +1 -4
  234. data/lib/rubygems/command_manager.rb +5 -6
  235. data/lib/rubygems/commands/build_command.rb +2 -11
  236. data/lib/rubygems/commands/cleanup_command.rb +3 -13
  237. data/lib/rubygems/commands/contents_command.rb +17 -10
  238. data/lib/rubygems/commands/environment_command.rb +5 -0
  239. data/lib/rubygems/commands/exec_command.rb +18 -11
  240. data/lib/rubygems/commands/fetch_command.rb +14 -0
  241. data/lib/rubygems/commands/help_command.rb +2 -2
  242. data/lib/rubygems/commands/install_command.rb +0 -4
  243. data/lib/rubygems/commands/pristine_command.rb +29 -19
  244. data/lib/rubygems/commands/push_command.rb +31 -6
  245. data/lib/rubygems/commands/rdoc_command.rb +3 -10
  246. data/lib/rubygems/commands/rebuild_command.rb +262 -0
  247. data/lib/rubygems/commands/setup_command.rb +13 -18
  248. data/lib/rubygems/commands/sources_command.rb +2 -2
  249. data/lib/rubygems/commands/uninstall_command.rb +9 -4
  250. data/lib/rubygems/commands/unpack_command.rb +0 -6
  251. data/lib/rubygems/commands/update_command.rb +13 -22
  252. data/lib/rubygems/config_file.rb +45 -16
  253. data/lib/rubygems/core_ext/kernel_require.rb +15 -3
  254. data/lib/rubygems/core_ext/kernel_warn.rb +2 -6
  255. data/lib/rubygems/defaults.rb +7 -7
  256. data/lib/rubygems/dependency.rb +12 -16
  257. data/lib/rubygems/dependency_list.rb +1 -1
  258. data/lib/rubygems/deprecate.rb +79 -77
  259. data/lib/rubygems/errors.rb +2 -1
  260. data/lib/rubygems/exceptions.rb +2 -9
  261. data/lib/rubygems/ext/builder.rb +21 -8
  262. data/lib/rubygems/ext/cargo_builder.rb +16 -26
  263. data/lib/rubygems/ext/cmake_builder.rb +7 -2
  264. data/lib/rubygems/ext/configure_builder.rb +7 -2
  265. data/lib/rubygems/ext/ext_conf_builder.rb +9 -5
  266. data/lib/rubygems/ext/rake_builder.rb +7 -4
  267. data/lib/rubygems/gem_runner.rb +9 -0
  268. data/lib/rubygems/gemcutter_utilities/webauthn_listener.rb +11 -4
  269. data/lib/rubygems/gemcutter_utilities/webauthn_poller.rb +3 -1
  270. data/lib/rubygems/gemcutter_utilities.rb +52 -26
  271. data/lib/rubygems/gemspec_helpers.rb +19 -0
  272. data/lib/rubygems/install_update_options.rb +5 -0
  273. data/lib/rubygems/installer.rb +76 -90
  274. data/lib/rubygems/local_remote_options.rb +8 -8
  275. data/lib/rubygems/package/tar_header.rb +31 -4
  276. data/lib/rubygems/package/tar_reader/entry.rb +1 -5
  277. data/lib/rubygems/package/tar_writer.rb +5 -4
  278. data/lib/rubygems/package.rb +13 -8
  279. data/lib/rubygems/platform.rb +148 -43
  280. data/lib/rubygems/psych_tree.rb +4 -0
  281. data/lib/rubygems/query_utils.rb +2 -2
  282. data/lib/rubygems/rdoc.rb +16 -3
  283. data/lib/rubygems/remote_fetcher.rb +6 -7
  284. data/lib/rubygems/request.rb +5 -5
  285. data/lib/rubygems/request_set/gem_dependency_api.rb +1 -1
  286. data/lib/rubygems/request_set.rb +4 -7
  287. data/lib/rubygems/requirement.rb +16 -12
  288. data/lib/rubygems/resolver/activation_request.rb +1 -1
  289. data/lib/rubygems/resolver/api_set/gem_parser.rb +2 -5
  290. data/lib/rubygems/resolver/api_set.rb +13 -8
  291. data/lib/rubygems/resolver/best_set.rb +1 -29
  292. data/lib/rubygems/resolver/composed_set.rb +3 -3
  293. data/lib/rubygems/resolver/git_set.rb +0 -1
  294. data/lib/rubygems/resolver/index_set.rb +2 -2
  295. data/lib/rubygems/resolver/source_set.rb +1 -1
  296. data/lib/rubygems/resolver/spec_specification.rb +7 -0
  297. data/lib/rubygems/resolver.rb +8 -8
  298. data/lib/rubygems/s3_uri_signer.rb +8 -6
  299. data/lib/rubygems/safe_marshal/reader.rb +31 -14
  300. data/lib/rubygems/safe_marshal/visitors/to_ruby.rb +29 -16
  301. data/lib/rubygems/safe_yaml.rb +10 -1
  302. data/lib/rubygems/security.rb +1 -1
  303. data/lib/rubygems/source/git.rb +22 -17
  304. data/lib/rubygems/source/installed.rb +3 -1
  305. data/lib/rubygems/source/local.rb +8 -4
  306. data/lib/rubygems/source/specific_file.rb +5 -3
  307. data/lib/rubygems/source.rb +37 -29
  308. data/lib/rubygems/source_list.rb +1 -1
  309. data/lib/rubygems/spec_fetcher.rb +47 -15
  310. data/lib/rubygems/specification.rb +110 -183
  311. data/lib/rubygems/specification_policy.rb +33 -13
  312. data/lib/rubygems/specification_record.rb +212 -0
  313. data/lib/rubygems/stub_specification.rb +32 -10
  314. data/lib/rubygems/target_rbconfig.rb +50 -0
  315. data/lib/rubygems/uninstaller.rb +42 -22
  316. data/lib/rubygems/uri.rb +6 -6
  317. data/lib/rubygems/uri_formatter.rb +2 -1
  318. data/lib/rubygems/util/licenses.rb +118 -1
  319. data/lib/rubygems/util.rb +1 -1
  320. data/lib/rubygems/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
  321. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/delegates/specification_provider.rb +11 -11
  322. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/action.rb +1 -1
  323. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
  324. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
  325. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
  326. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
  327. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/log.rb +1 -1
  328. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
  329. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -1
  330. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph/vertex.rb +1 -1
  331. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/dependency_graph.rb +2 -2
  332. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/errors.rb +1 -1
  333. data/lib/rubygems/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
  334. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/modules/specification_provider.rb +2 -2
  335. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/modules/ui.rb +1 -1
  336. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/resolution.rb +4 -4
  337. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/resolver.rb +1 -1
  338. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo/state.rb +1 -1
  339. data/lib/rubygems/{resolver → vendor}/molinillo/lib/molinillo.rb +2 -2
  340. data/lib/rubygems/vendor/net-http/COPYING +56 -0
  341. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/generic_request.rb +9 -9
  342. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/header.rb +3 -3
  343. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/request.rb +3 -3
  344. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/requests.rb +35 -30
  345. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/response.rb +2 -2
  346. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/responses.rb +6 -6
  347. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/status.rb +1 -1
  348. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http.rb +149 -70
  349. data/lib/rubygems/{net-http → vendor/net-http}/lib/net/https.rb +1 -1
  350. data/lib/rubygems/vendor/optparse/COPYING +56 -0
  351. data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/ac.rb +16 -0
  352. data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/kwargs.rb +8 -3
  353. data/lib/rubygems/vendor/optparse/lib/optparse/uri.rb +7 -0
  354. data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/version.rb +9 -0
  355. data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse.rb +158 -62
  356. data/lib/rubygems/vendor/resolv/COPYING +56 -0
  357. data/lib/rubygems/{resolv → vendor/resolv}/lib/resolv.rb +165 -69
  358. data/lib/rubygems/vendor/securerandom/COPYING +56 -0
  359. data/lib/rubygems/vendor/securerandom/lib/securerandom.rb +102 -0
  360. data/lib/rubygems/vendor/timeout/COPYING +56 -0
  361. data/lib/rubygems/{timeout → vendor/timeout}/lib/timeout.rb +10 -11
  362. data/lib/rubygems/{tsort → vendor/tsort}/lib/tsort.rb +2 -2
  363. data/lib/rubygems/vendor/uri/COPYING +56 -0
  364. data/lib/rubygems/vendor/uri/lib/uri/common.rb +880 -0
  365. data/lib/rubygems/vendor/uri/lib/uri/file.rb +100 -0
  366. data/lib/rubygems/vendor/uri/lib/uri/ftp.rb +267 -0
  367. data/lib/rubygems/vendor/uri/lib/uri/generic.rb +1579 -0
  368. data/lib/rubygems/vendor/uri/lib/uri/http.rb +125 -0
  369. data/lib/rubygems/vendor/uri/lib/uri/https.rb +23 -0
  370. data/lib/rubygems/vendor/uri/lib/uri/ldap.rb +261 -0
  371. data/lib/rubygems/vendor/uri/lib/uri/ldaps.rb +22 -0
  372. data/lib/rubygems/vendor/uri/lib/uri/mailto.rb +293 -0
  373. data/lib/rubygems/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
  374. data/lib/rubygems/vendor/uri/lib/uri/rfc3986_parser.rb +206 -0
  375. data/lib/rubygems/vendor/uri/lib/uri/version.rb +6 -0
  376. data/lib/rubygems/vendor/uri/lib/uri/ws.rb +83 -0
  377. data/lib/rubygems/vendor/uri/lib/uri/wss.rb +23 -0
  378. data/lib/rubygems/vendor/uri/lib/uri.rb +104 -0
  379. data/lib/rubygems/vendored_molinillo.rb +3 -0
  380. data/lib/rubygems/vendored_net_http.rb +5 -0
  381. data/lib/rubygems/vendored_optparse.rb +3 -0
  382. data/lib/rubygems/vendored_securerandom.rb +3 -0
  383. data/lib/rubygems/vendored_timeout.rb +5 -0
  384. data/lib/rubygems/vendored_tsort.rb +3 -0
  385. data/lib/rubygems/version.rb +26 -9
  386. data/lib/rubygems/yaml_serializer.rb +12 -7
  387. data/lib/rubygems.rb +160 -53
  388. data/rubygems-update.gemspec +11 -6
  389. data/setup.rb +1 -1
  390. metadata +124 -96
  391. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +0 -32
  392. data/bundler/lib/bundler/gem_helpers.rb +0 -127
  393. data/bundler/lib/bundler/templates/Executable.bundler +0 -109
  394. data/bundler/lib/bundler/vendor/fileutils/.document +0 -1
  395. data/bundler/lib/bundler/vendor/net-http-persistent/.document +0 -1
  396. data/bundler/lib/bundler/vendor/pub_grub/.document +0 -1
  397. data/bundler/lib/bundler/vendor/thor/.document +0 -1
  398. data/bundler/lib/bundler/vendor/tsort/.document +0 -1
  399. data/bundler/lib/bundler/vendor/uri/.document +0 -1
  400. data/lib/rubygems/net/http.rb +0 -3
  401. data/lib/rubygems/net-http/.document +0 -1
  402. data/lib/rubygems/net-http/LICENSE.txt +0 -22
  403. data/lib/rubygems/net-http/lib/net/http/backward.rb +0 -40
  404. data/lib/rubygems/net-protocol/.document +0 -1
  405. data/lib/rubygems/net-protocol/LICENSE.txt +0 -22
  406. data/lib/rubygems/optparse/.document +0 -1
  407. data/lib/rubygems/optparse/lib/optparse/uri.rb +0 -7
  408. data/lib/rubygems/optparse.rb +0 -3
  409. data/lib/rubygems/resolv/.document +0 -1
  410. data/lib/rubygems/resolv/LICENSE.txt +0 -22
  411. data/lib/rubygems/resolver/molinillo/.document +0 -1
  412. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +0 -57
  413. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +0 -6
  414. data/lib/rubygems/resolver/molinillo.rb +0 -3
  415. data/lib/rubygems/shellwords.rb +0 -3
  416. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA.pem +0 -21
  417. data/lib/rubygems/timeout/.document +0 -1
  418. data/lib/rubygems/timeout/LICENSE.txt +0 -22
  419. data/lib/rubygems/timeout.rb +0 -3
  420. data/lib/rubygems/tsort/.document +0 -1
  421. data/lib/rubygems/tsort/LICENSE.txt +0 -22
  422. data/lib/rubygems/tsort.rb +0 -3
  423. /data/{lib/rubygems/optparse → bundler/lib/bundler/vendor/fileutils}/COPYING +0 -0
  424. /data/{MAINTAINERS.txt → doc/MAINTAINERS.txt} +0 -0
  425. /data/{UPGRADING.md → doc/rubygems/UPGRADING.md} +0 -0
  426. /data/lib/rubygems/ssl_certs/rubygems.org/{GlobalSignRootCA_R3.pem → GlobalSign.pem} +0 -0
  427. /data/{bundler/lib/bundler/vendor/connection_pool → lib/rubygems/vendor}/.document +0 -0
  428. /data/lib/rubygems/{resolver → vendor}/molinillo/LICENSE +0 -0
  429. /data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/exceptions.rb +0 -0
  430. /data/lib/rubygems/{net-http → vendor/net-http}/lib/net/http/proxy_delta.rb +0 -0
  431. /data/{bundler/lib/bundler/vendor/fileutils → lib/rubygems/vendor/net-protocol}/LICENSE.txt +0 -0
  432. /data/lib/rubygems/{net-protocol → vendor/net-protocol}/lib/net/protocol.rb +0 -0
  433. /data/lib/rubygems/{optparse → vendor/optparse}/lib/optionparser.rb +0 -0
  434. /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/date.rb +0 -0
  435. /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/shellwords.rb +0 -0
  436. /data/lib/rubygems/{optparse → vendor/optparse}/lib/optparse/time.rb +0 -0
  437. /data/{bundler/lib/bundler/vendor/uri → lib/rubygems/vendor/tsort}/LICENSE.txt +0 -0
data/CHANGELOG.md CHANGED
@@ -1,39 +1,767 @@
1
- # 3.5.3 / 2023-12-22
1
+ # Changelog
2
2
 
3
- ## Enhancements:
3
+ ## 3.7.1 / 2025-07-21
4
+
5
+ ### Enhancements:
6
+
7
+ * Fix regression in presence of RVM gems. Pull request
8
+ [#8854](https://github.com/rubygems/rubygems/pull/8854) by
9
+ deivid-rodriguez
10
+ * Restore parsing "--" as an unknown platform rather than crashing. Pull
11
+ request [#8846](https://github.com/rubygems/rubygems/pull/8846) by
12
+ deivid-rodriguez
13
+ * Installs bundler 2.7.1 as a default gem.
14
+
15
+ ### Documentation:
16
+
17
+ * Use mailto link in Code of Conduct. Pull request
18
+ [#8849](https://github.com/rubygems/rubygems/pull/8849) by
19
+ deivid-rodriguez
20
+ * Update Code of Conduct email to conduct@rubygems.org. Pull request
21
+ [#8848](https://github.com/rubygems/rubygems/pull/8848) by indirect
22
+
23
+ ## 3.7.0 / 2025-07-16
24
+
25
+ ### Security:
26
+
27
+ * Update vendored resolv to 0.6.2. Pull request
28
+ [#8831](https://github.com/rubygems/rubygems/pull/8831) by hsbt
29
+
30
+ ### Breaking changes:
31
+
32
+ * Stop generating binstubs with support for RubyGems before 2.6.2. Pull
33
+ request [#8833](https://github.com/rubygems/rubygems/pull/8833) by
34
+ deivid-rodriguez
35
+ * Drop support for Ruby 3.1. Pull request
36
+ [#8634](https://github.com/rubygems/rubygems/pull/8634) by segiddins
37
+
38
+ ### Enhancements:
39
+
40
+ * Update SPDX license list as of 2025-07-01. Pull request
41
+ [#8829](https://github.com/rubygems/rubygems/pull/8829) by
42
+ github-actions[bot]
43
+ * Add `push_rubygem` as a default scope for `gem signin` command. Pull
44
+ request [#8672](https://github.com/rubygems/rubygems/pull/8672) by hsbt
45
+ * Update bundled tls certs. Pull request
46
+ [#8731](https://github.com/rubygems/rubygems/pull/8731) by segiddins
47
+ * Install the best matching gem for the current platform in `gem install`.
48
+ Pull request [#8751](https://github.com/rubygems/rubygems/pull/8751) by
49
+ segiddins
50
+ * Move most of `Bundler::GemHelpers` to `Gem::Platform`. Pull request
51
+ [#8703](https://github.com/rubygems/rubygems/pull/8703) by segiddins
52
+ * Ensure that `Gem::Platform` parses strings to a fix point. Pull request
53
+ [#8584](https://github.com/rubygems/rubygems/pull/8584) by segiddins
54
+ * Installs bundler 2.7.0 as a default gem.
55
+
56
+ ### Bug fixes:
57
+
58
+ * Fix signing HEAD and date formatting in S3 signer. Pull request
59
+ [#8763](https://github.com/rubygems/rubygems/pull/8763) by rye-stripe
60
+ * Fix `--bindir <foo>` flag to gem install failing when `<foo>` is not in
61
+ the default GEM_HOME and its parent directory does not exist yet. Pull
62
+ request [#8783](https://github.com/rubygems/rubygems/pull/8783) by larouxn
63
+ * Fix `gem install` sometimes compiling the wrong source files. Pull
64
+ request [#8764](https://github.com/rubygems/rubygems/pull/8764) by
65
+ deivid-rodriguez
66
+ * Workaround rust extension compilation when `ccache` or `sccache` are
67
+ used. Pull request [#8521](https://github.com/rubygems/rubygems/pull/8521)
68
+ by hsbt
69
+ * Fix `gem pristine` not recompiling extensions sometimes. Pull request
70
+ [#8757](https://github.com/rubygems/rubygems/pull/8757) by
71
+ deivid-rodriguez
72
+ * Fix `--prerelease` flag to `gem install` sometimes not respected. Pull
73
+ request [#8648](https://github.com/rubygems/rubygems/pull/8648) by ntl
74
+
75
+ ### Documentation:
76
+
77
+ * Fix incorrect UPGRADING link in README.md. Pull request
78
+ [#8838](https://github.com/rubygems/rubygems/pull/8838) by djbender
79
+ * Add a root CONTRIBUTING.md file. Pull request
80
+ [#8822](https://github.com/rubygems/rubygems/pull/8822) by
81
+ deivid-rodriguez
82
+ * Add a SECURITY.md file. Pull request
83
+ [#8812](https://github.com/rubygems/rubygems/pull/8812) by
84
+ deivid-rodriguez
85
+ * Fix heading ranks in documentation. Pull request
86
+ [#8711](https://github.com/rubygems/rubygems/pull/8711) by antoinem
87
+
88
+ ## 3.6.9 / 2025-05-13
89
+
90
+ ### Enhancements:
91
+
92
+ * Add mtime to Gem::Package::TarWriter#add_file argument. Pull request
93
+ [#8673](https://github.com/rubygems/rubygems/pull/8673) by unasuke
94
+ * Print webauthn authentication link as a separate line to make it easier
95
+ to visit. Pull request
96
+ [#8663](https://github.com/rubygems/rubygems/pull/8663) by mperham
97
+ * Remove shellwords autoload. Pull request
98
+ [#8644](https://github.com/rubygems/rubygems/pull/8644) by
99
+ deivid-rodriguez
100
+ * Installs bundler 2.6.9 as a default gem.
101
+
102
+ ### Performance:
103
+
104
+ * Avoid unnecessary splat allocation. Pull request
105
+ [#8640](https://github.com/rubygems/rubygems/pull/8640) by jeremyevans
106
+
107
+ ### Documentation:
108
+
109
+ * Fix typo in Changelog for 3.6.0 / 2024-12-16. Pull request
110
+ [#8638](https://github.com/rubygems/rubygems/pull/8638) by thatrobotdev
111
+
112
+ ## 3.6.8 / 2025-04-13
113
+
114
+ ### Enhancements:
115
+
116
+ * Installs bundler 2.6.8 as a default gem.
117
+
118
+ ## 3.6.7 / 2025-04-03
119
+
120
+ ### Enhancements:
121
+
122
+ * Sorting files in metadata for build reproducibility. Pull request
123
+ [#8569](https://github.com/rubygems/rubygems/pull/8569) by
124
+ giacomobenedetti
125
+ * Default to a SOURCE_DATE_EPOCH of 315619200, to simplify reproducible
126
+ builds. Pull request
127
+ [#8568](https://github.com/rubygems/rubygems/pull/8568) by duckinator
128
+ * Let `gem exec` raise an error in ambiguous cases. Pull request
129
+ [#8573](https://github.com/rubygems/rubygems/pull/8573) by
130
+ deivid-rodriguez
131
+ * Installs bundler 2.6.7 as a default gem.
132
+
133
+ ### Performance:
134
+
135
+ * Speed up Version#<=> ~20-50% when lengths differ. Pull request
136
+ [#8565](https://github.com/rubygems/rubygems/pull/8565) by skipkayhil
137
+
138
+ ## 3.6.6 / 2025-03-13
139
+
140
+ ### Enhancements:
141
+
142
+ * Update vendored uri to 1.0.3. Pull request
143
+ [#8534](https://github.com/rubygems/rubygems/pull/8534) by hsbt
144
+ * Installs bundler 2.6.6 as a default gem.
145
+
146
+ ### Bug fixes:
147
+
148
+ * Fix `gem rdoc` not working with newer versions of rdoc when not
149
+ installed as default gems. Pull request
150
+ [#8549](https://github.com/rubygems/rubygems/pull/8549) by
151
+ deivid-rodriguez
152
+
153
+ ## 3.6.5 / 2025-02-20
154
+
155
+ ### Enhancements:
156
+
157
+ * Installs bundler 2.6.5 as a default gem.
158
+
159
+ ### Documentation:
160
+
161
+ * Removed `gem server` from `gem help`. Pull request
162
+ [#8507](https://github.com/rubygems/rubygems/pull/8507) by hsbt
163
+
164
+ ## 3.6.4 / 2025-02-17
165
+
166
+ ### Enhancements:
167
+
168
+ * Raise a simpler error when RubyGems fails to activate a dependency. Pull
169
+ request [#8449](https://github.com/rubygems/rubygems/pull/8449) by
170
+ deivid-rodriguez
171
+ * Installs bundler 2.6.4 as a default gem.
172
+
173
+ ### Performance:
174
+
175
+ * Allocate strings from Requirement match only once. Pull request
176
+ [#8245](https://github.com/rubygems/rubygems/pull/8245) by segiddins
177
+
178
+ ## 3.6.3 / 2025-01-16
179
+
180
+ ### Enhancements:
181
+
182
+ * Add credentials file path to `gem env`. Pull request
183
+ [#8375](https://github.com/rubygems/rubygems/pull/8375) by duckinator
184
+ * Update SPDX license list as of 2024-12-30. Pull request
185
+ [#8387](https://github.com/rubygems/rubygems/pull/8387) by
186
+ github-actions[bot]
187
+ * Installs bundler 2.6.3 as a default gem.
188
+
189
+ ### Bug fixes:
190
+
191
+ * Fix `@licenses` array unmarshalling. Pull request
192
+ [#8411](https://github.com/rubygems/rubygems/pull/8411) by rykov
193
+
194
+ ## 3.6.2 / 2024-12-23
195
+
196
+ ### Security:
197
+
198
+ * Fix Gem::SafeMarshal buffer overrun when given lengths larger than fit
199
+ into a byte. Pull request
200
+ [#8305](https://github.com/rubygems/rubygems/pull/8305) by segiddins
201
+ * Improve type checking in marshal_load methods. Pull request
202
+ [#8306](https://github.com/rubygems/rubygems/pull/8306) by segiddins
203
+
204
+ ### Enhancements:
205
+
206
+ * Skip rdoc hooks and their tests on newer rdoc versions. Pull request
207
+ [#8340](https://github.com/rubygems/rubygems/pull/8340) by
208
+ deivid-rodriguez
209
+ * Installs bundler 2.6.2 as a default gem.
210
+
211
+ ### Bug fixes:
212
+
213
+ * Fix serialized metadata including an empty `@original_platform`
214
+ attribute. Pull request
215
+ [#8355](https://github.com/rubygems/rubygems/pull/8355) by
216
+ deivid-rodriguez
217
+
218
+ ## 3.6.1 / 2024-12-17
219
+
220
+ ### Enhancements:
221
+
222
+ * Installs bundler 2.6.1 as a default gem.
223
+
224
+ ### Bug fixes:
225
+
226
+ * Fix `gem info` tagging some non default gems as default. Pull request
227
+ [#8321](https://github.com/rubygems/rubygems/pull/8321) by
228
+ deivid-rodriguez
229
+
230
+ ### Documentation:
231
+
232
+ * Fix broken links. Pull request
233
+ [#8327](https://github.com/rubygems/rubygems/pull/8327) by st0012
234
+
235
+ ## 3.6.0 / 2024-12-16
236
+
237
+ ### Security:
238
+
239
+ * Stop storing executable names in ivars. Pull request
240
+ [#8307](https://github.com/rubygems/rubygems/pull/8307) by segiddins
241
+
242
+ ### Breaking changes:
243
+
244
+ * Drop ruby 3.0 support. Pull request
245
+ [#8091](https://github.com/rubygems/rubygems/pull/8091) by segiddins
246
+
247
+ ### Features:
248
+
249
+ * Add --attestation option to gem push. Pull request
250
+ [#8239](https://github.com/rubygems/rubygems/pull/8239) by segiddins
251
+
252
+ ### Enhancements:
253
+
254
+ * Skip unresolved deps warning on `Gem::Specification.reset` on benign
255
+ cases. Pull request
256
+ [#8309](https://github.com/rubygems/rubygems/pull/8309) by
257
+ deivid-rodriguez
258
+ * Let `gem install <name>` suggest `<name>-ruby` and `ruby-<name>` when
259
+ providing "did you mean" suggestions. Pull request
260
+ [#8197](https://github.com/rubygems/rubygems/pull/8197) by duckinator
261
+ * Update SPDX license list as of 2024-08-19. Pull request
262
+ [#8233](https://github.com/rubygems/rubygems/pull/8233) by
263
+ github-actions[bot]
264
+ * Add `--target-rbconfig` option to `gem install` and `gem update`
265
+ commands. Pull request
266
+ [#7628](https://github.com/rubygems/rubygems/pull/7628) by kateinoigakukun
267
+ * Skip nil-value keys to make metadata reproducible. Pull request
268
+ [#7129](https://github.com/rubygems/rubygems/pull/7129) by nobu
269
+ * Allow disabling installation of compiled extensions into lib through
270
+ `Gem.configuration.install_extension_in_lib`. Pull request
271
+ [#6463](https://github.com/rubygems/rubygems/pull/6463) by hsbt
272
+ * Installs bundler 2.6.0 as a default gem.
273
+
274
+ ### Bug fixes:
275
+
276
+ * Set $0 to exe when running `gem exec` to fix name in CLI output. Pull
277
+ request [#8267](https://github.com/rubygems/rubygems/pull/8267) by adam12
278
+ * Fix manifest in gem package using incorrect platform sometimes. Pull
279
+ request [#8202](https://github.com/rubygems/rubygems/pull/8202) by
280
+ deivid-rodriguez
281
+
282
+ ### Documentation:
283
+
284
+ * Fix missing single quote in git source example. Pull request
285
+ [#8303](https://github.com/rubygems/rubygems/pull/8303) by nobu
286
+ * Update the `gem install` demo in README to use a gem that just works on
287
+ Windows. Pull request
288
+ [#8262](https://github.com/rubygems/rubygems/pull/8262) by soda92
289
+ * Unify rubygems and bundler docs directory. Pull request
290
+ [#8159](https://github.com/rubygems/rubygems/pull/8159) by hsbt
291
+
292
+ ## 3.5.23 / 2024-11-05
293
+
294
+ ### Enhancements:
295
+
296
+ * Validate user input encoding of `gem` CLI arguments. Pull request
297
+ [#6471](https://github.com/rubygems/rubygems/pull/6471) by
298
+ deivid-rodriguez
299
+ * Fix `gem update --system` leaving old default bundler executables
300
+ around. Pull request
301
+ [#8172](https://github.com/rubygems/rubygems/pull/8172) by
302
+ deivid-rodriguez
303
+ * Installs bundler 2.5.23 as a default gem.
304
+
305
+ ### Bug fixes:
306
+
307
+ * Fix commands with 2 MFA requests when webauthn is enabled. Pull request
308
+ [#8174](https://github.com/rubygems/rubygems/pull/8174) by
309
+ deivid-rodriguez
310
+ * Make `--enable-load-relative` binstubs prolog work when Ruby is not
311
+ installed in the same directory as the binstub. Pull request
312
+ [#7872](https://github.com/rubygems/rubygems/pull/7872) by
313
+ deivid-rodriguez
314
+
315
+ ### Performance:
316
+
317
+ * Speed up `gem install <nonexistent-gem>` by finding alternative name
318
+ suggestions faster. Pull request
319
+ [#8084](https://github.com/rubygems/rubygems/pull/8084) by duckinator
320
+
321
+ ### Documentation:
322
+
323
+ * Add missing comma in documentation. Pull request
324
+ [#8152](https://github.com/rubygems/rubygems/pull/8152) by leoarnold
325
+
326
+ ## 3.5.22 / 2024-10-16
327
+
328
+ ### Enhancements:
329
+
330
+ * Prevent `._*` files in packages generated from macOS. Pull request
331
+ [#8150](https://github.com/rubygems/rubygems/pull/8150) by
332
+ deivid-rodriguez
333
+ * Fix `gem pristine etc` resetting gem twice sometimes. Pull request
334
+ [#8117](https://github.com/rubygems/rubygems/pull/8117) by
335
+ deivid-rodriguez
336
+ * Allow `gem pristine` to reset default gems too. Pull request
337
+ [#8118](https://github.com/rubygems/rubygems/pull/8118) by
338
+ deivid-rodriguez
339
+ * Update vendored `uri` and `net-http`. Pull request
340
+ [#8112](https://github.com/rubygems/rubygems/pull/8112) by segiddins
341
+ * Installs bundler 2.5.22 as a default gem.
342
+
343
+ ### Bug fixes:
344
+
345
+ * Fix `gem contents` for default gems. Pull request
346
+ [#8132](https://github.com/rubygems/rubygems/pull/8132) by
347
+ deivid-rodriguez
348
+ * Fix duplicated specs when they have been previously activated. Pull
349
+ request [#8131](https://github.com/rubygems/rubygems/pull/8131) by
350
+ deivid-rodriguez
351
+ * Fix `gem install` on NFS shares. Pull request
352
+ [#8123](https://github.com/rubygems/rubygems/pull/8123) by
353
+ deivid-rodriguez
354
+ * Fix a `gem install` crash during "done installing" hooks. Pull request
355
+ [#8113](https://github.com/rubygems/rubygems/pull/8113) by
356
+ deivid-rodriguez
357
+ * Fix plugin command loading. Pull request
358
+ [#8121](https://github.com/rubygems/rubygems/pull/8121) by
359
+ deivid-rodriguez
360
+
361
+ ## 3.5.21 / 2024-10-03
362
+
363
+ ### Enhancements:
364
+
365
+ * Fix `Gem::MissingSpecVersionError#to_s` not showing exception message.
366
+ Pull request [#8074](https://github.com/rubygems/rubygems/pull/8074) by
367
+ deivid-rodriguez
368
+ * Remove code that makes suggest_gems_from_name give worse results. Pull
369
+ request [#8083](https://github.com/rubygems/rubygems/pull/8083) by
370
+ duckinator
371
+ * Warning about PATH in `--user-install` mode is only necessary for gems
372
+ with executables. Pull request
373
+ [#8071](https://github.com/rubygems/rubygems/pull/8071) by
374
+ deivid-rodriguez
375
+ * Installs bundler 2.5.21 as a default gem.
376
+
377
+ ### Bug fixes:
378
+
379
+ * Fix error in one source when fetching dependency APIs clearing results
380
+ from all sources. Pull request
381
+ [#8080](https://github.com/rubygems/rubygems/pull/8080) by
382
+ deivid-rodriguez
383
+ * Fix `gem cleanup` warning when two versions of psych installed. Pull
384
+ request [#8072](https://github.com/rubygems/rubygems/pull/8072) by
385
+ deivid-rodriguez
386
+
387
+ ## 3.5.20 / 2024-09-24
388
+
389
+ ### Enhancements:
390
+
391
+ * Installs bundler 2.5.20 as a default gem.
392
+
393
+ ## 3.5.19 / 2024-09-18
394
+
395
+ ### Enhancements:
396
+
397
+ * Standardize pretty-print output for `Gem::Source` and subclasses. Pull
398
+ request [#7994](https://github.com/rubygems/rubygems/pull/7994) by
399
+ djberube
400
+ * Update vendored `molinillo` to master and vendored `resolv` to 0.4.0.
401
+ Pull request [#7521](https://github.com/rubygems/rubygems/pull/7521) by
402
+ hsbt
403
+ * Installs bundler 2.5.19 as a default gem.
404
+
405
+ ### Bug fixes:
406
+
407
+ * Fix `bundle exec rake install` failing when local gem has extensions.
408
+ Pull request [#7977](https://github.com/rubygems/rubygems/pull/7977) by
409
+ deivid-rodriguez
410
+ * Make `gem exec` use the standard GEM_HOME. Pull request
411
+ [#7982](https://github.com/rubygems/rubygems/pull/7982) by
412
+ deivid-rodriguez
413
+ * Fix `gem fetch` always exiting with zero status code. Pull request
414
+ [#8007](https://github.com/rubygems/rubygems/pull/8007) by
415
+ deivid-rodriguez
416
+ * Remove temporary `.lock` files unintentionally left around by gem
417
+ installer. Pull request
418
+ [#7939](https://github.com/rubygems/rubygems/pull/7939) by nobu
419
+ * Removed unused stringio. Pull request
420
+ [#8001](https://github.com/rubygems/rubygems/pull/8001) by hsbt
421
+ * Avoid another race condition of open mode. Pull request
422
+ [#7931](https://github.com/rubygems/rubygems/pull/7931) by nobu
423
+ * Fix `@license` typo preventing licenses from being correctly
424
+ unmarshalled. Pull request
425
+ [#7975](https://github.com/rubygems/rubygems/pull/7975) by djberube
426
+
427
+ ### Performance:
428
+
429
+ * Fix `gem install does-not-exist` being super slow. Pull request
430
+ [#8006](https://github.com/rubygems/rubygems/pull/8006) by
431
+ deivid-rodriguez
432
+
433
+ ## 3.5.18 / 2024-08-26
434
+
435
+ ### Enhancements:
436
+
437
+ * Installs bundler 2.5.18 as a default gem.
438
+
439
+ ### Bug fixes:
440
+
441
+ * Fix `gem uninstall <name>:<version>` failing on shadowed default gems.
442
+ Pull request [#7949](https://github.com/rubygems/rubygems/pull/7949) by
443
+ deivid-rodriguez
444
+
445
+ ## 3.5.17 / 2024-08-01
446
+
447
+ ### Enhancements:
448
+
449
+ * Explicitly encode `Gem::Dependency` to yaml. Pull request
450
+ [#7867](https://github.com/rubygems/rubygems/pull/7867) by segiddins
451
+ * Installs bundler 2.5.17 as a default gem.
452
+
453
+ ### Bug fixes:
454
+
455
+ * Fix `gem list` regression when a regular gem shadows a default one. Pull
456
+ request [#7892](https://github.com/rubygems/rubygems/pull/7892) by
457
+ deivid-rodriguez
458
+ * Always leave default gem executables around. Pull request
459
+ [#7879](https://github.com/rubygems/rubygems/pull/7879) by
460
+ deivid-rodriguez
461
+ * Fix line comment issue for hash when loading gemrc. Pull request
462
+ [#7857](https://github.com/rubygems/rubygems/pull/7857) by leetking
463
+
464
+ ## 3.5.16 / 2024-07-18
465
+
466
+ ### Enhancements:
467
+
468
+ * Installs bundler 2.5.16 as a default gem.
469
+
470
+ ### Bug fixes:
471
+
472
+ * Fix gemspec `require_paths` validation. Pull request
473
+ [#7866](https://github.com/rubygems/rubygems/pull/7866) by
474
+ deivid-rodriguez
475
+ * Fix loading of nested `gemrc` config keys when specified as symbols.
476
+ Pull request [#7851](https://github.com/rubygems/rubygems/pull/7851) by
477
+ moofkit
478
+
479
+ ### Performance:
480
+
481
+ * Use `caller_locations` instead of splitting `caller`. Pull request
482
+ [#7708](https://github.com/rubygems/rubygems/pull/7708) by nobu
483
+
484
+ ## 3.5.15 / 2024-07-09
485
+
486
+ ### Enhancements:
487
+
488
+ * Installs bundler 2.5.15 as a default gem.
489
+
490
+ ### Bug fixes:
491
+
492
+ * Restrict generic `arm` to only match 32-bit arm. Pull request
493
+ [#7830](https://github.com/rubygems/rubygems/pull/7830) by ntkme
494
+ * Protect creating binstubs with a file lock. Pull request
495
+ [#7806](https://github.com/rubygems/rubygems/pull/7806) by
496
+ deivid-rodriguez
497
+
498
+ ### Documentation:
499
+
500
+ * Make it clearer that `add_dependency` is the main way to add
501
+ non-development dependencies. Pull request
502
+ [#7800](https://github.com/rubygems/rubygems/pull/7800) by jeromedalbert
503
+
504
+ ## 3.5.14 / 2024-06-21
505
+
506
+ ### Enhancements:
507
+
508
+ * Installs bundler 2.5.14 as a default gem.
509
+
510
+ ### Bug fixes:
511
+
512
+ * Make "bundler? update --bundler" behave identically. Pull request
513
+ [#7778](https://github.com/rubygems/rubygems/pull/7778) by x-yuri
514
+
515
+ ## 3.5.13 / 2024-06-14
516
+
517
+ ### Enhancements:
518
+
519
+ * Installs bundler 2.5.13 as a default gem.
520
+
521
+ ### Bug fixes:
522
+
523
+ * Never remove executables that may belong to a default gem. Pull request
524
+ [#7747](https://github.com/rubygems/rubygems/pull/7747) by
525
+ deivid-rodriguez
526
+
527
+ ## 3.5.12 / 2024-06-13
528
+
529
+ ### Enhancements:
530
+
531
+ * Installs bundler 2.5.12 as a default gem.
532
+
533
+ ### Bug fixes:
534
+
535
+ * Fix `gem uninstall` unresolved specifications warning. Pull request
536
+ [#7667](https://github.com/rubygems/rubygems/pull/7667) by
537
+ deivid-rodriguez
538
+ * Fix `gem pristine` sometimes failing to pristine user installed gems.
539
+ Pull request [#7664](https://github.com/rubygems/rubygems/pull/7664) by
540
+ deivid-rodriguez
541
+
542
+ ## 3.5.11 / 2024-05-28
543
+
544
+ ### Enhancements:
545
+
546
+ * Update SPDX license list as of 2024-05-22. Pull request
547
+ [#7689](https://github.com/rubygems/rubygems/pull/7689) by
548
+ github-actions[bot]
549
+ * Fix the update_rubygems inconsistency (--disable-gems). Pull request
550
+ [#7658](https://github.com/rubygems/rubygems/pull/7658) by x-yuri
551
+ * Accept WASI as an OS name in Gem::Platform. Pull request
552
+ [#7629](https://github.com/rubygems/rubygems/pull/7629) by kateinoigakukun
553
+ * Warn if RubyGems version explicitly set in gemspec does not match
554
+ running version. Pull request
555
+ [#7460](https://github.com/rubygems/rubygems/pull/7460) by
556
+ deivid-rodriguez
557
+ * Installs bundler 2.5.11 as a default gem.
558
+
559
+ ### Bug fixes:
560
+
561
+ * Fix binstubs sometimes not getting regenerated when `--destdir` is
562
+ given. Pull request
563
+ [#7660](https://github.com/rubygems/rubygems/pull/7660) by
564
+ deivid-rodriguez
565
+ * Fix `gem uninstall --user-install` for symlinked HOME. Pull request
566
+ [#7645](https://github.com/rubygems/rubygems/pull/7645) by
567
+ deivid-rodriguez
568
+ * Fix issue when plugin stubs would sometimes not be properly removed by
569
+ `gem uninstall`. Pull request
570
+ [#7631](https://github.com/rubygems/rubygems/pull/7631) by
571
+ deivid-rodriguez
572
+ * Fix plugins uninstallation for user installed gems. Pull request
573
+ [#6456](https://github.com/rubygems/rubygems/pull/6456) by voxik
574
+
575
+ ### Performance:
576
+
577
+ * Use a constant empty tar header to avoid extra allocations. Pull request
578
+ [#7484](https://github.com/rubygems/rubygems/pull/7484) by segiddins
579
+
580
+ ### Documentation:
581
+
582
+ * Recommend `bin/rake` over `rake` in contributing docs. Pull request
583
+ [#7648](https://github.com/rubygems/rubygems/pull/7648) by
584
+ deivid-rodriguez
585
+
586
+ ## 3.5.10 / 2024-05-03
587
+
588
+ ### Security:
589
+
590
+ * Add a limit to the size of the metadata and checksums files in a gem
591
+ package. Pull request
592
+ [#7568](https://github.com/rubygems/rubygems/pull/7568) by segiddins
593
+
594
+ ### Enhancements:
595
+
596
+ * Don't fully require `rubygems` from `rubygems/package` to prevent some
597
+ circular require warnings when using Bundler. Pull request
598
+ [#7612](https://github.com/rubygems/rubygems/pull/7612) by
599
+ deivid-rodriguez
600
+ * Installs bundler 2.5.10 as a default gem.
601
+
602
+ ### Bug fixes:
603
+
604
+ * Rename credential email to identifier in WebAuthn poller. Pull request
605
+ [#7623](https://github.com/rubygems/rubygems/pull/7623) by jenshenny
606
+
607
+ ## 3.5.9 / 2024-04-12
608
+
609
+ ### Enhancements:
610
+
611
+ * Installs bundler 2.5.9 as a default gem.
612
+
613
+ ## 3.5.8 / 2024-04-11
614
+
615
+ ### Security:
616
+
617
+ * Respect global umask when writing regular files. Pull request
618
+ [#7518](https://github.com/rubygems/rubygems/pull/7518) by
619
+ deivid-rodriguez
620
+
621
+ ### Enhancements:
622
+
623
+ * Allow string keys with gemrc. Pull request
624
+ [#7543](https://github.com/rubygems/rubygems/pull/7543) by hsbt
625
+ * [Experimental] Add "gem rebuild" command. Pull request
626
+ [#4913](https://github.com/rubygems/rubygems/pull/4913) by duckinator
627
+ * Installs bundler 2.5.8 as a default gem.
628
+
629
+ ### Bug fixes:
630
+
631
+ * Fix NoMethodError crash when building errors about corrupt package
632
+ files. Pull request
633
+ [#7539](https://github.com/rubygems/rubygems/pull/7539) by jez
634
+ * Fix resolver to properly intersect Arrays of `Gem::Resolver::Activation`
635
+ objects. Pull request
636
+ [#7537](https://github.com/rubygems/rubygems/pull/7537) by
637
+ deivid-rodriguez
638
+
639
+ ## 3.5.7 / 2024-03-22
640
+
641
+ ### Enhancements:
642
+
643
+ * Warn on empty or open required_ruby_version specification attribute.
644
+ Pull request [#5010](https://github.com/rubygems/rubygems/pull/5010) by
645
+ simi
646
+ * Control whether YAML aliases are enabled in Gem::SafeYAML.safe_load via
647
+ attribute. Pull request
648
+ [#7464](https://github.com/rubygems/rubygems/pull/7464) by segiddins
649
+ * Update SPDX license list as of 2024-02-08. Pull request
650
+ [#7468](https://github.com/rubygems/rubygems/pull/7468) by
651
+ github-actions[bot]
652
+ * Installs bundler 2.5.7 as a default gem.
653
+
654
+ ### Bug fixes:
655
+
656
+ * Allow prerelease activation (even if requirement is not explicit about
657
+ it) when it's the only possibility. Pull request
658
+ [#7428](https://github.com/rubygems/rubygems/pull/7428) by kimesf
659
+
660
+ ### Documentation:
661
+
662
+ * Fix a typo. Pull request
663
+ [#7505](https://github.com/rubygems/rubygems/pull/7505) by hsbt
664
+ * Use https instead of http in documentation links. Pull request
665
+ [#7481](https://github.com/rubygems/rubygems/pull/7481) by hsbt
666
+
667
+ ## 3.5.6 / 2024-02-06
668
+
669
+ ### Enhancements:
670
+
671
+ * Deep copy requirements in `Gem::Specification` and `Gem::Requirement`.
672
+ Pull request [#7439](https://github.com/rubygems/rubygems/pull/7439) by
673
+ flavorjones
674
+ * Change gem login message to clear up that username can be also used.
675
+ Pull request [#7422](https://github.com/rubygems/rubygems/pull/7422) by
676
+ VitaliySerov
677
+ * Add metadata for rubygems.org. Pull request
678
+ [#7435](https://github.com/rubygems/rubygems/pull/7435) by m-nakamura145
679
+ * Improve gem login scope selection. Pull request
680
+ [#7342](https://github.com/rubygems/rubygems/pull/7342) by williantenfen
681
+ * Vendor uri in RubyGems. Pull request
682
+ [#7386](https://github.com/rubygems/rubygems/pull/7386) by
683
+ deivid-rodriguez
684
+ * Installs bundler 2.5.6 as a default gem.
685
+
686
+ ### Bug fixes:
687
+
688
+ * Skip to load commented out words. Pull request
689
+ [#7413](https://github.com/rubygems/rubygems/pull/7413) by hsbt
690
+ * Fix rake runtime dependency warning for rake based extension. Pull
691
+ request [#7395](https://github.com/rubygems/rubygems/pull/7395) by ntkme
692
+
693
+ ## 3.5.5 / 2024-01-18
694
+
695
+ ### Enhancements:
696
+
697
+ * Installs bundler 2.5.5 as a default gem.
698
+
699
+ ### Bug fixes:
700
+
701
+ * Fix `require` activation conflicts when requiring default gems under
702
+ some situations. Pull request
703
+ [#7379](https://github.com/rubygems/rubygems/pull/7379) by
704
+ deivid-rodriguez
705
+ * Use cache_home instead of data_home in default_spec_cache_dir. Pull
706
+ request [#7331](https://github.com/rubygems/rubygems/pull/7331) by mrkn
707
+
708
+ ### Documentation:
709
+
710
+ * Use squiggly heredocs in `Gem::Specification#description` documentation,
711
+ so it doesn't add leading whitespace. Pull request
712
+ [#7373](https://github.com/rubygems/rubygems/pull/7373) by bravehager
713
+
714
+ ## 3.5.4 / 2024-01-04
715
+
716
+ ### Enhancements:
717
+
718
+ * Always avoid "Updating rubygems-update" message. Pull request
719
+ [#7335](https://github.com/rubygems/rubygems/pull/7335) by
720
+ deivid-rodriguez
721
+ * Installs bundler 2.5.4 as a default gem.
722
+
723
+ ### Bug fixes:
724
+
725
+ * Make `gem update --system` respect ruby version constraints. Pull
726
+ request [#7334](https://github.com/rubygems/rubygems/pull/7334) by
727
+ deivid-rodriguez
728
+
729
+ ## 3.5.3 / 2023-12-22
730
+
731
+ ### Enhancements:
4
732
 
5
733
  * Installs bundler 2.5.3 as a default gem.
6
734
 
7
- # 3.5.2 / 2023-12-21
735
+ ## 3.5.2 / 2023-12-21
8
736
 
9
- ## Enhancements:
737
+ ### Enhancements:
10
738
 
11
739
  * Support dynamic library loading with extension .so or .o. Pull request
12
740
  [#7241](https://github.com/rubygems/rubygems/pull/7241) by hogelog
13
741
  * Installs bundler 2.5.2 as a default gem.
14
742
 
15
- ## Performance:
743
+ ### Performance:
16
744
 
17
745
  * Replace `object_id` comparison with identity Hash. Pull request
18
746
  [#7303](https://github.com/rubygems/rubygems/pull/7303) by amomchilov
19
747
  * Use IO.copy_stream when reading, writing. Pull request
20
748
  [#6958](https://github.com/rubygems/rubygems/pull/6958) by martinemde
21
749
 
22
- # 3.5.1 / 2023-12-15
750
+ ## 3.5.1 / 2023-12-15
23
751
 
24
- ## Enhancements:
752
+ ### Enhancements:
25
753
 
26
754
  * Installs bundler 2.5.1 as a default gem.
27
755
 
28
- # 3.5.0 / 2023-12-15
756
+ ## 3.5.0 / 2023-12-15
29
757
 
30
- ## Security:
758
+ ### Security:
31
759
 
32
760
  * Replace `Marshal.load` with a fully-checked safe gemspec loader. Pull
33
761
  request [#6896](https://github.com/rubygems/rubygems/pull/6896) by
34
762
  segiddins
35
763
 
36
- ## Breaking changes:
764
+ ### Breaking changes:
37
765
 
38
766
  * Drop ruby 2.6 and 2.7 support. Pull request
39
767
  [#7116](https://github.com/rubygems/rubygems/pull/7116) by
@@ -45,14 +773,14 @@
45
773
  * Deprecated `Gem.datadir` has been removed. Pull request
46
774
  [#6469](https://github.com/rubygems/rubygems/pull/6469) by hsbt
47
775
 
48
- ## Deprecations:
776
+ ### Deprecations:
49
777
 
50
778
  * Deprecate `Gem::Platform.match?`. Pull request
51
779
  [#6783](https://github.com/rubygems/rubygems/pull/6783) by hsbt
52
780
  * Deprecate `Gem::List`. Pull request
53
781
  [#6311](https://github.com/rubygems/rubygems/pull/6311) by segiddins
54
782
 
55
- ## Features:
783
+ ### Features:
56
784
 
57
785
  * The `generate_index` command can now generate compact index files and
58
786
  lives as an external `rubygems-generate_index` gem. Pull request
@@ -64,7 +792,7 @@
64
792
  that will be turned into bundled gems in the future. Pull request
65
793
  [#6840](https://github.com/rubygems/rubygems/pull/6840) by hsbt
66
794
 
67
- ## Performance:
795
+ ### Performance:
68
796
 
69
797
  * Use match? when regexp match data is unused. Pull request
70
798
  [#7263](https://github.com/rubygems/rubygems/pull/7263) by segiddins
@@ -73,7 +801,7 @@
73
801
  * Optimize allocations in `Gem::Version`. Pull request
74
802
  [#6970](https://github.com/rubygems/rubygems/pull/6970) by segiddins
75
803
 
76
- ## Enhancements:
804
+ ### Enhancements:
77
805
 
78
806
  * Warn for duplicate meta data links when building gems. Pull request
79
807
  [#7213](https://github.com/rubygems/rubygems/pull/7213) by etherbob
@@ -109,22 +837,22 @@
109
837
  [#6436](https://github.com/rubygems/rubygems/pull/6436) by hsbt
110
838
  * Installs bundler 2.5.0 as a default gem.
111
839
 
112
- ## Bug fixes:
840
+ ### Bug fixes:
113
841
 
114
842
  * Fix installing from source with same default bundler version already
115
843
  installed. Pull request
116
844
  [#7244](https://github.com/rubygems/rubygems/pull/7244) by
117
845
  deivid-rodriguez
118
846
 
119
- ## Documentation:
847
+ ### Documentation:
120
848
 
121
849
  * Improve comment explaining the necessity of `write_default_spec` method.
122
850
  Pull request [#6563](https://github.com/rubygems/rubygems/pull/6563) by
123
851
  voxik
124
852
 
125
- # 3.4.22 / 2023-11-09
853
+ ## 3.4.22 / 2023-11-09
126
854
 
127
- ## Enhancements:
855
+ ### Enhancements:
128
856
 
129
857
  * Update SPDX license list as of 2023-10-05. Pull request
130
858
  [#7040](https://github.com/rubygems/rubygems/pull/7040) by
@@ -134,7 +862,7 @@
134
862
  deivid-rodriguez
135
863
  * Installs bundler 2.4.22 as a default gem.
136
864
 
137
- ## Bug fixes:
865
+ ### Bug fixes:
138
866
 
139
867
  * Handle empty array at built-in YAML serializer. Pull request
140
868
  [#7099](https://github.com/rubygems/rubygems/pull/7099) by hsbt
@@ -144,20 +872,20 @@
144
872
  request [#7063](https://github.com/rubygems/rubygems/pull/7063) by
145
873
  kstevens715
146
874
 
147
- ## Performance:
875
+ ### Performance:
148
876
 
149
877
  * Avoid regexp match on every call to `Gem::Platform.local`. Pull request
150
878
  [#7104](https://github.com/rubygems/rubygems/pull/7104) by segiddins
151
879
 
152
- ## Documentation:
880
+ ### Documentation:
153
881
 
154
882
  * Get `Gem::Specification#extensions_dir` documented. Pull request
155
883
  [#6218](https://github.com/rubygems/rubygems/pull/6218) by
156
884
  deivid-rodriguez
157
885
 
158
- # 3.4.21 / 2023-10-17
886
+ ## 3.4.21 / 2023-10-17
159
887
 
160
- ## Enhancements:
888
+ ### Enhancements:
161
889
 
162
890
  * Abort `setup.rb` if Ruby is too old. Pull request
163
891
  [#7011](https://github.com/rubygems/rubygems/pull/7011) by
@@ -170,16 +898,16 @@
170
898
  request [#6615](https://github.com/rubygems/rubygems/pull/6615) by hsbt
171
899
  * Installs bundler 2.4.21 as a default gem.
172
900
 
173
- ## Documentation:
901
+ ### Documentation:
174
902
 
175
903
  * Update suggested variable for bindir. Pull request
176
904
  [#7028](https://github.com/rubygems/rubygems/pull/7028) by hsbt
177
905
  * Fix invalid links in documentation. Pull request
178
906
  [#7008](https://github.com/rubygems/rubygems/pull/7008) by simi
179
907
 
180
- # 3.4.20 / 2023-09-27
908
+ ## 3.4.20 / 2023-09-27
181
909
 
182
- ## Enhancements:
910
+ ### Enhancements:
183
911
 
184
912
  * Raise `Gem::Package::FormatError` when gem encounters corrupt EOF.
185
913
  Pull request [#6882](https://github.com/rubygems/rubygems/pull/6882)
@@ -196,7 +924,7 @@
196
924
  [#6310](https://github.com/rubygems/rubygems/pull/6310) by segiddins
197
925
  * Installs bundler 2.4.20 as a default gem.
198
926
 
199
- ## Bug fixes:
927
+ ### Bug fixes:
200
928
 
201
929
  * Fixed false positive SymlinkError in symbolic link directory. Pull
202
930
  request [#6947](https://github.com/rubygems/rubygems/pull/6947) by
@@ -208,26 +936,26 @@
208
936
  Pull request [#6901](https://github.com/rubygems/rubygems/pull/6901) by
209
937
  amatsuda
210
938
 
211
- ## Performance:
939
+ ### Performance:
212
940
 
213
941
  * Reduce allocations for stub specifications. Pull request
214
942
  [#6972](https://github.com/rubygems/rubygems/pull/6972) by segiddins
215
943
 
216
- # 3.4.19 / 2023-08-17
944
+ ## 3.4.19 / 2023-08-17
217
945
 
218
- ## Enhancements:
946
+ ### Enhancements:
219
947
 
220
948
  * Installs bundler 2.4.19 as a default gem.
221
949
 
222
- ## Performance:
950
+ ### Performance:
223
951
 
224
952
  * Speedup building docs when updating rubygems. Pull request
225
953
  [#6864](https://github.com/rubygems/rubygems/pull/6864) by
226
954
  deivid-rodriguez
227
955
 
228
- # 3.4.18 / 2023-08-02
956
+ ## 3.4.18 / 2023-08-02
229
957
 
230
- ## Enhancements:
958
+ ### Enhancements:
231
959
 
232
960
  * Add poller to fetch WebAuthn OTP. Pull request
233
961
  [#6774](https://github.com/rubygems/rubygems/pull/6774) by jenshenny
@@ -237,83 +965,83 @@
237
965
  [#6704](https://github.com/rubygems/rubygems/pull/6704) by hsbt
238
966
  * Installs bundler 2.4.18 as a default gem.
239
967
 
240
- # 3.4.17 / 2023-07-14
968
+ ## 3.4.17 / 2023-07-14
241
969
 
242
- ## Enhancements:
970
+ ### Enhancements:
243
971
 
244
972
  * Installs bundler 2.4.17 as a default gem.
245
973
 
246
- ## Performance:
974
+ ### Performance:
247
975
 
248
976
  * Avoid unnecessary work for private local gem installation. Pull request
249
977
  [#6810](https://github.com/rubygems/rubygems/pull/6810) by
250
978
  deivid-rodriguez
251
979
 
252
- # 3.4.16 / 2023-07-10
980
+ ## 3.4.16 / 2023-07-10
253
981
 
254
- ## Enhancements:
982
+ ### Enhancements:
255
983
 
256
984
  * Installs bundler 2.4.16 as a default gem.
257
985
 
258
- # 3.4.15 / 2023-06-29
986
+ ## 3.4.15 / 2023-06-29
259
987
 
260
- ## Enhancements:
988
+ ### Enhancements:
261
989
 
262
990
  * Installs bundler 2.4.15 as a default gem.
263
991
 
264
- ## Bug fixes:
992
+ ### Bug fixes:
265
993
 
266
994
  * Autoload shellwords when it's needed. Pull request
267
995
  [#6734](https://github.com/rubygems/rubygems/pull/6734) by ioquatix
268
996
 
269
- ## Documentation:
997
+ ### Documentation:
270
998
 
271
999
  * Update command to test local gem command changes. Pull request
272
1000
  [#6761](https://github.com/rubygems/rubygems/pull/6761) by jenshenny
273
1001
 
274
- # 3.4.14 / 2023-06-12
1002
+ ## 3.4.14 / 2023-06-12
275
1003
 
276
- ## Enhancements:
1004
+ ### Enhancements:
277
1005
 
278
1006
  * Load plugin immediately. Pull request
279
1007
  [#6673](https://github.com/rubygems/rubygems/pull/6673) by kou
280
1008
  * Installs bundler 2.4.14 as a default gem.
281
1009
 
282
- ## Documentation:
1010
+ ### Documentation:
283
1011
 
284
1012
  * Clarify what the `rubygems-update` gem is for, and link to source code
285
1013
  and guides. Pull request
286
1014
  [#6710](https://github.com/rubygems/rubygems/pull/6710) by davetron5000
287
1015
 
288
- # 3.4.13 / 2023-05-09
1016
+ ## 3.4.13 / 2023-05-09
289
1017
 
290
- ## Enhancements:
1018
+ ### Enhancements:
291
1019
 
292
1020
  * Installs bundler 2.4.13 as a default gem.
293
1021
 
294
- # 3.4.12 / 2023-04-11
1022
+ ## 3.4.12 / 2023-04-11
295
1023
 
296
- ## Enhancements:
1024
+ ### Enhancements:
297
1025
 
298
1026
  * [Experimental] Add WebAuthn Support to the CLI. Pull request
299
1027
  [#6560](https://github.com/rubygems/rubygems/pull/6560) by jenshenny
300
1028
  * Installs bundler 2.4.12 as a default gem.
301
1029
 
302
- # 3.4.11 / 2023-04-10
1030
+ ## 3.4.11 / 2023-04-10
303
1031
 
304
- ## Enhancements:
1032
+ ### Enhancements:
305
1033
 
306
1034
  * Installs bundler 2.4.11 as a default gem.
307
1035
 
308
- # 3.4.10 / 2023-03-27
1036
+ ## 3.4.10 / 2023-03-27
309
1037
 
310
- ## Enhancements:
1038
+ ### Enhancements:
311
1039
 
312
1040
  * Installs bundler 2.4.10 as a default gem.
313
1041
 
314
- # 3.4.9 / 2023-03-20
1042
+ ## 3.4.9 / 2023-03-20
315
1043
 
316
- ## Enhancements:
1044
+ ### Enhancements:
317
1045
 
318
1046
  * Improve `TarHeader#calculate_checksum` speed and readability. Pull
319
1047
  request [#6476](https://github.com/rubygems/rubygems/pull/6476) by
@@ -322,7 +1050,7 @@
322
1050
  [#6446](https://github.com/rubygems/rubygems/pull/6446) by hsbt
323
1051
  * Installs bundler 2.4.9 as a default gem.
324
1052
 
325
- ## Bug fixes:
1053
+ ### Bug fixes:
326
1054
 
327
1055
  * Fix `$LOAD_PATH` in rake and ext_conf builder. Pull request
328
1056
  [#6490](https://github.com/rubygems/rubygems/pull/6490) by ntkme
@@ -330,15 +1058,15 @@
330
1058
  [#6481](https://github.com/rubygems/rubygems/pull/6481) by
331
1059
  deivid-rodriguez
332
1060
 
333
- ## Documentation:
1061
+ ### Documentation:
334
1062
 
335
1063
  * Document our current release policy. Pull request
336
1064
  [#6450](https://github.com/rubygems/rubygems/pull/6450) by
337
1065
  deivid-rodriguez
338
1066
 
339
- # 3.4.8 / 2023-03-08
1067
+ ## 3.4.8 / 2023-03-08
340
1068
 
341
- ## Enhancements:
1069
+ ### Enhancements:
342
1070
 
343
1071
  * Add TarReader::Entry#seek to seek within the tar file entry. Pull
344
1072
  request [#6390](https://github.com/rubygems/rubygems/pull/6390) by
@@ -353,7 +1081,7 @@
353
1081
  [#6309](https://github.com/rubygems/rubygems/pull/6309) by segiddins
354
1082
  * Installs bundler 2.4.8 as a default gem.
355
1083
 
356
- ## Bug fixes:
1084
+ ### Bug fixes:
357
1085
 
358
1086
  * Fix installation error of same version of default gems with local
359
1087
  installation. Pull request
@@ -361,101 +1089,101 @@
361
1089
  * Use proper memoized var name for Gem.state_home. Pull request
362
1090
  [#6420](https://github.com/rubygems/rubygems/pull/6420) by simi
363
1091
 
364
- ## Documentation:
1092
+ ### Documentation:
365
1093
 
366
1094
  * Switch supporting explanations to all Ruby Central. Pull request
367
1095
  [#6419](https://github.com/rubygems/rubygems/pull/6419) by indirect
368
1096
  * Update the link to OpenSource.org. Pull request
369
1097
  [#6392](https://github.com/rubygems/rubygems/pull/6392) by nobu
370
1098
 
371
- # 3.4.7 / 2023-02-15
1099
+ ## 3.4.7 / 2023-02-15
372
1100
 
373
- ## Enhancements:
1101
+ ### Enhancements:
374
1102
 
375
1103
  * Warn on self referencing gemspec dependency. Pull request
376
1104
  [#6335](https://github.com/rubygems/rubygems/pull/6335) by simi
377
1105
  * Installs bundler 2.4.7 as a default gem.
378
1106
 
379
- ## Bug fixes:
1107
+ ### Bug fixes:
380
1108
 
381
1109
  * Fix inconsistent behavior of zero byte files in archive. Pull request
382
1110
  [#6329](https://github.com/rubygems/rubygems/pull/6329) by martinemde
383
1111
 
384
- # 3.4.6 / 2023-01-31
1112
+ ## 3.4.6 / 2023-01-31
385
1113
 
386
- ## Enhancements:
1114
+ ### Enhancements:
387
1115
 
388
1116
  * Allow `require` decorations be disabled. Pull request
389
1117
  [#6319](https://github.com/rubygems/rubygems/pull/6319) by
390
1118
  deivid-rodriguez
391
1119
  * Installs bundler 2.4.6 as a default gem.
392
1120
 
393
- ## Bug fixes:
1121
+ ### Bug fixes:
394
1122
 
395
1123
  * Include directory in CargoBuilder install path. Pull request
396
1124
  [#6298](https://github.com/rubygems/rubygems/pull/6298) by matsadler
397
1125
 
398
- ## Documentation:
1126
+ ### Documentation:
399
1127
 
400
1128
  * Include links to pull requests in changelog. Pull request
401
1129
  [#6316](https://github.com/rubygems/rubygems/pull/6316) by
402
1130
  deivid-rodriguez
403
1131
 
404
- # 3.4.5 / 2023-01-21
1132
+ ## 3.4.5 / 2023-01-21
405
1133
 
406
- ## Enhancements:
1134
+ ### Enhancements:
407
1135
 
408
1136
  * Installs bundler 2.4.5 as a default gem.
409
1137
 
410
- # 3.4.4 / 2023-01-16
1138
+ ## 3.4.4 / 2023-01-16
411
1139
 
412
- ## Enhancements:
1140
+ ### Enhancements:
413
1141
 
414
1142
  * Installs bundler 2.4.4 as a default gem.
415
1143
 
416
- ## Documentation:
1144
+ ### Documentation:
417
1145
 
418
1146
  * Improve documentation about `Kernel` monkeypatches. Pull request [#6217](https://github.com/rubygems/rubygems/pull/6217)
419
1147
  by nobu
420
1148
 
421
- # 3.4.3 / 2023-01-06
1149
+ ## 3.4.3 / 2023-01-06
422
1150
 
423
- ## Enhancements:
1151
+ ### Enhancements:
424
1152
 
425
1153
  * Installs bundler 2.4.3 as a default gem.
426
1154
 
427
- ## Documentation:
1155
+ ### Documentation:
428
1156
 
429
1157
  * Fix several typos. Pull request [#6224](https://github.com/rubygems/rubygems/pull/6224) by jdufresne
430
1158
 
431
- # 3.4.2 / 2023-01-01
1159
+ ## 3.4.2 / 2023-01-01
432
1160
 
433
- ## Enhancements:
1161
+ ### Enhancements:
434
1162
 
435
1163
  * Add global flag (`-C`) to change execution directory. Pull request [#6180](https://github.com/rubygems/rubygems/pull/6180)
436
1164
  by gustavothecoder
437
1165
  * Installs bundler 2.4.2 as a default gem.
438
1166
 
439
- # 3.4.1 / 2022-12-24
1167
+ ## 3.4.1 / 2022-12-24
440
1168
 
441
- ## Enhancements:
1169
+ ### Enhancements:
442
1170
 
443
1171
  * Installs bundler 2.4.1 as a default gem.
444
1172
 
445
- # 3.4.0 / 2022-12-24
1173
+ ## 3.4.0 / 2022-12-24
446
1174
 
447
- ## Breaking changes:
1175
+ ### Breaking changes:
448
1176
 
449
1177
  * Drop support for Ruby 2.3, 2.4, 2.5 and RubyGems 2.5, 2.6, 2.7. Pull
450
1178
  request [#6107](https://github.com/rubygems/rubygems/pull/6107) by deivid-rodriguez
451
1179
  * Remove support for deprecated OS. Pull request [#6041](https://github.com/rubygems/rubygems/pull/6041) by peterzhu2118
452
1180
 
453
- ## Features:
1181
+ ### Features:
454
1182
 
455
1183
  * Add 'call for update' to RubyGems install command. Pull request [#5922](https://github.com/rubygems/rubygems/pull/5922) by
456
1184
  simi
457
1185
 
458
- ## Enhancements:
1186
+ ### Enhancements:
459
1187
 
460
1188
  * Add `mswin` support for cargo builder. Pull request [#6167](https://github.com/rubygems/rubygems/pull/6167) by ianks
461
1189
  * Validate Cargo.lock is present for Rust based extensions. Pull request
@@ -464,23 +1192,23 @@
464
1192
  deivid-rodriguez
465
1193
  * Installs bundler 2.4.0 as a default gem.
466
1194
 
467
- ## Bug fixes:
1195
+ ### Bug fixes:
468
1196
 
469
1197
  * Fix crash due to `BundlerVersionFinder` not defined. Pull request [#6152](https://github.com/rubygems/rubygems/pull/6152)
470
1198
  by deivid-rodriguez
471
1199
  * Don't leave corrupted partial package download around when running out
472
1200
  of disk space. Pull request [#5681](https://github.com/rubygems/rubygems/pull/5681) by duckinator
473
1201
 
474
- # 3.3.26 / 2022-11-16
1202
+ ## 3.3.26 / 2022-11-16
475
1203
 
476
- ## Enhancements:
1204
+ ### Enhancements:
477
1205
 
478
1206
  * Upgrade rb-sys to 0.9.37. Pull request [#6047](https://github.com/rubygems/rubygems/pull/6047) by ianks
479
1207
  * Installs bundler 2.3.26 as a default gem.
480
1208
 
481
- # 3.3.25 / 2022-11-02
1209
+ ## 3.3.25 / 2022-11-02
482
1210
 
483
- ## Enhancements:
1211
+ ### Enhancements:
484
1212
 
485
1213
  * Github source should default to secure protocol. Pull request [#6026](https://github.com/rubygems/rubygems/pull/6026) by
486
1214
  jasonkarns
@@ -488,21 +1216,21 @@
488
1216
  by enebo
489
1217
  * Installs bundler 2.3.25 as a default gem.
490
1218
 
491
- # 3.3.24 / 2022-10-17
1219
+ ## 3.3.24 / 2022-10-17
492
1220
 
493
- ## Enhancements:
1221
+ ### Enhancements:
494
1222
 
495
1223
  * Installs bundler 2.3.24 as a default gem.
496
1224
 
497
- # 3.3.23 / 2022-10-05
1225
+ ## 3.3.23 / 2022-10-05
498
1226
 
499
- ## Enhancements:
1227
+ ### Enhancements:
500
1228
 
501
1229
  * Add better error handling for permanent redirect responses. Pull request
502
1230
  [#5931](https://github.com/rubygems/rubygems/pull/5931) by jenshenny
503
1231
  * Installs bundler 2.3.23 as a default gem.
504
1232
 
505
- ## Bug fixes:
1233
+ ### Bug fixes:
506
1234
 
507
1235
  * Fix generic arm platform matching against runtime arm platforms with
508
1236
  eabi modifiers. Pull request [#5957](https://github.com/rubygems/rubygems/pull/5957) by deivid-rodriguez
@@ -513,30 +1241,30 @@
513
1241
  * Mask the file mode when extracting files. Pull request [#5906](https://github.com/rubygems/rubygems/pull/5906) by
514
1242
  kddnewton
515
1243
 
516
- # 3.3.22 / 2022-09-07
1244
+ ## 3.3.22 / 2022-09-07
517
1245
 
518
- ## Enhancements:
1246
+ ### Enhancements:
519
1247
 
520
1248
  * Support non gnu libc arm-linux-eabi platforms. Pull request [#5889](https://github.com/rubygems/rubygems/pull/5889) by
521
1249
  ntkme
522
1250
  * Installs bundler 2.3.22 as a default gem.
523
1251
 
524
- ## Bug fixes:
1252
+ ### Bug fixes:
525
1253
 
526
1254
  * Fix `gem info` with explicit `--version`. Pull request [#5884](https://github.com/rubygems/rubygems/pull/5884) by
527
1255
  tonyaraujop
528
1256
 
529
- # 3.3.21 / 2022-08-24
1257
+ ## 3.3.21 / 2022-08-24
530
1258
 
531
- ## Enhancements:
1259
+ ### Enhancements:
532
1260
 
533
1261
  * Support non gnu libc linux platforms. Pull request [#5852](https://github.com/rubygems/rubygems/pull/5852) by
534
1262
  deivid-rodriguez
535
1263
  * Installs bundler 2.3.21 as a default gem.
536
1264
 
537
- # 3.3.20 / 2022-08-10
1265
+ ## 3.3.20 / 2022-08-10
538
1266
 
539
- ## Enhancements:
1267
+ ### Enhancements:
540
1268
 
541
1269
  * Include backtrace with crashes by default. Pull request [#5811](https://github.com/rubygems/rubygems/pull/5811) by
542
1270
  deivid-rodriguez
@@ -546,7 +1274,7 @@
546
1274
  request [#5794](https://github.com/rubygems/rubygems/pull/5794) by deivid-rodriguez
547
1275
  * Installs bundler 2.3.20 as a default gem.
548
1276
 
549
- ## Bug fixes:
1277
+ ### Bug fixes:
550
1278
 
551
1279
  * Always consider installed specs for resolution, even if prereleases.
552
1280
  Pull request [#5821](https://github.com/rubygems/rubygems/pull/5821) by deivid-rodriguez
@@ -554,9 +1282,9 @@
554
1282
  correctly. Pull request [#5820](https://github.com/rubygems/rubygems/pull/5820) by deivid-rodriguez
555
1283
  * Fix platform matching for index specs. Pull request [#5795](https://github.com/rubygems/rubygems/pull/5795) by Ilushkanama
556
1284
 
557
- # 3.3.19 / 2022-07-27
1285
+ ## 3.3.19 / 2022-07-27
558
1286
 
559
- ## Enhancements:
1287
+ ### Enhancements:
560
1288
 
561
1289
  * Display mfa warnings on `gem signin`. Pull request [#5590](https://github.com/rubygems/rubygems/pull/5590) by aellispierce
562
1290
  * Require fileutils more lazily when installing gems. Pull request [#5738](https://github.com/rubygems/rubygems/pull/5738)
@@ -568,19 +1296,19 @@
568
1296
  * Unify loading `Gem::Requirement`. Pull request [#5596](https://github.com/rubygems/rubygems/pull/5596) by deivid-rodriguez
569
1297
  * Installs bundler 2.3.19 as a default gem.
570
1298
 
571
- ## Bug fixes:
1299
+ ### Bug fixes:
572
1300
 
573
1301
  * Fix `ruby setup.rb` with `--destdir` writing outside of `--destdir`.
574
1302
  Pull request [#5737](https://github.com/rubygems/rubygems/pull/5737) by deivid-rodriguez
575
1303
 
576
- ## Documentation:
1304
+ ### Documentation:
577
1305
 
578
1306
  * Fix wrong information about default RubyGems source. Pull request [#5723](https://github.com/rubygems/rubygems/pull/5723)
579
1307
  by tnir
580
1308
 
581
- # 3.3.18 / 2022-07-14
1309
+ ## 3.3.18 / 2022-07-14
582
1310
 
583
- ## Enhancements:
1311
+ ### Enhancements:
584
1312
 
585
1313
  * Make platform `universal-mingw32` match "x64-mingw-ucrt". Pull request
586
1314
  [#5655](https://github.com/rubygems/rubygems/pull/5655) by johnnyshields
@@ -588,14 +1316,14 @@
588
1316
  gems. Pull request [#5676](https://github.com/rubygems/rubygems/pull/5676) by brianleshopify
589
1317
  * Installs bundler 2.3.18 as a default gem.
590
1318
 
591
- ## Bug fixes:
1319
+ ### Bug fixes:
592
1320
 
593
1321
  * Make sure RubyGems prints no warnings when loading plugins. Pull request
594
1322
  [#5607](https://github.com/rubygems/rubygems/pull/5607) by deivid-rodriguez
595
1323
 
596
- # 3.3.17 / 2022-06-29
1324
+ ## 3.3.17 / 2022-06-29
597
1325
 
598
- ## Enhancements:
1326
+ ### Enhancements:
599
1327
 
600
1328
  * Document `gem env` argument aliases and add `gem env user_gemhome` and
601
1329
  `gem env user_gemdir`. Pull request [#5644](https://github.com/rubygems/rubygems/pull/5644) by deivid-rodriguez
@@ -606,66 +1334,66 @@
606
1334
  * Simplify extension builder. Pull request [#5626](https://github.com/rubygems/rubygems/pull/5626) by deivid-rodriguez
607
1335
  * Installs bundler 2.3.17 as a default gem.
608
1336
 
609
- ## Documentation:
1337
+ ### Documentation:
610
1338
 
611
1339
  * Modify RubyGems issue template to be like the one for Bundler. Pull
612
1340
  request [#5643](https://github.com/rubygems/rubygems/pull/5643) by deivid-rodriguez
613
1341
 
614
- # 3.3.16 / 2022-06-15
1342
+ ## 3.3.16 / 2022-06-15
615
1343
 
616
- ## Enhancements:
1344
+ ### Enhancements:
617
1345
 
618
1346
  * Auto-fix and warn gem packages including a gemspec with `require_paths`
619
1347
  as an array of arrays. Pull request [#5615](https://github.com/rubygems/rubygems/pull/5615) by deivid-rodriguez
620
1348
  * Misc cargo builder improvements. Pull request [#5459](https://github.com/rubygems/rubygems/pull/5459) by ianks
621
1349
  * Installs bundler 2.3.16 as a default gem.
622
1350
 
623
- ## Bug fixes:
1351
+ ### Bug fixes:
624
1352
 
625
1353
  * Fix incorrect password redaction when there's an error in `gem source
626
1354
  -a`. Pull request [#5623](https://github.com/rubygems/rubygems/pull/5623) by deivid-rodriguez
627
1355
  * Fix another regression when loading old marshaled specs. Pull request
628
1356
  [#5610](https://github.com/rubygems/rubygems/pull/5610) by deivid-rodriguez
629
1357
 
630
- # 3.3.15 / 2022-06-01
1358
+ ## 3.3.15 / 2022-06-01
631
1359
 
632
- ## Enhancements:
1360
+ ### Enhancements:
633
1361
 
634
1362
  * Support the change of did_you_mean about `Exception#detailed_message`.
635
1363
  Pull request [#5560](https://github.com/rubygems/rubygems/pull/5560) by mame
636
1364
  * Installs bundler 2.3.15 as a default gem.
637
1365
 
638
- ## Bug fixes:
1366
+ ### Bug fixes:
639
1367
 
640
1368
  * Fix loading old marshaled specs including `YAML::PrivateType` constant.
641
1369
  Pull request [#5415](https://github.com/rubygems/rubygems/pull/5415) by deivid-rodriguez
642
1370
  * Fix rubygems update when non default `--install-dir` is configured. Pull
643
1371
  request [#5566](https://github.com/rubygems/rubygems/pull/5566) by deivid-rodriguez
644
1372
 
645
- # 3.3.14 / 2022-05-18
1373
+ ## 3.3.14 / 2022-05-18
646
1374
 
647
- ## Enhancements:
1375
+ ### Enhancements:
648
1376
 
649
1377
  * Installs bundler 2.3.14 as a default gem.
650
1378
 
651
- # 3.3.13 / 2022-05-04
1379
+ ## 3.3.13 / 2022-05-04
652
1380
 
653
- ## Enhancements:
1381
+ ### Enhancements:
654
1382
 
655
1383
  * Installs bundler 2.3.13 as a default gem.
656
1384
 
657
- ## Bug fixes:
1385
+ ### Bug fixes:
658
1386
 
659
1387
  * Fix regression when resolving ruby constraints. Pull request [#5486](https://github.com/rubygems/rubygems/pull/5486) by
660
1388
  deivid-rodriguez
661
1389
 
662
- ## Documentation:
1390
+ ### Documentation:
663
1391
 
664
1392
  * Clarify description of owner-flags. Pull request [#5497](https://github.com/rubygems/rubygems/pull/5497) by kronn
665
1393
 
666
- # 3.3.12 / 2022-04-20
1394
+ ## 3.3.12 / 2022-04-20
667
1395
 
668
- ## Enhancements:
1396
+ ### Enhancements:
669
1397
 
670
1398
  * Less error swallowing when installing gems. Pull request [#5475](https://github.com/rubygems/rubygems/pull/5475) by
671
1399
  deivid-rodriguez
@@ -675,14 +1403,14 @@
675
1403
  deivid-rodriguez
676
1404
  * Installs bundler 2.3.12 as a default gem.
677
1405
 
678
- ## Documentation:
1406
+ ### Documentation:
679
1407
 
680
1408
  * Fix formatting in docs. Pull request [#5470](https://github.com/rubygems/rubygems/pull/5470) by peterzhu2118
681
1409
  * Fix a typo. Pull request [#5401](https://github.com/rubygems/rubygems/pull/5401) by znz
682
1410
 
683
- # 3.3.11 / 2022-04-07
1411
+ ## 3.3.11 / 2022-04-07
684
1412
 
685
- ## Enhancements:
1413
+ ### Enhancements:
686
1414
 
687
1415
  * Enable mfa on specific keys during gem signin. Pull request [#5305](https://github.com/rubygems/rubygems/pull/5305) by
688
1416
  aellispierce
@@ -690,48 +1418,48 @@
690
1418
  * Add cargo builder for rust extensions. Pull request [#5175](https://github.com/rubygems/rubygems/pull/5175) by ianks
691
1419
  * Installs bundler 2.3.11 as a default gem.
692
1420
 
693
- ## Documentation:
1421
+ ### Documentation:
694
1422
 
695
1423
  * Improve RDoc setup. Pull request [#5398](https://github.com/rubygems/rubygems/pull/5398) by deivid-rodriguez
696
1424
 
697
- # 3.3.10 / 2022-03-23
1425
+ ## 3.3.10 / 2022-03-23
698
1426
 
699
- ## Enhancements:
1427
+ ### Enhancements:
700
1428
 
701
1429
  * Installs bundler 2.3.10 as a default gem.
702
1430
 
703
- ## Documentation:
1431
+ ### Documentation:
704
1432
 
705
1433
  * Enable `Gem::Package` example in RDoc documentation. Pull request [#5399](https://github.com/rubygems/rubygems/pull/5399)
706
1434
  by nobu
707
1435
  * Unhide RDoc documentation from top level `Gem` module. Pull request
708
1436
  [#5396](https://github.com/rubygems/rubygems/pull/5396) by nobu
709
1437
 
710
- # 3.3.9 / 2022-03-09
1438
+ ## 3.3.9 / 2022-03-09
711
1439
 
712
- ## Enhancements:
1440
+ ### Enhancements:
713
1441
 
714
1442
  * Installs bundler 2.3.9 as a default gem.
715
1443
 
716
- # 3.3.8 / 2022-02-23
1444
+ ## 3.3.8 / 2022-02-23
717
1445
 
718
- ## Enhancements:
1446
+ ### Enhancements:
719
1447
 
720
1448
  * Installs bundler 2.3.8 as a default gem.
721
1449
 
722
- # 3.3.7 / 2022-02-09
1450
+ ## 3.3.7 / 2022-02-09
723
1451
 
724
- ## Enhancements:
1452
+ ### Enhancements:
725
1453
 
726
1454
  * Installs bundler 2.3.7 as a default gem.
727
1455
 
728
- ## Documentation:
1456
+ ### Documentation:
729
1457
 
730
1458
  * Fix missing rdoc for `Gem::Version`. Pull request [#5299](https://github.com/rubygems/rubygems/pull/5299) by nevans
731
1459
 
732
- # 3.3.6 / 2022-01-26
1460
+ ## 3.3.6 / 2022-01-26
733
1461
 
734
- ## Enhancements:
1462
+ ### Enhancements:
735
1463
 
736
1464
  * Forbid downgrading past the originally shipped version on Ruby 3.1. Pull
737
1465
  request [#5301](https://github.com/rubygems/rubygems/pull/5301) by deivid-rodriguez
@@ -740,16 +1468,16 @@
740
1468
  * Let `Version#<=>` accept a String. Pull request [#5275](https://github.com/rubygems/rubygems/pull/5275) by amatsuda
741
1469
  * Installs bundler 2.3.6 as a default gem.
742
1470
 
743
- ## Bug fixes:
1471
+ ### Bug fixes:
744
1472
 
745
1473
  * Avoid `flock` on non Windows systems, since it causing issues on NFS
746
1474
  file systems. Pull request [#5278](https://github.com/rubygems/rubygems/pull/5278) by deivid-rodriguez
747
1475
  * Fix `gem update --system` for already installed version of
748
1476
  `rubygems-update`. Pull request [#5285](https://github.com/rubygems/rubygems/pull/5285) by loadkpi
749
1477
 
750
- # 3.3.5 / 2022-01-12
1478
+ ## 3.3.5 / 2022-01-12
751
1479
 
752
- ## Enhancements:
1480
+ ### Enhancements:
753
1481
 
754
1482
  * Don't activate `yaml` gem from RubyGems. Pull request [#5266](https://github.com/rubygems/rubygems/pull/5266) by
755
1483
  deivid-rodriguez
@@ -757,89 +1485,89 @@
757
1485
  `--[no-]suggestions` flag. Pull request [#5242](https://github.com/rubygems/rubygems/pull/5242) by ximenasandoval
758
1486
  * Installs bundler 2.3.5 as a default gem.
759
1487
 
760
- ## Bug fixes:
1488
+ ### Bug fixes:
761
1489
 
762
1490
  * Fix `gem install <non-existent-gem> --force` crash. Pull request [#5262](https://github.com/rubygems/rubygems/pull/5262)
763
1491
  by deivid-rodriguez
764
1492
  * Fix longstanding `gem install` failure on JRuby. Pull request [#5228](https://github.com/rubygems/rubygems/pull/5228) by
765
1493
  deivid-rodriguez
766
1494
 
767
- ## Documentation:
1495
+ ### Documentation:
768
1496
 
769
1497
  * Markup `Gem::Specification` documentation with RDoc notations. Pull
770
1498
  request [#5268](https://github.com/rubygems/rubygems/pull/5268) by nobu
771
1499
 
772
- # 3.3.4 / 2021-12-29
1500
+ ## 3.3.4 / 2021-12-29
773
1501
 
774
- ## Enhancements:
1502
+ ### Enhancements:
775
1503
 
776
1504
  * Don't redownload `rubygems-update` package if already there. Pull
777
1505
  request [#5230](https://github.com/rubygems/rubygems/pull/5230) by deivid-rodriguez
778
1506
  * Installs bundler 2.3.4 as a default gem.
779
1507
 
780
- ## Bug fixes:
1508
+ ### Bug fixes:
781
1509
 
782
1510
  * Fix `gem update --system` crashing when latest version not supported.
783
1511
  Pull request [#5191](https://github.com/rubygems/rubygems/pull/5191) by deivid-rodriguez
784
1512
 
785
- ## Performance:
1513
+ ### Performance:
786
1514
 
787
1515
  * Make SpecificationPolicy autoload constant. Pull request [#5222](https://github.com/rubygems/rubygems/pull/5222) by pocke
788
1516
 
789
- # 3.3.3 / 2021-12-24
1517
+ ## 3.3.3 / 2021-12-24
790
1518
 
791
- ## Enhancements:
1519
+ ### Enhancements:
792
1520
 
793
1521
  * Installs bundler 2.3.3 as a default gem.
794
1522
 
795
- ## Bug fixes:
1523
+ ### Bug fixes:
796
1524
 
797
1525
  * Fix gem installation failing in Solaris due to bad `IO#flock` usage.
798
1526
  Pull request [#5216](https://github.com/rubygems/rubygems/pull/5216) by mame
799
1527
 
800
- # 3.3.2 / 2021-12-23
1528
+ ## 3.3.2 / 2021-12-23
801
1529
 
802
- ## Enhancements:
1530
+ ### Enhancements:
803
1531
 
804
1532
  * Fix deprecations when activating DidYouMean for misspelled command
805
1533
  suggestions. Pull request [#5211](https://github.com/rubygems/rubygems/pull/5211) by yuki24
806
1534
  * Installs bundler 2.3.2 as a default gem.
807
1535
 
808
- ## Bug fixes:
1536
+ ### Bug fixes:
809
1537
 
810
1538
  * Fix gemspec truncation. Pull request [#5208](https://github.com/rubygems/rubygems/pull/5208) by deivid-rodriguez
811
1539
 
812
- # 3.3.1 / 2021-12-22
1540
+ ## 3.3.1 / 2021-12-22
813
1541
 
814
- ## Enhancements:
1542
+ ### Enhancements:
815
1543
 
816
1544
  * Fix compatibility with OpenSSL 3.0. Pull request [#5196](https://github.com/rubygems/rubygems/pull/5196) by rhenium
817
1545
  * Remove hard errors when matching major bundler not found. Pull request
818
1546
  [#5181](https://github.com/rubygems/rubygems/pull/5181) by deivid-rodriguez
819
1547
  * Installs bundler 2.3.1 as a default gem.
820
1548
 
821
- # 3.3.0 / 2021-12-21
1549
+ ## 3.3.0 / 2021-12-21
822
1550
 
823
- ## Breaking changes:
1551
+ ### Breaking changes:
824
1552
 
825
1553
  * Removed deprecated `gem server` command. Pull request [#5034](https://github.com/rubygems/rubygems/pull/5034) by hsbt
826
1554
  * Remove macOS specific gem layout. Pull request [#4833](https://github.com/rubygems/rubygems/pull/4833) by deivid-rodriguez
827
1555
  * Default `gem update` documentation format is now only `ri`. Pull request
828
1556
  [#3888](https://github.com/rubygems/rubygems/pull/3888) by hsbt
829
1557
 
830
- ## Features:
1558
+ ### Features:
831
1559
 
832
1560
  * Give command misspelled suggestions via `did_you_mean` gem. Pull request
833
1561
  [#3904](https://github.com/rubygems/rubygems/pull/3904) by hsbt
834
1562
 
835
- ## Performance:
1563
+ ### Performance:
836
1564
 
837
1565
  * Avoid some unnecessary stat calls. Pull request [#3887](https://github.com/rubygems/rubygems/pull/3887) by kares
838
1566
  * Improve spell checking suggestion performance by
839
1567
  vendoring`DidYouMean::Levenshtein.distance` from `did_you_mean-1.4.0`.
840
1568
  Pull request [#3856](https://github.com/rubygems/rubygems/pull/3856) by austinpray
841
1569
 
842
- ## Enhancements:
1570
+ ### Enhancements:
843
1571
 
844
1572
  * Set `BUNDLER_VERSION` when `bundle _<version>_` is passed. Pull request
845
1573
  [#5180](https://github.com/rubygems/rubygems/pull/5180) by deivid-rodriguez
@@ -848,7 +1576,7 @@
848
1576
  information on errors. Pull request [#4189](https://github.com/rubygems/rubygems/pull/4189) by deivid-rodriguez
849
1577
  * Installs bundler 2.3.0 as a default gem.
850
1578
 
851
- ## Bug fixes:
1579
+ ### Bug fixes:
852
1580
 
853
1581
  * Fix encoding mismatch issues when writing gem packages. Pull request
854
1582
  [#5162](https://github.com/rubygems/rubygems/pull/5162) by deivid-rodriguez
@@ -859,13 +1587,13 @@
859
1587
  * Fix upgrade crashing when multiple versions of `fileutils` installed.
860
1588
  Pull request [#5140](https://github.com/rubygems/rubygems/pull/5140) by deivid-rodriguez
861
1589
 
862
- # 3.2.33 / 2021-12-07
1590
+ ## 3.2.33 / 2021-12-07
863
1591
 
864
- ## Deprecations:
1592
+ ### Deprecations:
865
1593
 
866
1594
  * Deprecate typo name. Pull request [#5109](https://github.com/rubygems/rubygems/pull/5109) by nobu
867
1595
 
868
- ## Enhancements:
1596
+ ### Enhancements:
869
1597
 
870
1598
  * Add login & logout alias for the signin & signout commands. Pull request
871
1599
  [#5133](https://github.com/rubygems/rubygems/pull/5133) by colby-swandale
@@ -873,21 +1601,21 @@
873
1601
  request [#4408](https://github.com/rubygems/rubygems/pull/4408) by deivid-rodriguez
874
1602
  * Installs bundler 2.2.33 as a default gem.
875
1603
 
876
- ## Bug fixes:
1604
+ ### Bug fixes:
877
1605
 
878
1606
  * Fix `ruby setup.rb` trying to write outside of `--destdir`. Pull request
879
1607
  [#5053](https://github.com/rubygems/rubygems/pull/5053) by deivid-rodriguez
880
1608
 
881
- ## Documentation:
1609
+ ### Documentation:
882
1610
 
883
1611
  * Move required_ruby_version gemspec attribute to recommended section.
884
1612
  Pull request [#5130](https://github.com/rubygems/rubygems/pull/5130) by simi
885
1613
  * Ignore to generate the documentation from vendored libraries. Pull
886
1614
  request [#5118](https://github.com/rubygems/rubygems/pull/5118) by hsbt
887
1615
 
888
- # 3.2.32 / 2021-11-23
1616
+ ## 3.2.32 / 2021-11-23
889
1617
 
890
- ## Enhancements:
1618
+ ### Enhancements:
891
1619
 
892
1620
  * Refactor installer thread safety protections. Pull request [#5050](https://github.com/rubygems/rubygems/pull/5050) by
893
1621
  deivid-rodriguez
@@ -895,9 +1623,9 @@
895
1623
  deivid-rodriguez
896
1624
  * Installs bundler 2.2.32 as a default gem.
897
1625
 
898
- # 3.2.31 / 2021-11-08
1626
+ ## 3.2.31 / 2021-11-08
899
1627
 
900
- ## Enhancements:
1628
+ ### Enhancements:
901
1629
 
902
1630
  * Don't pass empty `DESTDIR` to `nmake` since it works differently from
903
1631
  standard `make`. Pull request [#5057](https://github.com/rubygems/rubygems/pull/5057) by hsbt
@@ -909,16 +1637,16 @@
909
1637
  deivid-rodriguez
910
1638
  * Install bundler 2.2.31 as a default gem.
911
1639
 
912
- ## Bug fixes:
1640
+ ### Bug fixes:
913
1641
 
914
1642
  * Fix `ruby setup.rb` when `--prefix` is passed. Pull request [#5051](https://github.com/rubygems/rubygems/pull/5051) by
915
1643
  deivid-rodriguez
916
1644
  * Don't apply `--destdir` twice when running `setup.rb`. Pull request
917
1645
  [#2768](https://github.com/rubygems/rubygems/pull/2768) by alyssais
918
1646
 
919
- # 3.2.30 / 2021-10-26
1647
+ ## 3.2.30 / 2021-10-26
920
1648
 
921
- ## Enhancements:
1649
+ ### Enhancements:
922
1650
 
923
1651
  * Add support to build and sign certificates with multiple key algorithms.
924
1652
  Pull request [#4991](https://github.com/rubygems/rubygems/pull/4991) by doodzik
@@ -930,32 +1658,32 @@
930
1658
  `Gem::Request.verify_certificate_message`. Pull request [#4975](https://github.com/rubygems/rubygems/pull/4975) by nobu
931
1659
  * Install bundler 2.2.30 as a default gem.
932
1660
 
933
- ## Performance:
1661
+ ### Performance:
934
1662
 
935
1663
  * Speed up `gem install`, specially under Windows. Pull request [#4960](https://github.com/rubygems/rubygems/pull/4960) by
936
1664
  deivid-rodriguez
937
1665
 
938
- # 3.2.29 / 2021-10-08
1666
+ ## 3.2.29 / 2021-10-08
939
1667
 
940
- ## Enhancements:
1668
+ ### Enhancements:
941
1669
 
942
1670
  * Only disallow FIXME/TODO for first word of gemspec description. Pull
943
1671
  request [#4937](https://github.com/rubygems/rubygems/pull/4937) by duckinator
944
1672
  * Install bundler 2.2.29 as a default gem.
945
1673
 
946
- ## Bug fixes:
1674
+ ### Bug fixes:
947
1675
 
948
1676
  * Fix `wordy` method in `SourceFetchProblem` changing the password of
949
1677
  source. Pull request [#4910](https://github.com/rubygems/rubygems/pull/4910) by Huangxiaodui
950
1678
 
951
- ## Performance:
1679
+ ### Performance:
952
1680
 
953
1681
  * Improve `require` performance, particularly on systems with a lot of
954
1682
  gems installed. Pull request [#4951](https://github.com/rubygems/rubygems/pull/4951) by pocke
955
1683
 
956
- # 3.2.28 / 2021-09-23
1684
+ ## 3.2.28 / 2021-09-23
957
1685
 
958
- ## Enhancements:
1686
+ ### Enhancements:
959
1687
 
960
1688
  * Support MINGW-UCRT. Pull request [#4925](https://github.com/rubygems/rubygems/pull/4925) by hsbt
961
1689
  * Only check if descriptions *start with* FIXME/TODO. Pull request [#4841](https://github.com/rubygems/rubygems/pull/4841)
@@ -964,14 +1692,14 @@
964
1692
  [#4897](https://github.com/rubygems/rubygems/pull/4897) by deivid-rodriguez
965
1693
  * Install bundler 2.2.28 as a default gem.
966
1694
 
967
- ## Bug fixes:
1695
+ ### Bug fixes:
968
1696
 
969
1697
  * Fix redacted credentials being sent to gemserver. Pull request [#4919](https://github.com/rubygems/rubygems/pull/4919) by
970
1698
  jdliss
971
1699
 
972
- # 3.2.27 / 2021-09-03
1700
+ ## 3.2.27 / 2021-09-03
973
1701
 
974
- ## Enhancements:
1702
+ ### Enhancements:
975
1703
 
976
1704
  * Redact credentials when printing URI. Pull request [#4868](https://github.com/rubygems/rubygems/pull/4868) by intuxicated
977
1705
  * Prefer `require_relative` to `require` for internal requires. Pull
@@ -980,9 +1708,9 @@
980
1708
  fetching once we find a valid candidate. Pull request [#4843](https://github.com/rubygems/rubygems/pull/4843) by intuxicated
981
1709
  * Install bundler 2.2.27 as a default gem.
982
1710
 
983
- # 3.2.26 / 2021-08-17
1711
+ ## 3.2.26 / 2021-08-17
984
1712
 
985
- ## Enhancements:
1713
+ ### Enhancements:
986
1714
 
987
1715
  * Enhance the error handling for loading the
988
1716
  `rubygems/defaults/operating_system` file. Pull request [#4824](https://github.com/rubygems/rubygems/pull/4824) by
@@ -991,14 +1719,14 @@
991
1719
  deivid-rodriguez
992
1720
  * Install bundler 2.2.26 as a default gem.
993
1721
 
994
- ## Bug fixes:
1722
+ ### Bug fixes:
995
1723
 
996
1724
  * Also load user installed rubygems plugins. Pull request [#4829](https://github.com/rubygems/rubygems/pull/4829) by
997
1725
  deivid-rodriguez
998
1726
 
999
- # 3.2.25 / 2021-07-30
1727
+ ## 3.2.25 / 2021-07-30
1000
1728
 
1001
- ## Enhancements:
1729
+ ### Enhancements:
1002
1730
 
1003
1731
  * Don't load the `base64` library since it's not used. Pull request [#4785](https://github.com/rubygems/rubygems/pull/4785)
1004
1732
  by deivid-rodriguez
@@ -1009,38 +1737,38 @@
1009
1737
  request [#4651](https://github.com/rubygems/rubygems/pull/4651) by nobu
1010
1738
  * Install bundler 2.2.25 as a default gem.
1011
1739
 
1012
- ## Bug fixes:
1740
+ ### Bug fixes:
1013
1741
 
1014
1742
  * Add missing `require 'fileutils'` in `Gem::ConfigFile`. Pull request
1015
1743
  [#4768](https://github.com/rubygems/rubygems/pull/4768) by ybiquitous
1016
1744
 
1017
- # 3.2.24 / 2021-07-15
1745
+ ## 3.2.24 / 2021-07-15
1018
1746
 
1019
- ## Enhancements:
1747
+ ### Enhancements:
1020
1748
 
1021
1749
  * Install bundler 2.2.24 as a default gem.
1022
1750
 
1023
- ## Bug fixes:
1751
+ ### Bug fixes:
1024
1752
 
1025
1753
  * Fix contradictory message about deletion of default gem. Pull request
1026
1754
  [#4739](https://github.com/rubygems/rubygems/pull/4739) by jaredbeck
1027
1755
 
1028
- ## Documentation:
1756
+ ### Documentation:
1029
1757
 
1030
1758
  * Add a description about `GEM_HOST_OTP_CODE` to help text. Pull request
1031
1759
  [#4742](https://github.com/rubygems/rubygems/pull/4742) by ybiquitous
1032
1760
 
1033
- # 3.2.23 / 2021-07-09
1761
+ ## 3.2.23 / 2021-07-09
1034
1762
 
1035
- ## Enhancements:
1763
+ ### Enhancements:
1036
1764
 
1037
1765
  * Rewind IO source to allow working with contents in memory. Pull request
1038
1766
  [#4729](https://github.com/rubygems/rubygems/pull/4729) by drcapulet
1039
1767
  * Install bundler 2.2.23 as a default gem.
1040
1768
 
1041
- # 3.2.22 / 2021-07-06
1769
+ ## 3.2.22 / 2021-07-06
1042
1770
 
1043
- ## Enhancements:
1771
+ ### Enhancements:
1044
1772
 
1045
1773
  * Allow setting `--otp` via `GEM_HOST_OTP_CODE`. Pull request [#4697](https://github.com/rubygems/rubygems/pull/4697) by
1046
1774
  CGA1123
@@ -1048,9 +1776,9 @@
1048
1776
  [#4695](https://github.com/rubygems/rubygems/pull/4695) by rhenium
1049
1777
  * Install bundler 2.2.22 as a default gem.
1050
1778
 
1051
- # 3.2.21 / 2021-06-23
1779
+ ## 3.2.21 / 2021-06-23
1052
1780
 
1053
- ## Enhancements:
1781
+ ### Enhancements:
1054
1782
 
1055
1783
  * Fix typo in OpenSSL detection. Pull request [#4679](https://github.com/rubygems/rubygems/pull/4679) by osyoyu
1056
1784
  * Add the most recent licenses from spdx.org. Pull request [#4662](https://github.com/rubygems/rubygems/pull/4662) by nobu
@@ -1058,42 +1786,42 @@
1058
1786
  truffleruby 21.0 and 21.1. Pull request [#4624](https://github.com/rubygems/rubygems/pull/4624) by deivid-rodriguez
1059
1787
  * Install bundler 2.2.21 as a default gem.
1060
1788
 
1061
- ## Bug fixes:
1789
+ ### Bug fixes:
1062
1790
 
1063
1791
  * Create credentials folder when setting API keys if not there yet. Pull
1064
1792
  request [#4665](https://github.com/rubygems/rubygems/pull/4665) by deivid-rodriguez
1065
1793
 
1066
- # 3.2.20 / 2021-06-11
1794
+ ## 3.2.20 / 2021-06-11
1067
1795
 
1068
- ## Security fixes:
1796
+ ### Security fixes:
1069
1797
 
1070
1798
  * Verify platform before installing to avoid potential remote code
1071
1799
  execution. Pull request [#4667](https://github.com/rubygems/rubygems/pull/4667) by sonalkr132
1072
1800
 
1073
- ## Enhancements:
1801
+ ### Enhancements:
1074
1802
 
1075
1803
  * Add better specification policy error description. Pull request [#4658](https://github.com/rubygems/rubygems/pull/4658) by
1076
1804
  ceritium
1077
1805
  * Install bundler 2.2.20 as a default gem.
1078
1806
 
1079
- # 3.2.19 / 2021-05-31
1807
+ ## 3.2.19 / 2021-05-31
1080
1808
 
1081
- ## Enhancements:
1809
+ ### Enhancements:
1082
1810
 
1083
1811
  * Fix `gem help build` output format. Pull request [#4613](https://github.com/rubygems/rubygems/pull/4613) by tnir
1084
1812
  * Install bundler 2.2.19 as a default gem.
1085
1813
 
1086
- # 3.2.18 / 2021-05-25
1814
+ ## 3.2.18 / 2021-05-25
1087
1815
 
1088
- ## Enhancements:
1816
+ ### Enhancements:
1089
1817
 
1090
1818
  * Don't leave temporary directory around when building extensions to
1091
1819
  improve build reproducibility. Pull request [#4610](https://github.com/rubygems/rubygems/pull/4610) by baloo
1092
1820
  * Install bundler 2.2.18 as a default gem.
1093
1821
 
1094
- # 3.2.17 / 2021-05-05
1822
+ ## 3.2.17 / 2021-05-05
1095
1823
 
1096
- ## Enhancements:
1824
+ ### Enhancements:
1097
1825
 
1098
1826
  * Only print month & year in deprecation messages. Pull request [#3085](https://github.com/rubygems/rubygems/pull/3085) by
1099
1827
  Schwad
@@ -1103,94 +1831,94 @@
1103
1831
  * Prefer File.open instead of Kernel#open. Pull request [#4529](https://github.com/rubygems/rubygems/pull/4529) by mame
1104
1832
  * Install bundler 2.2.17 as a default gem.
1105
1833
 
1106
- ## Documentation:
1834
+ ### Documentation:
1107
1835
 
1108
1836
  * Fix usage messages to reflect the current POSIX-compatible behaviour.
1109
1837
  Pull request [#4551](https://github.com/rubygems/rubygems/pull/4551) by graywolf-at-work
1110
1838
 
1111
- # 3.2.16 / 2021-04-08
1839
+ ## 3.2.16 / 2021-04-08
1112
1840
 
1113
- ## Enhancements:
1841
+ ### Enhancements:
1114
1842
 
1115
1843
  * Install bundler 2.2.16 as a default gem.
1116
1844
 
1117
- ## Bug fixes:
1845
+ ### Bug fixes:
1118
1846
 
1119
1847
  * Correctly handle symlinks. Pull request [#2836](https://github.com/rubygems/rubygems/pull/2836) by voxik
1120
1848
 
1121
- # 3.2.15 / 2021-03-19
1849
+ ## 3.2.15 / 2021-03-19
1122
1850
 
1123
- ## Enhancements:
1851
+ ### Enhancements:
1124
1852
 
1125
1853
  * Prevent downgrades to untested rubygems versions. Pull request [#4460](https://github.com/rubygems/rubygems/pull/4460) by
1126
1854
  deivid-rodriguez
1127
1855
  * Install bundler 2.2.15 as a default gem.
1128
1856
 
1129
- ## Bug fixes:
1857
+ ### Bug fixes:
1130
1858
 
1131
1859
  * Fix missing require breaking `gem cert`. Pull request [#4464](https://github.com/rubygems/rubygems/pull/4464) by lukehinds
1132
1860
 
1133
- # 3.2.14 / 2021-03-08
1861
+ ## 3.2.14 / 2021-03-08
1134
1862
 
1135
- ## Enhancements:
1863
+ ### Enhancements:
1136
1864
 
1137
1865
  * Less wrapping of network errors. Pull request [#4064](https://github.com/rubygems/rubygems/pull/4064) by deivid-rodriguez
1138
1866
  * Install bundler 2.2.14 as a default gem.
1139
1867
 
1140
- ## Bug fixes:
1868
+ ### Bug fixes:
1141
1869
 
1142
1870
  * Revert addition of support for `musl` variants to restore graceful
1143
1871
  fallback on Alpine. Pull request [#4434](https://github.com/rubygems/rubygems/pull/4434) by deivid-rodriguez
1144
1872
 
1145
- # 3.2.13 / 2021-03-03
1873
+ ## 3.2.13 / 2021-03-03
1146
1874
 
1147
- ## Enhancements:
1875
+ ### Enhancements:
1148
1876
 
1149
1877
  * Install bundler 2.2.13 as a default gem.
1150
1878
 
1151
- ## Bug fixes:
1879
+ ### Bug fixes:
1152
1880
 
1153
1881
  * Support non-gnu libc linux platforms. Pull request [#4082](https://github.com/rubygems/rubygems/pull/4082) by lloeki
1154
1882
 
1155
- # 3.2.12 / 2021-03-01
1883
+ ## 3.2.12 / 2021-03-01
1156
1884
 
1157
- ## Enhancements:
1885
+ ### Enhancements:
1158
1886
 
1159
1887
  * Install bundler 2.2.12 as a default gem.
1160
1888
 
1161
- ## Bug fixes:
1889
+ ### Bug fixes:
1162
1890
 
1163
1891
  * Restore the ability to manually install extension gems. Pull request
1164
1892
  [#4384](https://github.com/rubygems/rubygems/pull/4384) by cfis
1165
1893
 
1166
- # 3.2.11 / 2021-02-17
1894
+ ## 3.2.11 / 2021-02-17
1167
1895
 
1168
- ## Enhancements:
1896
+ ### Enhancements:
1169
1897
 
1170
1898
  * Optionally fallback to IPv4 when IPv6 is unreachable. Pull request [#2662](https://github.com/rubygems/rubygems/pull/2662)
1171
1899
  by sonalkr132
1172
1900
  * Install bundler 2.2.11 as a default gem.
1173
1901
 
1174
- # 3.2.10 / 2021-02-15
1902
+ ## 3.2.10 / 2021-02-15
1175
1903
 
1176
- ## Enhancements:
1904
+ ### Enhancements:
1177
1905
 
1178
1906
  * Install bundler 2.2.10 as a default gem.
1179
1907
 
1180
- ## Documentation:
1908
+ ### Documentation:
1181
1909
 
1182
1910
  * Add a `gem push` example to `gem help`. Pull request [#4373](https://github.com/rubygems/rubygems/pull/4373) by
1183
1911
  deivid-rodriguez
1184
1912
  * Improve documentation for `required_ruby_version`. Pull request [#4343](https://github.com/rubygems/rubygems/pull/4343) by
1185
1913
  AlexWayfer
1186
1914
 
1187
- # 3.2.9 / 2021-02-08
1915
+ ## 3.2.9 / 2021-02-08
1188
1916
 
1189
- ## Enhancements:
1917
+ ### Enhancements:
1190
1918
 
1191
1919
  * Install bundler 2.2.9 as a default gem.
1192
1920
 
1193
- ## Bug fixes:
1921
+ ### Bug fixes:
1194
1922
 
1195
1923
  * Fix error message when underscore selection can't find bundler. Pull
1196
1924
  request [#4363](https://github.com/rubygems/rubygems/pull/4363) by deivid-rodriguez
@@ -1201,59 +1929,59 @@
1201
1929
  * Fix `gem outdated` incorrectly handling platform specific gems. Pull
1202
1930
  request [#4248](https://github.com/rubygems/rubygems/pull/4248) by deivid-rodriguez
1203
1931
 
1204
- # 3.2.8 / 2021-02-02
1932
+ ## 3.2.8 / 2021-02-02
1205
1933
 
1206
- ## Enhancements:
1934
+ ### Enhancements:
1207
1935
 
1208
1936
  * Install bundler 2.2.8 as a default gem.
1209
1937
 
1210
- ## Bug fixes:
1938
+ ### Bug fixes:
1211
1939
 
1212
1940
  * Fix `gem install` crashing on gemspec with nil required_ruby_version.
1213
1941
  Pull request [#4334](https://github.com/rubygems/rubygems/pull/4334) by pbernays
1214
1942
 
1215
- # 3.2.7 / 2021-01-26
1943
+ ## 3.2.7 / 2021-01-26
1216
1944
 
1217
- ## Enhancements:
1945
+ ### Enhancements:
1218
1946
 
1219
1947
  * Install bundler 2.2.7 as a default gem.
1220
1948
 
1221
- ## Bug fixes:
1949
+ ### Bug fixes:
1222
1950
 
1223
1951
  * Generate plugin wrappers with relative requires. Pull request [#4317](https://github.com/rubygems/rubygems/pull/4317) by
1224
1952
  deivid-rodriguez
1225
1953
 
1226
- # 3.2.6 / 2021-01-18
1954
+ ## 3.2.6 / 2021-01-18
1227
1955
 
1228
- ## Enhancements:
1956
+ ### Enhancements:
1229
1957
 
1230
1958
  * Fix `Gem::Platform#inspect` showing duplicate information. Pull request
1231
1959
  [#4276](https://github.com/rubygems/rubygems/pull/4276) by deivid-rodriguez
1232
1960
  * Install bundler 2.2.6 as a default gem.
1233
1961
 
1234
- ## Bug fixes:
1962
+ ### Bug fixes:
1235
1963
 
1236
1964
  * Swallow any system call error in `ensure_gem_subdirs` to support jruby
1237
1965
  embedded paths. Pull request [#4291](https://github.com/rubygems/rubygems/pull/4291) by kares
1238
1966
  * Restore accepting custom make command with extra options as the `make`
1239
1967
  env variable. Pull request [#4271](https://github.com/rubygems/rubygems/pull/4271) by terceiro
1240
1968
 
1241
- # 3.2.5 / 2021-01-11
1969
+ ## 3.2.5 / 2021-01-11
1242
1970
 
1243
- ## Enhancements:
1971
+ ### Enhancements:
1244
1972
 
1245
1973
  * Install bundler 2.2.5 as a default gem.
1246
1974
 
1247
- ## Bug fixes:
1975
+ ### Bug fixes:
1248
1976
 
1249
1977
  * Don't load more specs after the whole set of specs has been setup. Pull
1250
1978
  request [#4262](https://github.com/rubygems/rubygems/pull/4262) by deivid-rodriguez
1251
1979
  * Fix broken `bundler` executable after `gem update --system`. Pull
1252
1980
  request [#4221](https://github.com/rubygems/rubygems/pull/4221) by deivid-rodriguez
1253
1981
 
1254
- # 3.2.4 / 2020-12-31
1982
+ ## 3.2.4 / 2020-12-31
1255
1983
 
1256
- ## Enhancements:
1984
+ ### Enhancements:
1257
1985
 
1258
1986
  * Use a CHANGELOG in markdown for rubygems. Pull request [#4168](https://github.com/rubygems/rubygems/pull/4168) by
1259
1987
  deivid-rodriguez
@@ -1261,33 +1989,33 @@
1261
1989
  deivid-rodriguez
1262
1990
  * Install bundler 2.2.4 as a default gem.
1263
1991
 
1264
- ## Bug fixes:
1992
+ ### Bug fixes:
1265
1993
 
1266
1994
  * Fix fallback to the old index and installation from it not working. Pull
1267
1995
  request [#4213](https://github.com/rubygems/rubygems/pull/4213) by deivid-rodriguez
1268
1996
  * Fix installing from source on truffleruby. Pull request [#4201](https://github.com/rubygems/rubygems/pull/4201) by
1269
1997
  deivid-rodriguez
1270
1998
 
1271
- # 3.2.3 / 2020-12-22
1999
+ ## 3.2.3 / 2020-12-22
1272
2000
 
1273
- ## Enhancements:
2001
+ ### Enhancements:
1274
2002
 
1275
2003
  * Fix misspellings in default API key name. Pull request [#4177](https://github.com/rubygems/rubygems/pull/4177) by hsbt
1276
2004
  * Install bundler 2.2.3 as a default gem.
1277
2005
 
1278
- ## Bug fixes:
2006
+ ### Bug fixes:
1279
2007
 
1280
2008
  * Respect `required_ruby_version` and `required_rubygems_version`
1281
2009
  constraints when looking for `gem install` candidates. Pull request [#4110](https://github.com/rubygems/rubygems/pull/4110)
1282
2010
  by deivid-rodriguez
1283
2011
 
1284
- # 3.2.2 / 2020-12-17
2012
+ ## 3.2.2 / 2020-12-17
1285
2013
 
1286
- ## Enhancements:
2014
+ ### Enhancements:
1287
2015
 
1288
2016
  * Install bundler 2.2.2 as a default gem.
1289
2017
 
1290
- ## Bug fixes:
2018
+ ### Bug fixes:
1291
2019
 
1292
2020
  * Fix issue where CLI commands making more than one request to
1293
2021
  rubygems.org needing an OTP code would crash or ask for the code twice.
@@ -1297,24 +2025,24 @@
1297
2025
  * Fix `gem update --system` displaying too many changelog entries. Pull
1298
2026
  request [#4145](https://github.com/rubygems/rubygems/pull/4145) by deivid-rodriguez
1299
2027
 
1300
- # 3.2.1 / 2020-12-14
2028
+ ## 3.2.1 / 2020-12-14
1301
2029
 
1302
- ## Enhancements:
2030
+ ### Enhancements:
1303
2031
 
1304
2032
  * Added help message for gem i webrick in gem server command. Pull request
1305
2033
  [#4117](https://github.com/rubygems/rubygems/pull/4117) by hsbt
1306
2034
  * Install bundler 2.2.1 as a default gem.
1307
2035
 
1308
- ## Bug fixes:
2036
+ ### Bug fixes:
1309
2037
 
1310
2038
  * Added the missing loading of fileutils same as load_specs. Pull request
1311
2039
  [#4124](https://github.com/rubygems/rubygems/pull/4124) by hsbt
1312
2040
  * Fix Resolver::APISet to always include prereleases when necessary. Pull
1313
2041
  request [#4113](https://github.com/rubygems/rubygems/pull/4113) by deivid-rodriguez
1314
2042
 
1315
- # 3.2.0 / 2020-12-07
2043
+ ## 3.2.0 / 2020-12-07
1316
2044
 
1317
- ## Enhancements:
2045
+ ### Enhancements:
1318
2046
 
1319
2047
  * Do not override Kernel#warn when there is no need. Pull request [#4075](https://github.com/rubygems/rubygems/pull/4075) by
1320
2048
  eregon
@@ -1334,7 +2062,7 @@
1334
2062
  eregon
1335
2063
  * Install bundler 2.2.0 as a default gem.
1336
2064
 
1337
- ## Bug fixes:
2065
+ ### Bug fixes:
1338
2066
 
1339
2067
  * Use better owner & group for files in rubygems package. Pull request
1340
2068
  [#4065](https://github.com/rubygems/rubygems/pull/4065) by deivid-rodriguez
@@ -1360,18 +2088,18 @@
1360
2088
  * Make `--default` and `--install-dir` options to `gem install` play nice
1361
2089
  together. Pull request [#3906](https://github.com/rubygems/rubygems/pull/3906) by deivid-rodriguez
1362
2090
 
1363
- ## Deprecations:
2091
+ ### Deprecations:
1364
2092
 
1365
2093
  * Deprecate server command. Pull request [#3868](https://github.com/rubygems/rubygems/pull/3868) by bronzdoc
1366
2094
 
1367
- ## Performance:
2095
+ ### Performance:
1368
2096
 
1369
2097
  * Don't change ruby process CWD when building extensions. Pull request
1370
2098
  [#3498](https://github.com/rubygems/rubygems/pull/3498) by deivid-rodriguez
1371
2099
 
1372
- # 3.2.0.rc.2 / 2020-10-08
2100
+ ## 3.2.0.rc.2 / 2020-10-08
1373
2101
 
1374
- ## Enhancements:
2102
+ ### Enhancements:
1375
2103
 
1376
2104
  * Make --dry-run flag consistent across rubygems commands. Pull request
1377
2105
  [#3867](https://github.com/rubygems/rubygems/pull/3867) by bronzdoc
@@ -1388,7 +2116,7 @@
1388
2116
  * Ignore internal frames in RubyGems' Kernel#warn. Pull request [#3810](https://github.com/rubygems/rubygems/pull/3810) by
1389
2117
  eregon
1390
2118
 
1391
- ## Bug fixes:
2119
+ ### Bug fixes:
1392
2120
 
1393
2121
  * Add missing fileutils require. Pull request [#3911](https://github.com/rubygems/rubygems/pull/3911) by deivid-rodriguez
1394
2122
  * Fix false positive warning on Windows when PATH has
@@ -1400,7 +2128,7 @@
1400
2128
  * `gem install --user` fails with `Gem::FilePermissionError` on the system
1401
2129
  plugins directory. Pull request [#3804](https://github.com/rubygems/rubygems/pull/3804) by nobu
1402
2130
 
1403
- ## Performance:
2131
+ ### Performance:
1404
2132
 
1405
2133
  * Avoid duplicated generation of APISpecification objects. Pull request
1406
2134
  [#3940](https://github.com/rubygems/rubygems/pull/3940) by mame
@@ -1410,9 +2138,9 @@
1410
2138
  casperisfine
1411
2139
  * Optimize Gem.already_loaded?. Pull request [#3793](https://github.com/rubygems/rubygems/pull/3793) by casperisfine
1412
2140
 
1413
- # 3.2.0.rc.1 / 2020-07-04
2141
+ ## 3.2.0.rc.1 / 2020-07-04
1414
2142
 
1415
- ## Enhancements:
2143
+ ### Enhancements:
1416
2144
 
1417
2145
  * Test TruffleRuby in CI. Pull request [#2797](https://github.com/rubygems/rubygems/pull/2797) by Benoit Daloze.
1418
2146
  * Rework plugins system and speed up rubygems. Pull request [#3108](https://github.com/rubygems/rubygems/pull/3108) by David
@@ -1459,7 +2187,7 @@
1459
2187
  * Only rescue the errors we actually want to rescue. Pull request [#3156](https://github.com/rubygems/rubygems/pull/3156) by
1460
2188
  David Rodríguez.
1461
2189
 
1462
- ## Bug fixes:
2190
+ ### Bug fixes:
1463
2191
 
1464
2192
  * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
1465
2193
  request [#3422](https://github.com/rubygems/rubygems/pull/3422) by Yusuke Endoh.
@@ -1481,12 +2209,12 @@
1481
2209
  * Fix `ruby setup.rb` for new plugins layout. Pull request [#3144](https://github.com/rubygems/rubygems/pull/3144) by David
1482
2210
  Rodríguez.
1483
2211
 
1484
- ## Deprecations:
2212
+ ### Deprecations:
1485
2213
 
1486
2214
  * Set deprecation warning on query command. Pull request [#2967](https://github.com/rubygems/rubygems/pull/2967) by Luis
1487
2215
  Sagastume.
1488
2216
 
1489
- ## Breaking changes:
2217
+ ### Breaking changes:
1490
2218
 
1491
2219
  * Remove ruby 1.8 leftovers. Pull request [#3442](https://github.com/rubygems/rubygems/pull/3442) by David Rodríguez.
1492
2220
  * Minitest cleanup. Pull request [#3445](https://github.com/rubygems/rubygems/pull/3445) by David Rodríguez.
@@ -1513,9 +2241,9 @@
1513
2241
  * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
1514
2242
  request [#3114](https://github.com/rubygems/rubygems/pull/3114) by Luis Sagastume.
1515
2243
 
1516
- # 3.1.4 / 2020-06-03
2244
+ ## 3.1.4 / 2020-06-03
1517
2245
 
1518
- ## Enhancements:
2246
+ ### Enhancements:
1519
2247
 
1520
2248
  * Deprecate rubyforge_project attribute only during build
1521
2249
  time. Pull request [#3609](https://github.com/rubygems/rubygems/pull/3609) by Josef Šimánek.
@@ -1524,9 +2252,9 @@
1524
2252
  * Remove failing ubuntu-rvm CI flow. Pull request [#3611](https://github.com/rubygems/rubygems/pull/3611) by
1525
2253
  Josef Šimánek.
1526
2254
 
1527
- # 3.1.3 / 2020-05-05
2255
+ ## 3.1.3 / 2020-05-05
1528
2256
 
1529
- ## Enhancements:
2257
+ ### Enhancements:
1530
2258
 
1531
2259
  * Resolver: require NameTuple before use. Pull request [#3171](https://github.com/rubygems/rubygems/pull/3171) by Olle
1532
2260
  Jonsson.
@@ -1537,7 +2265,7 @@
1537
2265
  * Add tests to check if Gem.ruby_version works with ruby git master.
1538
2266
  Pull request [#3049](https://github.com/rubygems/rubygems/pull/3049) by Yusuke Endoh.
1539
2267
 
1540
- ## Bug fixes:
2268
+ ### Bug fixes:
1541
2269
 
1542
2270
  * Fix platform comparison check in #contains_requirable_file?. Pull
1543
2271
  request [#3495](https://github.com/rubygems/rubygems/pull/3495) by Benoit Daloze.
@@ -1549,9 +2277,9 @@
1549
2277
  * Fix gem install from a gemdeps file with complex dependencies.
1550
2278
  Pull request [#3054](https://github.com/rubygems/rubygems/pull/3054) by Luis Sagastume.
1551
2279
 
1552
- # 3.1.2 / 2019-12-20
2280
+ ## 3.1.2 / 2019-12-20
1553
2281
 
1554
- ## Enhancements:
2282
+ ### Enhancements:
1555
2283
 
1556
2284
  * Restore non prompting `gem update --system` behavior. Pull request [#3040](https://github.com/rubygems/rubygems/pull/3040)
1557
2285
  by David Rodríguez.
@@ -1561,24 +2289,24 @@
1561
2289
  Pull request [#3042](https://github.com/rubygems/rubygems/pull/3042) by David Rodríguez.
1562
2290
  * Use Bundler 2.1.2. Pull request [#3043](https://github.com/rubygems/rubygems/pull/3043) by SHIBATA Hiroshi.
1563
2291
 
1564
- ## Bug fixes:
2292
+ ### Bug fixes:
1565
2293
 
1566
2294
  * Require `uri` in source.rb. Pull request [#3034](https://github.com/rubygems/rubygems/pull/3034) by mihaibuzgau.
1567
2295
  * Fix `gem update --system --force`. Pull request [#3035](https://github.com/rubygems/rubygems/pull/3035) by David
1568
2296
  Rodríguez.
1569
2297
  * Move `require uri` to source_list. Pull request [#3038](https://github.com/rubygems/rubygems/pull/3038) by mihaibuzgau.
1570
2298
 
1571
- # 3.1.1 / 2019-12-16
2299
+ ## 3.1.1 / 2019-12-16
1572
2300
 
1573
- ## Bug fixes:
2301
+ ### Bug fixes:
1574
2302
 
1575
2303
  * Vendor Bundler 2.1.0 again. The version of Bundler with
1576
2304
  RubyGems 3.1.0 was Bundler 2.1.0.pre.3. Pull request [#3029](https://github.com/rubygems/rubygems/pull/3029) by
1577
2305
  SHIBATA Hiroshi.
1578
2306
 
1579
- # 3.1.0 / 2019-12-16
2307
+ ## 3.1.0 / 2019-12-16
1580
2308
 
1581
- ## Enhancements:
2309
+ ### Enhancements:
1582
2310
 
1583
2311
  * Vendor bundler 2.1. Pull request [#3028](https://github.com/rubygems/rubygems/pull/3028) by David Rodríguez.
1584
2312
  * Check for rubygems.org typo squatting sources. Pull request [#2999](https://github.com/rubygems/rubygems/pull/2999) by
@@ -1592,25 +2320,25 @@
1592
2320
  * Use bundler to manage development dependencies. Pull request [#3012](https://github.com/rubygems/rubygems/pull/3012) by
1593
2321
  David Rodríguez.
1594
2322
 
1595
- ## Bug fixes:
2323
+ ### Bug fixes:
1596
2324
 
1597
2325
  * Remove unnecessary executable flags. Pull request [#2982](https://github.com/rubygems/rubygems/pull/2982) by David
1598
2326
  Rodríguez.
1599
2327
  * Remove configuration that contained a typo. Pull request [#2989](https://github.com/rubygems/rubygems/pull/2989) by David
1600
2328
  Rodríguez.
1601
2329
 
1602
- ## Deprecations:
2330
+ ### Deprecations:
1603
2331
 
1604
2332
  * Deprecate `gem generate_index --modern` and `gem generate_index
1605
2333
  --no-modern`. Pull request [#2992](https://github.com/rubygems/rubygems/pull/2992) by David Rodríguez.
1606
2334
 
1607
- ## Breaking changes:
2335
+ ### Breaking changes:
1608
2336
 
1609
2337
  * Remove 1.8.7 leftovers. Pull request [#2972](https://github.com/rubygems/rubygems/pull/2972) by David Rodríguez.
1610
2338
 
1611
- # 3.1.0.pre3 / 2019-11-11
2339
+ ## 3.1.0.pre3 / 2019-11-11
1612
2340
 
1613
- ## Enhancements:
2341
+ ### Enhancements:
1614
2342
 
1615
2343
  * Fix gem pristine not accounting for user installed gems. Pull request
1616
2344
  [#2914](https://github.com/rubygems/rubygems/pull/2914) by Luis Sagastume.
@@ -1629,18 +2357,18 @@
1629
2357
  * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
1630
2358
  [#2985](https://github.com/rubygems/rubygems/pull/2985) by MSP-Greg.
1631
2359
 
1632
- # 3.1.0.pre2 / 2019-10-15
2360
+ ## 3.1.0.pre2 / 2019-10-15
1633
2361
 
1634
- ## Enhancements:
2362
+ ### Enhancements:
1635
2363
 
1636
2364
  * Optimize Gem::Package::TarReader#each. Pull request [#2941](https://github.com/rubygems/rubygems/pull/2941) by Jean byroot
1637
2365
  Boussier.
1638
2366
  * Time comparison around date boundary. Pull request [#2944](https://github.com/rubygems/rubygems/pull/2944) by Nobuyoshi
1639
2367
  Nakada.
1640
2368
 
1641
- # 3.1.0.pre1 / 2019-10-08
2369
+ ## 3.1.0.pre1 / 2019-10-08
1642
2370
 
1643
- ## Enhancements:
2371
+ ### Enhancements:
1644
2372
 
1645
2373
  * Try to use bundler-2.1.0.pre.2. Pull request [#2923](https://github.com/rubygems/rubygems/pull/2923) by SHIBATA Hiroshi.
1646
2374
  * [Require] Ensure -I beats a default gem. Pull request [#1868](https://github.com/rubygems/rubygems/pull/1868) by Samuel
@@ -1770,7 +2498,7 @@
1770
2498
  Berger.
1771
2499
  * Remove useless TODO comment. Pull request [#2818](https://github.com/rubygems/rubygems/pull/2818) by Luis Sagastume.
1772
2500
 
1773
- ## Bug fixes:
2501
+ ### Bug fixes:
1774
2502
 
1775
2503
  * Fix typos in History.txt. Pull request [#2565](https://github.com/rubygems/rubygems/pull/2565) by Igor Zubkov.
1776
2504
  * Remove unused empty sources array. Pull request [#2598](https://github.com/rubygems/rubygems/pull/2598) by Aaron
@@ -1803,7 +2531,7 @@
1803
2531
  * Fix cryptic error on local and ignore-dependencies combination. Pull
1804
2532
  request [#2650](https://github.com/rubygems/rubygems/pull/2650) by David Rodríguez.
1805
2533
 
1806
- ## Deprecations:
2534
+ ### Deprecations:
1807
2535
 
1808
2536
  * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
1809
2537
  [#2857](https://github.com/rubygems/rubygems/pull/2857) by SHIBATA Hiroshi.
@@ -1817,7 +2545,7 @@
1817
2545
  * Add deprecation warnings for cli options. Pull request [#2607](https://github.com/rubygems/rubygems/pull/2607) by Luis
1818
2546
  Sagastume.
1819
2547
 
1820
- ## Breaking changes:
2548
+ ### Breaking changes:
1821
2549
 
1822
2550
  * Suppress keywords warning. Pull request [#2934](https://github.com/rubygems/rubygems/pull/2934) by Nobuyoshi Nakada.
1823
2551
  * Suppress Ruby 2.7's real kwargs warning. Pull request [#2912](https://github.com/rubygems/rubygems/pull/2912) by Koichi
@@ -1840,16 +2568,16 @@
1840
2568
  [#2685](https://github.com/rubygems/rubygems/pull/2685) by SHIBATA Hiroshi.
1841
2569
  * Removing yaml require. Pull request [#2538](https://github.com/rubygems/rubygems/pull/2538) by Luciano Sousa.
1842
2570
 
1843
- # 3.0.8 / 2020-02-19
2571
+ ## 3.0.8 / 2020-02-19
1844
2572
 
1845
- ## Bug fixes:
2573
+ ### Bug fixes:
1846
2574
 
1847
2575
  * Gem::Specification#to_ruby needs OpenSSL. Pull request [#2937](https://github.com/rubygems/rubygems/pull/2937) by
1848
2576
  Nobuyoshi Nakada.
1849
2577
 
1850
- # 3.0.7 / 2020-02-18
2578
+ ## 3.0.7 / 2020-02-18
1851
2579
 
1852
- ## Bug fixes:
2580
+ ### Bug fixes:
1853
2581
 
1854
2582
  * Fix underscore version selection for bundler #2908 by David Rodríguez.
1855
2583
  * Add missing wrapper. Pull request [#2690](https://github.com/rubygems/rubygems/pull/2690) by David Rodríguez.
@@ -1859,15 +2587,15 @@
1859
2587
  * Use IAM role to extract security-credentials for EC2 instance. Pull
1860
2588
  request [#2894](https://github.com/rubygems/rubygems/pull/2894) by Alexander Pakulov.
1861
2589
 
1862
- # 3.0.6 / 2019-08-17
2590
+ ## 3.0.6 / 2019-08-17
1863
2591
 
1864
- ## Bug fixes:
2592
+ ### Bug fixes:
1865
2593
 
1866
2594
  * Revert #2813. It broke the compatibility with 3.0.x versions.
1867
2595
 
1868
- # 3.0.5 / 2019-08-16
2596
+ ## 3.0.5 / 2019-08-16
1869
2597
 
1870
- ## Enhancements:
2598
+ ### Enhancements:
1871
2599
 
1872
2600
  * Use env var to configure api key on push. Pull request [#2559](https://github.com/rubygems/rubygems/pull/2559) by Luis
1873
2601
  Sagastume.
@@ -1902,7 +2630,7 @@
1902
2630
  by Alexander Pakulov.
1903
2631
  * Fixup #2844. Pull request [#2878](https://github.com/rubygems/rubygems/pull/2878) by SHIBATA Hiroshi.
1904
2632
 
1905
- ## Bug fixes:
2633
+ ### Bug fixes:
1906
2634
 
1907
2635
  * Fix intermittent test error on Appveyor & Travis. Pull request [#2568](https://github.com/rubygems/rubygems/pull/2568) by
1908
2636
  MSP-Greg.
@@ -1918,9 +2646,9 @@
1918
2646
  * Ignore GEMRC variable for test suite. Pull request [#2837](https://github.com/rubygems/rubygems/pull/2837) by SHIBATA
1919
2647
  Hiroshi.
1920
2648
 
1921
- # 3.0.4 / 2019-06-14
2649
+ ## 3.0.4 / 2019-06-14
1922
2650
 
1923
- ## Enhancements:
2651
+ ### Enhancements:
1924
2652
 
1925
2653
  * Add support for TruffleRuby #2612 by Benoit Daloze
1926
2654
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -1957,7 +2685,7 @@
1957
2685
  request [#2777](https://github.com/rubygems/rubygems/pull/2777) by Yusuke Endoh.
1958
2686
  * Backport ruby core changes. Pull request [#2778](https://github.com/rubygems/rubygems/pull/2778) by SHIBATA Hiroshi.
1959
2687
 
1960
- ## Bug fixes:
2688
+ ### Bug fixes:
1961
2689
 
1962
2690
  * Test_gem.rb - intermittent failure fix. Pull request [#2613](https://github.com/rubygems/rubygems/pull/2613) by MSP-Greg.
1963
2691
  * Fix sporadic CI failures. Pull request [#2617](https://github.com/rubygems/rubygems/pull/2617) by David Rodríguez.
@@ -1973,7 +2701,7 @@
1973
2701
  [#2732](https://github.com/rubygems/rubygems/pull/2732) by Alex Junger.
1974
2702
  * Fix TODOs. Pull request [#2748](https://github.com/rubygems/rubygems/pull/2748) by David Rodríguez.
1975
2703
 
1976
- # 3.0.3 / 2019-03-05
2704
+ ## 3.0.3 / 2019-03-05
1977
2705
 
1978
2706
  Security fixes:
1979
2707
 
@@ -1984,14 +2712,14 @@ Security fixes:
1984
2712
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
1985
2713
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
1986
2714
 
1987
- # 3.0.2 / 2019-01-01
2715
+ ## 3.0.2 / 2019-01-01
1988
2716
 
1989
- ## Enhancements:
2717
+ ### Enhancements:
1990
2718
 
1991
2719
  * Use Bundler-1.17.3. Pull request [#2556](https://github.com/rubygems/rubygems/pull/2556) by SHIBATA Hiroshi.
1992
2720
  * Fix document flag description. Pull request [#2555](https://github.com/rubygems/rubygems/pull/2555) by Luis Sagastume.
1993
2721
 
1994
- ## Bug fixes:
2722
+ ### Bug fixes:
1995
2723
 
1996
2724
  * Fix tests when ruby --program-suffix is used without rubygems
1997
2725
  --format-executable. Pull request [#2549](https://github.com/rubygems/rubygems/pull/2549) by Jeremy Evans.
@@ -2001,9 +2729,9 @@ Security fixes:
2001
2729
  Fukumori.
2002
2730
  * Restore SOURCE_DATE_EPOCH. Pull request [#2560](https://github.com/rubygems/rubygems/pull/2560) by SHIBATA Hiroshi.
2003
2731
 
2004
- # 3.0.1 / 2018-12-23
2732
+ ## 3.0.1 / 2018-12-23
2005
2733
 
2006
- ## Bug fixes:
2734
+ ### Bug fixes:
2007
2735
 
2008
2736
  * Ensure globbed files paths are expanded. Pull request [#2536](https://github.com/rubygems/rubygems/pull/2536) by Tony Ta.
2009
2737
  * Dup the Dir.home string before passing it on. Pull request [#2545](https://github.com/rubygems/rubygems/pull/2545) by
@@ -2012,9 +2740,9 @@ Security fixes:
2012
2740
  by SHIBATA Hiroshi.
2013
2741
  * Restore release task without hoe. Pull request [#2547](https://github.com/rubygems/rubygems/pull/2547) by SHIBATA Hiroshi.
2014
2742
 
2015
- # 3.0.0 / 2018-12-19
2743
+ ## 3.0.0 / 2018-12-19
2016
2744
 
2017
- ## Enhancements:
2745
+ ### Enhancements:
2018
2746
 
2019
2747
  * S3 source. Pull request [#1690](https://github.com/rubygems/rubygems/pull/1690) by Aditya Prakash.
2020
2748
  * Download gems with threads. Pull request [#1898](https://github.com/rubygems/rubygems/pull/1898) by André Arko.
@@ -2179,7 +2907,7 @@ Security fixes:
2179
2907
  * Support the environment without OpenSSL. Pull request [#2528](https://github.com/rubygems/rubygems/pull/2528) by SHIBATA
2180
2908
  Hiroshi.
2181
2909
 
2182
- ## Bug fixes:
2910
+ ### Bug fixes:
2183
2911
 
2184
2912
  * Fix undefined method error when printing alert. Pull request [#1884](https://github.com/rubygems/rubygems/pull/1884) by
2185
2913
  Robert Ross.
@@ -2232,7 +2960,7 @@ Security fixes:
2232
2960
  * Fix tests when --program-suffix and similar ruby configure options are
2233
2961
  used. Pull request [#2529](https://github.com/rubygems/rubygems/pull/2529) by Jeremy Evans.
2234
2962
 
2235
- ## Breaking changes:
2963
+ ### Breaking changes:
2236
2964
 
2237
2965
  * IO.binread is not provided at Ruby 1.8. Pull request [#2093](https://github.com/rubygems/rubygems/pull/2093) by SHIBATA
2238
2966
  Hiroshi.
@@ -2285,9 +3013,9 @@ Security fixes:
2285
3013
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
2286
3014
  major versions. Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
2287
3015
 
2288
- # 2.7.10 / 2019-06-14
3016
+ ## 2.7.10 / 2019-06-14
2289
3017
 
2290
- ## Enhancements:
3018
+ ### Enhancements:
2291
3019
 
2292
3020
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request [#2426](https://github.com/rubygems/rubygems/pull/2426)
2293
3021
  by David Rodríguez.
@@ -2295,7 +3023,7 @@ Security fixes:
2295
3023
  Pull request [#2515](https://github.com/rubygems/rubygems/pull/2515) by Colby Swandale.
2296
3024
  + Update for compatibility with new minitest. Pull request [#2118](https://github.com/rubygems/rubygems/pull/2118) by MSP-Greg.
2297
3025
 
2298
- # 2.7.9 / 2019-03-05
3026
+ ## 2.7.9 / 2019-03-05
2299
3027
 
2300
3028
  Security fixes:
2301
3029
 
@@ -2306,9 +3034,9 @@ Security fixes:
2306
3034
  * CVE-2019-8324: Installing a malicious gem may lead to arbitrary code execution
2307
3035
  * CVE-2019-8325: Escape sequence injection vulnerability in errors
2308
3036
 
2309
- # 2.7.8 / 2018-11-02
3037
+ ## 2.7.8 / 2018-11-02
2310
3038
 
2311
- ## Enhancements:
3039
+ ### Enhancements:
2312
3040
 
2313
3041
  * [Requirement] Treat requirements with == versions as equal. Pull
2314
3042
  request [#2230](https://github.com/rubygems/rubygems/pull/2230) by Samuel Giddins.
@@ -2327,7 +3055,7 @@ Security fixes:
2327
3055
  * Improve bindir flag description. Pull request [#2383](https://github.com/rubygems/rubygems/pull/2383) by Luis Sagastume.
2328
3056
  * Update bundler-1.16.6. Pull request [#2423](https://github.com/rubygems/rubygems/pull/2423) by SHIBATA Hiroshi.
2329
3057
 
2330
- ## Bug fixes:
3058
+ ### Bug fixes:
2331
3059
 
2332
3060
  * Fix #1470: generate documentation when --install-dir is present. Pull
2333
3061
  request [#2229](https://github.com/rubygems/rubygems/pull/2229) by Elias Hernandis.
@@ -2340,9 +3068,9 @@ Security fixes:
2340
3068
  * Gem::Version should handle nil like it used to before. Pull request
2341
3069
  [#2363](https://github.com/rubygems/rubygems/pull/2363) by Luis Sagastume.
2342
3070
 
2343
- # 2.7.7 / 2018-05-08
3071
+ ## 2.7.7 / 2018-05-08
2344
3072
 
2345
- ## Enhancements:
3073
+ ### Enhancements:
2346
3074
 
2347
3075
  * [RequestSet] Only suggest a gem version with an installable platform.
2348
3076
  Pull request [#2175](https://github.com/rubygems/rubygems/pull/2175) by Samuel Giddins.
@@ -2357,7 +3085,7 @@ Security fixes:
2357
3085
  Sagastume.
2358
3086
  * Backport ruby core commits. Pull request [#2264](https://github.com/rubygems/rubygems/pull/2264) by SHIBATA Hiroshi.
2359
3087
 
2360
- ## Bug fixes:
3088
+ ### Bug fixes:
2361
3089
 
2362
3090
  * Frozen string fix - lib/rubygems/bundler_version_finder.rb. Pull request
2363
3091
  [#2115](https://github.com/rubygems/rubygems/pull/2115) by MSP-Greg.
@@ -2370,7 +3098,7 @@ Security fixes:
2370
3098
  * Fix path checks for case insensitive filesystem. Pull request [#2211](https://github.com/rubygems/rubygems/pull/2211) by
2371
3099
  Lars Kanis.
2372
3100
 
2373
- ## Deprecations:
3101
+ ### Deprecations:
2374
3102
 
2375
3103
  * Deprecate unused code before removing them at #1524. Pull request [#2197](https://github.com/rubygems/rubygems/pull/2197)
2376
3104
  by SHIBATA Hiroshi.
@@ -2378,11 +3106,11 @@ Security fixes:
2378
3106
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request [#2269](https://github.com/rubygems/rubygems/pull/2269) by
2379
3107
  SHIBATA Hiroshi.
2380
3108
 
2381
- ## Breaking changes:
3109
+ ### Breaking changes:
2382
3110
 
2383
3111
  * Update bundler-1.16.2. Pull request [#2291](https://github.com/rubygems/rubygems/pull/2291) by SHIBATA Hiroshi.
2384
3112
 
2385
- # 2.7.6 / 2018-02-16
3113
+ ## 2.7.6 / 2018-02-16
2386
3114
 
2387
3115
  Security fixes:
2388
3116
 
@@ -2401,9 +3129,9 @@ Security fixes:
2401
3129
  * Prevent Path Traversal issue during gem installation.
2402
3130
  Discovered by nmalkin.
2403
3131
 
2404
- # 2.7.5
3132
+ ## 2.7.5
2405
3133
 
2406
- ## Bug fixes:
3134
+ ### Bug fixes:
2407
3135
 
2408
3136
  * To use bundler-1.16.1 #2121 by SHIBATA Hiroshi.
2409
3137
  * Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
@@ -2415,9 +3143,9 @@ Security fixes:
2415
3143
  * Set whether bundler is used for gemdeps with an environmental variable #2126 by SHIBATA Hiroshi.
2416
3144
  * Fix undefined method error when printing alert #1884 by Robert Ross.
2417
3145
 
2418
- # 2.7.4
3146
+ ## 2.7.4
2419
3147
 
2420
- ## Bug fixes:
3148
+ ### Bug fixes:
2421
3149
 
2422
3150
  * Fixed leaked FDs. Pull request [#2127](https://github.com/rubygems/rubygems/pull/2127) by Nobuyoshi Nakada.
2423
3151
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -2426,9 +3154,9 @@ Security fixes:
2426
3154
  * Handle environment that does not have `flock` system call. Pull request
2427
3155
  [#2107](https://github.com/rubygems/rubygems/pull/2107) by SHIBATA Hiroshi.
2428
3156
 
2429
- # 2.7.3
3157
+ ## 2.7.3
2430
3158
 
2431
- ## Enhancements:
3159
+ ### Enhancements:
2432
3160
 
2433
3161
  * Removed needless version lock. Pull request [#2074](https://github.com/rubygems/rubygems/pull/2074) by SHIBATA Hiroshi.
2434
3162
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -2441,7 +3169,7 @@ Security fixes:
2441
3169
  * Remove multi load warning from plugins documentation. Pull request [#2103](https://github.com/rubygems/rubygems/pull/2103)
2442
3170
  by Thibault Jouan.
2443
3171
 
2444
- ## Bug fixes:
3172
+ ### Bug fixes:
2445
3173
 
2446
3174
  * Fix test failure on Alpine Linux. Pull request [#2079](https://github.com/rubygems/rubygems/pull/2079) by Ellen Marie
2447
3175
  Dash.
@@ -2460,25 +3188,25 @@ Security fixes:
2460
3188
  * Use setup command --regenerate-binstubs option flag. Pull request [#2099](https://github.com/rubygems/rubygems/pull/2099)
2461
3189
  by Thibault Jouan.
2462
3190
 
2463
- # 2.7.2
3191
+ ## 2.7.2
2464
3192
 
2465
- ## Bug fixes:
3193
+ ### Bug fixes:
2466
3194
 
2467
3195
  * Added template files to vendoerd bundler. Pull request [#2065](https://github.com/rubygems/rubygems/pull/2065) by SHIBATA
2468
3196
  Hiroshi.
2469
3197
  * Added workaround for non-git environment. Pull request [#2066](https://github.com/rubygems/rubygems/pull/2066) by SHIBATA
2470
3198
  Hiroshi.
2471
3199
 
2472
- # 2.7.1 (2017-11-03)
3200
+ ## 2.7.1 (2017-11-03)
2473
3201
 
2474
- ## Bug fixes:
3202
+ ### Bug fixes:
2475
3203
 
2476
3204
  * Fix `gem update --system` with RubyGems 2.7+. Pull request [#2054](https://github.com/rubygems/rubygems/pull/2054) by
2477
3205
  Samuel Giddins.
2478
3206
 
2479
- # 2.7.0 (2017-11-02)
3207
+ ## 2.7.0 (2017-11-02)
2480
3208
 
2481
- ## Enhancements:
3209
+ ### Enhancements:
2482
3210
 
2483
3211
  * Update vendored bundler-1.16.0. Pull request [#2051](https://github.com/rubygems/rubygems/pull/2051) by Samuel Giddins.
2484
3212
  * Use Bundler for Gem.use_gemdeps. Pull request [#1674](https://github.com/rubygems/rubygems/pull/1674) by Samuel Giddins.
@@ -2569,7 +3297,7 @@ Security fixes:
2569
3297
  * Warn when requiring deprecated files. Pull request [#1939](https://github.com/rubygems/rubygems/pull/1939) by Ellen Marie
2570
3298
  Dash.
2571
3299
 
2572
- ## Deprecations:
3300
+ ### Deprecations:
2573
3301
 
2574
3302
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
2575
3303
  Gem::InstallerTestCase#util_gem_dir. Pull request [#1729](https://github.com/rubygems/rubygems/pull/1729) by Jon Moss.
@@ -2579,7 +3307,7 @@ Security fixes:
2579
3307
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
2580
3308
  Pull request [#1731](https://github.com/rubygems/rubygems/pull/1731) by Jon Moss.
2581
3309
 
2582
- ## Breaking changes:
3310
+ ### Breaking changes:
2583
3311
 
2584
3312
  * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
2585
3313
  unavailable on Ruby 2.5. Pull request [#2028](https://github.com/rubygems/rubygems/pull/2028) #2027 #2029
@@ -2587,7 +3315,7 @@ Security fixes:
2587
3315
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
2588
3316
  [#1796](https://github.com/rubygems/rubygems/pull/1796) by Matej.
2589
3317
 
2590
- ## Bug fixes:
3318
+ ### Bug fixes:
2591
3319
 
2592
3320
  * Fix issue for MinGW / MSYS2 builds and testing. Pull request [#1876](https://github.com/rubygems/rubygems/pull/1876) by
2593
3321
  MSP-Greg.
@@ -2640,7 +3368,7 @@ Security fixes:
2640
3368
  * [StubSpecification] Don’t iterate through all loaded specs in #to_spec.
2641
3369
  Pull request [#1738](https://github.com/rubygems/rubygems/pull/1738) by Samuel Giddins.
2642
3370
 
2643
- # 2.6.14 / 2017-10-09
3371
+ ## 2.6.14 / 2017-10-09
2644
3372
 
2645
3373
  Security fixes:
2646
3374
 
@@ -2648,7 +3376,7 @@ Security fixes:
2648
3376
  See CVE-2017-0903 for full details.
2649
3377
  Fix by Aaron Patterson.
2650
3378
 
2651
- # 2.6.13 / 2017-08-27
3379
+ ## 2.6.13 / 2017-08-27
2652
3380
 
2653
3381
  Security fixes:
2654
3382
 
@@ -2662,9 +3390,9 @@ Security fixes:
2662
3390
  to overwrite arbitrary files. (CVE-2017-0901)
2663
3391
  Discovered by Yusuke Endoh, fix by Samuel Giddins.
2664
3392
 
2665
- # 2.6.12 / 2017-04-30
3393
+ ## 2.6.12 / 2017-04-30
2666
3394
 
2667
- ## Bug fixes:
3395
+ ### Bug fixes:
2668
3396
 
2669
3397
  * Fix test_self_find_files_with_gemfile to sort expected files. Pull
2670
3398
  request [#1880](https://github.com/rubygems/rubygems/pull/1880) by Kazuaki Matsuo.
@@ -2685,9 +3413,9 @@ Security fixes:
2685
3413
  * Allow Gem.finish_resolve to respect already-activated specs. Pull
2686
3414
  request [#1910](https://github.com/rubygems/rubygems/pull/1910) by Samuel Giddins.
2687
3415
 
2688
- # 2.6.11 / 2017-03-16
3416
+ ## 2.6.11 / 2017-03-16
2689
3417
 
2690
- ## Bug fixes:
3418
+ ### Bug fixes:
2691
3419
 
2692
3420
  * Fixed broken tests on ruby-head. Pull request [#1841](https://github.com/rubygems/rubygems/pull/1841) by
2693
3421
  SHIBATA Hiroshi.
@@ -2698,16 +3426,16 @@ Security fixes:
2698
3426
  * Use improved resolver sorting algorithm. Pull request [#1856](https://github.com/rubygems/rubygems/pull/1856) by
2699
3427
  Samuel Giddins.
2700
3428
 
2701
- # 2.6.10 / 2017-01-23
3429
+ ## 2.6.10 / 2017-01-23
2702
3430
 
2703
- ## Bug fixes:
3431
+ ### Bug fixes:
2704
3432
 
2705
3433
  * Fix `require` calling the wrong `gem` method when it is overridden.
2706
3434
  Pull request [#1822](https://github.com/rubygems/rubygems/pull/1822) by Samuel Giddins.
2707
3435
 
2708
- # 2.6.9 / 2017-01-20
3436
+ ## 2.6.9 / 2017-01-20
2709
3437
 
2710
- ## Bug fixes:
3438
+ ### Bug fixes:
2711
3439
 
2712
3440
  * Allow initializing versions with empty strings. Pull request [#1767](https://github.com/rubygems/rubygems/pull/1767) by
2713
3441
  Luis Sagastume.
@@ -2721,9 +3449,9 @@ Security fixes:
2721
3449
  * RakeBuilder: avoid frozen string issue. Pull request [#1819](https://github.com/rubygems/rubygems/pull/1819) by Olle
2722
3450
  Jonsson.
2723
3451
 
2724
- # 2.6.8 / 2016-10-29
3452
+ ## 2.6.8 / 2016-10-29
2725
3453
 
2726
- ## Bug fixes:
3454
+ ### Bug fixes:
2727
3455
 
2728
3456
  * Improve SSL verification failure message. Pull request [#1751](https://github.com/rubygems/rubygems/pull/1751)
2729
3457
  by Eric Hodel.
@@ -2732,9 +3460,9 @@ Security fixes:
2732
3460
  * Update vendored Molinillo to 0.5.3. Pull request [#1763](https://github.com/rubygems/rubygems/pull/1763) by
2733
3461
  Samuel Giddins.
2734
3462
 
2735
- # 2.6.7 / 2016-09-26
3463
+ ## 2.6.7 / 2016-09-26
2736
3464
 
2737
- ## Bug fixes:
3465
+ ### Bug fixes:
2738
3466
 
2739
3467
  * Install native extensions in the correct location when using the
2740
3468
  `--user-install` flag. Pull request [#1683](https://github.com/rubygems/rubygems/pull/1683) by Noah Kantrowitz.
@@ -2746,24 +3474,24 @@ Security fixes:
2746
3474
  * Update vendored Molinillo to 0.5.1. Pull request [#1714](https://github.com/rubygems/rubygems/pull/1714) by
2747
3475
  Samuel Giddins.
2748
3476
 
2749
- # 2.6.6 / 2016-06-22
3477
+ ## 2.6.6 / 2016-06-22
2750
3478
 
2751
- ## Bug fixes:
3479
+ ### Bug fixes:
2752
3480
 
2753
3481
  * Sort installed versions to make sure we install the latest version when
2754
3482
  running `gem update --system`. As a one-time fix, run
2755
3483
  `gem update --system=2.6.6`. Pull request [#1601](https://github.com/rubygems/rubygems/pull/1601) by David Radcliffe.
2756
3484
 
2757
- # 2.6.5 / 2016-06-21
3485
+ ## 2.6.5 / 2016-06-21
2758
3486
 
2759
- ## Enhancements:
3487
+ ### Enhancements:
2760
3488
 
2761
3489
  * Support for unified Integer in Ruby 2.4. Pull request [#1618](https://github.com/rubygems/rubygems/pull/1618)
2762
3490
  by SHIBATA Hiroshi.
2763
3491
  * Update vendored Molinillo to 0.5.0 for performance improvements.
2764
3492
  Pull request [#1638](https://github.com/rubygems/rubygems/pull/1638) by Samuel Giddins.
2765
3493
 
2766
- ## Bug fixes:
3494
+ ### Bug fixes:
2767
3495
 
2768
3496
  * Raise an explicit error if Signer#sign is called with no certs. Pull
2769
3497
  request [#1605](https://github.com/rubygems/rubygems/pull/1605) by Daniel Berger.
@@ -2783,16 +3511,16 @@ Security fixes:
2783
3511
  Pull request [#1644](https://github.com/rubygems/rubygems/pull/1644) by Charles Oliver Nutter.
2784
3512
  * Run Bundler tests on TravisCI. Pull request [#1650](https://github.com/rubygems/rubygems/pull/1650) by Samuel Giddins.
2785
3513
 
2786
- # 2.6.4 / 2016-04-26
3514
+ ## 2.6.4 / 2016-04-26
2787
3515
 
2788
- ## Enhancements:
3516
+ ### Enhancements:
2789
3517
 
2790
3518
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request [#1588](https://github.com/rubygems/rubygems/pull/1588)
2791
3519
  by Chris Charabaruk.
2792
3520
  * Use File.symlink on MS Windows if supported. Pull request [#1418](https://github.com/rubygems/rubygems/pull/1418)
2793
3521
  by Nobuyoshi Nakada.
2794
3522
 
2795
- ## Bug fixes:
3523
+ ### Bug fixes:
2796
3524
 
2797
3525
  * Redact uri password from error output when gem fetch fails. Pull request
2798
3526
  [#1565](https://github.com/rubygems/rubygems/pull/1565) by Brian Fletcher.
@@ -2800,9 +3528,9 @@ Security fixes:
2800
3528
  * Escape user-supplied content served on web pages by `gem server` to avoid
2801
3529
  potential XSS vulnerabilities. Samuel Giddins.
2802
3530
 
2803
- # 2.6.3 / 2016-04-05
3531
+ ## 2.6.3 / 2016-04-05
2804
3532
 
2805
- ## Enhancements:
3533
+ ### Enhancements:
2806
3534
 
2807
3535
  * Lazily calculate Gem::LoadError exception messages. Pull request [#1550](https://github.com/rubygems/rubygems/pull/1550)
2808
3536
  by Aaron Patterson.
@@ -2813,7 +3541,7 @@ Security fixes:
2813
3541
  * Show default gems when using "gem list". Pull request [#1570](https://github.com/rubygems/rubygems/pull/1570) by Luis
2814
3542
  Sagastume.
2815
3543
 
2816
- ## Bug fixes:
3544
+ ### Bug fixes:
2817
3545
 
2818
3546
  * Stub ordering should be consistent regardless of how cache is populated.
2819
3547
  Pull request [#1552](https://github.com/rubygems/rubygems/pull/1552) by Aaron Patterson.
@@ -2829,9 +3557,9 @@ Security fixes:
2829
3557
  Giddins.
2830
3558
  * Allow two digit version numbers in the tests. Pull request [#1575](https://github.com/rubygems/rubygems/pull/1575) by unak.
2831
3559
 
2832
- # 2.6.2 / 2016-03-12
3560
+ ## 2.6.2 / 2016-03-12
2833
3561
 
2834
- ## Bug fixes:
3562
+ ### Bug fixes:
2835
3563
 
2836
3564
  * Fix wrong version of gem activation for bin stub. Pull request [#1527](https://github.com/rubygems/rubygems/pull/1527) by
2837
3565
  Aaron Patterson.
@@ -2842,9 +3570,9 @@ Security fixes:
2842
3570
  [#1538](https://github.com/rubygems/rubygems/pull/1538) by Charles Oliver Nutter.
2843
3571
 
2844
3572
 
2845
- # 2.6.1 / 2016-02-28
3573
+ ## 2.6.1 / 2016-02-28
2846
3574
 
2847
- ## Bug fixes:
3575
+ ### Bug fixes:
2848
3576
 
2849
3577
  * Ensure `default_path` and `home` are set for paths. Pull request [#1513](https://github.com/rubygems/rubygems/pull/1513)
2850
3578
  by Aaron Patterson.
@@ -2853,9 +3581,9 @@ Security fixes:
2853
3581
  * Fix invalid gem file preventing gem install from working. Pull request
2854
3582
  [#1499](https://github.com/rubygems/rubygems/pull/1499) by Luis Sagastume.
2855
3583
 
2856
- # 2.6.0 / 2016-02-26
3584
+ ## 2.6.0 / 2016-02-26
2857
3585
 
2858
- ## Enhancements:
3586
+ ### Enhancements:
2859
3587
 
2860
3588
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
2861
3589
  metadata setting. Pull request [#1486](https://github.com/rubygems/rubygems/pull/1486) by Josh Lane.
@@ -2866,7 +3594,7 @@ Security fixes:
2866
3594
  * Allow specifying gem requirements via env variables. Pull request [#1472](https://github.com/rubygems/rubygems/pull/1472)
2867
3595
  by Samuel E. Giddins.
2868
3596
 
2869
- ## Bug fixes:
3597
+ ### Bug fixes:
2870
3598
 
2871
3599
  * RubyGems now stores `gem push` credentials under the host you signed-in for.
2872
3600
  Pull request [#1485](https://github.com/rubygems/rubygems/pull/1485) by Josh Lane.
@@ -2892,9 +3620,9 @@ Security fixes:
2892
3620
  * Find_files only from loaded_gems when using gemdeps. Pull request [#1277](https://github.com/rubygems/rubygems/pull/1277)
2893
3621
  by Michal Papis.
2894
3622
 
2895
- # 2.5.2 / 2016-01-31
3623
+ ## 2.5.2 / 2016-01-31
2896
3624
 
2897
- ## Bug fixes:
3625
+ ### Bug fixes:
2898
3626
 
2899
3627
  * Fix memoization of Gem::Version#prerelease? Pull request [#1125](https://github.com/rubygems/rubygems/pull/1125) by Matijs van
2900
3628
  Zuijlen.
@@ -2910,7 +3638,7 @@ Security fixes:
2910
3638
  * Handle symlinks containing ".." correctly. Pull request [#1457](https://github.com/rubygems/rubygems/pull/1457) by Samuel E.
2911
3639
  Giddins.
2912
3640
 
2913
- ## Enhancements:
3641
+ ### Enhancements:
2914
3642
 
2915
3643
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request [#1329](https://github.com/rubygems/rubygems/pull/1329) by Luis
2916
3644
  Sagastume.
@@ -2935,9 +3663,9 @@ Security fixes:
2935
3663
  * Function correctly when string literals are frozen on Ruby 2.3. Pull request
2936
3664
  [#1408](https://github.com/rubygems/rubygems/pull/1408) by Samuel E. Giddins.
2937
3665
 
2938
- # 2.5.1 / 2015-12-10
3666
+ ## 2.5.1 / 2015-12-10
2939
3667
 
2940
- ## Bug fixes:
3668
+ ### Bug fixes:
2941
3669
 
2942
3670
  * Ensure platform sorting only uses strings. Affected binary installs on Windows.
2943
3671
  Issue #1369 reported by Ryan Atball (among others).
@@ -2966,9 +3694,9 @@ Security fixes:
2966
3694
  Kudo.
2967
3695
  * Fixed double word typo. Pull request [#1411](https://github.com/rubygems/rubygems/pull/1411) by Jake Worth.
2968
3696
 
2969
- # 2.5.0 / 2015-11-03
3697
+ ## 2.5.0 / 2015-11-03
2970
3698
 
2971
- ## Enhancements:
3699
+ ### Enhancements:
2972
3700
 
2973
3701
  * Added the Gem::Licenses class which provides a set of standard license
2974
3702
  identifiers as set by spdx.org. This is now used by the
@@ -3038,7 +3766,7 @@ Security fixes:
3038
3766
  * Gem::RemoteFetcher allows users to set HTTP headers. Pull request [#1363](https://github.com/rubygems/rubygems/pull/1363) by
3039
3767
  Agis Anastasopoulos.
3040
3768
 
3041
- ## Bug fixes:
3769
+ ### Bug fixes:
3042
3770
 
3043
3771
  * Fixed Rake homepage url in example for Gem::Specification#homepage.
3044
3772
  Pull request [#1171](https://github.com/rubygems/rubygems/pull/1171) by Arthur Nogueira Neves
@@ -3095,22 +3823,22 @@ Security fixes:
3095
3823
  * RubyGems handles invalid config files better. Pull request [#1367](https://github.com/rubygems/rubygems/pull/1367) by Agis
3096
3824
  Anastasopoulos.
3097
3825
 
3098
- # 2.4.8 / 2015-06-08
3826
+ ## 2.4.8 / 2015-06-08
3099
3827
 
3100
- ## Bug fixes:
3828
+ ### Bug fixes:
3101
3829
 
3102
3830
  * Tightened API endpoint checks for CVE-2015-3900
3103
3831
 
3104
- # 2.4.7 / 2015-05-14
3832
+ ## 2.4.7 / 2015-05-14
3105
3833
 
3106
- ## Bug fixes:
3834
+ ### Bug fixes:
3107
3835
 
3108
3836
  * Limit API endpoint to original security domain for CVE-2015-3900.
3109
3837
  Fix by claudijd
3110
3838
 
3111
- # 2.4.6 / 2015-02-05
3839
+ ## 2.4.6 / 2015-02-05
3112
3840
 
3113
- ## Bug fixes:
3841
+ ### Bug fixes:
3114
3842
 
3115
3843
  * Fixed resolving gems with both upper and lower requirement boundaries.
3116
3844
  Issue #1141 by Jakub Jirutka.
@@ -3135,9 +3863,9 @@ Security fixes:
3135
3863
  Ondruch.
3136
3864
  * Relaxed Psych dependency. Pull request [#1128](https://github.com/rubygems/rubygems/pull/1128) by Vít Ondruch.
3137
3865
 
3138
- # 2.4.5 / 2014-12-03
3866
+ ## 2.4.5 / 2014-12-03
3139
3867
 
3140
- ## Bug fixes:
3868
+ ### Bug fixes:
3141
3869
 
3142
3870
  * Improved speed of requiring gems. (Around 25% for a 60 gem test). Pull
3143
3871
  request [#1060](https://github.com/rubygems/rubygems/pull/1060) by unak.
@@ -3177,27 +3905,27 @@ Security fixes:
3177
3905
  * Fixed grouped expression warning. Pull request [#1081](https://github.com/rubygems/rubygems/pull/1081) by André Arko.
3178
3906
  * Fixed handling of platforms when writing lockfiles.
3179
3907
 
3180
- # 2.4.4 / 2014-11-12
3908
+ ## 2.4.4 / 2014-11-12
3181
3909
 
3182
- ## Bug fixes:
3910
+ ### Bug fixes:
3183
3911
 
3184
3912
  * Add alternate Root CA for upcoming certificate change. Fixes #1050 by
3185
3913
  Protosac
3186
3914
 
3187
- # 2.4.3 / 2014-11-10
3915
+ ## 2.4.3 / 2014-11-10
3188
3916
 
3189
- ## Bug fixes:
3917
+ ### Bug fixes:
3190
3918
 
3191
3919
  * Fix redefine MirrorCommand issue. Pull request [#1044](https://github.com/rubygems/rubygems/pull/1044) by @akr.
3192
3920
  * Fix typo in platform= docs. Pull request [#1048](https://github.com/rubygems/rubygems/pull/1048) by @jasonrclark
3193
3921
  * Add root SSL certificates for upcoming certificate change. Fixes #1050 by
3194
3922
  Protosac
3195
3923
 
3196
- # 2.4.2 / 2014-10-01
3924
+ ## 2.4.2 / 2014-10-01
3197
3925
 
3198
3926
  This release was sponsored by Ruby Central.
3199
3927
 
3200
- ## Bug fixes:
3928
+ ### Bug fixes:
3201
3929
 
3202
3930
  * RubyGems now correctly matches wildcard no_proxy hosts. Issue #997 by
3203
3931
  voelzemo.
@@ -3231,16 +3959,16 @@ This release was sponsored by Ruby Central.
3231
3959
  * RubyGems now fails immediately when a git reference cannot be found instead
3232
3960
  of spewing git errors. Issue #1031 by Michal Papis
3233
3961
 
3234
- # 2.4.1 / 2014-07-17
3962
+ ## 2.4.1 / 2014-07-17
3235
3963
 
3236
- ## Bug fixes:
3964
+ ### Bug fixes:
3237
3965
 
3238
3966
  * RubyGems can now be updated on Ruby implementations that do not support
3239
3967
  vendordir in RbConfig::CONFIG. Issue #974 by net1957.
3240
3968
 
3241
- # 2.4.0 / 2014-07-16
3969
+ ## 2.4.0 / 2014-07-16
3242
3970
 
3243
- ## Enhancements:
3971
+ ### Enhancements:
3244
3972
 
3245
3973
  * The contents command now supports a --show-install-dir option that shows
3246
3974
  only the directory the gem is installed in. Feature request [#966](https://github.com/rubygems/rubygems/pull/966) by Akinori
@@ -3251,7 +3979,7 @@ This release was sponsored by Ruby Central.
3251
3979
  in Gem.vendor_dir with the --vendor option to gem install. Issue #943 by
3252
3980
  Marcus Rückert.
3253
3981
 
3254
- ## Bug fixes:
3982
+ ### Bug fixes:
3255
3983
 
3256
3984
  * Kernel#gem now respects the prerelease flag when activating gems.
3257
3985
  Previously this behavior was undefined which could lead to bugs when a
@@ -3301,9 +4029,9 @@ This release was sponsored by Ruby Central.
3301
4029
  during gem resolution.
3302
4030
 
3303
4031
 
3304
- # 2.3.0 / 2014-06-10
4032
+ ## 2.3.0 / 2014-06-10
3305
4033
 
3306
- ## Enhancements:
4034
+ ### Enhancements:
3307
4035
 
3308
4036
  * Added the `open` command which allows you to inspect the source of a gem
3309
4037
  using your editor.
@@ -3344,7 +4072,7 @@ This release was sponsored by Ruby Central.
3344
4072
  * RubyGems recommends SPDX IDs for licenses now. Pull request [#917](https://github.com/rubygems/rubygems/pull/917) by
3345
4073
  Benjamin Fleischer.
3346
4074
 
3347
- ## Bug fixes:
4075
+ ### Bug fixes:
3348
4076
 
3349
4077
  * RubyGems now only fetches the latest specs to find misspellings which speeds
3350
4078
  up gem suggestions. Pull request [#808](https://github.com/rubygems/rubygems/pull/808) by Aaron Patterson.
@@ -3424,29 +4152,29 @@ This release was sponsored by Ruby Central.
3424
4152
  * Gem::BasicSpecification#require_paths respects default_ext_dir_for now. Bug
3425
4153
  #852 by Vít Ondruch.
3426
4154
 
3427
- # 2.2.5 / 2015-06-08
4155
+ ## 2.2.5 / 2015-06-08
3428
4156
 
3429
- ## Bug fixes:
4157
+ ### Bug fixes:
3430
4158
 
3431
4159
  * Tightened API endpoint checks for CVE-2015-3900
3432
4160
 
3433
- # 2.2.4 / 2015-05-14
4161
+ ## 2.2.4 / 2015-05-14
3434
4162
 
3435
- ## Bug fixes:
4163
+ ### Bug fixes:
3436
4164
 
3437
4165
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
3438
4166
  Fix by claudijd
3439
4167
 
3440
- # 2.2.3 / 2014-12-21
4168
+ ## 2.2.3 / 2014-12-21
3441
4169
 
3442
- ## Bug fixes:
4170
+ ### Bug fixes:
3443
4171
 
3444
4172
  * Backport: Add alternate Root CA for upcoming certificate change.
3445
4173
  Fixes #1050 by Protosac
3446
4174
 
3447
- # 2.2.2 / 2014-02-05
4175
+ ## 2.2.2 / 2014-02-05
3448
4176
 
3449
- ## Bug fixes:
4177
+ ### Bug fixes:
3450
4178
 
3451
4179
  * Fixed ruby tests when BASERUBY is not set. Patch for #778 by Nobuyoshi
3452
4180
  Nakada.
@@ -3471,9 +4199,9 @@ This release was sponsored by Ruby Central.
3471
4199
  * Restored behavior of Gem::Version::new when subclassed. Issue #805 by
3472
4200
  Sergio Rubio.
3473
4201
 
3474
- # 2.2.1 / 2014-01-06
4202
+ ## 2.2.1 / 2014-01-06
3475
4203
 
3476
- ## Bug fixes:
4204
+ ### Bug fixes:
3477
4205
 
3478
4206
  * Platforms in the Gemfile.lock GEM section are now handled correctly. Bug
3479
4207
  #767 by Diego Viola.
@@ -3499,12 +4227,12 @@ This release was sponsored by Ruby Central.
3499
4227
  * Fixed specification file sorting for Ruby 1.8.7 compatibility. Pull
3500
4228
  request [#763](https://github.com/rubygems/rubygems/pull/763) by James Mead
3501
4229
 
3502
- # 2.2.0 / 2013-12-26
4230
+ ## 2.2.0 / 2013-12-26
3503
4231
 
3504
4232
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
3505
4233
  RubyGems as it was prepared for the 2.2.0 release.
3506
4234
 
3507
- ## Enhancements:
4235
+ ### Enhancements:
3508
4236
 
3509
4237
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
3510
4238
  rubygems executables are started and uses the found dependencies. This
@@ -3572,7 +4300,7 @@ RubyGems as it was prepared for the 2.2.0 release.
3572
4300
  * Relaxed Gem.ruby tests for platforms that override where ruby lives. Pull
3573
4301
  Request #755 by strzibny.
3574
4302
 
3575
- ## Bug fixes:
4303
+ ### Bug fixes:
3576
4304
 
3577
4305
  * RubyGems now returns an error status when any file given to `gem which`
3578
4306
  cannot be found. Ruby bug #9004 by Eugene Vilensky.
@@ -3589,9 +4317,9 @@ RubyGems as it was prepared for the 2.2.0 release.
3589
4317
  * Improved speed of `gem install --ignore-dependencies`. Patch by Terence
3590
4318
  Lee.
3591
4319
 
3592
- # 2.1.11 / 2013-11-12
4320
+ ## 2.1.11 / 2013-11-12
3593
4321
 
3594
- ## Bug fixes:
4322
+ ### Bug fixes:
3595
4323
 
3596
4324
  * Gem::Specification::remove_spec no longer checks for existence of the spec
3597
4325
  to be removed. Issue #698 by Tiago Macedo.
@@ -3601,9 +4329,9 @@ RubyGems as it was prepared for the 2.2.0 release.
3601
4329
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
3602
4330
  Pull Request #706 by akr.
3603
4331
 
3604
- # 2.1.10 / 2013-10-24
4332
+ ## 2.1.10 / 2013-10-24
3605
4333
 
3606
- ## Bug fixes:
4334
+ ### Bug fixes:
3607
4335
 
3608
4336
  * Use class check instead of :version method check when creating Gem::Version
3609
4337
  objects. Fixes #674 by jkanywhere.
@@ -3622,18 +4350,18 @@ RubyGems as it was prepared for the 2.2.0 release.
3622
4350
  * The --ignore-dependencies option for gem installation works again. Issue
3623
4351
  #695
3624
4352
 
3625
- # 2.1.9 / 2013-10-14
4353
+ ## 2.1.9 / 2013-10-14
3626
4354
 
3627
- ## Bug fixes:
4355
+ ### Bug fixes:
3628
4356
 
3629
4357
  * Reduce sorting when fetching specifications. This speeds up the update and
3630
4358
  outdated commands, and others. Issue #657 by windwiny.
3631
4359
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
3632
4360
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
3633
4361
 
3634
- # 2.1.8 / 2013-10-10
4362
+ ## 2.1.8 / 2013-10-10
3635
4363
 
3636
- ## Bug fixes:
4364
+ ### Bug fixes:
3637
4365
 
3638
4366
  * Fixed local installation of platform gem files. Issue #664 by Ryan Melton.
3639
4367
  * Files starting with "." in the root directory are installed again. Issue
@@ -3641,9 +4369,9 @@ RubyGems as it was prepared for the 2.2.0 release.
3641
4369
  * The index generator no longer indexes default gems. Issue #661 by
3642
4370
  Jeremy Hinegardner.
3643
4371
 
3644
- # 2.1.7 / 2013-10-09
4372
+ ## 2.1.7 / 2013-10-09
3645
4373
 
3646
- ## Bug fixes:
4374
+ ### Bug fixes:
3647
4375
 
3648
4376
  * `gem sources --list` now displays a list of sources. Pull request [#672](https://github.com/rubygems/rubygems/pull/672) by
3649
4377
  Nathan Marley.
@@ -3656,9 +4384,9 @@ RubyGems as it was prepared for the 2.2.0 release.
3656
4384
  * Expand unpack destination directory. This fixes problems when File.realpath
3657
4385
  is missing and $GEM_HOME contains "..". Issue #679 by Charles Nutter.
3658
4386
 
3659
- # 2.1.6 / 2013-10-08
4387
+ ## 2.1.6 / 2013-10-08
3660
4388
 
3661
- ## Bug fixes:
4389
+ ### Bug fixes:
3662
4390
 
3663
4391
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
3664
4392
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -3673,7 +4401,7 @@ RubyGems as it was prepared for the 2.2.0 release.
3673
4401
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
3674
4402
  Thomas Sänger.
3675
4403
 
3676
- # 2.1.5 / 2013-09-24
4404
+ ## 2.1.5 / 2013-09-24
3677
4405
 
3678
4406
  Security fixes:
3679
4407
 
@@ -3682,25 +4410,25 @@ Security fixes:
3682
4410
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3683
4411
  1.8.23.2 (for Ruby 1.9.3).
3684
4412
 
3685
- # 2.1.4 / 2013-09-17
4413
+ ## 2.1.4 / 2013-09-17
3686
4414
 
3687
- ## Bug fixes:
4415
+ ### Bug fixes:
3688
4416
 
3689
4417
  * `gem uninstall foo --all` now force-uninstalls all versions of foo. Issue
3690
4418
  #650 by Kyle (remkade).
3691
4419
  * Fixed uninstalling gems installed in the home directory (as in
3692
4420
  `--user-install`). Issue #653 by Lin Jen-Shin.
3693
4421
 
3694
- # 2.1.3 / 2013-09-12
4422
+ ## 2.1.3 / 2013-09-12
3695
4423
 
3696
- ## Bug fixes:
4424
+ ### Bug fixes:
3697
4425
 
3698
4426
  * Gems with files entries starting with "./" no longer install 0 files. Issue
3699
4427
  #644 by Darragh Curran, #645 by Brandon Turner, #646 by Alex Tambellini
3700
4428
 
3701
- # 2.1.2 / 2013-09-11
4429
+ ## 2.1.2 / 2013-09-11
3702
4430
 
3703
- ## Bug fixes:
4431
+ ### Bug fixes:
3704
4432
 
3705
4433
  * Restore concurrent requires following the fix for ruby bug #8374. Pull
3706
4434
  request [#637](https://github.com/rubygems/rubygems/pull/637) and issue #640 by Charles Nutter.
@@ -3709,14 +4437,14 @@ Security fixes:
3709
4437
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
3710
4438
  Issue #643 by Brian Shirai.
3711
4439
 
3712
- # 2.1.1 / 2013-09-10
4440
+ ## 2.1.1 / 2013-09-10
3713
4441
 
3714
- ## Bug fixes:
4442
+ ### Bug fixes:
3715
4443
 
3716
4444
  * Only matching gems matching your local platform are considered for
3717
4445
  installation. Issue #638 by José M. Prieto, issue #639 by sawanoboly.
3718
4446
 
3719
- # 2.1.0 / 2013-09-09
4447
+ ## 2.1.0 / 2013-09-09
3720
4448
 
3721
4449
  Security fixes:
3722
4450
 
@@ -3725,7 +4453,7 @@ Security fixes:
3725
4453
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3726
4454
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3727
4455
 
3728
- ## Enhancements:
4456
+ ### Enhancements:
3729
4457
 
3730
4458
  * RubyGems uses a new dependency resolver for gem installation which works
3731
4459
  similar to the bundler resolver. The new resolver can resolve conflicts the
@@ -3801,7 +4529,7 @@ Security fixes:
3801
4529
  still slow, but I see a near 50% improvement for 250 gems on a fast
3802
4530
  connection). See also Gem::Specification::outdated_and_latest_version
3803
4531
 
3804
- ## Bug fixes:
4532
+ ### Bug fixes:
3805
4533
 
3806
4534
  * rubygems_plugin.rb files are now only loaded from the latest installed gem.
3807
4535
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
@@ -3809,29 +4537,29 @@ Security fixes:
3809
4537
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
3810
4538
  request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
3811
4539
 
3812
- # 2.0.17 / 2015-06-08
4540
+ ## 2.0.17 / 2015-06-08
3813
4541
 
3814
- ## Bug fixes:
4542
+ ### Bug fixes:
3815
4543
 
3816
4544
  * Tightened API endpoint checks for CVE-2015-3900
3817
4545
 
3818
- # 2.0.16 / 2015-05-14
4546
+ ## 2.0.16 / 2015-05-14
3819
4547
 
3820
- ## Bug fixes:
4548
+ ### Bug fixes:
3821
4549
 
3822
4550
  * Backport: Limit API endpoint to original security domain for CVE-2015-3900.
3823
4551
  Fix by claudijd
3824
4552
 
3825
- # 2.0.15 / 2014-12-21
4553
+ ## 2.0.15 / 2014-12-21
3826
4554
 
3827
- ## Bug fixes:
4555
+ ### Bug fixes:
3828
4556
 
3829
4557
  * Backport: Add alternate Root CA for upcoming certificate change.
3830
4558
  Fixes #1050 by Protosac
3831
4559
 
3832
- # 2.0.14 / 2013-11-12
4560
+ ## 2.0.14 / 2013-11-12
3833
4561
 
3834
- ## Bug fixes:
4562
+ ### Bug fixes:
3835
4563
 
3836
4564
  * Gem::Specification::remove_spec no longer checks for existence of the spec
3837
4565
  to be removed. Issue #698 by Tiago Macedo.
@@ -3841,9 +4569,9 @@ Security fixes:
3841
4569
  * The Gem::RemoteFetcher tests now choose the test server port more reliably.
3842
4570
  Pull Request #706 by akr.
3843
4571
 
3844
- # 2.0.13 / 2013-10-24
4572
+ ## 2.0.13 / 2013-10-24
3845
4573
 
3846
- ## Bug fixes:
4574
+ ### Bug fixes:
3847
4575
 
3848
4576
  * Use class check instead of :version method check when creating Gem::Version
3849
4577
  objects. Fixes #674 by jkanywhere.
@@ -3852,16 +4580,16 @@ Security fixes:
3852
4580
  * Fix updating gems which have multiple platforms. Issue #693 by Ookami
3853
4581
  Kenrou.
3854
4582
 
3855
- # 2.0.12 / 2013-10-14
4583
+ ## 2.0.12 / 2013-10-14
3856
4584
 
3857
- ## Bug fixes:
4585
+ ### Bug fixes:
3858
4586
 
3859
4587
  * Proxy usernames and passwords are now escaped properly. Ruby Bug #8979 by
3860
4588
  Masahiro Tomita, Issue #668 by Kouhei Sutou.
3861
4589
 
3862
- # 2.0.11 / 2013-10-08
4590
+ ## 2.0.11 / 2013-10-08
3863
4591
 
3864
- ## Bug fixes:
4592
+ ### Bug fixes:
3865
4593
 
3866
4594
  * Added certificates to follow the s3.amazonaws.com certificate change. Fixes
3867
4595
  #665 by emeyekayee. Fixes #671 by jonforums.
@@ -3876,7 +4604,7 @@ Security fixes:
3876
4604
  version.) Issue #676 by Michal Papis. Issue wayneeseguin/rvm#2262 by
3877
4605
  Thomas Sänger.
3878
4606
 
3879
- # 2.0.10 / 2013-09-24
4607
+ ## 2.0.10 / 2013-09-24
3880
4608
 
3881
4609
  Security fixes:
3882
4610
 
@@ -3885,16 +4613,16 @@ Security fixes:
3885
4613
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
3886
4614
  1.8.23.2 (for Ruby 1.9.3).
3887
4615
 
3888
- # 2.0.9 / 2013-09-13
4616
+ ## 2.0.9 / 2013-09-13
3889
4617
 
3890
- ## Bug fixes:
4618
+ ### Bug fixes:
3891
4619
 
3892
4620
  * Gem fetch now fetches the newest (not oldest) gem when --version is given.
3893
4621
  Issue #643 by Brian Shirai.
3894
4622
  * Fixed credential creation for `gem push` when `--host` is not given. Pull
3895
4623
  request [#622](https://github.com/rubygems/rubygems/pull/622) by Arthur Nogueira Neves
3896
4624
 
3897
- # 2.0.8 / 2013-09-09
4625
+ ## 2.0.8 / 2013-09-09
3898
4626
 
3899
4627
  Security fixes:
3900
4628
 
@@ -3903,14 +4631,14 @@ Security fixes:
3903
4631
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
3904
4632
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
3905
4633
 
3906
- ## Bug fixes:
4634
+ ### Bug fixes:
3907
4635
 
3908
4636
  * Fixed Gem.clear_paths when Security is defined at top-level. Pull request
3909
4637
  [#625](https://github.com/rubygems/rubygems/pull/625) by elarkin
3910
4638
 
3911
- # 2.0.7 / 2013-08-15
4639
+ ## 2.0.7 / 2013-08-15
3912
4640
 
3913
- ## Bug fixes:
4641
+ ### Bug fixes:
3914
4642
 
3915
4643
  * Extensions may now be built in parallel (therefore gems may be installed in
3916
4644
  parallel). Bug #607 by Hemant Kumar.
@@ -3920,9 +4648,9 @@ Security fixes:
3920
4648
  Patches by Yui Naruse and Koichi Sasada.
3921
4649
  * Fixed documentation for Kernel#require.
3922
4650
 
3923
- # 2.0.6 / 2013-07-24
4651
+ ## 2.0.6 / 2013-07-24
3924
4652
 
3925
- ## Bug fixes:
4653
+ ### Bug fixes:
3926
4654
 
3927
4655
  * Fixed the `--no-install` and `-I` options to `gem list` and friends. Bug
3928
4656
  #593 by Blargel.
@@ -3934,14 +4662,14 @@ Security fixes:
3934
4662
  Bug #599 by Chris Riesbeck
3935
4663
  * Restored default of remote search to `gem search`.
3936
4664
 
3937
- # 2.0.5 / 2013-07-11
4665
+ ## 2.0.5 / 2013-07-11
3938
4666
 
3939
4667
  * Fixed building of extensions that run ruby in their makefiles. Bug #589 by
3940
4668
  Zachary Salzbank.
3941
4669
 
3942
- # 2.0.4 / 2013-07-09
4670
+ ## 2.0.4 / 2013-07-09
3943
4671
 
3944
- ## Bug fixes:
4672
+ ### Bug fixes:
3945
4673
 
3946
4674
  * Fixed error caused by gem install not finding the right platform for your
3947
4675
  platform. Bug #576 by John Anderson
@@ -3980,9 +4708,9 @@ Security fixes:
3980
4708
  * Fix deprecation warnings when converting gemspecs to yaml. Ruby commit
3981
4709
  r41148 by Yui Naruse
3982
4710
 
3983
- # 2.0.3 / 2013-03-11
4711
+ ## 2.0.3 / 2013-03-11
3984
4712
 
3985
- ## Bug fixes:
4713
+ ### Bug fixes:
3986
4714
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
3987
4715
  #506 by André Arko
3988
4716
  * Use File.realpath to remove extra / while checking if files are
@@ -3997,17 +4725,17 @@ Security fixes:
3997
4725
  * Fixed default gem key and cert locations. Pull request [#511](https://github.com/rubygems/rubygems/pull/511) by Samuel
3998
4726
  Cochran.
3999
4727
 
4000
- # 2.0.2 / 2013-03-06
4728
+ ## 2.0.2 / 2013-03-06
4001
4729
 
4002
- ## Bug fixes:
4730
+ ### Bug fixes:
4003
4731
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
4004
4732
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
4005
4733
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
4006
4734
  * Fixed HTTP to HTTPS upgrade for rubygems.org.
4007
4735
 
4008
- # 2.0.1 / 2013-03-05
4736
+ ## 2.0.1 / 2013-03-05
4009
4737
 
4010
- ## Bug fixes:
4738
+ ### Bug fixes:
4011
4739
  * Lazily load RubyGems.org API credentials to avoid failure during
4012
4740
  RubyGems installation. Bug #465 by Isaac Sanders.
4013
4741
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -4029,7 +4757,7 @@ Security fixes:
4029
4757
  Ruby bug #7713 by nobu
4030
4758
  * Fix tests when an 'a.rb' exists. Ruby bug #7749 by nobu.
4031
4759
 
4032
- # 2.0.0 / 2013-02-24
4760
+ ## 2.0.0 / 2013-02-24
4033
4761
 
4034
4762
  RubyGems 2.0 includes several new features and many breaking changes. Some of
4035
4763
  these changes will cause existing software to break. These changes are a
@@ -4041,7 +4769,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
4041
4769
 
4042
4770
  Changes since RubyGems 1.8.25 (including past pre-releases):
4043
4771
 
4044
- ## Breaking changes:
4772
+ ### Breaking changes:
4045
4773
 
4046
4774
  * Deprecated Gem.unresolved_deps in favor of
4047
4775
  Gem::Specification.unresolved_deps
@@ -4063,7 +4791,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
4063
4791
  * Removed support for Ruby 1.9.1
4064
4792
  * Removed many deprecated methods
4065
4793
 
4066
- ## Enhancements:
4794
+ ### Enhancements:
4067
4795
 
4068
4796
  * Improved support for default gems shipping with ruby 2.0.0+
4069
4797
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -4123,7 +4851,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
4123
4851
  GEM_HOME
4124
4852
  * When building gems with non-world-readable files a warning is shown.
4125
4853
 
4126
- ## Bug fixes:
4854
+ ### Bug fixes:
4127
4855
  * Gem.refresh now maintains the active gem list. Clearing the list would
4128
4856
  cause double-loads which would cause other bugs. Pull Request #427 by
4129
4857
  Jeremy Evans
@@ -4180,7 +4908,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
4180
4908
 
4181
4909
  Changes since RubyGems 2.0.0.rc.2:
4182
4910
 
4183
- ## Bug fixes:
4911
+ ### Bug fixes:
4184
4912
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
4185
4913
  #450 by Jeremy Kemper
4186
4914
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -4193,48 +4921,48 @@ Changes since RubyGems 2.0.0.rc.2:
4193
4921
  * Fixed verification of gems at LowSecurity due to missing signature.
4194
4922
  Thanks to André Arko.
4195
4923
 
4196
- # 2.0.0.rc.2 / 2013-02-08
4924
+ ## 2.0.0.rc.2 / 2013-02-08
4197
4925
 
4198
- ## Bug fixes:
4926
+ ### Bug fixes:
4199
4927
  * Fixed signature verification of gems which was broken only on master.
4200
4928
  Thanks to Brian Buchanan.
4201
4929
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
4202
4930
  André Arko.
4203
4931
 
4204
- # 2.0.0.rc.1 / 2013-01-08
4932
+ ## 2.0.0.rc.1 / 2013-01-08
4205
4933
 
4206
- ## Enhancements:
4934
+ ### Enhancements:
4207
4935
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
4208
4936
  prerelease versions of RubyGems cannot push gems.
4209
4937
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
4210
4938
  #419 by Erik Hollensbe
4211
4939
 
4212
- ## Bug fixes:
4940
+ ### Bug fixes:
4213
4941
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
4214
4942
  #418 by André Arko
4215
4943
  * Gem installation will fail if RubyGems cannot load the specification from
4216
4944
  the gem. Bug #419 by Erik Hollensbe
4217
4945
 
4218
- # 2.0.0.preview2.2 / 2012-12-14
4946
+ ## 2.0.0.preview2.2 / 2012-12-14
4219
4947
 
4220
- ## Enhancements:
4948
+ ### Enhancements:
4221
4949
  * Added a cmake builder. Pull request [#265](https://github.com/rubygems/rubygems/pull/265) by Allan Espinosa.
4222
4950
  * Removed rubyforge page from gem list output
4223
4951
 
4224
- ## Bug fixes:
4952
+ ### Bug fixes:
4225
4953
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
4226
4954
  #413 by Jeremy Kemper.
4227
4955
 
4228
- # 2.0.0.preview2.1 / 2012-12-08
4956
+ ## 2.0.0.preview2.1 / 2012-12-08
4229
4957
 
4230
- ## Enhancements:
4958
+ ### Enhancements:
4231
4959
  * Gem::DependencyInstaller now passes build_args down to the installer.
4232
4960
  Pull Request #412 by Sam Rawlins.
4233
4961
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
4234
4962
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
4235
4963
  Skipper.
4236
4964
 
4237
- ## Bug fixes:
4965
+ ### Bug fixes:
4238
4966
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
4239
4967
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
4240
4968
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -4246,13 +4974,13 @@ Changes since RubyGems 2.0.0.rc.2:
4246
4974
  * gem install now ignores directories that match the gem to install. Bug
4247
4975
  #407 by Santiago Pastorino.
4248
4976
 
4249
- # 2.0.0.preview2 / 2012-12-01
4977
+ ## 2.0.0.preview2 / 2012-12-01
4250
4978
 
4251
4979
  This release contains two commits not present in Ruby 2.0.0.preview2. One
4252
4980
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
4253
4981
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
4254
4982
 
4255
- ## Breaking changes:
4983
+ ### Breaking changes:
4256
4984
 
4257
4985
  * Deprecated Gem.unresolved_deps in favor of
4258
4986
  Gem::Specification.unresolved_deps
@@ -4274,7 +5002,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
4274
5002
  * Removed support for Ruby 1.9.1
4275
5003
  * Removed many deprecated methods
4276
5004
 
4277
- ## Enhancements:
5005
+ ### Enhancements:
4278
5006
 
4279
5007
  * Improved support for default gems shipping with ruby 2.0.0+
4280
5008
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -4325,7 +5053,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
4325
5053
  GEM_HOME
4326
5054
  * When building gems with non-world-readable files a warning is shown.
4327
5055
 
4328
- ## Bug fixes:
5056
+ ### Bug fixes:
4329
5057
 
4330
5058
  * Added PID to setup bin_file while installing RubyGems to protect against
4331
5059
  errors. Fixes #328 by ConradIrwin
@@ -4366,17 +5094,17 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
4366
5094
  * URI scheme matching is no longer case-sensitive. Fixes #322
4367
5095
  * ext/builder now checks $MAKE as well as $make (okkez)
4368
5096
 
4369
- # 1.8.29 / 2013-11-23
5097
+ ## 1.8.29 / 2013-11-23
4370
5098
 
4371
- ## Bug fixes:
5099
+ ### Bug fixes:
4372
5100
 
4373
5101
  * Fixed installation when the LANG environment variable is empty.
4374
5102
  * Added DigiCert High Assurance EV Root CA to the default SSL certificates for
4375
5103
  cloudfront.
4376
5104
 
4377
- # 1.8.28 / 2013-10-08
5105
+ ## 1.8.28 / 2013-10-08
4378
5106
 
4379
- ## Bug fixes:
5107
+ ### Bug fixes:
4380
5108
 
4381
5109
  * Added the Verisign Class 3 Public Primary Certification Authority G5
4382
5110
  certificate and its intermediary to follow the s3.amazonaws.com certificate
@@ -4386,7 +5114,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
4386
5114
  * Added test for missing certificates for https://s3.amazonaws.com or
4387
5115
  https://rubygems.org. Pull request [#673](https://github.com/rubygems/rubygems/pull/673) by Hannes Georg.
4388
5116
 
4389
- # 1.8.27 / 2013-09-24
5117
+ ## 1.8.27 / 2013-09-24
4390
5118
 
4391
5119
  Security fixes:
4392
5120
 
@@ -4395,7 +5123,7 @@ Security fixes:
4395
5123
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
4396
5124
  1.8.23.2 (for Ruby 1.9.3).
4397
5125
 
4398
- # 1.8.26 / 2013-09-09
5126
+ ## 1.8.26 / 2013-09-09
4399
5127
 
4400
5128
  Security fixes:
4401
5129
 
@@ -4404,13 +5132,13 @@ Security fixes:
4404
5132
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
4405
5133
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
4406
5134
 
4407
- ## Bug fixes:
5135
+ ### Bug fixes:
4408
5136
 
4409
5137
  * Fixed editing of a Makefile with 8-bit characters. Fixes #181
4410
5138
 
4411
- # 1.8.25 / 2013-01-24
5139
+ ## 1.8.25 / 2013-01-24
4412
5140
 
4413
- ## Bug fixes:
5141
+ ### Bug fixes:
4414
5142
  * Added 11627 to setup bin_file location to protect against errors. Fixes
4415
5143
  #328 by ConradIrwin
4416
5144
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -4419,14 +5147,14 @@ Security fixes:
4419
5147
  * Fix missing load_yaml in YAML-related requirement.rb code.
4420
5148
  * Manually backport encoding-aware YAML gemspec
4421
5149
 
4422
- # 1.8.24 / 2012-04-27
5150
+ ## 1.8.24 / 2012-04-27
4423
5151
 
4424
- ## Bug fixes:
5152
+ ### Bug fixes:
4425
5153
 
4426
5154
  * Install the .pem files properly. Fixes #320
4427
5155
  * Remove OpenSSL dependency from the http code path
4428
5156
 
4429
- # 1.8.23.2 / 2013-09-24
5157
+ ## 1.8.23.2 / 2013-09-24
4430
5158
 
4431
5159
  Security fixes:
4432
5160
 
@@ -4435,7 +5163,7 @@ Security fixes:
4435
5163
  including vulnerable APIs. Fixed versions include 2.1.5, 2.0.10, 1.8.27 and
4436
5164
  1.8.23.2 (for Ruby 1.9.3).
4437
5165
 
4438
- # 1.8.23.1 / 2013-09-09
5166
+ ## 1.8.23.1 / 2013-09-09
4439
5167
 
4440
5168
  Security fixes:
4441
5169
 
@@ -4444,7 +5172,7 @@ Security fixes:
4444
5172
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
4445
5173
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
4446
5174
 
4447
- # 1.8.23 / 2012-04-19
5175
+ ## 1.8.23 / 2012-04-19
4448
5176
 
4449
5177
  This release increases the security used when RubyGems is talking to
4450
5178
  an https server. If you use a custom RubyGems server over SSL, this
@@ -4464,49 +5192,49 @@ Security fixes:
4464
5192
  * Disallow redirects from https to http
4465
5193
  * Turn on verification of server SSL certs
4466
5194
 
4467
- ## Enhancements:
5195
+ ### Enhancements:
4468
5196
  * Add --clear-sources to fetch
4469
5197
 
4470
- ## Bug fixes:
5198
+ ### Bug fixes:
4471
5199
  * Use File.identical? to check if two files are the same.
4472
5200
  * Fixed init_with warning when using psych
4473
5201
 
4474
- # 1.8.22 / 2012-04-13
5202
+ ## 1.8.22 / 2012-04-13
4475
5203
 
4476
- ## Bug fixes:
5204
+ ### Bug fixes:
4477
5205
 
4478
5206
  * Workaround for psych/syck YAML date parsing issue
4479
5207
  * Don't trust the encoding of ARGV. Fixes #307
4480
5208
  * Quiet default warnings about missing spec variables
4481
5209
  * Read a binary file properly (windows fix)
4482
5210
 
4483
- # 1.8.21 / 2012-03-22
5211
+ ## 1.8.21 / 2012-03-22
4484
5212
 
4485
- ## Bug fixes:
5213
+ ### Bug fixes:
4486
5214
 
4487
5215
  * Add workaround for buggy yaml output from 1.9.2
4488
5216
  * Force 1.9.1 to remove it's prelude code. Fixes #305
4489
5217
 
4490
- # 1.8.20 / 2012-03-21
5218
+ ## 1.8.20 / 2012-03-21
4491
5219
 
4492
- ## Bug fixes:
5220
+ ### Bug fixes:
4493
5221
 
4494
5222
  * Add --force to `gem build` to skip validation. Fixes #297
4495
5223
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
4496
5224
  * Treat the source as a proper url base. Fixes #304
4497
5225
  * Warn when updating the specs cache fails. Fixes #300
4498
5226
 
4499
- # 1.8.19 / 2012-03-14
5227
+ ## 1.8.19 / 2012-03-14
4500
5228
 
4501
- ## Bug fixes:
5229
+ ### Bug fixes:
4502
5230
 
4503
5231
  * Handle loading psych vs syck properly. Fixes #298
4504
5232
  * Make sure Date objects don't leak in via Marshal
4505
5233
  * Perform Date => Time coercion on yaml loading. Fixes #266
4506
5234
 
4507
- # 1.8.18 / 2012-03-11
5235
+ ## 1.8.18 / 2012-03-11
4508
5236
 
4509
- ## Bug fixes:
5237
+ ### Bug fixes:
4510
5238
 
4511
5239
  * Use Psych API to emit more compatible YAML
4512
5240
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -4514,14 +5242,14 @@ Security fixes:
4514
5242
  * Search everywhere for a spec for `gem spec`. Fixes #288
4515
5243
  * Fix Gem.all_load_path. Fixes #171
4516
5244
 
4517
- # 1.8.17 / 2012-02-17
5245
+ ## 1.8.17 / 2012-02-17
4518
5246
 
4519
- ## Enhancements:
5247
+ ### Enhancements:
4520
5248
 
4521
5249
  * Add MacRuby to the list of special cases for platforms (ferrous26)
4522
5250
  * Add a default for where to install rubygems itself
4523
5251
 
4524
- ## Bug fixes:
5252
+ ### Bug fixes:
4525
5253
 
4526
5254
  * Fixed gem loading issue caused by dependencies not resolving.
4527
5255
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -4529,59 +5257,59 @@ Security fixes:
4529
5257
  * Define SUCKAGE better, ie only MRI 1.9.2
4530
5258
  * Propagate env-shebang to the pristine command if set for install.
4531
5259
 
4532
- # 1.8.16 / 2012-02-12
5260
+ ## 1.8.16 / 2012-02-12
4533
5261
 
4534
- ## Bug fixes:
5262
+ ### Bug fixes:
4535
5263
 
4536
5264
  * Fix gem specification loading when encoding is not UTF-8. #146
4537
5265
  * Allow group writable if umask allows it already.
4538
5266
  * Uniquify the spec list based on directory order priority
4539
5267
 
4540
- # 1.8.15 / 2012-01-06
5268
+ ## 1.8.15 / 2012-01-06
4541
5269
 
4542
- ## Bug fixes:
5270
+ ### Bug fixes:
4543
5271
 
4544
5272
  * Don't eager load yaml, it creates a bad loop. Fixes #256
4545
5273
 
4546
- # 1.8.14 / 2012-01-05
5274
+ ## 1.8.14 / 2012-01-05
4547
5275
 
4548
- ## Bug fixes:
5276
+ ### Bug fixes:
4549
5277
 
4550
5278
  * Ignore old/bad cache data in Version
4551
5279
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
4552
5280
 
4553
- # 1.8.13 / 2011-12-21
5281
+ ## 1.8.13 / 2011-12-21
4554
5282
 
4555
- ## Bug fixes:
5283
+ ### Bug fixes:
4556
5284
 
4557
5285
  * Check loaded_specs properly when trying to satisfy a dep
4558
5286
 
4559
- ## Enhancements:
5287
+ ### Enhancements:
4560
5288
 
4561
5289
  * Remove using #loaded_path? for performance
4562
5290
  * Remove Zlib workaround for Windows build.
4563
5291
 
4564
- # 1.8.12 / 2011-12-02
5292
+ ## 1.8.12 / 2011-12-02
4565
5293
 
4566
- ## Bug fixes:
5294
+ ### Bug fixes:
4567
5295
 
4568
5296
  * Handle more cases where Syck's DefaultKey showed up in requirements
4569
5297
  and wasn't cleaned out.
4570
5298
 
4571
- # 1.8.11 / 2011-10-03
5299
+ ## 1.8.11 / 2011-10-03
4572
5300
 
4573
- ## Bug fixes:
5301
+ ### Bug fixes:
4574
5302
 
4575
5303
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
4576
5304
  namespace.
4577
5305
 
4578
- # 1.8.10 / 2011-08-25
5306
+ ## 1.8.10 / 2011-08-25
4579
5307
 
4580
5308
  RubyGems 1.8.10 contains a security fix that prevents malicious gems from
4581
5309
  executing code when their specification is loaded. See
4582
5310
  https://github.com/rubygems/rubygems/pull/165 for details.
4583
5311
 
4584
- ## Bug fixes:
5312
+ ### Bug fixes:
4585
5313
 
4586
5314
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
4587
5315
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -4592,21 +5320,21 @@ https://github.com/rubygems/rubygems/pull/165 for details.
4592
5320
  * Fixed Syck DefaultKey infecting ruby-format specifications.
4593
5321
  * `gem uninstall a b` no longer stops if gem "a" is not installed.
4594
5322
 
4595
- # 1.8.9 / 2011-08-23
5323
+ ## 1.8.9 / 2011-08-23
4596
5324
 
4597
- ## Bug fixes:
5325
+ ### Bug fixes:
4598
5326
 
4599
5327
  * Fixed uninstalling multiple gems using `gem uninstall`
4600
5328
  * Gem.use_paths splatted to take multiple paths! Issue #148
4601
5329
 
4602
- # 1.8.8 / 2011-08-11
5330
+ ## 1.8.8 / 2011-08-11
4603
5331
 
4604
- ## Bug fixes:
5332
+ ### Bug fixes:
4605
5333
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
4606
5334
 
4607
- # 1.8.7 / 2011-08-04
5335
+ ## 1.8.7 / 2011-08-04
4608
5336
 
4609
- ## Bug fixes:
5337
+ ### Bug fixes:
4610
5338
  * Added missing require for `gem uninstall --format-executable`
4611
5339
  * The correct name of the executable being uninstalled is now displayed with
4612
5340
  --format-executable
@@ -4618,14 +5346,14 @@ https://github.com/rubygems/rubygems/pull/165 for details.
4618
5346
  * Gem repository directories are no longer created world-writable. Patch by
4619
5347
  Sakuro OZAWA. Ruby Bug #4930
4620
5348
 
4621
- # 1.8.6 / 2011-07-25
5349
+ ## 1.8.6 / 2011-07-25
4622
5350
 
4623
- ## Enhancements:
5351
+ ### Enhancements:
4624
5352
 
4625
5353
  * Add autorequires and delay startup of RubyGems until require is called.
4626
5354
  See Ruby bug #4962
4627
5355
 
4628
- ## Bug fixes:
5356
+ ### Bug fixes:
4629
5357
 
4630
5358
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
4631
5359
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -4637,27 +5365,27 @@ https://github.com/rubygems/rubygems/pull/165 for details.
4637
5365
  * Handle the Syck DefaultKey problem once and for all.
4638
5366
  * Fix SystemStackError occurring with "gem list -r -a" on 1.9.
4639
5367
 
4640
- # 1.8.5 / 2011-05-31
5368
+ ## 1.8.5 / 2011-05-31
4641
5369
 
4642
- ## Enhancements:
5370
+ ### Enhancements:
4643
5371
 
4644
5372
  * The -u option to 'update local source cache' is official deprecated.
4645
5373
  * Remove has_rdoc deprecations from Specification.
4646
5374
 
4647
- ## Bug fixes:
5375
+ ### Bug fixes:
4648
5376
 
4649
5377
  * Handle bad specs more gracefully.
4650
5378
  * Reset any Gem paths changed in the installer.
4651
5379
 
4652
- # 1.8.4 / 2011-05-25
5380
+ ## 1.8.4 / 2011-05-25
4653
5381
 
4654
- ## Enhancements:
5382
+ ### Enhancements:
4655
5383
 
4656
5384
  * Removed default_executable deprecations from Specification.
4657
5385
 
4658
- # 1.8.3 / 2011-05-19
5386
+ ## 1.8.3 / 2011-05-19
4659
5387
 
4660
- ## Bug fixes:
5388
+ ### Bug fixes:
4661
5389
 
4662
5390
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
4663
5391
  Shota Fukumori
@@ -4666,33 +5394,33 @@ https://github.com/rubygems/rubygems/pull/165 for details.
4666
5394
  * Fixed some bad calls left behind after rolling out some refactorings.
4667
5395
  * Syck has a parse error on (good) times output from Psych. (dazuma, et al)
4668
5396
 
4669
- # 1.8.2 / 2011-05-11
5397
+ ## 1.8.2 / 2011-05-11
4670
5398
 
4671
- ## Enhancements:
5399
+ ### Enhancements:
4672
5400
 
4673
5401
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
4674
5402
  * Print out a warning about missing executables.
4675
5403
 
4676
- ## Bug fixes:
5404
+ ### Bug fixes:
4677
5405
 
4678
5406
  * Added missing requires to fix various upgrade issues.
4679
5407
  * `gem pristine` respects multiple gem repositories.
4680
5408
  * setup.rb now execs with --disable-gems when possible
4681
5409
 
4682
- # 1.8.1 / 2011-05-05
5410
+ ## 1.8.1 / 2011-05-05
4683
5411
 
4684
- ## Enhancements:
5412
+ ### Enhancements:
4685
5413
 
4686
5414
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
4687
5415
 
4688
- ## Bug fixes:
5416
+ ### Bug fixes:
4689
5417
 
4690
5418
  * Typo on Indexer rendered it useless on Windows
4691
5419
  * gem dep can fetch remote dependencies for non-latest gems again.
4692
5420
  * gem uninstall with multiple versions no longer crashes with ArgumentError
4693
5421
  * Always use binary mode for File.open to keep Windows happy
4694
5422
 
4695
- # 1.8.0 / 2011-04-34
5423
+ ## 1.8.0 / 2011-04-34
4696
5424
 
4697
5425
  This release focused on properly encapsulating functionality. Most of this
4698
5426
  work focused on moving functionality out of Gem::SourceIndex and
@@ -4707,7 +5435,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
4707
5435
  --build-arg` to regenerate a gem with an extension where it requires special
4708
5436
  build arguments.
4709
5437
 
4710
- ## Deprecations:
5438
+ ### Deprecations:
4711
5439
 
4712
5440
  * DependencyList.from_source_index deprecated the source_index argument.
4713
5441
  * Deprecated Dependency.new(/regex/).
@@ -4728,7 +5456,7 @@ build arguments.
4728
5456
  * Deprecated all of Gem::GemPathSearcher.
4729
5457
  * Deprecated Gem::Specification#default_executable.
4730
5458
 
4731
- ## Enhancements:
5459
+ ### Enhancements:
4732
5460
 
4733
5461
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
4734
5462
  Gem::SourceIndex is completely disconnected from Gem::Specification
@@ -4780,7 +5508,7 @@ build arguments.
4780
5508
  extensions.
4781
5509
  * `gem pristine` can now restore multiple gems.
4782
5510
 
4783
- ## Bug fixes:
5511
+ ### Bug fixes:
4784
5512
 
4785
5513
  * DependencyInstaller passed around a source_index instance but used
4786
5514
  Gem.source_index.
@@ -4792,15 +5520,15 @@ build arguments.
4792
5520
  * `gem pristine` can now restore non-latest gems where the cached gem was
4793
5521
  removed.
4794
5522
 
4795
- # 1.7.1 / 2011-03-32
5523
+ ## 1.7.1 / 2011-03-32
4796
5524
 
4797
- ## Bug fixes:
5525
+ ### Bug fixes:
4798
5526
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
4799
5527
  `rake check_manifest` showing a diff would not exit with an error.)
4800
5528
 
4801
- # 1.7.0 / 2011-03-32
5529
+ ## 1.7.0 / 2011-03-32
4802
5530
 
4803
- ## Deprecations:
5531
+ ### Deprecations:
4804
5532
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
4805
5533
  cache.
4806
5534
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -4812,7 +5540,7 @@ build arguments.
4812
5540
  test_suite_file(=).
4813
5541
  * Deprecated Specification#has_rdoc= and default_executable=
4814
5542
 
4815
- ## Enhancements:
5543
+ ### Enhancements:
4816
5544
  * Added stupid simple deprecation module.
4817
5545
  * Added --spec option to `gem unpack` to output a gem's original metadata
4818
5546
  * Added packaging option to Specification#validate
@@ -4844,7 +5572,7 @@ build arguments.
4844
5572
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
4845
5573
  * UpdateCommand#which_to_update now takes an optional system argument.
4846
5574
 
4847
- ## Bug fixes:
5575
+ ### Bug fixes:
4848
5576
  * Added missing remote fetcher require to pristine command (aarnell)
4849
5577
  * Building gems now checks to ensure all required fields are non-nil
4850
5578
  * Fix option parser when summary is nil.
@@ -4860,17 +5588,17 @@ build arguments.
4860
5588
  Elias Baixas
4861
5589
  * `gem update` now uniq's command line arguments.
4862
5590
 
4863
- # 1.6.2 / 2011-03-08
5591
+ ## 1.6.2 / 2011-03-08
4864
5592
 
4865
- ## Bug fixes:
5593
+ ### Bug fixes:
4866
5594
 
4867
5595
  * require of an activated gem could cause activation conflicts. Fixes
4868
5596
  Bug #29056 by Dave Verwer.
4869
5597
  * `gem outdated` now works with up-to-date prerelease gems.
4870
5598
 
4871
- # 1.6.1 / 2011-03-03
5599
+ ## 1.6.1 / 2011-03-03
4872
5600
 
4873
- ## Bug fixes:
5601
+ ### Bug fixes:
4874
5602
 
4875
5603
  * Installation no longer fails when a dependency from a version that won't be
4876
5604
  installed is unsatisfied.
@@ -4879,9 +5607,9 @@ build arguments.
4879
5607
  * Gem files are cached correctly again. Patch #29051 by Mamoru Tasaka.
4880
5608
  * Tests now pass with non-022 umask. Patch #29050 by Mamoru Tasaka.
4881
5609
 
4882
- # 1.6.0 / 2011-02-29
5610
+ ## 1.6.0 / 2011-02-29
4883
5611
 
4884
- ## Deprecations:
5612
+ ### Deprecations:
4885
5613
 
4886
5614
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
4887
5615
  'thread' to their applications.
@@ -4890,7 +5618,7 @@ build arguments.
4890
5618
  * Gem::LoadError#version_requirements has been removed. Use
4891
5619
  Gem::LoadError#requirement.
4892
5620
 
4893
- ## Enhancements:
5621
+ ### Enhancements:
4894
5622
 
4895
5623
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
4896
5624
  * Gem::LoadError#version_requirement has been removed. Use
@@ -4918,7 +5646,7 @@ build arguments.
4918
5646
  locally cached gem specifications.
4919
5647
  * SpecFetcher.fetch_spec can now take a string source_uri.
4920
5648
 
4921
- ## Bug fixes:
5649
+ ### Bug fixes:
4922
5650
 
4923
5651
  * Added missing require of Gem::RemoteFetcher to the unpack command.
4924
5652
  * RubyGems now completely removes a previous install when reinstalling.
@@ -4931,28 +5659,26 @@ build arguments.
4931
5659
  * Gem::Security used FileUtils but didn't require it. Reported by Elia Schito.
4932
5660
  * Gem::Uninstaller now respects --format-executable.
4933
5661
 
4934
- # 1.5.3 / 2011-02-26
5662
+ ## 1.5.3 / 2011-02-26
4935
5663
 
4936
- ## Bug fixes:
5664
+ ### Bug fixes:
4937
5665
 
4938
5666
  * Fix for a bug in Syck which causes install failures for gems packaged with
4939
5667
  Psych. Bug #28965 by Aaron Patterson.
4940
5668
 
4941
- # 1.5.2 / 2011-02-10
5669
+ ## 1.5.2 / 2011-02-10
4942
5670
 
4943
- ## Bug fixes:
5671
+ ### Bug fixes:
4944
5672
 
4945
5673
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
4946
5674
 
4947
- # 1.5.1 / 2011-02-09
5675
+ ## 1.5.1 / 2011-02-09
4948
5676
 
4949
- #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
4950
-
4951
- ## Enhancements:
5677
+ ### Enhancements:
4952
5678
 
4953
5679
  * Added ability to do gem update --system X.Y.Z.
4954
5680
 
4955
- ## Bug fixes:
5681
+ ### Bug fixes:
4956
5682
 
4957
5683
  * Scrub !!null YAML from 1.9.2 (install and build).
4958
5684
  * Added missing requires for user_interaction.
@@ -4961,11 +5687,9 @@ build arguments.
4961
5687
  * Fixed SilentUI for cygwin; try /dev/null first then fall back to NUL.
4962
5688
  * RubyGems now enforces ruby 1.8.7 or newer.
4963
5689
 
4964
- # 1.5.0 / 2011-01-31
4965
-
4966
- #= NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
5690
+ ## 1.5.0 / 2011-01-31
4967
5691
 
4968
- ## Enhancements:
5692
+ ### Enhancements:
4969
5693
 
4970
5694
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
4971
5695
  * Merged huge 1.3.7/ruby-core changes to master.
@@ -4980,7 +5704,7 @@ build arguments.
4980
5704
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
4981
5705
  Erik Hollensbe.
4982
5706
 
4983
- ## Bug fixes:
5707
+ ### Bug fixes:
4984
5708
 
4985
5709
  * `gem update` was implicitly doing --system.
4986
5710
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -4992,25 +5716,25 @@ build arguments.
4992
5716
  Erik Hollensbe.
4993
5717
  * rubygems-update lists its development dependencies again
4994
5718
 
4995
- # 1.4.2 / 2011-01-06
5719
+ ## 1.4.2 / 2011-01-06
4996
5720
 
4997
- ## Bug fixes:
5721
+ ### Bug fixes:
4998
5722
 
4999
5723
  * Gem::Versions: "1.b1" != "1.b.1", but "1.b1" eql? "1.b.1". Fixes gem indexing.
5000
5724
  * Fixed Gem.find_files.
5001
5725
  * Removed otherwise unused #find_all_dot_rb. Only 6 days old and hella buggy.
5002
5726
 
5003
- # 1.4.1 / 2010-12-31
5727
+ ## 1.4.1 / 2010-12-31
5004
5728
 
5005
5729
  Since apparently nobody reads my emails, blog posts or the README:
5006
5730
 
5007
5731
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
5008
5732
 
5009
- ## Bug fixes:
5733
+ ### Bug fixes:
5010
5734
 
5011
5735
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
5012
5736
 
5013
- # 1.4.0 / 2010-12-30
5737
+ ## 1.4.0 / 2010-12-30
5014
5738
 
5015
5739
  NOTE: In order to better maintain rubygems and to get it in sync with
5016
5740
  the world (eg, 1.9's 1.3.7 is different from our 1.3.7), rubygems is
@@ -5020,7 +5744,7 @@ You have been warned!
5020
5744
 
5021
5745
  NOTE: We've switched to git/github. See README.rdoc for details.
5022
5746
 
5023
- ## Features:
5747
+ ### Features:
5024
5748
 
5025
5749
  * Added --launch option to `gem server`. (gthiesfeld)
5026
5750
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -5030,7 +5754,7 @@ NOTE: We've switched to git/github. See README.rdoc for details.
5030
5754
  * --source is now additive with your current sources.
5031
5755
  Use --clear-sources first to maintain previous behavior.
5032
5756
 
5033
- ## Bug fixes:
5757
+ ### Bug fixes:
5034
5758
 
5035
5759
  * Dependency "~>"s now respect lower-bound prerelease versions.
5036
5760
  * Ensure the gem directories exist on download.
@@ -5041,7 +5765,7 @@ NOTE: We've switched to git/github. See README.rdoc for details.
5041
5765
  Do not depend on rubygems to require stdlib stuff for you. (raggi/tmm1)
5042
5766
  * Treat 1.0.a10 like 1.0.a.10 for sorting, etc. Fixes #27903. (dchelimsky)
5043
5767
 
5044
- # 1.3.7 / 2010-05-13
5768
+ ## 1.3.7 / 2010-05-13
5045
5769
 
5046
5770
  NOTE:
5047
5771
 
@@ -5052,7 +5776,7 @@ http://gems.rubyforge.org with https://rubygems.org/
5052
5776
 
5053
5777
  http://gems.rubyforge.org will continue to work for the foreseeable future.
5054
5778
 
5055
- ## Features:
5779
+ ### Features:
5056
5780
 
5057
5781
  * `gem` commands
5058
5782
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -5071,7 +5795,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5071
5795
  in 1.3.6)
5072
5796
  * RubyGems now has platform support for IronRuby. Patch #27951 by Will Green.
5073
5797
 
5074
- ## Bug fixes:
5798
+ ### Bug fixes:
5075
5799
 
5076
5800
  * Require rubygems/custom_require if --disable-gem was set. Bug #27700 by
5077
5801
  Roger Pack.
@@ -5083,9 +5807,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5083
5807
  * Gem::PackageTask depends on the package dir like the other rake package
5084
5808
  tasks so dependencies can be hooked up correctly.
5085
5809
 
5086
- # 1.3.6 / 2010-02-17
5810
+ ## 1.3.6 / 2010-02-17
5087
5811
 
5088
- ## Features:
5812
+ ### Features:
5089
5813
 
5090
5814
  * `gem` commands
5091
5815
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -5097,7 +5821,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5097
5821
  force rebuilding. Patch #25982 by Akinori MUSHA.
5098
5822
  * Capital letters are now allowed in prerelease versions.
5099
5823
 
5100
- ## Bug fixes:
5824
+ ### Bug fixes:
5101
5825
 
5102
5826
  * Development deps are no longer added to rubygems-update gem so older
5103
5827
  versions can update successfully.
@@ -5116,7 +5840,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5116
5840
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
5117
5841
  Patch #27409 by Jakub Šťastný.
5118
5842
 
5119
- ## Deprecations:
5843
+ ### Deprecations:
5120
5844
 
5121
5845
  * lib/rubygems/timer.rb has been removed.
5122
5846
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -5125,23 +5849,23 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5125
5849
  * Gem::manage_gems was removed in 1.3.3.
5126
5850
  * Time::today was removed in 1.3.3.
5127
5851
 
5128
- # 1.3.5 / 2009-07-21
5852
+ ## 1.3.5 / 2009-07-21
5129
5853
 
5130
- ## Bug fixes:
5854
+ ### Bug fixes:
5131
5855
 
5132
5856
  * Fix use of prerelease gems.
5133
5857
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
5134
5858
 
5135
- ## Deprecations:
5859
+ ### Deprecations:
5136
5860
 
5137
5861
  * Bulk index update is no longer supported (the code currently remains, but not
5138
5862
  the tests)
5139
5863
  * Gem::manage_gems was removed in 1.3.3.
5140
5864
  * Time::today was removed in 1.3.3.
5141
5865
 
5142
- # 1.3.4 / 2009-05-03
5866
+ ## 1.3.4 / 2009-05-03
5143
5867
 
5144
- ## Bug fixes:
5868
+ ### Bug fixes:
5145
5869
 
5146
5870
  * Fixed various warnings
5147
5871
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -5152,16 +5876,16 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5152
5876
  drives. Bug #25882 by Lars Christensen
5153
5877
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
5154
5878
 
5155
- ## Deprecations:
5879
+ ### Deprecations:
5156
5880
 
5157
5881
  * Bulk index update is no longer supported (the code currently remains, but not
5158
5882
  the tests)
5159
5883
  * Gem::manage_gems was removed in 1.3.3.
5160
5884
  * Time::today was removed in 1.3.3.
5161
5885
 
5162
- # 1.3.3 / 2009-05-04
5886
+ ## 1.3.3 / 2009-05-04
5163
5887
 
5164
- ## Features:
5888
+ ### Features:
5165
5889
 
5166
5890
  * `gem server` allows port names (from /etc/services) with --port.
5167
5891
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -5171,7 +5895,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5171
5895
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
5172
5896
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
5173
5897
 
5174
- ## Bug fixes:
5898
+ ### Bug fixes:
5175
5899
 
5176
5900
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
5177
5901
  Eisenberg.
@@ -5193,15 +5917,15 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5193
5917
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
5194
5918
  reported by Alf Mikula.
5195
5919
 
5196
- ## Deprecations:
5920
+ ### Deprecations:
5197
5921
 
5198
5922
  * Gem::manage_gems has been removed.
5199
5923
  * Time::today has been removed early. There was no way to make it warn and be
5200
5924
  easy to override with user code.
5201
5925
 
5202
- # 1.3.2 / 2009-04-15
5926
+ ## 1.3.2 / 2009-04-15
5203
5927
 
5204
- ## Features:
5928
+ ### Features:
5205
5929
 
5206
5930
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
5207
5931
  This can be used to add commands (See Gem::CommandManager) or add
@@ -5217,9 +5941,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5217
5941
  * Various improvements to build arguments for installing gems.
5218
5942
  * `gem contents` added --all and --no-prefix.
5219
5943
  * Gem::Specification
5220
- * #validate strips directories and errors on not-files.
5221
- * #description no longer removes newlines.
5222
- * #name must be a String.
5944
+ * `#validate` strips directories and errors on not-files.
5945
+ * `#description` no longer removes newlines.
5946
+ * `#name` must be a String.
5223
5947
  * FIXME and TODO are no longer allowed in various fields.
5224
5948
  * Added support for a license attribute. Feature #11041 (partial).
5225
5949
  * Removed Gem::Specification::list, too much process growth. Bug #23668 by
@@ -5229,7 +5953,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5229
5953
  * Modern indices can now be updated incrementally.
5230
5954
  * Legacy indices can be updated separately from modern.
5231
5955
 
5232
- ## Bug fixes:
5956
+ ### Bug fixes:
5233
5957
 
5234
5958
  * Better gem activation error message. Patch #23082.
5235
5959
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -5255,7 +5979,7 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5255
5979
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
5256
5980
  Windows. Bug #22712.
5257
5981
 
5258
- ## Deprecations:
5982
+ ### Deprecations:
5259
5983
 
5260
5984
  * Gem::manage_gems has been removed.
5261
5985
  * Time::today will be removed in RubyGems 1.4.
@@ -5263,9 +5987,9 @@ http://gems.rubyforge.org will continue to work for the foreseeable future.
5263
5987
  Special thanks to Chad Wooley for backwards compatibility testing and Luis
5264
5988
  Lavena and Daniel Berger for continuing windows support.
5265
5989
 
5266
- # 1.3.1 / 2008-10-28
5990
+ ## 1.3.1 / 2008-10-28
5267
5991
 
5268
- ## Bug fixes:
5992
+ ### Bug fixes:
5269
5993
 
5270
5994
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
5271
5995
  issues related to no uid support under Windows.
@@ -5276,13 +6000,13 @@ Lavena and Daniel Berger for continuing windows support.
5276
6000
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
5277
6001
  * Silence PATH warning.
5278
6002
 
5279
- ## Deprecations:
6003
+ ### Deprecations:
5280
6004
 
5281
6005
  * Gem::manage_gems will be removed on or after March 2009.
5282
6006
 
5283
- # 1.3.0 / 2008-09-25
6007
+ ## 1.3.0 / 2008-09-25
5284
6008
 
5285
- ## Features:
6009
+ ### Features:
5286
6010
 
5287
6011
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
5288
6012
  stdout is not a TTY, except with --both.
@@ -5296,12 +6020,12 @@ Lavena and Daniel Berger for continuing windows support.
5296
6020
  * RubyGems now updates the ri cache when the rdoc gem is installed and
5297
6021
  documentation is generated.
5298
6022
 
5299
- ## Deprecations:
6023
+ ### Deprecations:
5300
6024
 
5301
6025
  * Gem::manage_gems now warns when called. It will be removed on or after March
5302
6026
  2009.
5303
6027
 
5304
- ## Bug fixes:
6028
+ ### Bug fixes:
5305
6029
 
5306
6030
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
5307
6031
  Bug #20775 by Hemant Kumar.
@@ -5325,7 +6049,7 @@ Lavena and Daniel Berger for continuing windows support.
5325
6049
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
5326
6050
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
5327
6051
 
5328
- ## Enhancements:
6052
+ ### Enhancements:
5329
6053
 
5330
6054
  * `gem help install` now describes _version_ argument to executable stubs
5331
6055
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -5351,9 +6075,9 @@ Lavena and Daniel Berger for continuing windows support.
5351
6075
  * test/test_ext_configure_builder.rb
5352
6076
  * Locale-free patch by Yusuke Endoh [ruby-core:17444].
5353
6077
 
5354
- # 1.2.0 / 2008-06-21
6078
+ ## 1.2.0 / 2008-06-21
5355
6079
 
5356
- ## Features:
6080
+ ### Features:
5357
6081
 
5358
6082
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
5359
6083
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -5372,7 +6096,7 @@ Lavena and Daniel Berger for continuing windows support.
5372
6096
  * setup.rb now handles --vendor and --destdir for packagers
5373
6097
  * `gem stale` command that lists gems by last access time
5374
6098
 
5375
- ## Bug fixes:
6099
+ ### Bug fixes:
5376
6100
 
5377
6101
  * File modes from gems are now honored, patch #19737
5378
6102
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -5387,7 +6111,7 @@ Lavena and Daniel Berger for continuing windows support.
5387
6111
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
5388
6112
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
5389
6113
 
5390
- ## Enhancements:
6114
+ ### Enhancements:
5391
6115
 
5392
6116
  * setup.rb
5393
6117
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -5406,9 +6130,9 @@ Lavena and Daniel Berger for continuing windows support.
5406
6130
  * Gem::RemoteFetcher now performs persistent connections for HEAD requests,
5407
6131
  bug #7973
5408
6132
 
5409
- # 1.1.1 / 2008-04-11
6133
+ ## 1.1.1 / 2008-04-11
5410
6134
 
5411
- ## Bug fixes:
6135
+ ### Bug fixes:
5412
6136
 
5413
6137
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
5414
6138
  sitelibdir or libdir.
@@ -5423,9 +6147,9 @@ Lavena and Daniel Berger for continuing windows support.
5423
6147
  * Gem::RemoteFetcher handles Errno::ECONNABORTED.
5424
6148
  * Printing of release notes fixed.
5425
6149
 
5426
- # 1.1.0 / 2008-03-29
6150
+ ## 1.1.0 / 2008-03-29
5427
6151
 
5428
- ## Features:
6152
+ ### Features:
5429
6153
 
5430
6154
  * RubyGems now uses persistent connections on index updates. Index updates are
5431
6155
  much faster now.
@@ -5437,7 +6161,7 @@ Lavena and Daniel Berger for continuing windows support.
5437
6161
  * `gem spec` now extracts specifications from .gem files.
5438
6162
  * `gem query --installed` to aid automation of checking for gems.
5439
6163
 
5440
- ## Bug fixes:
6164
+ ### Bug fixes:
5441
6165
 
5442
6166
  * RubyGems works with both Config and RbConfig now.
5443
6167
  * Executables are now cleaned upon uninstall.
@@ -5453,7 +6177,7 @@ Lavena and Daniel Berger for continuing windows support.
5453
6177
  * Gem stub scripts on windows now work outside Gem.bindir.
5454
6178
  * `gem sources -r` now works without network access.
5455
6179
 
5456
- ## Enhancements:
6180
+ ### Enhancements:
5457
6181
 
5458
6182
  * RubyGems now requires Ruby > 1.8.3.
5459
6183
  * Release notes are now printed upon installation.
@@ -5464,26 +6188,26 @@ Lavena and Daniel Berger for continuing windows support.
5464
6188
 
5465
6189
  For a full list of changes to RubyGems, see the git log.
5466
6190
 
5467
- # 1.0.1 / 2007-12-20
6191
+ ## 1.0.1 / 2007-12-20
5468
6192
 
5469
- ## Bug fixes:
6193
+ ### Bug fixes:
5470
6194
 
5471
6195
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
5472
6196
  * `gem build` on 1.8.3 fixed
5473
6197
 
5474
- ## Enhancements:
6198
+ ### Enhancements:
5475
6199
 
5476
6200
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
5477
6201
  this is official in RubyGems 1.0.1.
5478
6202
 
5479
- # 1.0.0 / 2007-12-20
6203
+ ## 1.0.0 / 2007-12-20
5480
6204
 
5481
- ## Features:
6205
+ ### Features:
5482
6206
 
5483
6207
  * RubyGems warns about various problems with gemspecs during gem building
5484
6208
  * More-consistent versioning for the RubyGems software
5485
6209
 
5486
- ## Enhancements:
6210
+ ### Enhancements:
5487
6211
 
5488
6212
  * Fixed various bugs and problems with installing gems on Windows
5489
6213
  * Fixed using `gem server` for installing gems
@@ -5497,7 +6221,7 @@ For a full list of changes to RubyGems, see the git log.
5497
6221
  * `gem unpack` can now unpack into a specific directory with --target
5498
6222
  * OpenSSL is no longer required by default
5499
6223
 
5500
- ## Breaking changes:
6224
+ ### Breaking changes:
5501
6225
 
5502
6226
  * Kernel#require_gem has been removed
5503
6227
  * Executables without a shebang will not be wrapped in a future version, this
@@ -5509,9 +6233,9 @@ For a full list of changes to RubyGems, see the git log.
5509
6233
  * Gem::Specification#autorequire= has been deprecated
5510
6234
  * Time::today will be removed in a future version
5511
6235
 
5512
- # 0.9.5 / 2007-11-19
6236
+ ## 0.9.5 / 2007-11-19
5513
6237
 
5514
- ## Features:
6238
+ ### Features:
5515
6239
 
5516
6240
  * Platform support
5517
6241
  * Automatic installation of platform gems
@@ -5523,7 +6247,7 @@ For a full list of changes to RubyGems, see the git log.
5523
6247
  * Improved stubs and `gem.bat` on mswin, including better compatibility
5524
6248
  with the One-Click Installer.
5525
6249
 
5526
- ## Enhancements:
6250
+ ### Enhancements:
5527
6251
 
5528
6252
  * Time::today is deprecated and will be removed at a future date
5529
6253
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -5568,13 +6292,13 @@ Special thanks to:
5568
6292
  * Tom Copeland
5569
6293
  * Wilson Bilkovich
5570
6294
 
5571
- # 0.9.4 / 2007-05-23
6295
+ ## 0.9.4 / 2007-05-23
5572
6296
 
5573
6297
  If you are experiencing problems with the source index (e.g. strange
5574
6298
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
5575
6299
  message), we recommend upgrading to RubyGems 0.9.4.
5576
6300
 
5577
- ## Bug fixes:
6301
+ ### Bug fixes:
5578
6302
 
5579
6303
  * Several people have been experiencing problems with no method errors
5580
6304
  on the source index cache. The source index cache is now a bit more
@@ -5586,9 +6310,9 @@ message), we recommend upgrading to RubyGems 0.9.4.
5586
6310
  * Several sub-commands were accidentally dropped from the "gem" command.
5587
6311
  These commands have been restored.
5588
6312
 
5589
- # 0.9.3 / 2007-05-10
6313
+ ## 0.9.3 / 2007-05-10
5590
6314
 
5591
- ## Bug fixes:
6315
+ ### Bug fixes:
5592
6316
 
5593
6317
  The ZLib library on Windows will occasionally complains about a buffer error
5594
6318
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -5596,19 +6320,19 @@ the workaround was only enabled for versions of ZLib 1.2.1 or earlier. We
5596
6320
  have received several reports of the error occurring with ZLib 1.2.3, so we
5597
6321
  have permanently enabled the work around on all versions.
5598
6322
 
5599
- # 0.9.2 / 2007-02-05
6323
+ ## 0.9.2 / 2007-02-05
5600
6324
 
5601
- ## Bug fixes:
6325
+ ### Bug fixes:
5602
6326
 
5603
6327
  * The "unpack" command now works properly.
5604
6328
  * User name and password are now passed properly to the authenticating
5605
6329
  proxy when downloading gems.
5606
6330
 
5607
- # 0.9.1 / 2007-01-16
6331
+ ## 0.9.1 / 2007-01-16
5608
6332
 
5609
6333
  See git log
5610
6334
 
5611
- # 0.9.0 / 2006-06-28
6335
+ ## 0.9.0 / 2006-06-28
5612
6336
 
5613
6337
  Finally, the much anticipated RubyGems version 0.9.0 is now available.
5614
6338
  This release includes a number of new features and bug fixes. The
@@ -5616,7 +6340,7 @@ number one change is that we can now download the gem index
5616
6340
  incrementally. This will greatly speed up the gem command when only a
5617
6341
  few gems are out of date.
5618
6342
 
5619
- ## Enhancements:
6343
+ ### Enhancements:
5620
6344
 
5621
6345
  * The gem index is now downloaded incrementally, only updating entries
5622
6346
  that are out of date. If more than 50 entries are out of date, we
@@ -5643,7 +6367,7 @@ few gems are out of date.
5643
6367
  * .rbw is now a supported suffix for RubyGem's custom require.
5644
6368
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
5645
6369
 
5646
- ## Bug fixes:
6370
+ ### Bug fixes:
5647
6371
 
5648
6372
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
5649
6373
  cross-Ruby version compatibility issues.
@@ -5655,7 +6379,7 @@ few gems are out of date.
5655
6379
  * Fixed prefix handling for native expressions (patch by Aaron Patterson).
5656
6380
  * Fixed several Upgrade => Update typos.
5657
6381
 
5658
- # 0.8.11 / 2005-07-13
6382
+ ## 0.8.11 / 2005-07-13
5659
6383
 
5660
6384
  * -y is a synonym for --include-dependencies.
5661
6385
  * Better handling of errors in the top level rescue clause.
@@ -5674,7 +6398,7 @@ few gems are out of date.
5674
6398
  * Added David Glasser's install-from-mirror patch.
5675
6399
  * Additional internal structural cleanup and test reorganization.
5676
6400
 
5677
- # 0.8.10 / 2005-03-27
6401
+ ## 0.8.10 / 2005-03-27
5678
6402
 
5679
6403
  * In multi-user environments, it is common to supply multiple versions of gems
5680
6404
  (for example Rails), allowing individual users to select the version of the
@@ -5685,16 +6409,16 @@ few gems are out of date.
5685
6409
  installed, then the "gem update --system" command will download a new
5686
6410
  update, but install the latest update prior to the download.
5687
6411
 
5688
- # 0.8.9
6412
+ ## 0.8.9
5689
6413
 
5690
6414
  Never released
5691
6415
 
5692
- # 0.8.8 / 2005-03-14
6416
+ ## 0.8.8 / 2005-03-14
5693
6417
 
5694
6418
  * Moved the master definition of class Requirement back under version.
5695
6419
  Kept the body of Requirement under Gem.
5696
6420
 
5697
- # 0.8.7 / 2005-03-14
6421
+ ## 0.8.7 / 2005-03-14
5698
6422
 
5699
6423
  Even though it has only been a few weeks since that last release,
5700
6424
  there are quite a number of new features in 0.8.7. A complete list of
@@ -5747,11 +6471,11 @@ file system. You can read more about them here:
5747
6471
  * gemconfigure: http://docs.rubygems.org/read/chapter/4#page73
5748
6472
  * gemwhich: http://docs.rubygems.org/read/chapter/17
5749
6473
 
5750
- # 0.8.6 / 2005-02-27
6474
+ ## 0.8.6 / 2005-02-27
5751
6475
 
5752
6476
  * Fixed a small bug with shebang construction
5753
6477
 
5754
- # 0.8.5 / 2005-02-26
6478
+ ## 0.8.5 / 2005-02-26
5755
6479
 
5756
6480
  Do you know how you used to dread getting the following message while
5757
6481
  installing gems?
@@ -5773,7 +6497,7 @@ us. No RDoc generation was included in the following times.
5773
6497
  The new caching code is at least 3x faster than previous versions. Woo
5774
6498
  Hoo!
5775
6499
 
5776
- # 0.8.4 / 2005-01-01
6500
+ ## 0.8.4 / 2005-01-01
5777
6501
 
5778
6502
  * Rubygems 0.8.3's installer was broken unless you already had an older
5779
6503
  version of RubyGems installed. That's fixed.
@@ -5783,7 +6507,7 @@ Hoo!
5783
6507
  * Support for lower-cased Gem file names (for you, Paul Duncan :)
5784
6508
  * Erik Veenstra's patch for making Gem versions sortable.
5785
6509
 
5786
- # 0.8.3 / 2004-12-07
6510
+ ## 0.8.3 / 2004-12-07
5787
6511
 
5788
6512
  No real earth shattering news here, but there were a number of really
5789
6513
  annoying issues involving other libraries that RubyGems depends upon.
@@ -5806,7 +6530,7 @@ There has been some minor usability enhancements and changes ...
5806
6530
  This *greatly* speeds up gem commands run in non-admin mode when the
5807
6531
  site-wide cache is out of date.
5808
6532
  * The gem command now used an HTTP HEAD command to detect if the
5809
- server's source index needs to be downloaed.
6533
+ server's source index needs to be downloaded.
5810
6534
  * gem check gemname --test will run unit tests on installed gems that
5811
6535
  have unit tests.
5812
6536
  * Multiple gem names are allowed on the gem install command line.
@@ -5825,11 +6549,11 @@ There has been some minor usability enhancements and changes ...
5825
6549
  names. This was useful for him while testing libs that he had in
5826
6550
  development.
5827
6551
 
5828
- # 0.8.1 / 2004-09-17
6552
+ ## 0.8.1 / 2004-09-17
5829
6553
 
5830
6554
  * Quick release to capture some bug fixes.
5831
6555
 
5832
- # 0.8.0 / 2004-09-15
6556
+ ## 0.8.0 / 2004-09-15
5833
6557
 
5834
6558
  * Remove need for library stubs. Set the RUBYOPT environment variable to
5835
6559
  include "rrubygems", and a normal require will find gem files. Continue to
@@ -5852,15 +6576,15 @@ There has been some minor usability enhancements and changes ...
5852
6576
  to pick.
5853
6577
  * Added "gem unpack" for "unpacking" a gem to the current directory
5854
6578
 
5855
- # 0.7.0 / 2004-07-09
6579
+ ## 0.7.0 / 2004-07-09
5856
6580
 
5857
6581
  See git log
5858
6582
 
5859
- # 0.6.1 / 2004-06-08
6583
+ ## 0.6.1 / 2004-06-08
5860
6584
 
5861
6585
  See git log
5862
6586
 
5863
- # 0.6.0 / 2004-06-08
6587
+ ## 0.6.0 / 2004-06-08
5864
6588
 
5865
6589
  * Collapse output of --search and --list (and gem_server) operations so that
5866
6590
  each gem is listed only once, with each of its versions listed on the same
@@ -5873,7 +6597,7 @@ See git log
5873
6597
  spec.required_ruby_version = "> 1.8.0"
5874
6598
  * --install-stub defaults to true, so library stubs are created
5875
6599
 
5876
- # 0.5.0 / 2004-06-06
6600
+ ## 0.5.0 / 2004-06-06
5877
6601
 
5878
6602
  * Jim added the ability to specify version constraints to avoid API
5879
6603
  incompatibilities. This has been the subject of much debate for the past
@@ -5896,11 +6620,11 @@ See git log
5896
6620
  automatically included.
5897
6621
  * Some small bug fixes
5898
6622
 
5899
- # 0.4.0 / 2004-05-30
6623
+ ## 0.4.0 / 2004-05-30
5900
6624
 
5901
6625
  * Minor bug fixes including Windows compatibility issues
5902
6626
 
5903
- # 0.3.0 / 2004-04-30
6627
+ ## 0.3.0 / 2004-04-30
5904
6628
 
5905
6629
  * Cleanup of command-line arguments and handling. Most commands accept a
5906
6630
  --local or --remote modifier.
@@ -5921,6 +6645,6 @@ See git log
5921
6645
  * Generally improved error messages (still more work to do)
5922
6646
  * Rearranged gem directory structure for cleanliness.
5923
6647
 
5924
- # 0.2.0 / 2004-03-14
6648
+ ## 0.2.0 / 2004-03-14
5925
6649
 
5926
6650
  * Initial public release