rubygems-update 3.1.2 → 3.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (560) hide show
  1. checksums.yaml +4 -4
  2. data/CODE_OF_CONDUCT.md +55 -19
  3. data/CONTRIBUTING.md +25 -11
  4. data/History.txt +460 -232
  5. data/Manifest.txt +47 -77
  6. data/POLICIES.md +6 -12
  7. data/README.md +5 -5
  8. data/Rakefile +59 -83
  9. data/bin/update_rubygems +1 -1
  10. data/bundler/CHANGELOG.md +1598 -1421
  11. data/bundler/README.md +6 -8
  12. data/bundler/UPGRADING.md +18 -32
  13. data/bundler/bundler.gemspec +3 -3
  14. data/bundler/exe/bundle +3 -0
  15. data/bundler/lib/bundler.rb +32 -7
  16. data/bundler/lib/bundler/build_metadata.rb +4 -12
  17. data/bundler/lib/bundler/cli.rb +58 -21
  18. data/bundler/lib/bundler/cli/add.rb +1 -1
  19. data/bundler/lib/bundler/cli/binstubs.rb +6 -2
  20. data/bundler/lib/bundler/cli/cache.rb +1 -7
  21. data/bundler/lib/bundler/cli/clean.rb +1 -1
  22. data/bundler/lib/bundler/cli/common.rb +14 -0
  23. data/bundler/lib/bundler/cli/console.rb +1 -1
  24. data/bundler/lib/bundler/cli/doctor.rb +1 -1
  25. data/bundler/lib/bundler/cli/exec.rb +4 -4
  26. data/bundler/lib/bundler/cli/fund.rb +36 -0
  27. data/bundler/lib/bundler/cli/gem.rb +84 -11
  28. data/bundler/lib/bundler/cli/info.rb +15 -4
  29. data/bundler/lib/bundler/cli/init.rb +2 -2
  30. data/bundler/lib/bundler/cli/inject.rb +1 -1
  31. data/bundler/lib/bundler/cli/install.rb +16 -13
  32. data/bundler/lib/bundler/cli/issue.rb +2 -2
  33. data/bundler/lib/bundler/cli/list.rb +12 -10
  34. data/bundler/lib/bundler/cli/outdated.rb +87 -66
  35. data/bundler/lib/bundler/cli/plugin.rb +10 -0
  36. data/bundler/lib/bundler/cli/pristine.rb +5 -0
  37. data/bundler/lib/bundler/cli/show.rb +1 -1
  38. data/bundler/lib/bundler/cli/update.rb +3 -1
  39. data/bundler/lib/bundler/compact_index_client.rb +1 -1
  40. data/bundler/lib/bundler/compact_index_client/cache.rb +6 -14
  41. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  42. data/bundler/lib/bundler/compact_index_client/updater.rb +5 -5
  43. data/bundler/lib/bundler/definition.rb +65 -76
  44. data/bundler/lib/bundler/dep_proxy.rb +1 -1
  45. data/bundler/lib/bundler/dependency.rb +3 -10
  46. data/bundler/lib/bundler/dsl.rb +5 -9
  47. data/bundler/lib/bundler/endpoint_specification.rb +1 -1
  48. data/bundler/lib/bundler/env.rb +1 -1
  49. data/bundler/lib/bundler/environment_preserver.rb +26 -2
  50. data/bundler/lib/bundler/errors.rb +1 -0
  51. data/bundler/lib/bundler/feature_flag.rb +0 -3
  52. data/bundler/lib/bundler/fetcher.rb +4 -3
  53. data/bundler/lib/bundler/fetcher/base.rb +1 -1
  54. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  55. data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
  56. data/bundler/lib/bundler/fetcher/index.rb +3 -4
  57. data/bundler/lib/bundler/friendly_errors.rb +22 -13
  58. data/bundler/lib/bundler/gem_helper.rb +33 -19
  59. data/bundler/lib/bundler/gem_helpers.rb +36 -25
  60. data/bundler/lib/bundler/gem_version_promoter.rb +2 -2
  61. data/bundler/lib/bundler/graph.rb +1 -1
  62. data/bundler/lib/bundler/index.rb +6 -2
  63. data/bundler/lib/bundler/injector.rb +22 -4
  64. data/bundler/lib/bundler/inline.rb +2 -2
  65. data/bundler/lib/bundler/installer.rb +35 -32
  66. data/bundler/lib/bundler/installer/gem_installer.rb +3 -3
  67. data/bundler/lib/bundler/installer/parallel_installer.rb +10 -10
  68. data/bundler/lib/bundler/installer/standalone.rb +2 -2
  69. data/bundler/lib/bundler/lazy_specification.rb +35 -11
  70. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  71. data/bundler/lib/bundler/lockfile_parser.rb +1 -1
  72. data/bundler/lib/bundler/man/.document +1 -0
  73. data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +0 -0
  74. data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +2 -4
  75. data/bundler/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +0 -0
  76. data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
  77. data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
  78. data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +19 -30
  79. data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
  80. data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +0 -0
  81. data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +30 -7
  82. data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
  83. data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
  84. data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
  85. data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +25 -3
  86. data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +6 -6
  87. data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
  88. data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
  89. data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
  90. data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
  91. data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
  92. data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
  93. data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
  94. data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +0 -0
  95. data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
  96. data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +0 -0
  97. data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +4 -4
  98. data/bundler/lib/bundler/mirror.rb +2 -2
  99. data/bundler/lib/bundler/plugin.rb +30 -5
  100. data/bundler/lib/bundler/plugin/api/source.rb +1 -1
  101. data/bundler/lib/bundler/plugin/dsl.rb +1 -1
  102. data/bundler/lib/bundler/plugin/index.rb +10 -1
  103. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  104. data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
  105. data/bundler/lib/bundler/plugin/source_list.rb +1 -1
  106. data/bundler/lib/bundler/psyched_yaml.rb +0 -15
  107. data/bundler/lib/bundler/remote_specification.rb +5 -2
  108. data/bundler/lib/bundler/resolver.rb +37 -18
  109. data/bundler/lib/bundler/resolver/spec_group.rb +36 -21
  110. data/bundler/lib/bundler/retry.rb +1 -1
  111. data/bundler/lib/bundler/ruby_version.rb +1 -1
  112. data/bundler/lib/bundler/rubygems_ext.rb +53 -9
  113. data/bundler/lib/bundler/rubygems_gem_installer.rb +3 -9
  114. data/bundler/lib/bundler/rubygems_integration.rb +26 -61
  115. data/bundler/lib/bundler/runtime.rb +4 -14
  116. data/bundler/lib/bundler/settings.rb +49 -46
  117. data/bundler/lib/bundler/shared_helpers.rb +2 -2
  118. data/bundler/lib/bundler/similarity_detector.rb +1 -1
  119. data/bundler/lib/bundler/source.rb +1 -1
  120. data/bundler/lib/bundler/source/git.rb +5 -5
  121. data/bundler/lib/bundler/source/git/git_proxy.rb +57 -60
  122. data/bundler/lib/bundler/source/path.rb +7 -3
  123. data/bundler/lib/bundler/source/path/installer.rb +8 -10
  124. data/bundler/lib/bundler/source/rubygems.rb +13 -16
  125. data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
  126. data/bundler/lib/bundler/source_list.rb +2 -2
  127. data/bundler/lib/bundler/spec_set.rb +7 -9
  128. data/bundler/lib/bundler/stub_specification.rb +17 -7
  129. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  130. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  131. data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -2
  132. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  133. data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -0
  134. data/bundler/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  135. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  136. data/bundler/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  137. data/bundler/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  138. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +4 -2
  139. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  140. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +14 -6
  141. data/bundler/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  142. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  143. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -1
  144. data/bundler/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  145. data/bundler/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  146. data/bundler/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  147. data/bundler/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  148. data/bundler/lib/bundler/ui/shell.rb +5 -5
  149. data/bundler/lib/bundler/uri_credentials_filter.rb +3 -1
  150. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
  151. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -1
  152. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  153. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  154. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  155. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +38 -40
  156. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +79 -208
  157. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  158. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  159. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  160. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  161. data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
  162. data/bundler/lib/bundler/vendored_persistent.rb +0 -7
  163. data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
  164. data/bundler/lib/bundler/version.rb +1 -1
  165. data/bundler/lib/bundler/worker.rb +1 -1
  166. data/bundler/lib/bundler/yaml_serializer.rb +1 -1
  167. data/bundler/man/bundle-add.1 +1 -1
  168. data/bundler/man/bundle-binstubs.1 +5 -3
  169. data/bundler/man/bundle-cache.1 +1 -1
  170. data/bundler/man/bundle-check.1 +1 -1
  171. data/bundler/man/bundle-clean.1 +1 -1
  172. data/bundler/man/bundle-config.1 +16 -25
  173. data/bundler/man/bundle-doctor.1 +1 -1
  174. data/bundler/man/bundle-exec.1 +1 -1
  175. data/bundler/man/bundle-gem.1 +25 -3
  176. data/bundler/man/bundle-info.1 +1 -1
  177. data/bundler/man/bundle-init.1 +1 -1
  178. data/bundler/man/bundle-inject.1 +1 -1
  179. data/bundler/man/bundle-install.1 +30 -3
  180. data/bundler/man/bundle-list.1 +7 -7
  181. data/bundler/man/bundle-lock.1 +1 -1
  182. data/bundler/man/bundle-open.1 +1 -1
  183. data/bundler/man/bundle-outdated.1 +1 -1
  184. data/bundler/man/bundle-platform.1 +1 -1
  185. data/bundler/man/bundle-pristine.1 +1 -1
  186. data/bundler/man/bundle-remove.1 +1 -1
  187. data/bundler/man/bundle-show.1 +1 -1
  188. data/bundler/man/bundle-update.1 +1 -1
  189. data/bundler/man/bundle-viz.1 +1 -1
  190. data/bundler/man/bundle.1 +1 -1
  191. data/bundler/man/gemfile.5 +4 -4
  192. data/lib/rubygems.rb +138 -187
  193. data/lib/rubygems/available_set.rb +4 -6
  194. data/lib/rubygems/basic_specification.rb +12 -10
  195. data/lib/rubygems/bundler_version_finder.rb +14 -9
  196. data/lib/rubygems/command.rb +17 -17
  197. data/lib/rubygems/command_manager.rb +5 -6
  198. data/lib/rubygems/commands/build_command.rb +40 -20
  199. data/lib/rubygems/commands/cert_command.rb +2 -10
  200. data/lib/rubygems/commands/check_command.rb +0 -2
  201. data/lib/rubygems/commands/cleanup_command.rb +11 -7
  202. data/lib/rubygems/commands/contents_command.rb +4 -6
  203. data/lib/rubygems/commands/dependency_command.rb +6 -8
  204. data/lib/rubygems/commands/environment_command.rb +1 -3
  205. data/lib/rubygems/commands/fetch_command.rb +2 -4
  206. data/lib/rubygems/commands/generate_index_command.rb +0 -2
  207. data/lib/rubygems/commands/help_command.rb +4 -4
  208. data/lib/rubygems/commands/info_command.rb +8 -5
  209. data/lib/rubygems/commands/install_command.rb +3 -5
  210. data/lib/rubygems/commands/list_command.rb +8 -7
  211. data/lib/rubygems/commands/lock_command.rb +1 -3
  212. data/lib/rubygems/commands/mirror_command.rb +0 -2
  213. data/lib/rubygems/commands/open_command.rb +0 -4
  214. data/lib/rubygems/commands/outdated_command.rb +0 -2
  215. data/lib/rubygems/commands/owner_command.rb +9 -4
  216. data/lib/rubygems/commands/pristine_command.rb +11 -5
  217. data/lib/rubygems/commands/push_command.rb +10 -47
  218. data/lib/rubygems/commands/query_command.rb +14 -344
  219. data/lib/rubygems/commands/rdoc_command.rb +0 -2
  220. data/lib/rubygems/commands/search_command.rb +7 -7
  221. data/lib/rubygems/commands/server_command.rb +3 -1
  222. data/lib/rubygems/commands/setup_command.rb +131 -58
  223. data/lib/rubygems/commands/signin_command.rb +0 -2
  224. data/lib/rubygems/commands/signout_command.rb +0 -2
  225. data/lib/rubygems/commands/sources_command.rb +9 -7
  226. data/lib/rubygems/commands/specification_command.rb +8 -4
  227. data/lib/rubygems/commands/stale_command.rb +1 -3
  228. data/lib/rubygems/commands/uninstall_command.rb +2 -4
  229. data/lib/rubygems/commands/unpack_command.rb +1 -3
  230. data/lib/rubygems/commands/update_command.rb +59 -14
  231. data/lib/rubygems/commands/which_command.rb +0 -2
  232. data/lib/rubygems/commands/yank_command.rb +4 -7
  233. data/lib/rubygems/config_file.rb +11 -4
  234. data/lib/rubygems/core_ext/kernel_require.rb +29 -36
  235. data/lib/rubygems/core_ext/kernel_warn.rb +12 -13
  236. data/lib/rubygems/defaults.rb +101 -7
  237. data/lib/rubygems/dependency.rb +3 -8
  238. data/lib/rubygems/dependency_installer.rb +6 -78
  239. data/lib/rubygems/dependency_list.rb +7 -9
  240. data/lib/rubygems/deprecate.rb +46 -1
  241. data/lib/rubygems/doctor.rb +4 -4
  242. data/lib/rubygems/errors.rb +3 -14
  243. data/lib/rubygems/exceptions.rb +2 -33
  244. data/lib/rubygems/ext.rb +6 -6
  245. data/lib/rubygems/ext/build_error.rb +2 -0
  246. data/lib/rubygems/ext/builder.rb +16 -35
  247. data/lib/rubygems/ext/cmake_builder.rb +5 -7
  248. data/lib/rubygems/ext/configure_builder.rb +4 -6
  249. data/lib/rubygems/ext/ext_conf_builder.rb +21 -19
  250. data/lib/rubygems/ext/rake_builder.rb +4 -6
  251. data/lib/rubygems/gem_runner.rb +3 -10
  252. data/lib/rubygems/gemcutter_utilities.rb +102 -21
  253. data/lib/rubygems/indexer.rb +1 -22
  254. data/lib/rubygems/install_update_options.rb +7 -7
  255. data/lib/rubygems/installer.rb +59 -80
  256. data/lib/rubygems/installer_test_case.rb +25 -11
  257. data/lib/rubygems/installer_uninstaller_utils.rb +24 -0
  258. data/lib/rubygems/local_remote_options.rb +1 -1
  259. data/lib/rubygems/mock_gem_ui.rb +0 -6
  260. data/lib/rubygems/name_tuple.rb +3 -7
  261. data/lib/rubygems/openssl.rb +7 -0
  262. data/lib/rubygems/package.rb +14 -25
  263. data/lib/rubygems/package/digest_io.rb +0 -2
  264. data/lib/rubygems/package/file_source.rb +0 -2
  265. data/lib/rubygems/package/io_source.rb +0 -2
  266. data/lib/rubygems/package/old.rb +1 -3
  267. data/lib/rubygems/package/tar_header.rb +4 -6
  268. data/lib/rubygems/package/tar_reader.rb +0 -3
  269. data/lib/rubygems/package/tar_reader/entry.rb +0 -3
  270. data/lib/rubygems/package/tar_test_case.rb +2 -4
  271. data/lib/rubygems/package/tar_writer.rb +2 -12
  272. data/lib/rubygems/package_task.rb +1 -7
  273. data/lib/rubygems/path_support.rb +1 -3
  274. data/lib/rubygems/platform.rb +21 -12
  275. data/lib/rubygems/psych_tree.rb +0 -2
  276. data/lib/rubygems/query_utils.rb +353 -0
  277. data/lib/rubygems/rdoc.rb +0 -12
  278. data/lib/rubygems/remote_fetcher.rb +11 -28
  279. data/lib/rubygems/request.rb +4 -11
  280. data/lib/rubygems/request/connection_pools.rb +1 -5
  281. data/lib/rubygems/request/http_pool.rb +0 -2
  282. data/lib/rubygems/request/https_pool.rb +0 -2
  283. data/lib/rubygems/request_set.rb +7 -20
  284. data/lib/rubygems/request_set/gem_dependency_api.rb +6 -8
  285. data/lib/rubygems/request_set/lockfile.rb +8 -12
  286. data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
  287. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -3
  288. data/lib/rubygems/requirement.rb +20 -21
  289. data/lib/rubygems/resolver.rb +14 -12
  290. data/lib/rubygems/resolver/activation_request.rb +9 -3
  291. data/lib/rubygems/resolver/api_set.rb +31 -24
  292. data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
  293. data/lib/rubygems/resolver/api_specification.rb +24 -10
  294. data/lib/rubygems/resolver/best_set.rb +1 -3
  295. data/lib/rubygems/resolver/composed_set.rb +3 -5
  296. data/lib/rubygems/resolver/conflict.rb +2 -4
  297. data/lib/rubygems/resolver/current_set.rb +0 -2
  298. data/lib/rubygems/resolver/dependency_request.rb +1 -3
  299. data/lib/rubygems/resolver/git_set.rb +0 -2
  300. data/lib/rubygems/resolver/git_specification.rb +0 -2
  301. data/lib/rubygems/resolver/index_set.rb +1 -3
  302. data/lib/rubygems/resolver/index_specification.rb +26 -2
  303. data/lib/rubygems/resolver/installed_specification.rb +0 -2
  304. data/lib/rubygems/resolver/installer_set.rb +60 -13
  305. data/lib/rubygems/resolver/local_specification.rb +0 -2
  306. data/lib/rubygems/resolver/lock_set.rb +2 -4
  307. data/lib/rubygems/resolver/lock_specification.rb +0 -2
  308. data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
  309. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
  310. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
  311. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +39 -5
  312. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
  313. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
  314. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
  315. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
  316. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
  317. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
  318. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
  319. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
  320. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +43 -10
  321. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +75 -7
  322. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
  323. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +1 -0
  324. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
  325. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +506 -165
  326. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
  327. data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
  328. data/lib/rubygems/resolver/requirement_list.rb +0 -2
  329. data/lib/rubygems/resolver/set.rb +0 -2
  330. data/lib/rubygems/resolver/source_set.rb +0 -2
  331. data/lib/rubygems/resolver/spec_specification.rb +14 -2
  332. data/lib/rubygems/resolver/specification.rb +13 -3
  333. data/lib/rubygems/resolver/stats.rb +0 -2
  334. data/lib/rubygems/resolver/vendor_set.rb +0 -2
  335. data/lib/rubygems/resolver/vendor_specification.rb +0 -2
  336. data/lib/rubygems/s3_uri_signer.rb +2 -8
  337. data/lib/rubygems/safe_yaml.rb +4 -4
  338. data/lib/rubygems/security.rb +27 -34
  339. data/lib/rubygems/security/policy.rb +4 -8
  340. data/lib/rubygems/security/signer.rb +5 -7
  341. data/lib/rubygems/security/trust_dir.rb +1 -3
  342. data/lib/rubygems/server.rb +16 -13
  343. data/lib/rubygems/source.rb +23 -12
  344. data/lib/rubygems/source/git.rb +7 -8
  345. data/lib/rubygems/source/installed.rb +0 -2
  346. data/lib/rubygems/source/local.rb +2 -4
  347. data/lib/rubygems/source/lock.rb +0 -2
  348. data/lib/rubygems/source/specific_file.rb +0 -2
  349. data/lib/rubygems/source/vendor.rb +0 -2
  350. data/lib/rubygems/source_list.rb +4 -7
  351. data/lib/rubygems/spec_fetcher.rb +19 -18
  352. data/lib/rubygems/specification.rb +113 -126
  353. data/lib/rubygems/specification_policy.rb +88 -30
  354. data/lib/rubygems/ssl_certs/{index.rubygems.org → rubygems.org}/GlobalSignRootCA.pem +0 -0
  355. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
  356. data/lib/rubygems/stub_specification.rb +1 -5
  357. data/lib/rubygems/syck_hack.rb +0 -2
  358. data/lib/rubygems/test_case.rb +105 -132
  359. data/lib/rubygems/test_utilities.rb +12 -19
  360. data/lib/rubygems/uninstaller.rb +35 -16
  361. data/lib/rubygems/uri_formatter.rb +2 -3
  362. data/lib/rubygems/uri_parser.rb +0 -2
  363. data/lib/rubygems/user_interaction.rb +1 -26
  364. data/lib/rubygems/util.rb +15 -3
  365. data/lib/rubygems/util/licenses.rb +4 -6
  366. data/lib/rubygems/util/list.rb +0 -2
  367. data/lib/rubygems/validator.rb +1 -3
  368. data/lib/rubygems/version.rb +5 -7
  369. data/lib/rubygems/version_option.rb +6 -0
  370. data/rubygems-update.gemspec +2 -2
  371. data/setup.rb +2 -7
  372. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
  373. data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
  374. data/test/rubygems/rubygems_plugin.rb +0 -2
  375. data/test/rubygems/specifications/bar-0.0.2.gemspec +0 -2
  376. data/test/rubygems/specifications/rubyforge-0.0.1.gemspec +12 -0
  377. data/test/rubygems/test_bundled_ca.rb +42 -45
  378. data/test/rubygems/test_config.rb +0 -2
  379. data/test/rubygems/test_deprecate.rb +40 -7
  380. data/test/rubygems/test_gem.rb +151 -99
  381. data/test/rubygems/test_gem_available_set.rb +3 -5
  382. data/test/rubygems/test_gem_bundler_version_finder.rb +19 -3
  383. data/test/rubygems/test_gem_command.rb +24 -7
  384. data/test/rubygems/test_gem_command_manager.rb +36 -5
  385. data/test/rubygems/test_gem_commands_build_command.rb +250 -15
  386. data/test/rubygems/test_gem_commands_cert_command.rb +4 -6
  387. data/test/rubygems/test_gem_commands_check_command.rb +0 -2
  388. data/test/rubygems/test_gem_commands_cleanup_command.rb +14 -5
  389. data/test/rubygems/test_gem_commands_contents_command.rb +50 -19
  390. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
  391. data/test/rubygems/test_gem_commands_environment_command.rb +21 -23
  392. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
  393. data/test/rubygems/test_gem_commands_generate_index_command.rb +1 -7
  394. data/test/rubygems/test_gem_commands_help_command.rb +15 -4
  395. data/test/rubygems/test_gem_commands_info_command.rb +6 -8
  396. data/test/rubygems/test_gem_commands_install_command.rb +163 -34
  397. data/test/rubygems/test_gem_commands_list_command.rb +0 -2
  398. data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
  399. data/test/rubygems/test_gem_commands_mirror.rb +1 -3
  400. data/test/rubygems/test_gem_commands_open_command.rb +4 -6
  401. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
  402. data/test/rubygems/test_gem_commands_owner_command.rb +59 -5
  403. data/test/rubygems/test_gem_commands_pristine_command.rb +43 -12
  404. data/test/rubygems/test_gem_commands_push_command.rb +77 -9
  405. data/test/rubygems/test_gem_commands_query_command.rb +12 -12
  406. data/test/rubygems/test_gem_commands_search_command.rb +0 -2
  407. data/test/rubygems/test_gem_commands_server_command.rb +0 -2
  408. data/test/rubygems/test_gem_commands_setup_command.rb +165 -124
  409. data/test/rubygems/test_gem_commands_signin_command.rb +33 -9
  410. data/test/rubygems/test_gem_commands_signout_command.rb +0 -7
  411. data/test/rubygems/test_gem_commands_sources_command.rb +99 -3
  412. data/test/rubygems/test_gem_commands_specification_command.rb +46 -20
  413. data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
  414. data/test/rubygems/test_gem_commands_uninstall_command.rb +2 -3
  415. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
  416. data/test/rubygems/test_gem_commands_update_command.rb +116 -7
  417. data/test/rubygems/test_gem_commands_which_command.rb +3 -5
  418. data/test/rubygems/test_gem_commands_yank_command.rb +44 -8
  419. data/test/rubygems/test_gem_config_file.rb +7 -12
  420. data/test/rubygems/test_gem_dependency.rb +0 -2
  421. data/test/rubygems/test_gem_dependency_installer.rb +90 -193
  422. data/test/rubygems/test_gem_dependency_list.rb +10 -12
  423. data/test/rubygems/test_gem_dependency_resolution_error.rb +1 -3
  424. data/test/rubygems/test_gem_doctor.rb +28 -2
  425. data/test/rubygems/test_gem_ext_builder.rb +26 -47
  426. data/test/rubygems/test_gem_ext_cmake_builder.rb +16 -23
  427. data/test/rubygems/test_gem_ext_configure_builder.rb +4 -20
  428. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +9 -29
  429. data/test/rubygems/test_gem_ext_rake_builder.rb +39 -24
  430. data/test/rubygems/test_gem_gem_runner.rb +44 -1
  431. data/test/rubygems/test_gem_gemcutter_utilities.rb +8 -5
  432. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
  433. data/test/rubygems/test_gem_indexer.rb +9 -15
  434. data/test/rubygems/test_gem_install_update_options.rb +14 -4
  435. data/test/rubygems/test_gem_installer.rb +258 -115
  436. data/test/rubygems/test_gem_local_remote_options.rb +0 -2
  437. data/test/rubygems/test_gem_name_tuple.rb +0 -2
  438. data/test/rubygems/test_gem_package.rb +41 -39
  439. data/test/rubygems/test_gem_package_old.rb +4 -6
  440. data/test/rubygems/test_gem_package_tar_header.rb +18 -1
  441. data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
  442. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
  443. data/test/rubygems/test_gem_package_tar_writer.rb +9 -6
  444. data/test/rubygems/test_gem_package_task.rb +46 -13
  445. data/test/rubygems/test_gem_path_support.rb +0 -2
  446. data/test/rubygems/test_gem_platform.rb +63 -6
  447. data/test/rubygems/test_gem_rdoc.rb +0 -2
  448. data/test/rubygems/test_gem_remote_fetcher.rb +168 -211
  449. data/test/rubygems/test_gem_request.rb +13 -17
  450. data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
  451. data/test/rubygems/test_gem_request_set.rb +72 -22
  452. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -5
  453. data/test/rubygems/test_gem_request_set_lockfile.rb +4 -6
  454. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +9 -11
  455. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +118 -120
  456. data/test/rubygems/test_gem_requirement.rb +10 -4
  457. data/test/rubygems/test_gem_resolver.rb +6 -8
  458. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
  459. data/test/rubygems/test_gem_resolver_api_set.rb +60 -59
  460. data/test/rubygems/test_gem_resolver_api_specification.rb +3 -5
  461. data/test/rubygems/test_gem_resolver_best_set.rb +5 -7
  462. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
  463. data/test/rubygems/test_gem_resolver_conflict.rb +1 -3
  464. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
  465. data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
  466. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
  467. data/test/rubygems/test_gem_resolver_index_set.rb +2 -4
  468. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
  469. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
  470. data/test/rubygems/test_gem_resolver_installer_set.rb +7 -9
  471. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
  472. data/test/rubygems/test_gem_resolver_lock_set.rb +3 -5
  473. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
  474. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
  475. data/test/rubygems/test_gem_resolver_specification.rb +0 -4
  476. data/test/rubygems/test_gem_resolver_vendor_set.rb +1 -3
  477. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
  478. data/test/rubygems/test_gem_security.rb +22 -24
  479. data/test/rubygems/test_gem_security_policy.rb +7 -12
  480. data/test/rubygems/test_gem_security_signer.rb +10 -12
  481. data/test/rubygems/test_gem_security_trust_dir.rb +4 -6
  482. data/test/rubygems/test_gem_server.rb +10 -14
  483. data/test/rubygems/test_gem_silent_ui.rb +0 -2
  484. data/test/rubygems/test_gem_source.rb +19 -18
  485. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
  486. data/test/rubygems/test_gem_source_git.rb +12 -13
  487. data/test/rubygems/test_gem_source_installed.rb +7 -9
  488. data/test/rubygems/test_gem_source_list.rb +1 -2
  489. data/test/rubygems/test_gem_source_local.rb +8 -10
  490. data/test/rubygems/test_gem_source_lock.rb +10 -12
  491. data/test/rubygems/test_gem_source_specific_file.rb +7 -9
  492. data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
  493. data/test/rubygems/test_gem_source_vendor.rb +7 -9
  494. data/test/rubygems/test_gem_spec_fetcher.rb +11 -4
  495. data/test/rubygems/test_gem_specification.rb +182 -131
  496. data/test/rubygems/test_gem_stream_ui.rb +3 -3
  497. data/test/rubygems/test_gem_stub_specification.rb +4 -7
  498. data/test/rubygems/test_gem_text.rb +1 -3
  499. data/test/rubygems/test_gem_uninstaller.rb +134 -12
  500. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
  501. data/test/rubygems/test_gem_uri_formatter.rb +0 -2
  502. data/test/rubygems/test_gem_util.rb +7 -7
  503. data/test/rubygems/test_gem_validator.rb +1 -3
  504. data/test/rubygems/test_gem_version.rb +1 -3
  505. data/test/rubygems/test_gem_version_option.rb +1 -3
  506. data/test/rubygems/test_kernel.rb +25 -10
  507. data/test/rubygems/test_project_sanity.rb +7 -2
  508. data/test/rubygems/test_remote_fetch_error.rb +0 -2
  509. data/test/rubygems/test_require.rb +291 -56
  510. data/test/test_changelog_generator.rb +17 -0
  511. metadata +65 -96
  512. data/.bundle/config +0 -2
  513. data/.rubocop.yml +0 -91
  514. data/Gemfile +0 -8
  515. data/Gemfile.lock +0 -43
  516. data/bundler/CODE_OF_CONDUCT.md +0 -136
  517. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
  518. data/bundler/man/bundle-add.1.txt +0 -58
  519. data/bundler/man/bundle-binstubs.1.txt +0 -48
  520. data/bundler/man/bundle-cache.1.txt +0 -78
  521. data/bundler/man/bundle-check.1.txt +0 -33
  522. data/bundler/man/bundle-clean.1.txt +0 -26
  523. data/bundler/man/bundle-config.1.txt +0 -528
  524. data/bundler/man/bundle-doctor.1.txt +0 -44
  525. data/bundler/man/bundle-exec.1.txt +0 -178
  526. data/bundler/man/bundle-gem.1.txt +0 -91
  527. data/bundler/man/bundle-info.1.txt +0 -21
  528. data/bundler/man/bundle-init.1.txt +0 -34
  529. data/bundler/man/bundle-inject.1.txt +0 -32
  530. data/bundler/man/bundle-install.1.txt +0 -401
  531. data/bundler/man/bundle-list.1.txt +0 -43
  532. data/bundler/man/bundle-lock.1.txt +0 -93
  533. data/bundler/man/bundle-open.1.txt +0 -29
  534. data/bundler/man/bundle-outdated.1.txt +0 -131
  535. data/bundler/man/bundle-platform.1.txt +0 -57
  536. data/bundler/man/bundle-pristine.1.txt +0 -44
  537. data/bundler/man/bundle-remove.1.txt +0 -34
  538. data/bundler/man/bundle-show.1.txt +0 -27
  539. data/bundler/man/bundle-update.1.txt +0 -390
  540. data/bundler/man/bundle-viz.1.txt +0 -39
  541. data/bundler/man/bundle.1.txt +0 -116
  542. data/bundler/man/gemfile.5.txt +0 -649
  543. data/lib/rubygems/source_local.rb +0 -7
  544. data/lib/rubygems/source_specific_file.rb +0 -6
  545. data/lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
  546. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
  547. data/lib/ubygems.rb +0 -14
  548. data/tmp/.keep +0 -0
  549. data/util/CL2notes +0 -55
  550. data/util/bisect +0 -10
  551. data/util/ci.sh +0 -62
  552. data/util/cops/deprecations.rb +0 -52
  553. data/util/create_certs.rb +0 -171
  554. data/util/create_certs.sh +0 -27
  555. data/util/create_encrypted_key.rb +0 -16
  556. data/util/generate_spdx_license_list.rb +0 -63
  557. data/util/patch_with_prs.rb +0 -77
  558. data/util/rubocop +0 -8
  559. data/util/update_bundled_ca_certificates.rb +0 -139
  560. data/util/update_changelog.rb +0 -67
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8792a66eb8c568042479f6efb2c644d9a05a090d61740eb3ce2a879b58012998
4
- data.tar.gz: 476db48a5bf0cd6c20e30269bc55cadc25442b82b34e8f95ffaea1ef5f0e01f2
3
+ metadata.gz: 482ec42938f23bcf5d942d87a0a5a173ac7810be736c08d533fca4100bea4cc1
4
+ data.tar.gz: 61c6a87a139ae0030f021bb8c7ca41af73ad62ee845aa4f32dee4e5accb400b8
5
5
  SHA512:
