rubygems-update 3.3.18 → 3.4.19

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