6
- metadata.gz: b1190d2ad52d0df45a0374e98a6c6f9b3d98263e6c44bd6999066c43a5b8f8676971070b32f1cef0c8525d154ec3979715c9c0da90ad6a967794e4c023a139bd
7
- data.tar.gz: 4a9c8ae5717602d575285a4b3bc3265bf9a2c301d7949993ecd1953b2b78f983e6043b0b2d2593a28dfa1541d272670a2d1f1e12fe68c936702e0cc551f7b4b0
6
+ metadata.gz: 0fc4d232c9f2b42bbc3982c548287d70af78c2b85f202b0e5de89039a4b6ffdc7aa38940007779ba5fe5cbb882043edab224188c64247b4eda086a5626f236a8
7
+ data.tar.gz: 13e095493a3d3e5872d5873d076f2e5295c8694ab1e007ce00730ce467934b577e782d39721c1cc4a41660f90001368f1b125f13eb9549640578d7671fd7f9d4
@@ -1,45 +1,81 @@
1
- # Contributor Code of Conduct
1
+ # RubyGems and Bundler Code of Conduct
2
2
 
3
3
  ## Our Pledge
4
4
 
5
- In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to making participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
5
+ We as members, contributors, and leaders pledge to make participation in our community a harassment-free experience for everyone, regardless of age, body size, visible or invisible disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation.
6
+
7
+ We pledge to act and interact in ways that contribute to an open, welcoming, diverse, inclusive, and healthy community.
6
8
 
7
9
  ## Our Standards
8
10
 
9
- Examples of behavior that contributes to creating a positive environment include:
11
+ Examples of behavior that contributes to a positive environment for our community include:
10
12
 
11
- * Using welcoming and inclusive language
12
- * Being respectful of differing viewpoints and experiences
13
- * Gracefully accepting constructive criticism
14
- * Focusing on what is best for the community
15
- * Showing empathy towards other community members
13
+ * Demonstrating empathy and kindness toward other people
14
+ * Being respectful of differing opinions, viewpoints, and experiences
15
+ * Giving and gracefully accepting constructive feedback
16
+ * Accepting responsibility and apologizing to those affected by our mistakes, and learning from the experience
17
+ * Focusing on what is best not just for us as individuals, but for the overall community
16
18
 
17
- Examples of unacceptable behavior by participants include:
19
+ Examples of unacceptable behavior include:
18
20
 
19
- * The use of sexualized language or imagery and unwelcome sexual attention or advances
20
- * Trolling, insulting/derogatory comments, and personal or political attacks
21
+ * The use of sexualized language or imagery, and sexual attention or advances of any kind
22
+ * Trolling, insulting or derogatory comments, and personal or political attacks
21
23
  * Public or private harassment
22
- * Publishing others' private information, such as a physical or electronic address, without explicit permission
24
+ * Publishing others' private information, such as a physical or email address, without their explicit permission
23
25
  * Other conduct which could reasonably be considered inappropriate in a professional setting
24
26
 
25
- ## Our Responsibilities
27
+ ## Enforcement Responsibilities
26
28
 
27
- Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior.
29
+ Community leaders are responsible for clarifying and enforcing our standards of acceptable behavior and will take appropriate and fair corrective action in response to any behavior that they deem inappropriate, threatening, offensive, or harmful.
28
30
 
29
- Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful.
31
+ Community leaders have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, and will communicate reasons for moderation decisions when appropriate.
30
32
 
31
33
  ## Scope
32
34
 
33
- This Code of Conduct applies both within project spaces and in public spaces when an individual is representing the project or its community. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers.
35
+ This Code of Conduct applies within all community spaces, and also applies when an individual is officially representing the community in public spaces. Examples of representing our community include using an official e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event.
34
36
 
35
37
  ## Enforcement
36
38
 
37
- Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the [project team](MAINTAINERS.txt). All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately.
39
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be reported to the community leaders responsible for enforcement at team@bundler.io, or directly contacting project team members via email or Slack. All complaints will be reviewed and investigated promptly and fairly.
40
+
41
+ All community leaders are obligated to respect the privacy and security of the reporter of any incident.
42
+
43
+ ## Enforcement Guidelines
44
+
45
+ Community leaders will follow these Community Impact Guidelines in determining the consequences for any action they deem in violation of this Code of Conduct:
46
+
47
+ ### 1. Correction
48
+
49
+ **Community Impact**: Use of inappropriate language or other behavior deemed unprofessional or unwelcome in the community.
50
+
51
+ **Consequence**: A private, written warning from community leaders, providing clarity around the nature of the violation and an explanation of why the behavior was inappropriate. A public apology may be requested.
52
+
53
+ ### 2. Warning
54
+
55
+ **Community Impact**: A violation through a single incident or series of actions.
38
56
 
39
- Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership.
57
+ **Consequence**: A warning with consequences for continued behavior. No interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, for a specified period of time. This includes avoiding interactions in community spaces as well as external channels like social media. Violating these terms may lead to a temporary or permanent ban.
58
+
59
+ ### 3. Temporary Ban
60
+
61
+ **Community Impact**: A serious violation of community standards, including sustained inappropriate behavior.
62
+
63
+ **Consequence**: A temporary ban from any sort of interaction or public communication with the community for a specified period of time. No public or private interaction with the people involved, including unsolicited interaction with those enforcing the Code of Conduct, is allowed during this period. Violating these terms may lead to a permanent ban.
64
+
65
+ ### 4. Permanent Ban
66
+
67
+ **Community Impact**: Demonstrating a pattern of violation of community standards, including sustained inappropriate behavior, harassment of an individual, or aggression toward or disparagement of classes of individuals.
68
+
69
+ **Consequence**: A permanent ban from any sort of public interaction within the community.
40
70
 
41
71
  ## Attribution
42
72
 
43
- This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4, available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
73
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 2.0,
74
+ available at https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
75
+
76
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct enforcement ladder](https://github.com/mozilla/diversity).
44
77
 
45
78
  [homepage]: https://www.contributor-covenant.org
79
+
80
+ For answers to common questions about this code of conduct, see the FAQ at
81
+ https://www.contributor-covenant.org/faq. Translations are available at https://www.contributor-covenant.org/translations.
@@ -26,7 +26,7 @@ contributors to follow to reduce the time it takes to get changes merged in.
26
26
 
27
27
 
28
28
  For more information and ideas on how to contribute to RubyGems ecosystem, see
29
- here: http://guides.rubygems.org/contributing/
29
+ here: https://guides.rubygems.org/contributing/
30
30
 
31
31
  ## Getting Started
32
32
 
@@ -42,7 +42,6 @@ To run commands like `gem install` from the repo:
42
42
  To run bundler test:
43
43
 
44
44
  $ cd bundler
45
- $ git submodule update --init --recursive
46
45
  $ bin/rake spec:deps
47
46
  $ bin/rspec spec
48
47
 
@@ -65,27 +64,42 @@ can help with. That are marked with a light gray `contribution: *`
65
64
 
66
65
  ### Type
67
66
 
68
- Most Issues or pull requests will have a light green `type: *` label, which
69
- describes the type of the issue or pull request.
67
+ Issues might have a light green `type: *` label, which describes the type of
68
+ the issue.
70
69
 
71
70
  * **bug report** - An issue describing a bug in rubygems. This would be
72
71
  something that is broken, confusing, unexpected behavior etc.
73
- * **bug fix** - A pull request that fixes a bug report.
74
72
  * **feature request** - An issue describing a request for a new feature or
75
73
  enhancement.
76
- * **feature implementation** - A pull request implementing a feature
77
- request.
78
74
  * **question** - An issue that is a more of a question than a call for
79
75
  specific changes in the codebase.
80
- * **cleanup** - Generally for a pull request that improves the code base
81
- without fixing a bug or implementing a feature.
82
- * **major bump** - This issue or pull request requires a major version bump
76
+ * **cleanup** - An issue that proposes cleanups to the code base without
77
+ fixing a bug or implementing a feature.
78
+ * **major bump** - This issue request requires a major version bump
83
79
  * **administrative** - This issue relates to administrative tasks that need
84
80
  to take place as it relates to rubygems
85
81
  * **documentation** - This issue relates to improving the documentation for
86
82
  in this repo. Note that much of the rubygems documentation is here:
87
83
  https://github.com/rubygems/guides
88
84
 
85
+ Pull request might have a light orange `rubygems: *` or a light blue `bundler:
86
+ *` label which describes the pull request according to the following criteria:
87
+
88
+ * **security fix** - A pull request that fixes a security issue.
89
+ * **breaking change** - A pull request including any change that requires a
90
+ major version bump.
91
+ * **major enhancement** - A pull request including a backwards compatible
92
+ change worth a special mention in the changelog
93
+ * **deprecation** - A pull request that introduces a deprecation.
94
+ * **feature** - A pull request implementing a feature request.
95
+ * **deprecation** - A pull request that implements a performance improvement.
96
+ * **documentation** - A pull request introducing documentation improvements
97
+ worth mentioning to end users.
98
+ * **minor enhancements** - A pull request introducing small but user visible changes.
99
+ * **bug fix** - A pull request that fixes a bug report.
100
+
101
+ In the case of `bundler`, these labels are set by maintainers on PRs and have
102
+ special importance because they are used to automatically build the changelog.
89
103
 
90
104
  ### Workflow / Status
91
105
 
@@ -152,7 +166,7 @@ an appropriate purple `platform: *` label. Current platform labels:
152
166
  ### Git
153
167
 
154
168
  Please sign your commits. Although not required in order for you to contribute,
155
- it does ensures that any code submitted by you wasn't altered while you were
169
+ it ensures that any code submitted by you wasn't altered while you were
156
170
  transferring it, and proves that it was you who submitted it and not someone
157
171
  else.
158
172
 
@@ -1,9 +1,280 @@
1
- # coding: UTF-8
1
+ === 3.2.3 / 2020-12-22
2
2
 
3
+ Enhancements:
4
+
5
+ * Fix misspellings in default API key name. Pull request #4177 by hsbt
6
+
7
+ Bug fixes:
8
+
9
+ * Respect `required_ruby_version` and `required_rubygems_version`
10
+ constraints when looking for `gem install` candidates. Pull request #4110
11
+ by deivid-rodriguez
12
+
13
+ === 3.2.2 / 2020-12-17
14
+
15
+ Bug fixes:
16
+
17
+ * Fix issue where CLI commands making more than one request to
18
+ rubygems.org needing an OTP code would crash or ask for the code twice.
19
+ Pull request #4162 by sonalkr132
20
+ * Fix building rake extensions that require openssl. Pull request #4165 by
21
+ deivid-rodriguez
22
+ * Fix `gem update --system` displaying too many changelog entries. Pull
23
+ request #4145 by deivid-rodriguez
24
+
25
+ === 3.2.1 / 2020-12-14
26
+
27
+ Enhancements:
28
+
29
+ * Added help message for gem i webrick in gem server command. Pull request
30
+ #4117 by hsbt
31
+
32
+ Bug fixes:
33
+
34
+ * Added the missing loading of fileutils same as load_specs. Pull request
35
+ #4124 by hsbt
36
+ * Fix Resolver::APISet to always include prereleases when necessary. Pull
37
+ request #4113 by deivid-rodriguez
38
+
39
+ === 3.2.0 / 2020-12-07
40
+
41
+ Enhancements:
42
+
43
+ * Do not override Kernel#warn when there is no need. Pull request #4075 by
44
+ eregon
45
+ * Update endpoint of gem signin command. Pull request #3840 by sonalkr132
46
+ * Omit deprecated commands from command help output. Pull request #4023 by
47
+ landongrindheim
48
+ * Suggest alternatives in `gem query` deprecation. Pull request #4021 by
49
+ landongrindheim
50
+ * Lazily load `time`, `cgi`, and `zlib`. Pull request #4010 by
51
+ deivid-rodriguez
52
+ * Don't hit the network when installing dependencyless local gemspec. Pull
53
+ request #3968 by deivid-rodriguez
54
+ * Add `--force` option to `gem sources` command. Pull request #3956 by
55
+ andy-smith-msm
56
+ * Lazily load `openssl`. Pull request #3850 by deivid-rodriguez
57
+ * Pass more information when comparing platforms. Pull request #3817 by
58
+ eregon
59
+
60
+ Bug fixes:
61
+
62
+ * Use better owner & group for files in rubygems package. Pull request
63
+ #4065 by deivid-rodriguez
64
+ * Improve gem build -C flag. Pull request #3983 by bronzdoc
65
+ * Handle unexpected behavior with URI#merge and subpaths missing trailing
66
+ slashes. Pull request #3123 by drcapulet
67
+ * Add missing `fileutils` require in rubygems installer. Pull request
68
+ #4036 by deivid-rodriguez
69
+ * Fix `--platform` option to `gem specification` being ignored. Pull
70
+ request #4043 by deivid-rodriguez
71
+ * Expose `--no-minimal-deps` flag to install the latest version of
72
+ dependencies. Pull request #4030 by deivid-rodriguez
73
+ * Fix "stack level too deep" error when overriding `Warning.warn`. Pull
74
+ request #3987 by eregon
75
+ * Append '.gemspec' extension only when it is not present. Pull request
76
+ #3988 by voxik
77
+ * Install to correct plugins dir when using `--build-root`. Pull request
78
+ #3972 by deivid-rodriguez
79
+ * Fix `--build-root` flag under Windows. Pull request #3975 by
80
+ deivid-rodriguez
81
+ * Fix `typo_squatting?` false positive for `rubygems.org` itself. Pull
82
+ request #3951 by andy-smith-msm
83
+ * Make `--default` and `--install-dir` options to `gem install` play nice
84
+ together. Pull request #3906 by deivid-rodriguez
85
+
86
+ Deprecations:
87
+
88
+ * Deprecate server command. Pull request #3868 by bronzdoc
89
+
90
+ Performance:
91
+
92
+ * Don't change ruby process CWD when building extensions. Pull request
93
+ #3498 by deivid-rodriguez
94
+
95
+ === 3.2.0.rc.2 / 2020-10-08
96
+
97
+ Enhancements:
98
+
99
+ * Make --dry-run flag consistent across rubygems commands. Pull request
100
+ #3867 by bronzdoc
101
+ * Disallow downgrades to too old versions. Pull request #3566 by
102
+ deivid-rodriguez
103
+ * Added `--platform` option to `build` command. Pull request #3079 by nobu
104
+ * Have "gem update --system" pass through the `--silent` flag. Pull
105
+ request #3789 by duckinator
106
+ * Add writable check for cache dir. Pull request #3876 by xndcn
107
+ * Warn on duplicate dependency in a specification. Pull request #3864 by
108
+ bronzdoc
109
+ * Fix indentation in `gem env`. Pull request #3861 by colby-swandale
110
+ * Let more exceptions flow. Pull request #3819 by deivid-rodriguez
111
+ * Ignore internal frames in RubyGems' Kernel#warn. Pull request #3810 by
112
+ eregon
113
+
114
+ Bug fixes:
115
+
116
+ * Add missing fileutils require. Pull request #3911 by deivid-rodriguez
117
+ * Fix false positive warning on Windows when PATH has
118
+ `File::ALT_SEPARATOR`. Pull request #3829 by deivid-rodriguez
119
+ * Fix Kernel#warn override to handle backtrace location with nil path.
120
+ Pull request #3852 by jeremyevans
121
+ * Don't format executables on `gem update --system`. Pull request #3811 by
122
+ deivid-rodriguez
123
+ * `gem install --user` fails with `Gem::FilePermissionError` on the system
124
+ plugins directory. Pull request #3804 by nobu
125
+
126
+ Performance:
127
+
128
+ * Avoid duplicated generation of APISpecification objects. Pull request
129
+ #3940 by mame
130
+ * Eval defaults with frozen_string_literal: true. Pull request #3847 by
131
+ casperisfine
132
+ * Deduplicate the requirement operators in memory. Pull request #3846 by
133
+ casperisfine
134
+ * Optimize Gem.already_loaded?. Pull request #3793 by casperisfine
135
+
136
+ === 3.2.0.rc.1 / 2020-07-04
137
+
138
+ Enhancements:
139
+
140
+ * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
141
+ * Rework plugins system and speed up rubygems. Pull request #3108 by David
142
+ Rodríguez.
143
+ * Specify explicit separator not to be affected by $;. Pull request #3424
144
+ by Nobuyoshi Nakada.
145
+ * Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
146
+ * Rollback gem deprecate. Pull request #3530 by Luis Sagastume.
147
+ * Normalize heredoc delimiters. Pull request #3533 by David Rodríguez.
148
+ * Log messages to stdout in `rake package`. Pull request #3632 by David
149
+ Rodríguez.
150
+ * Remove explicit `psych` activation. Pull request #3636 by David
151
+ Rodríguez.
152
+ * Delay `fileutils` loading to fix some warnings. Pull request #3637 by
153
+ David Rodríguez.
154
+ * Make sure rubygems/package can be directly required reliably. Pull
155
+ request #3670 by Luis Sagastume.
156
+ * Make sure `tmp` folder exists before calling `Dir.tmpdir`. Pull request
157
+ #3711 by David Rodríguez.
158
+ * Add Gem.disable_system_update_message to disable gem update --system if
159
+ needed. Pull request #3720 by Josef Šimánek.
160
+ * Tweaks to play nice with ruby-core setup. Pull request #3733 by David
161
+ Rodríguez.
162
+ * Remove explicit require for auto-loaded constant. Pull request #3751 by
163
+ Karol Bucek.
164
+ * Test files should not be included in spec.files. Pull request #3758 by
165
+ Marc-André Lafortune.
166
+ * Remove TODO comment about warning on setting instead of pushing. Pull
167
+ request #2823 by Luis Sagastume.
168
+ * Add deprecate command method. Pull request #2935 by Luis Sagastume.
169
+ * Simplify deprecate command method. Pull request #2974 by Luis Sagastume.
170
+ * Fix Gem::LOADED_SPECS_MUTEX handling for recursive locking. Pull request
171
+ #2985 by MSP-Greg.
172
+ * Add `funding_uri ` metadata field to gemspec. Pull request #3060 by
173
+ Colby Swandale.
174
+ * Updates to some old gem-signing docs. Pull request #3063 by Tieg
175
+ Zaharia.
176
+ * Update the gem method for Gem::Installer. Pull request #3137 by Daniel
177
+ Berger.
178
+ * Simplify initial gem help output. Pull request #3148 by Olivier Lacan.
179
+ * Resolve latest version via `gem contents`. Pull request #3149 by Dan
180
+ Rice.
181
+ * Install suggestions. Pull request #3151 by Sophia Castellarin.
182
+ * Only rescue the errors we actually want to rescue. Pull request #3156 by
183
+ David Rodríguez.
184
+
185
+ Bug fixes:
186
+
187
+ * Accept not only /usr/bin/env but also /bin/env in some tests. Pull
188
+ request #3422 by Yusuke Endoh.
189
+ * Skip a test that attempts to remove the current directory on Solaris.
190
+ Pull request #3423 by Yusuke Endoh.
191
+ * Fix race condition on bundler's parallel installer. Pull request #3440
192
+ by David Rodríguez.
193
+ * Fix platform comparison check in #contains_requirable_file?. Pull
194
+ request #3495 by Benoit Daloze.
195
+ * Improve missing spec error. Pull request #3559 by Luis Sagastume.
196
+ * Fix hidden bundler template installation from rubygems updater. Pull
197
+ request #3674 by David Rodríguez.
198
+ * Fix gem update --user-install. Pull request #2901 by Luis Sagastume.
199
+ * Correct conflict list when uninstallation is prevented. Pull request
200
+ #2973 by David Rodríguez.
201
+ * Fix error when trying to find bundler with a deleted "working directo….
202
+ Pull request #3090 by Luis Sagastume.
203
+ * Fix -I require priority. Pull request #3124 by David Rodríguez.
204
+ * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
205
+ Rodríguez.
206
+
207
+ Deprecations:
208
+
209
+ * Set deprecation warning on query command. Pull request #2967 by Luis
210
+ Sagastume.
211
+
212
+ Breaking changes:
213
+
214
+ * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
215
+ * Minitest cleanup. Pull request #3445 by David Rodríguez.
216
+ * Remove `builder` gem requirement for `gem regenerate_index`. Pull
217
+ request #3552 by David Rodríguez.
218
+ * Remove modelines for consistency. Pull request #3714 by David Rodríguez.
219
+ * Stop using deprecated OpenSSL::Digest constants. Pull request #3763 by
220
+ Bart de Water.
221
+ * Remove Gem module deprecated methods. Pull request #3101 by Luis
222
+ Sagastume.
223
+ * Remove ubygems.rb. Pull request #3102 by Luis Sagastume.
224
+ * Remove Gem::Commands::QueryCommand. Pull request #3104 by Luis
225
+ Sagastume.
226
+ * Remove dependency installer deprecated methods. Pull request #3106 by
227
+ Luis Sagastume.
228
+ * Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
229
+ Sagastume.
230
+ * Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
231
+ Sagastume.
232
+ * Remove deprecated Gem::RemoteFetcher#fetch_size. Pull request #3111 by
233
+ Luis Sagastume.
234
+ * Remove source_exception from Gem::Exception. Pull request #3112 by Luis
235
+ Sagastume.
236
+ * Requiring rubygems/source_specific_file is deprecated, remove it. Pull
237
+ request #3114 by Luis Sagastume.
238
+
239
+ === 3.1.4 / 2020-06-03
240
+
241
+ Enhancements:
242
+
243
+ * Deprecate rubyforge_project attribute only during build
244
+ time. Pull request #3609 by Josef Šimánek.
245
+ * Update links. Pull request #3610 by Josef Šimánek.
246
+ * Run CI at 3.1 branch head as well. Pull request #3677 by Josef Šimánek.
247
+ * Remove failing ubuntu-rvm CI flow. Pull request #3611 by
248
+ Josef Šimánek.
249
+
250
+ === 3.1.3 / 2020-05-05
251
+
252
+ Enhancements:
253
+
254
+ * Resolver: require NameTuple before use. Pull request #3171 by Olle
255
+ Jonsson.
256
+ * Use absolute paths with autoload. Pull request #3100 by David Rodríguez.
257
+ * Avoid changing $SOURCE_DATE_EPOCH. Pull request #3088 by Ellen Marie
258
+ Dash.
259
+ * Use Bundler 2.1.4. Pull request #3072 by Hiroshi SHIBATA.
260
+ * Add tests to check if Gem.ruby_version works with ruby git master.
261
+ Pull request #3049 by Yusuke Endoh.
262
+
263
+ Bug fixes:
264
+
265
+ * Fix platform comparison check in #contains_requirable_file?. Pull
266
+ request #3495 by Benoit Daloze.
267
+ * Improve gzip errors logging. Pull request #3485 by David Rodríguez.
268
+ * Fix incorrect `gem uninstall --all` message. Pull request #3483 by David
269
+ Rodríguez.
270
+ * Fix incorrect bundler version being required. Pull request #3458 by
271
+ David Rodríguez.
272
+ * Fix gem install from a gemdeps file with complex dependencies.
273
+ Pull request #3054 by Luis Sagastume.
3
274
 
4
275
  === 3.1.2 / 2019-12-20
5
276
 
6
- Minor enhancements:
277
+ Enhancements:
7
278
 
8
279
  * Restore non prompting `gem update --system` behavior. Pull request #3040
9
280
  by David Rodríguez.
@@ -30,12 +301,9 @@ Bug fixes:
30
301
 
31
302
  === 3.1.0 / 2019-12-16
32
303
 
33
- Major enhancements:
304
+ Enhancements:
34
305
 
35
306
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
36
-
37
- Minor enhancements:
38
-
39
307
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
40
308
  Luis Sagastume.
41
309
  * Refactor remote fetcher. Pull request #3017 by David Rodríguez.
@@ -54,15 +322,18 @@ Bug fixes:
54
322
  * Remove configuration that contained a typo. Pull request #2989 by David
55
323
  Rodríguez.
56
324
 
57
- Compatibility changes:
325
+ Deprecations:
58
326
 
59
- * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
60
327
  * Deprecate `gem generate_index --modern` and `gem generate_index
61
328
  --no-modern`. Pull request #2992 by David Rodríguez.
62
329
 
330
+ Breaking changes:
331
+
332
+ * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
333
+
63
334
  === 3.1.0.pre3 / 2019-11-11
64
335
 
65
- Minor enhancements:
336
+ Enhancements:
66
337
 
67
338
  * Fix gem pristine not accounting for user installed gems. Pull request
68
339
  #2914 by Luis Sagastume.
@@ -83,7 +354,7 @@ Minor enhancements:
83
354
 
84
355
  === 3.1.0.pre2 / 2019-10-15
85
356
 
86
- Minor enhancements:
357
+ Enhancements:
87
358
 
88
359
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
89
360
  Boussier.
@@ -92,7 +363,7 @@ Minor enhancements:
92
363
 
93
364
  === 3.1.0.pre1 / 2019-10-08
94
365
 
95
- Major enhancements:
366
+ Enhancements:
96
367
 
97
368
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
98
369
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -103,9 +374,6 @@ Major enhancements:
103
374
  Chaofan.
104
375
  * Autoswitch to exact bundler version if present. Pull request #2583 by
105
376
  David Rodríguez.
106
-
107
- Minor enhancements:
108
-
109
377
  * Fix Gem::Requirement equality comparison when ~> operator is used. Pull
110
378
  request #2554 by Grey Baker.
111
379
  * Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
@@ -258,29 +526,33 @@ Bug fixes:
258
526
  * Fix cryptic error on local and ignore-dependencies combination. Pull
259
527
  request #2650 by David Rodríguez.
260
528
 
261
- Compatibility changes:
529
+ Deprecations:
262
530
 
263
- * Remove commented code from command.rb. Pull request #2620 by Luis
531
+ * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
532
+ #2857 by SHIBATA Hiroshi.
533
+ * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
264
534
  Sagastume.
535
+ * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
536
+ Rodríguez.
537
+ * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
538
+ Ondruch.
539
+ * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
540
+ * Add deprecation warnings for cli options. Pull request #2607 by Luis
541
+ Sagastume.
542
+
543
+ Breaking changes:
544
+
265
545
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
266
546
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
267
547
  ITO.
268
548
  * Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
269
- * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
270
- #2857 by SHIBATA Hiroshi.
271
- * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
272
- Sagastume.
273
549
  * Remove conflict.rb code that was supposed to be removed in Rubygems 3.
274
550
  Pull request #2802 by Luis Sagastume.
275
- * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
276
- Rodríguez.
277
551
  * Compatibility cleanups. Pull request #2754 by David Rodríguez.
278
552
  * Remove `others_possible` activation request param. Pull request #2747 by
279
553
  David Rodríguez.
280
554
  * Remove dependency installer deprecated code. Pull request #2740 by Luis
281
555
  Sagastume.
282
- * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
283
- Ondruch.
284
556
  * Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
285
557
  by SHIBATA Hiroshi.
286
558
  * Skip deprecation warning during specs. Pull request #2718 by David
@@ -289,24 +561,26 @@ Compatibility changes:
289
561
  * Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
290
562
  * Removed needless environmental variable for Travis CI. Pull request
291
563
  #2685 by SHIBATA Hiroshi.
292
- * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
293
564
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
294
- * Add deprecation warnings for cli options. Pull request #2607 by Luis
295
- Sagastume.
296
565
 
297
- Style changes:
566
+ === 3.0.8 / 2020-02-19
298
567
 
299
- * Enable `Layout/SpaceInsideParens` rubocop cop. Pull request #2630 by
300
- David Rodríguez.
301
- * Remove some extra empty lines from the repo. Pull request #2669 by David
302
- Rodríguez.
303
- * Enable Style/EmptyLinesAroundClassBody rubocop cop. Pull request #2636
304
- by David Rodríguez.
305
- * Enable Style/BlockDelimiters rubocop cop. Pull request #2640 by David
306
- Rodríguez.
307
- * Enable Layout/SpaceAroundOperators rubocop cop. Pull request #2642 by
308
- David Rodríguez.
309
- * Rubocop 0.71. Pull request #2785 by David Rodríguez.
568
+ Bug fixes:
569
+
570
+ * Gem::Specification#to_ruby needs OpenSSL. Pull request #2937 by
571
+ Nobuyoshi Nakada.
572
+
573
+ === 3.0.7 / 2020-02-18
574
+
575
+ Bug fixes:
576
+
577
+ * Fix underscore version selection for bundler #2908 by David Rodríguez.
578
+ * Add missing wrapper. Pull request #2690 by David Rodríguez.
579
+ * Make Gem::Specification#ruby_code handle OpenSSL::PKey::RSA objects.
580
+ Pull request #2782 by Luis Sagastume.
581
+ * Installer.rb - fix #windows_stub_script. Pull request #2876 by MSP-Greg.
582
+ * Use IAM role to extract security-credentials for EC2 instance. Pull
583
+ request #2894 by Alexander Pakulov.
310
584
 
311
585
  === 3.0.6 / 2019-08-17
312
586
 
@@ -316,7 +590,7 @@ Bug fixes:
316
590
 
317
591
  === 3.0.5 / 2019-08-16
318
592
 
319
- Minor enhancements:
593
+ Enhancements:
320
594
 
321
595
  * Use env var to configure api key on push. Pull request #2559 by Luis
322
596
  Sagastume.
@@ -369,7 +643,7 @@ Bug fixes:
369
643
 
370
644
  === 3.0.4 / 2019-06-14
371
645
 
372
- Minor enhancements:
646
+ Enhancements:
373
647
 
374
648
  * Add support for TruffleRuby #2612 by Benoit Daloze
375
649
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -426,7 +700,6 @@ Bug fixes:
426
700
 
427
701
  Security fixes:
428
702
 
429
- * Fixed following vulnerabilities:
430
703
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
431
704
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
432
705
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -436,7 +709,7 @@ Security fixes:
436
709
 
437
710
  === 3.0.2 / 2019-01-01
438
711
 
439
- Minor enhancements:
712
+ Enhancements:
440
713
 
441
714
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
442
715
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
@@ -464,7 +737,7 @@ Bug fixes:
464
737
 
465
738
  === 3.0.0 / 2018-12-19
466
739
 
467
- Major enhancements:
740
+ Enhancements:
468
741
 
469
742
  * S3 source. Pull request #1690 by Aditya Prakash.
470
743
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -472,9 +745,6 @@ Major enhancements:
472
745
  * [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
473
746
  Chaofan.
474
747
  * Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
475
-
476
- Minor enhancements:
477
-
478
748
  * Don't treat inaccessible working directories as build failures. Pull
479
749
  request #1135 by Pete.
480
750
  * Remove useless directory parameter from builders .build methods.
@@ -501,7 +771,7 @@ Minor enhancements:
501
771
  Swandale.
502
772
  * Add Gem.operating_system_defaults to allow packagers to override
503
773
  defaults. Pull request #2116 by Vít Ondruch.
504
- * Update for compatibilty with new minitest. Pull request #2118 by
774
+ * Update for compatibility with new minitest. Pull request #2118 by
505
775
  MSP-Greg.
506
776
  * Make Windows bin stubs portable. Pull request #2119 by MSP-Greg.
507
777
  * Avoid to warnings about gemspec loadings in rubygems tests. Pull request
@@ -533,11 +803,11 @@ Minor enhancements:
533
803
  SHIBATA Hiroshi.
534
804
  * Add Rake task to install dev dependencies. Pull request #2173 by Ellen
535
805
  Marie Dash.
536
- * Add new sections to the README and explaination of what RubyGems is.
806
+ * Add new sections to the README and explanation of what RubyGems is.
537
807
  Pull request #2174 by Colby Swandale.
538
808
  * Prefer to use `Numeric#zero?` instead of `== 0`. Pull request #2176 by
539
809
  SHIBATA Hiroshi.
540
- * Ignore perfomance test of version regexp pattern. Pull request #2179 by
810
+ * Ignore performance test of version regexp pattern. Pull request #2179 by
541
811
  SHIBATA Hiroshi.
542
812
  * Ignore .DS_Store files in the update_manifest task. Pull request #2199
543
813
  by Colby Swandale.
@@ -685,7 +955,7 @@ Bug fixes:
685
955
  * Fix tests when --program-suffix and similar ruby configure options are
686
956
  used. Pull request #2529 by Jeremy Evans.
687
957
 
688
- Compatibility changes:
958
+ Breaking changes:
689
959
 
690
960
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
691
961
  Hiroshi.
@@ -738,44 +1008,20 @@ Compatibility changes:
738
1008
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
739
1009
  major versions. Pull request #2515 by Colby Swandale.
740
1010
 
741
- Style changes:
742
-
743
- * Add Rubocop. Pull request #2250 by Colby Swandale.
744
- * Removed explicitly declaration of thread library. Pull request #2324 by
745
- SHIBATA Hiroshi.
746
- * Remove Trailing whitespace with rubocop. Pull request #2394 by SHIBATA
747
- Hiroshi.
748
- * Update rubocop and also use correct pessimistic version. Pull request
749
- #2404 by Colby Swandale.
750
- * Enable more rubocop rules. Pull request #2435 by Ellen Marie Dash.
751
- * Fix and lock rubocop. Pull request #2465 by David Rodríguez.
752
- * Add a rubocop binstub. Pull request #2468 by David Rodríguez.
753
- * Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
754
- * Remove trailing blank lines. Pull request #2471 by David Rodríguez.
755
- * Remove empty lines around method bodies. Pull request #2473 by David
756
- Rodríguez.
757
- * Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
758
- Colby Swandale.
759
- * Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
760
- Sagastume.
761
- * Remove trailing 'then' from generated code. Pull request #2480 by Luis
762
- Sagastume.
763
-
764
1011
  === 2.7.10 / 2019-06-14
765
1012
 
766
- Minor enhancements:
1013
+ Enhancements:
767
1014
 
768
1015
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
769
1016
  by David Rodríguez.
770
1017
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on major versions.
771
1018
  Pull request #2515 by Colby Swandale.
772
- + Update for compatibilty with new minitest. Pull request #2118 by MSP-Greg.
1019
+ + Update for compatibility with new minitest. Pull request #2118 by MSP-Greg.
773
1020
 
774
1021
  === 2.7.9 / 2019-03-05
775
1022
 
776
1023
  Security fixes:
777
1024
 
778
- * Fixed following vulnerabilities:
779
1025
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
780
1026
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
781
1027
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -785,7 +1031,7 @@ Security fixes:
785
1031
 
786
1032
  === 2.7.8 / 2018-11-02
787
1033
 
788
- Minor enhancements:
1034
+ Enhancements:
789
1035
 
790
1036
  * [Requirement] Treat requirements with == versions as equal. Pull
791
1037
  request #2230 by Samuel Giddins.
@@ -819,7 +1065,7 @@ Bug fixes:
819
1065
 
820
1066
  === 2.7.7 / 2018-05-08
821
1067
 
822
- Minor enhancements:
1068
+ Enhancements:
823
1069
 
824
1070
  * [RequestSet] Only suggest a gem version with an installable platform.
825
1071
  Pull request #2175 by Samuel Giddins.
@@ -847,13 +1093,16 @@ Bug fixes:
847
1093
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
848
1094
  Lars Kanis.
849
1095
 
850
- Compatibility changes:
1096
+ Deprecations:
851
1097
 
852
1098
  * Deprecate unused code before removing them at #1524. Pull request #2197
853
1099
  by SHIBATA Hiroshi.
854
1100
  * Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
855
1101
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
856
1102
  SHIBATA Hiroshi.
1103
+
1104
+ Breaking changes:
1105
+
857
1106
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
858
1107
 
859
1108
  === 2.7.6 / 2018-02-16
@@ -865,7 +1114,7 @@ Security fixes:
865
1114
  * Fix possible Unsafe Object Deserialization Vulnerability in gem owner.
866
1115
  Fixed by Jonathan Claudius.
867
1116
  * Strictly interpret octal fields in tar headers.
868
- Discoved by plover, fixed by Samuel Giddins.
1117
+ Discovered by plover, fixed by Samuel Giddins.
869
1118
  * Raise a security error when there are duplicate files in a package.
870
1119
  Discovered by plover, fixed by Samuel Giddins.
871
1120
  * Enforce URL validation on spec homepage attribute.
@@ -902,7 +1151,7 @@ Bug fixes:
902
1151
 
903
1152
  === 2.7.3
904
1153
 
905
- Minor enhancements:
1154
+ Enhancements:
906
1155
 
907
1156
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
908
1157
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -952,15 +1201,12 @@ Bug fixes:
952
1201
 
953
1202
  === 2.7.0 (2017-11-02)
954
1203
 
955
- Major enhancements:
1204
+ Enhancements:
956
1205
 
957
1206
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
958
1207
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
959
1208
  * Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
960
1209
  * Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
961
-
962
- Minor enhancements:
963
-
964
1210
  * Added message to uninstall command for gem that is not installed. Pull
965
1211
  request #1979 by anant anil kolvankar.
966
1212
  * Add --trust-policy option to unpack command. Pull request #1718 by
@@ -1046,11 +1292,8 @@ Minor enhancements:
1046
1292
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1047
1293
  Dash.
1048
1294
 
1049
- Compatibility changes:
1295
+ Deprecations:
1050
1296
 
1051
- * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1052
- unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1053
- by SHIBATA Hiroshi.
1054
1297
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1055
1298
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
1056
1299
  * Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
@@ -1058,6 +1301,12 @@ Compatibility changes:
1058
1301
  * Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
1059
1302
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1060
1303
  Pull request #1731 by Jon Moss.
1304
+
1305
+ Breaking changes:
1306
+
1307
+ * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1308
+ unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1309
+ by SHIBATA Hiroshi.
1061
1310
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1062
1311
  #1796 by Matej.
1063
1312
 
@@ -1230,7 +1479,7 @@ Bug fixes:
1230
1479
 
1231
1480
  === 2.6.5 / 2016-06-21
1232
1481
 
1233
- Minor enhancements:
1482
+ Enhancements:
1234
1483
 
1235
1484
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1236
1485
  by SHIBATA Hiroshi.
@@ -1259,7 +1508,7 @@ Bug fixes:
1259
1508
 
1260
1509
  === 2.6.4 / 2016-04-26
1261
1510
 
1262
- Minor enhancements:
1511
+ Enhancements:
1263
1512
 
1264
1513
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1265
1514
  by Chris Charabaruk.
@@ -1276,7 +1525,7 @@ Bug fixes:
1276
1525
 
1277
1526
  === 2.6.3 / 2016-04-05
1278
1527
 
1279
- Minor enhancements:
1528
+ Enhancements:
1280
1529
 
1281
1530
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1282
1531
  by Aaron Patterson.
@@ -1329,7 +1578,7 @@ Bug fixes:
1329
1578
 
1330
1579
  === 2.6.0 / 2016-02-26
1331
1580
 
1332
- Minor enhancements:
1581
+ Enhancements:
1333
1582
 
1334
1583
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1335
1584
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1384,7 +1633,7 @@ Bug fixes:
1384
1633
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1385
1634
  Giddins.
1386
1635
 
1387
- Minor enhancements:
1636
+ Enhancements:
1388
1637
 
1389
1638
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1390
1639
  Sagastume.
@@ -1442,7 +1691,7 @@ Bug fixes:
1442
1691
 
1443
1692
  === 2.5.0 / 2015-11-03
1444
1693
 
1445
- Major enhancements:
1694
+ Enhancements:
1446
1695
 
1447
1696
  * Added the Gem::Licenses class which provides a set of standard license
1448
1697
  identifiers as set by spdx.org. This is now used by the
@@ -1451,8 +1700,6 @@ Major enhancements:
1451
1700
 
1452
1701
  Pull request #1249 by Kyle Mitchell.
1453
1702
 
1454
- Minor enhancements:
1455
-
1456
1703
  * Use Molinillo as the resolver library. This is the same resolver as used by
1457
1704
  Bundler. Pull request #1189 by Samuel E. Giddins.
1458
1705
  * Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
@@ -1716,7 +1963,7 @@ Bug fixes:
1716
1963
 
1717
1964
  === 2.4.0 / 2014-07-16
1718
1965
 
1719
- Minor enhancements:
1966
+ Enhancements:
1720
1967
 
1721
1968
  * The contents command now supports a --show-install-dir option that shows
1722
1969
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1779,7 +2026,7 @@ Bug fixes:
1779
2026
 
1780
2027
  === 2.3.0 / 2014-06-10
1781
2028
 
1782
- Minor enhancements:
2029
+ Enhancements:
1783
2030
 
1784
2031
  * Added the `open` command which allows you to inspect the source of a gem
1785
2032
  using your editor.
@@ -1980,7 +2227,7 @@ Bug fixes:
1980
2227
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
1981
2228
  RubyGems as it was prepared for the 2.2.0 release.
1982
2229
 
1983
- Major enhancements:
2230
+ Enhancements:
1984
2231
 
1985
2232
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
1986
2233
  rubygems executables are started and uses the found dependencies. This
@@ -2003,8 +2250,6 @@ Major enhancements:
2003
2250
  The default sharing location may be configured by RubyGems packagers through
2004
2251
  Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
2005
2252
 
2006
- Minor enhancements:
2007
-
2008
2253
  * RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
2009
2254
  prevent an accidental push to a public repository (such as rubygems.org).
2010
2255
  If you have private gems you should set this value in your gem specification
@@ -2203,15 +2448,13 @@ Security fixes:
2203
2448
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2204
2449
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2205
2450
 
2206
- Major enhancements:
2451
+ Enhancements:
2207
2452
 
2208
2453
  * RubyGems uses a new dependency resolver for gem installation which works
2209
2454
  similar to the bundler resolver. The new resolver can resolve conflicts the
2210
2455
  previous resolver could not and offers improved diagnostics when conflicts
2211
2456
  are discovered.
2212
2457
 
2213
- Minor enhancements:
2214
-
2215
2458
  * RubyGems now has improved platform matching for the ARM architecture. Gems
2216
2459
  built with a CPU of "arm" will match any specific ARM CPU. See `gem help
2217
2460
  platform` for further details. Fixes #532 by Kim Burgestrand.
@@ -2462,7 +2705,7 @@ Bug fixes:
2462
2705
 
2463
2706
  === 2.0.3 / 2013-03-11
2464
2707
 
2465
- * Bug fixes:
2708
+ Bug fixes:
2466
2709
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2467
2710
  #506 by André Arko
2468
2711
  * Use File.realpath to remove extra / while checking if files are
@@ -2479,7 +2722,7 @@ Bug fixes:
2479
2722
 
2480
2723
  === 2.0.2 / 2013-03-06
2481
2724
 
2482
- * Bug fixes:
2725
+ Bug fixes:
2483
2726
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2484
2727
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2485
2728
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
@@ -2487,7 +2730,7 @@ Bug fixes:
2487
2730
 
2488
2731
  === 2.0.1 / 2013-03-05
2489
2732
 
2490
- * Bug fixes:
2733
+ Bug fixes:
2491
2734
  * Lazily load RubyGems.org API credentials to avoid failure during
2492
2735
  RubyGems installation. Bug #465 by Isaac Sanders.
2493
2736
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2521,7 +2764,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2521
2764
 
2522
2765
  Changes since RubyGems 1.8.25 (including past pre-releases):
2523
2766
 
2524
- * Breaking changes:
2767
+ Breaking changes:
2525
2768
 
2526
2769
  * Deprecated Gem.unresolved_deps in favor of
2527
2770
  Gem::Specification.unresolved_deps
@@ -2543,7 +2786,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2543
2786
  * Removed support for Ruby 1.9.1
2544
2787
  * Removed many deprecated methods
2545
2788
 
2546
- * Major enhancements:
2789
+ Enhancements:
2547
2790
 
2548
2791
  * Improved support for default gems shipping with ruby 2.0.0+
2549
2792
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2561,8 +2804,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2561
2804
  file (Gemfile, Isolate, gem.deps.rb).
2562
2805
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2563
2806
  to autodetect (current and parent directories are searched).
2564
-
2565
- * Minor enhancements:
2566
2807
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2567
2808
  #419 by Erik Hollensbe
2568
2809
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
@@ -2605,7 +2846,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2605
2846
  GEM_HOME
2606
2847
  * When building gems with non-world-readable files a warning is shown.
2607
2848
 
2608
- * Bug fixes:
2849
+ Bug fixes:
2609
2850
  * Gem.refresh now maintains the active gem list. Clearing the list would
2610
2851
  cause double-loads which would cause other bugs. Pull Request #427 by
2611
2852
  Jeremy Evans
@@ -2662,7 +2903,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2662
2903
 
2663
2904
  Changes since RubyGems 2.0.0.rc.2:
2664
2905
 
2665
- * Bug fixes:
2906
+ Bug fixes:
2666
2907
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2667
2908
  #450 by Jeremy Kemper
2668
2909
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2677,7 +2918,7 @@ Changes since RubyGems 2.0.0.rc.2:
2677
2918
 
2678
2919
  === 2.0.0.rc.2 / 2013-02-08
2679
2920
 
2680
- * Bug fixes:
2921
+ Bug fixes:
2681
2922
  * Fixed signature verification of gems which was broken only on master.
2682
2923
  Thanks to Brian Buchanan.
2683
2924
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
@@ -2685,13 +2926,13 @@ Changes since RubyGems 2.0.0.rc.2:
2685
2926
 
2686
2927
  === 2.0.0.rc.1 / 2013-01-08
2687
2928
 
2688
- * Minor enhancements:
2929
+ Enhancements:
2689
2930
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2690
2931
  prerelease versions of RubyGems cannot push gems.
2691
2932
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2692
2933
  #419 by Erik Hollensbe
2693
2934
 
2694
- * Bug fixes:
2935
+ Bug fixes:
2695
2936
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2696
2937
  #418 by André Arko
2697
2938
  * Gem installation will fail if RubyGems cannot load the specification from
@@ -2699,24 +2940,24 @@ Changes since RubyGems 2.0.0.rc.2:
2699
2940
 
2700
2941
  === 2.0.0.preview2.2 / 2012-12-14
2701
2942
 
2702
- * Minor enhancements:
2943
+ Enhancements:
2703
2944
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2704
2945
  * Removed rubyforge page from gem list output
2705
2946
 
2706
- * Bug fixes:
2947
+ Bug fixes:
2707
2948
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2708
2949
  #413 by Jeremy Kemper.
2709
2950
 
2710
2951
  === 2.0.0.preview2.1 / 2012-12-08
2711
2952
 
2712
- * Minor enhancements:
2953
+ Enhancements:
2713
2954
  * Gem::DependencyInstaller now passes build_args down to the installer.
2714
2955
  Pull Request #412 by Sam Rawlins.
2715
2956
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2716
2957
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2717
2958
  Skipper.
2718
2959
 
2719
- * Bug fixes:
2960
+ Bug fixes:
2720
2961
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2721
2962
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2722
2963
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2734,7 +2975,7 @@ This release contains two commits not present in Ruby 2.0.0.preview2. One
2734
2975
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2735
2976
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2736
2977
 
2737
- * Breaking changes:
2978
+ Breaking changes:
2738
2979
 
2739
2980
  * Deprecated Gem.unresolved_deps in favor of
2740
2981
  Gem::Specification.unresolved_deps
@@ -2756,7 +2997,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2756
2997
  * Removed support for Ruby 1.9.1
2757
2998
  * Removed many deprecated methods
2758
2999
 
2759
- * Major enhancements:
3000
+ Enhancements:
2760
3001
 
2761
3002
  * Improved support for default gems shipping with ruby 2.0.0+
2762
3003
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2774,9 +3015,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2774
3015
  file (Gemfile, Isolate, gem.deps.rb).
2775
3016
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2776
3017
  to autodetect (current and parent directories are searched).
2777
-
2778
- * Minor enhancements:
2779
-
2780
3018
  * Added --only-executables option to `gem pristine`. Fixes #326
2781
3019
  * Added -I flag for 'gem query' to exclude installed items
2782
3020
  * Added Gem.install(name, version=default) for interactive sessions
@@ -2810,7 +3048,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2810
3048
  GEM_HOME
2811
3049
  * When building gems with non-world-readable files a warning is shown.
2812
3050
 
2813
- * Bug fixes:
3051
+ Bug fixes:
2814
3052
 
2815
3053
  * Added PID to setup bin_file while installing RubyGems to protect against
2816
3054
  errors. Fixes #328 by ConradIrwin
@@ -2895,7 +3133,7 @@ Bug fixes:
2895
3133
 
2896
3134
  === 1.8.25 / 2013-01-24
2897
3135
 
2898
- * Bug fixes:
3136
+ Bug fixes:
2899
3137
  * Added 11627 to setup bin_file location to protect against errors. Fixes
2900
3138
  #328 by ConradIrwin
2901
3139
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -2906,7 +3144,7 @@ Bug fixes:
2906
3144
 
2907
3145
  === 1.8.24 / 2012-04-27
2908
3146
 
2909
- * 1 bug fix:
3147
+ Bug fixes:
2910
3148
 
2911
3149
  * Install the .pem files properly. Fixes #320
2912
3150
  * Remove OpenSSL dependency from the http code path
@@ -2945,20 +3183,20 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
2945
3183
  certificate checks, but this is not recommended.
2946
3184
 
2947
3185
 
2948
- * 2 security fixes:
3186
+ Security fixes:
2949
3187
  * Disallow redirects from https to http
2950
3188
  * Turn on verification of server SSL certs
2951
3189
 
2952
- * 1 minor feature:
3190
+ Enhancements:
2953
3191
  * Add --clear-sources to fetch
2954
3192
 
2955
- * 2 bug fixes:
3193
+ Bug fixes:
2956
3194
  * Use File.identical? to check if two files are the same.
2957
3195
  * Fixed init_with warning when using psych
2958
3196
 
2959
3197
  === 1.8.22 / 2012-04-13
2960
3198
 
2961
- * 4 bug fixes:
3199
+ Bug fixes:
2962
3200
 
2963
3201
  * Workaround for psych/syck YAML date parsing issue
2964
3202
  * Don't trust the encoding of ARGV. Fixes #307
@@ -2967,14 +3205,14 @@ certificate checks, but this is not recommended.
2967
3205
 
2968
3206
  === 1.8.21 / 2012-03-22
2969
3207
 
2970
- * 2 bug fixes:
3208
+ Bug fixes:
2971
3209
 
2972
3210
  * Add workaround for buggy yaml output from 1.9.2
2973
3211
  * Force 1.9.1 to remove it's prelude code. Fixes #305
2974
3212
 
2975
3213
  === 1.8.20 / 2012-03-21
2976
3214
 
2977
- * 4 bug fixes:
3215
+ Bug fixes:
2978
3216
 
2979
3217
  * Add --force to `gem build` to skip validation. Fixes #297
2980
3218
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
@@ -2983,7 +3221,7 @@ certificate checks, but this is not recommended.
2983
3221
 
2984
3222
  === 1.8.19 / 2012-03-14
2985
3223
 
2986
- * 3 bug fixes:
3224
+ Bug fixes:
2987
3225
 
2988
3226
  * Handle loading psych vs syck properly. Fixes #298
2989
3227
  * Make sure Date objects don't leak in via Marshal
@@ -2991,7 +3229,7 @@ certificate checks, but this is not recommended.
2991
3229
 
2992
3230
  === 1.8.18 / 2012-03-11
2993
3231
 
2994
- * 4 bug fixes:
3232
+ Bug fixes:
2995
3233
 
2996
3234
  * Use Psych API to emit more compatible YAML
2997
3235
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3001,12 +3239,12 @@ certificate checks, but this is not recommended.
3001
3239
 
3002
3240
  === 1.8.17 / 2012-02-17
3003
3241
 
3004
- * 2 minor enhancements:
3242
+ Enhancements:
3005
3243
 
3006
3244
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3007
3245
  * Add a default for where to install rubygems itself
3008
3246
 
3009
- * 3 bug fixes:
3247
+ Bug fixes:
3010
3248
 
3011
3249
  * Fixed gem loading issue caused by dependencies not resolving.
3012
3250
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3016,7 +3254,7 @@ certificate checks, but this is not recommended.
3016
3254
 
3017
3255
  === 1.8.16 / 2012-02-12
3018
3256
 
3019
- * 3 bug fixes:
3257
+ Bug fixes:
3020
3258
 
3021
3259
  * Fix gem specification loading when encoding is not UTF-8. #146
3022
3260
  * Allow group writable if umask allows it already.
@@ -3024,37 +3262,39 @@ certificate checks, but this is not recommended.
3024
3262
 
3025
3263
  === 1.8.15 / 2012-01-06
3026
3264
 
3027
- * 1 bug fix:
3265
+ Bug fixes:
3028
3266
 
3029
3267
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3030
3268
 
3031
3269
  === 1.8.14 / 2012-01-05
3032
3270
 
3033
- * 2 bug fixes:
3271
+ Bug fixes:
3034
3272
 
3035
3273
  * Ignore old/bad cache data in Version
3036
3274
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3037
3275
 
3038
3276
  === 1.8.13 / 2011-12-21
3039
3277
 
3040
- * 1 bug fix:
3278
+ Bug fixes:
3041
3279
 
3042
3280
  * Check loaded_specs properly when trying to satisfy a dep
3043
3281
 
3044
- * 2 minor enhancements:
3282
+ Enhancements:
3045
3283
 
3046
3284
  * Remove using #loaded_path? for performance
3047
3285
  * Remove Zlib workaround for Windows build.
3048
3286
 
3049
3287
  === 1.8.12 / 2011-12-02
3050
3288
 
3051
- * Bug fix:
3289
+ Bug fixes:
3290
+
3052
3291
  * Handle more cases where Syck's DefaultKey showed up in requirements
3053
3292
  and wasn't cleaned out.
3054
3293
 
3055
3294
  === 1.8.11 / 2011-10-03
3056
3295
 
3057
- * Bug fix:
3296
+ Bug fixes:
3297
+
3058
3298
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3059
3299
  namespace.
3060
3300
 
@@ -3064,7 +3304,7 @@ RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3064
3304
  executing code when their specification is loaded. See
3065
3305
  https://github.com/rubygems/rubygems/pull/165 for details.
3066
3306
 
3067
- * 5 bug fixes:
3307
+ Bug fixes:
3068
3308
 
3069
3309
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3070
3310
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3077,19 +3317,19 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3077
3317
 
3078
3318
  === 1.8.9 / 2011-08-23
3079
3319
 
3080
- * Bug fixes:
3320
+ Bug fixes:
3081
3321
 
3082
3322
  * Fixed uninstalling multiple gems using `gem uninstall`
3083
3323
  * Gem.use_paths splatted to take multiple paths! Issue #148
3084
3324
 
3085
3325
  === 1.8.8 / 2011-08-11
3086
3326
 
3087
- * Bug fix:
3327
+ Bug fixes:
3088
3328
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3089
3329
 
3090
3330
  === 1.8.7 / 2011-08-04
3091
3331
 
3092
- * Bug fixes:
3332
+ Bug fixes:
3093
3333
  * Added missing require for `gem uninstall --format-executable`
3094
3334
  * The correct name of the executable being uninstalled is now displayed with
3095
3335
  --format-executable
@@ -3103,12 +3343,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3103
3343
 
3104
3344
  === 1.8.6 / 2011-07-25
3105
3345
 
3106
- * 1 minor enhancement:
3346
+ Enhancements:
3107
3347
 
3108
3348
  * Add autorequires and delay startup of RubyGems until require is called.
3109
3349
  See Ruby bug #4962
3110
3350
 
3111
- * 9 bug fixes:
3351
+ Bug fixes:
3112
3352
 
3113
3353
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3114
3354
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3122,25 +3362,25 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3122
3362
 
3123
3363
  === 1.8.5 / 2011-05-31
3124
3364
 
3125
- * 2 minor enhancement:
3365
+ Enhancements:
3126
3366
 
3127
3367
  * The -u option to 'update local source cache' is official deprecated.
3128
3368
  * Remove has_rdoc deprecations from Specification.
3129
3369
 
3130
- * 2 bug fixes:
3370
+ Bug fixes:
3131
3371
 
3132
3372
  * Handle bad specs more gracefully.
3133
3373
  * Reset any Gem paths changed in the installer.
3134
3374
 
3135
3375
  === 1.8.4 / 2011-05-25
3136
3376
 
3137
- * 1 minor enhancement:
3377
+ Enhancements:
3138
3378
 
3139
3379
  * Removed default_executable deprecations from Specification.
3140
3380
 
3141
3381
  === 1.8.3 / 2011-05-19
3142
3382
 
3143
- * 4 bug fixes:
3383
+ Bug fixes:
3144
3384
 
3145
3385
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3146
3386
  Shota Fukumori
@@ -3151,12 +3391,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3151
3391
 
3152
3392
  === 1.8.2 / 2011-05-11
3153
3393
 
3154
- * 2 minor enhancements:
3394
+ Enhancements:
3155
3395
 
3156
3396
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3157
3397
  * Print out a warning about missing executables.
3158
3398
 
3159
- * 3 bug fixes:
3399
+ Bug fixes:
3160
3400
 
3161
3401
  * Added missing requires to fix various upgrade issues.
3162
3402
  * `gem pristine` respects multiple gem repositories.
@@ -3164,11 +3404,11 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3164
3404
 
3165
3405
  === 1.8.1 / 2011-05-05
3166
3406
 
3167
- * 1 minor enhancement:
3407
+ Enhancements:
3168
3408
 
3169
3409
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3170
3410
 
3171
- * 4 bug fixes:
3411
+ Bug fixes:
3172
3412
 
3173
3413
  * Typo on Indexer rendered it useless on Windows
3174
3414
  * gem dep can fetch remote dependencies for non-latest gems again.
@@ -3190,7 +3430,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3190
3430
  --build-arg` to regenerate a gem with an extension where it requires special
3191
3431
  build arguments.
3192
3432
 
3193
- * 24(+) Deprecations (WOOT!):
3433
+ Deprecations:
3194
3434
 
3195
3435
  * DependencyList.from_source_index deprecated the source_index argument.
3196
3436
  * Deprecated Dependency.new(/regex/).
@@ -3211,14 +3451,11 @@ build arguments.
3211
3451
  * Deprecated all of Gem::GemPathSearcher.
3212
3452
  * Deprecated Gem::Specification#default_executable.
3213
3453
 
3214
- * 2 major enhancements:
3454
+ Enhancements:
3215
3455
 
3216
3456
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3217
3457
  Gem::SourceIndex is completely disconnected from Gem::Specification
3218
3458
  * Refactored GemPathSearcher entirely out. RIPMF
3219
-
3220
- * 41 minor enhancements:
3221
-
3222
3459
  * Added CommandManager#unregister_command
3223
3460
  * Added Dependency#matching_specs + to_specs.
3224
3461
  * Added Dependency#to_spec
@@ -3266,7 +3503,7 @@ build arguments.
3266
3503
  extensions.
3267
3504
  * `gem pristine` can now restore multiple gems.
3268
3505
 
3269
- * 6 bug fixes:
3506
+ Bug fixes:
3270
3507
 
3271
3508
  * DependencyInstaller passed around a source_index instance but used
3272
3509
  Gem.source_index.
@@ -3280,13 +3517,13 @@ build arguments.
3280
3517
 
3281
3518
  === 1.7.1 / 2011-03-32
3282
3519
 
3283
- * 1 bug fix:
3520
+ Bug fixes:
3284
3521
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3285
3522
  `rake check_manifest` showing a diff would not exit with an error.)
3286
3523
 
3287
3524
  === 1.7.0 / 2011-03-32
3288
3525
 
3289
- * 16 Deprecations (woot!)
3526
+ Deprecations:
3290
3527
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3291
3528
  cache.
3292
3529
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3298,7 +3535,7 @@ build arguments.
3298
3535
  test_suite_file(=).
3299
3536
  * Deprecated Specification#has_rdoc= and default_executable=
3300
3537
 
3301
- * 26 minor enhancements:
3538
+ Enhancements:
3302
3539
  * Added stupid simple deprecation module.
3303
3540
  * Added --spec option to `gem unpack` to output a gem's original metadata
3304
3541
  * Added packaging option to Specification#validate
@@ -3330,7 +3567,7 @@ build arguments.
3330
3567
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3331
3568
  * UpdateCommand#which_to_update now takes an optional system argument.
3332
3569
 
3333
- * 11 bug fixes:
3570
+ Bug fixes:
3334
3571
  * Added missing remote fetcher require to pristine command (aarnell)
3335
3572
  * Building gems now checks to ensure all required fields are non-nil
3336
3573
  * Fix option parser when summary is nil.
@@ -3348,7 +3585,7 @@ build arguments.
3348
3585
 
3349
3586
  === 1.6.2 / 2011-03-08
3350
3587
 
3351
- Bug Fixes:
3588
+ Bug fixes:
3352
3589
 
3353
3590
  * require of an activated gem could cause activation conflicts. Fixes
3354
3591
  Bug #29056 by Dave Verwer.
@@ -3356,7 +3593,7 @@ Bug Fixes:
3356
3593
 
3357
3594
  === 1.6.1 / 2011-03-03
3358
3595
 
3359
- Bug Fixes:
3596
+ Bug fixes:
3360
3597
 
3361
3598
  * Installation no longer fails when a dependency from a version that won't be
3362
3599
  installed is unsatisfied.
@@ -3367,7 +3604,7 @@ Bug Fixes:
3367
3604
 
3368
3605
  === 1.6.0 / 2011-02-29
3369
3606
 
3370
- 4 Deprecations:
3607
+ Deprecations:
3371
3608
 
3372
3609
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3373
3610
  'thread' to their applications.
@@ -3376,14 +3613,11 @@ Bug Fixes:
3376
3613
  * Gem::LoadError#version_requirements has been removed. Use
3377
3614
  Gem::LoadError#requirement.
3378
3615
 
3379
- 2 Major Enhancements:
3616
+ Enhancements:
3380
3617
 
3381
3618
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3382
3619
  * Gem::LoadError#version_requirement has been removed. Use
3383
3620
  Gem::LoadError#requirement.
3384
-
3385
- 17 Minor Enhancments:
3386
-
3387
3621
  * Added --key to `gem push` for setting alternate API keys.
3388
3622
  * Added --format-executable support to gem uninstall.
3389
3623
  * Added Gem::DependencyList#clear.
@@ -3407,7 +3641,7 @@ Bug Fixes:
3407
3641
  locally cached gem specifications.
3408
3642
  * SpecFetcher.fetch_spec can now take a string source_uri.
3409
3643
 
3410
- 10 Bug Fixes:
3644
+ Bug fixes:
3411
3645
 
3412
3646
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3413
3647
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3422,14 +3656,14 @@ Bug Fixes:
3422
3656
 
3423
3657
  === 1.5.3 / 2011-02-26
3424
3658
 
3425
- Bug Fixes:
3659
+ Bug fixes:
3426
3660
 
3427
3661
  * Fix for a bug in Syck which causes install failures for gems packaged with
3428
3662
  Psych. Bug #28965 by Aaron Patterson.
3429
3663
 
3430
3664
  === 1.5.2 / 2011-02-10
3431
3665
 
3432
- Bug Fixes:
3666
+ Bug fixes:
3433
3667
 
3434
3668
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3435
3669
 
@@ -3437,11 +3671,11 @@ Bug Fixes:
3437
3671
 
3438
3672
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3439
3673
 
3440
- Minor Enhancement:
3674
+ Enhancements:
3441
3675
 
3442
3676
  * Added ability to do gem update --system X.Y.Z.
3443
3677
 
3444
- Bug Fixes:
3678
+ Bug fixes:
3445
3679
 
3446
3680
  * Scrub !!null YAML from 1.9.2 (install and build).
3447
3681
  * Added missing requires for user_interaction.
@@ -3454,13 +3688,10 @@ Bug Fixes:
3454
3688
 
3455
3689
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3456
3690
 
3457
- Major Enhancements:
3691
+ Enhancements:
3458
3692
 
3459
3693
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3460
3694
  * Merged huge 1.3.7/ruby-core changes to master.
3461
-
3462
- Minor Enhancements:
3463
-
3464
3695
  * Added UPGRADING.rdoc to help deal with 1.9 issues.
3465
3696
  * Gem::Format now gives better errors for corrupt gem files and includes paths
3466
3697
  * Pre-install hooks can now abort gem installation by returning false
@@ -3472,7 +3703,7 @@ Minor Enhancements:
3472
3703
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3473
3704
  Erik Hollensbe.
3474
3705
 
3475
- Bug Fixes:
3706
+ Bug fixes:
3476
3707
 
3477
3708
  * `gem update` was implicitly doing --system.
3478
3709
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3498,7 +3729,7 @@ Since apparently nobody reads my emails, blog posts or the README:
3498
3729
 
3499
3730
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3500
3731
 
3501
- Bug fix:
3732
+ Bug fixes:
3502
3733
 
3503
3734
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3504
3735
 
@@ -3512,7 +3743,7 @@ You have been warned!
3512
3743
 
3513
3744
  NOTE: We've switched to git/github. See README.rdoc for details.
3514
3745
 
3515
- New features:
3746
+ Features:
3516
3747
 
3517
3748
  * Added --launch option to `gem server`. (gthiesfeld)
3518
3749
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3537,14 +3768,14 @@ Bug fixes:
3537
3768
 
3538
3769
  NOTE:
3539
3770
 
3540
- http://rubygems.org is now the default source for downloading gems.
3771
+ https://rubygems.org/ is now the default source for downloading gems.
3541
3772
 
3542
3773
  You may have sources set via ~/.gemrc, so you should replace
3543
- http://gems.rubyforge.org with http://rubygems.org
3774
+ http://gems.rubyforge.org with https://rubygems.org/
3544
3775
 
3545
3776
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3546
3777
 
3547
- New features:
3778
+ Features:
3548
3779
 
3549
3780
  * `gem` commands
3550
3781
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3577,7 +3808,7 @@ Bug fixes:
3577
3808
 
3578
3809
  === 1.3.6 / 2010-02-17
3579
3810
 
3580
- New features:
3811
+ Features:
3581
3812
 
3582
3813
  * `gem` commands
3583
3814
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3608,7 +3839,7 @@ Bug fixes:
3608
3839
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3609
3840
  Patch #27409 by Jakub Šťastný.
3610
3841
 
3611
- Deprecation Notices:
3842
+ Deprecations:
3612
3843
 
3613
3844
  * lib/rubygems/timer.rb has been removed.
3614
3845
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3624,7 +3855,7 @@ Bug fixes:
3624
3855
  * Fix use of prerelease gems.
3625
3856
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3626
3857
 
3627
- Deprecation Notices:
3858
+ Deprecations:
3628
3859
 
3629
3860
  * Bulk index update is no longer supported (the code currently remains, but not
3630
3861
  the tests)
@@ -3633,7 +3864,7 @@ Deprecation Notices:
3633
3864
 
3634
3865
  === 1.3.4 / 2009-05-03
3635
3866
 
3636
- Bug Fixes:
3867
+ Bug fixes:
3637
3868
 
3638
3869
  * Fixed various warnings
3639
3870
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3644,7 +3875,7 @@ Bug Fixes:
3644
3875
  drives. Bug #25882 by Lars Christensen
3645
3876
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3646
3877
 
3647
- Deprecation Notices:
3878
+ Deprecations:
3648
3879
 
3649
3880
  * Bulk index update is no longer supported (the code currently remains, but not
3650
3881
  the tests)
@@ -3653,7 +3884,7 @@ Deprecation Notices:
3653
3884
 
3654
3885
  === 1.3.3 / 2009-05-04
3655
3886
 
3656
- New Features:
3887
+ Features:
3657
3888
 
3658
3889
  * `gem server` allows port names (from /etc/services) with --port.
3659
3890
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3663,7 +3894,7 @@ New Features:
3663
3894
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3664
3895
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3665
3896
 
3666
- Bug Fixes:
3897
+ Bug fixes:
3667
3898
 
3668
3899
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3669
3900
  Eisenberg.
@@ -3685,7 +3916,7 @@ Bug Fixes:
3685
3916
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3686
3917
  reported by Alf Mikula.
3687
3918
 
3688
- Deprecation Notices:
3919
+ Deprecations:
3689
3920
 
3690
3921
  * Gem::manage_gems has been removed.
3691
3922
  * Time::today has been removed early. There was no way to make it warn and be
@@ -3693,7 +3924,7 @@ Deprecation Notices:
3693
3924
 
3694
3925
  === 1.3.2 / 2009-04-15
3695
3926
 
3696
- Select New Features:
3927
+ Features:
3697
3928
 
3698
3929
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3699
3930
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3721,7 +3952,7 @@ Select New Features:
3721
3952
  * Modern indicies can now be updated incrementally.
3722
3953
  * Legacy indicies can be updated separately from modern.
3723
3954
 
3724
- Select Bugs Fixed:
3955
+ Bug fixes:
3725
3956
 
3726
3957
  * Better gem activation error message. Patch #23082.
3727
3958
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3747,7 +3978,7 @@ Select Bugs Fixed:
3747
3978
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3748
3979
  Windows. Bug #22712.
3749
3980
 
3750
- Deprecation Notices:
3981
+ Deprecations:
3751
3982
 
3752
3983
  * Gem::manage_gems has been removed.
3753
3984
  * Time::today will be removed in RubyGems 1.4.
@@ -3757,7 +3988,7 @@ Lavena and Daniel Berger for continuing windows support.
3757
3988
 
3758
3989
  === 1.3.1 / 2008-10-28
3759
3990
 
3760
- Bugs fixed:
3991
+ Bug fixes:
3761
3992
 
3762
3993
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3763
3994
  issues related to no uid support under Windows.
@@ -3768,13 +3999,13 @@ Bugs fixed:
3768
3999
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3769
4000
  * Silence PATH warning.
3770
4001
 
3771
- Deprecation Notices:
4002
+ Deprecations:
3772
4003
 
3773
4004
  * Gem::manage_gems will be removed on or after March 2009.
3774
4005
 
3775
4006
  === 1.3.0 / 2008-09-25
3776
4007
 
3777
- New features:
4008
+ Features:
3778
4009
 
3779
4010
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3780
4011
  stdout is not a TTY, except with --both.
@@ -3788,12 +4019,12 @@ New features:
3788
4019
  * RubyGems now updates the ri cache when the rdoc gem is installed and
3789
4020
  documentation is generated.
3790
4021
 
3791
- Deprecation Notices:
4022
+ Deprecations:
3792
4023
 
3793
4024
  * Gem::manage_gems now warns when called. It will be removed on or after March
3794
4025
  2009.
3795
4026
 
3796
- Bugs Fixed:
4027
+ Bug fixes:
3797
4028
 
3798
4029
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
3799
4030
  Bug #20775 by Hemant Kumar.
@@ -3817,7 +4048,7 @@ Bugs Fixed:
3817
4048
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
3818
4049
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
3819
4050
 
3820
- Other Changes Include:
4051
+ Enhancements:
3821
4052
 
3822
4053
  * `gem help install` now describes _version_ argument to executable stubs
3823
4054
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -3845,7 +4076,7 @@ Other Changes Include:
3845
4076
 
3846
4077
  === 1.2.0 / 2008-06-21
3847
4078
 
3848
- New features:
4079
+ Features:
3849
4080
 
3850
4081
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
3851
4082
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -3864,7 +4095,7 @@ New features:
3864
4095
  * setup.rb now handles --vendor and --destdir for packagers
3865
4096
  * `gem stale` command that lists gems by last access time
3866
4097
 
3867
- Bugs Fixed:
4098
+ Bug fixes:
3868
4099
 
3869
4100
  * File modes from gems are now honored, patch #19737
3870
4101
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -3879,7 +4110,7 @@ Bugs Fixed:
3879
4110
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
3880
4111
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
3881
4112
 
3882
- Other Changes Include:
4113
+ Enhancements:
3883
4114
 
3884
4115
  * setup.rb
3885
4116
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -3900,7 +4131,7 @@ Other Changes Include:
3900
4131
 
3901
4132
  === 1.1.1 / 2008-04-11
3902
4133
 
3903
- Bugs Fixed:
4134
+ Bug fixes:
3904
4135
 
3905
4136
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
3906
4137
  sitelibdir or libdir.
@@ -3917,7 +4148,7 @@ Bugs Fixed:
3917
4148
 
3918
4149
  === 1.1.0 / 2008-03-29
3919
4150
 
3920
- New features:
4151
+ Features:
3921
4152
 
3922
4153
  * RubyGems now uses persistent connections on index updates. Index updates are
3923
4154
  much faster now.
@@ -3929,7 +4160,7 @@ New features:
3929
4160
  * `gem spec` now extracts specifications from .gem files.
3930
4161
  * `gem query --installed` to aid automation of checking for gems.
3931
4162
 
3932
- Bugs Fixed:
4163
+ Bug fixes:
3933
4164
 
3934
4165
  * RubyGems works with both Config and RbConfig now.
3935
4166
  * Executables are now cleaned upon uninstall.
@@ -3945,7 +4176,7 @@ Bugs Fixed:
3945
4176
  * Gem stub scripts on windows now work outside Gem.bindir.
3946
4177
  * `gem sources -r` now works without network access.
3947
4178
 
3948
- Other Changes Include:
4179
+ Enhancements:
3949
4180
 
3950
4181
  * RubyGems now requires Ruby > 1.8.3.
3951
4182
  * Release notes are now printed upon installation.
@@ -3958,24 +4189,24 @@ For a full list of changes to RubyGems, see the ChangeLog file.
3958
4189
 
3959
4190
  === 1.0.1 / 2007-12-20
3960
4191
 
3961
- Bugs Fixed:
4192
+ Bug fixes:
3962
4193
 
3963
4194
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
3964
4195
  * `gem build` on 1.8.3 fixed
3965
4196
 
3966
- Other Changes Include:
4197
+ Enhancements:
3967
4198
 
3968
4199
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
3969
4200
  this is official in RubyGems 1.0.1.
3970
4201
 
3971
4202
  === 1.0.0 / 2007-12-20
3972
4203
 
3973
- Major New Features Include:
4204
+ Features:
3974
4205
 
3975
4206
  * RubyGems warns about various problems with gemspecs during gem building
3976
4207
  * More-consistent versioning for the RubyGems software
3977
4208
 
3978
- Other Changes Include:
4209
+ Enhancements:
3979
4210
 
3980
4211
  * Fixed various bugs and problems with installing gems on Windows
3981
4212
  * Fixed using `gem server` for installing gems
@@ -3989,7 +4220,7 @@ Other Changes Include:
3989
4220
  * `gem unpack` can now unpack into a specific directory with --target
3990
4221
  * OpenSSL is no longer required by default
3991
4222
 
3992
- Deprecations and Deletions:
4223
+ Breaking changes:
3993
4224
 
3994
4225
  * Kernel#require_gem has been removed
3995
4226
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4003,7 +4234,7 @@ Deprecations and Deletions:
4003
4234
 
4004
4235
  === 0.9.5 / 2007-11-19
4005
4236
 
4006
- Major New Features Include:
4237
+ Features:
4007
4238
 
4008
4239
  * Platform support
4009
4240
  * Automatic installation of platform gems
@@ -4015,7 +4246,7 @@ Major New Features Include:
4015
4246
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4016
4247
  with the One-Click Installer.
4017
4248
 
4018
- Other Changes Include:
4249
+ Enhancements:
4019
4250
 
4020
4251
  * Time::today is deprecated and will be removed at a future date
4021
4252
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4066,7 +4297,7 @@ If you are experiencing problems with the source index (e.g. strange
4066
4297
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4067
4298
  messsage), we recommend upgrading to RubyGems 0.9.4.
4068
4299
 
4069
- Bug Fixes Include:
4300
+ Bug fixes:
4070
4301
 
4071
4302
  * Several people have been experiencing problems with no method errors
4072
4303
  on the source index cache. The source index cache is now a bit more
@@ -4080,7 +4311,7 @@ Bug Fixes Include:
4080
4311
 
4081
4312
  === 0.9.3 / 2007-05-10
4082
4313
 
4083
- Bug Fixes Include:
4314
+ Bug fixes:
4084
4315
 
4085
4316
  The ZLib library on Windows will occasionally complains about a buffer error
4086
4317
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4090,7 +4321,7 @@ have permanently enabled the work around on all versions.
4090
4321
 
4091
4322
  === 0.9.2 / 2007-02-05
4092
4323
 
4093
- Bug Fixes Include:
4324
+ Bug fixes:
4094
4325
 
4095
4326
  * The "unpack" command now works properly.
4096
4327
  * User name and password are now passed properly to the authenticating
@@ -4108,7 +4339,7 @@ number one change is that we can now download the gem index
4108
4339
  incrementally. This will greatly speed up the gem command when only a
4109
4340
  few gems are out of date.
4110
4341
 
4111
- Major Enhancments include:
4342
+ Enhancements:
4112
4343
 
4113
4344
  * The gem index is now downloaded incrementally, only updating entries
4114
4345
  that are out of date. If more than 50 entries are out of date, we
@@ -4123,9 +4354,6 @@ Major Enhancments include:
4123
4354
  * Both RI and RDOC documents are now generated by default.
4124
4355
  * A gemri command is included to read gem RI docs (only needed for
4125
4356
  Ruby 1.8.4 or earlier).
4126
-
4127
- Minor enhancements include:
4128
-
4129
4357
  * Version 0.0.0 is now a valid gem version.
4130
4358
  * Better detection of missing SSL functionality.
4131
4359
  * SSL is not required if the security policy does not require
@@ -4138,7 +4366,7 @@ Minor enhancements include:
4138
4366
  * .rbw is now a supported suffix for RubyGem's custom require.
4139
4367
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4140
4368
 
4141
- Bug Fixes:
4369
+ Bug fixes:
4142
4370
 
4143
4371
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4144
4372
  cross-Ruby version compatibility issues.