rubygems-update 3.2.0.rc.1 → 3.2.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (497) hide show
  1. checksums.yaml +4 -4
  2. data/CONTRIBUTING.md +23 -8
  3. data/History.txt +307 -239
  4. data/Manifest.txt +36 -54
  5. data/POLICIES.md +4 -3
  6. data/Rakefile +29 -51
  7. data/bundler/CHANGELOG.md +786 -690
  8. data/bundler/UPGRADING.md +3 -3
  9. data/bundler/lib/bundler.rb +17 -3
  10. data/bundler/lib/bundler/build_metadata.rb +4 -12
  11. data/bundler/lib/bundler/cli.rb +31 -15
  12. data/bundler/lib/bundler/cli/add.rb +1 -1
  13. data/bundler/lib/bundler/cli/binstubs.rb +6 -2
  14. data/bundler/lib/bundler/cli/cache.rb +1 -7
  15. data/bundler/lib/bundler/cli/clean.rb +1 -1
  16. data/bundler/lib/bundler/cli/common.rb +14 -0
  17. data/bundler/lib/bundler/cli/doctor.rb +1 -1
  18. data/bundler/lib/bundler/cli/exec.rb +4 -4
  19. data/bundler/lib/bundler/cli/fund.rb +36 -0
  20. data/bundler/lib/bundler/cli/gem.rb +1 -1
  21. data/bundler/lib/bundler/cli/info.rb +2 -1
  22. data/bundler/lib/bundler/cli/init.rb +1 -1
  23. data/bundler/lib/bundler/cli/inject.rb +1 -1
  24. data/bundler/lib/bundler/cli/install.rb +18 -7
  25. data/bundler/lib/bundler/cli/list.rb +1 -1
  26. data/bundler/lib/bundler/cli/outdated.rb +1 -3
  27. data/bundler/lib/bundler/cli/pristine.rb +1 -1
  28. data/bundler/lib/bundler/cli/show.rb +1 -1
  29. data/bundler/lib/bundler/cli/update.rb +3 -1
  30. data/bundler/lib/bundler/compact_index_client.rb +1 -1
  31. data/bundler/lib/bundler/compact_index_client/cache.rb +6 -14
  32. data/bundler/lib/bundler/compact_index_client/gem_parser.rb +28 -0
  33. data/bundler/lib/bundler/compact_index_client/updater.rb +5 -5
  34. data/bundler/lib/bundler/definition.rb +49 -60
  35. data/bundler/lib/bundler/dep_proxy.rb +1 -1
  36. data/bundler/lib/bundler/dependency.rb +3 -1
  37. data/bundler/lib/bundler/dsl.rb +4 -4
  38. data/bundler/lib/bundler/endpoint_specification.rb +1 -1
  39. data/bundler/lib/bundler/env.rb +1 -1
  40. data/bundler/lib/bundler/feature_flag.rb +0 -1
  41. data/bundler/lib/bundler/fetcher.rb +3 -3
  42. data/bundler/lib/bundler/fetcher/base.rb +1 -1
  43. data/bundler/lib/bundler/fetcher/compact_index.rb +1 -1
  44. data/bundler/lib/bundler/fetcher/downloader.rb +1 -1
  45. data/bundler/lib/bundler/fetcher/index.rb +3 -4
  46. data/bundler/lib/bundler/friendly_errors.rb +18 -3
  47. data/bundler/lib/bundler/gem_helper.rb +17 -9
  48. data/bundler/lib/bundler/gem_helpers.rb +36 -25
  49. data/bundler/lib/bundler/gem_version_promoter.rb +1 -1
  50. data/bundler/lib/bundler/graph.rb +1 -1
  51. data/bundler/lib/bundler/index.rb +6 -2
  52. data/bundler/lib/bundler/injector.rb +10 -3
  53. data/bundler/lib/bundler/installer.rb +8 -6
  54. data/bundler/lib/bundler/installer/gem_installer.rb +1 -1
  55. data/bundler/lib/bundler/installer/parallel_installer.rb +1 -1
  56. data/bundler/lib/bundler/installer/standalone.rb +2 -2
  57. data/bundler/lib/bundler/lazy_specification.rb +22 -11
  58. data/bundler/lib/bundler/lockfile_generator.rb +1 -1
  59. data/bundler/lib/bundler/lockfile_parser.rb +1 -1
  60. data/bundler/lib/bundler/man/.document +1 -0
  61. data/bundler/{man/bundle-add.ronn → lib/bundler/man/bundle-add.1.ronn} +0 -0
  62. data/bundler/{man/bundle-binstubs.ronn → lib/bundler/man/bundle-binstubs.1.ronn} +2 -4
  63. data/bundler/{man/bundle-cache.ronn → lib/bundler/man/bundle-cache.1.ronn} +0 -0
  64. data/bundler/{man/bundle-check.ronn → lib/bundler/man/bundle-check.1.ronn} +0 -0
  65. data/bundler/{man/bundle-clean.ronn → lib/bundler/man/bundle-clean.1.ronn} +0 -0
  66. data/bundler/{man/bundle-config.ronn → lib/bundler/man/bundle-config.1.ronn} +14 -21
  67. data/bundler/{man/bundle-doctor.ronn → lib/bundler/man/bundle-doctor.1.ronn} +0 -0
  68. data/bundler/{man/bundle-exec.ronn → lib/bundler/man/bundle-exec.1.ronn} +0 -0
  69. data/bundler/{man/bundle-gem.ronn → lib/bundler/man/bundle-gem.1.ronn} +0 -0
  70. data/bundler/{man/bundle-info.ronn → lib/bundler/man/bundle-info.1.ronn} +0 -0
  71. data/bundler/{man/bundle-init.ronn → lib/bundler/man/bundle-init.1.ronn} +0 -0
  72. data/bundler/{man/bundle-inject.ronn → lib/bundler/man/bundle-inject.1.ronn} +0 -0
  73. data/bundler/{man/bundle-install.ronn → lib/bundler/man/bundle-install.1.ronn} +25 -3
  74. data/bundler/{man/bundle-list.ronn → lib/bundler/man/bundle-list.1.ronn} +0 -0
  75. data/bundler/{man/bundle-lock.ronn → lib/bundler/man/bundle-lock.1.ronn} +0 -0
  76. data/bundler/{man/bundle-open.ronn → lib/bundler/man/bundle-open.1.ronn} +0 -0
  77. data/bundler/{man/bundle-outdated.ronn → lib/bundler/man/bundle-outdated.1.ronn} +0 -0
  78. data/bundler/{man/bundle-platform.ronn → lib/bundler/man/bundle-platform.1.ronn} +0 -0
  79. data/bundler/{man/bundle-pristine.ronn → lib/bundler/man/bundle-pristine.1.ronn} +0 -0
  80. data/bundler/{man/bundle-remove.ronn → lib/bundler/man/bundle-remove.1.ronn} +0 -0
  81. data/bundler/{man/bundle-show.ronn → lib/bundler/man/bundle-show.1.ronn} +0 -0
  82. data/bundler/{man/bundle-update.ronn → lib/bundler/man/bundle-update.1.ronn} +0 -0
  83. data/bundler/{man/bundle-viz.ronn → lib/bundler/man/bundle-viz.1.ronn} +0 -0
  84. data/bundler/{man/bundle.ronn → lib/bundler/man/bundle.1.ronn} +0 -0
  85. data/bundler/{man → lib/bundler/man}/gemfile.5.ronn +4 -4
  86. data/bundler/lib/bundler/mirror.rb +2 -2
  87. data/bundler/lib/bundler/plugin.rb +5 -6
  88. data/bundler/lib/bundler/plugin/api/source.rb +1 -1
  89. data/bundler/lib/bundler/plugin/dsl.rb +1 -1
  90. data/bundler/lib/bundler/plugin/index.rb +1 -1
  91. data/bundler/lib/bundler/plugin/installer.rb +1 -1
  92. data/bundler/lib/bundler/plugin/installer/rubygems.rb +1 -1
  93. data/bundler/lib/bundler/plugin/source_list.rb +1 -1
  94. data/bundler/lib/bundler/remote_specification.rb +1 -1
  95. data/bundler/lib/bundler/resolver.rb +26 -30
  96. data/bundler/lib/bundler/resolver/spec_group.rb +21 -27
  97. data/bundler/lib/bundler/retry.rb +1 -1
  98. data/bundler/lib/bundler/ruby_version.rb +1 -1
  99. data/bundler/lib/bundler/rubygems_ext.rb +46 -1
  100. data/bundler/lib/bundler/rubygems_gem_installer.rb +2 -2
  101. data/bundler/lib/bundler/rubygems_integration.rb +22 -12
  102. data/bundler/lib/bundler/runtime.rb +2 -2
  103. data/bundler/lib/bundler/settings.rb +49 -43
  104. data/bundler/lib/bundler/shared_helpers.rb +1 -1
  105. data/bundler/lib/bundler/similarity_detector.rb +1 -1
  106. data/bundler/lib/bundler/source.rb +1 -1
  107. data/bundler/lib/bundler/source/git.rb +1 -1
  108. data/bundler/lib/bundler/source/git/git_proxy.rb +5 -3
  109. data/bundler/lib/bundler/source/path.rb +2 -2
  110. data/bundler/lib/bundler/source/path/installer.rb +1 -1
  111. data/bundler/lib/bundler/source/rubygems.rb +2 -2
  112. data/bundler/lib/bundler/source/rubygems/remote.rb +1 -1
  113. data/bundler/lib/bundler/source_list.rb +2 -2
  114. data/bundler/lib/bundler/spec_set.rb +7 -9
  115. data/bundler/lib/bundler/stub_specification.rb +1 -3
  116. data/bundler/lib/bundler/templates/newgem/README.md.tt +1 -2
  117. data/bundler/lib/bundler/templates/newgem/bin/console.tt +1 -2
  118. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -2
  119. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +8 -2
  120. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +0 -1
  121. data/bundler/lib/bundler/ui/shell.rb +5 -5
  122. data/bundler/lib/bundler/uri_credentials_filter.rb +3 -1
  123. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +0 -1
  124. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +34 -1
  125. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +2 -2
  126. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  127. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  128. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +38 -40
  129. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +8 -1
  130. data/bundler/lib/bundler/vendor/tmpdir/lib/tmpdir.rb +154 -0
  131. data/bundler/lib/bundler/vendored_persistent.rb +0 -7
  132. data/bundler/lib/bundler/vendored_tmpdir.rb +4 -0
  133. data/bundler/lib/bundler/version.rb +1 -1
  134. data/bundler/lib/bundler/worker.rb +1 -1
  135. data/bundler/lib/bundler/yaml_serializer.rb +1 -1
  136. data/bundler/man/bundle-add.1 +1 -1
  137. data/bundler/man/bundle-binstubs.1 +5 -3
  138. data/bundler/man/bundle-cache.1 +1 -1
  139. data/bundler/man/bundle-check.1 +1 -1
  140. data/bundler/man/bundle-clean.1 +1 -1
  141. data/bundler/man/bundle-config.1 +14 -17
  142. data/bundler/man/bundle-doctor.1 +1 -1
  143. data/bundler/man/bundle-exec.1 +1 -1
  144. data/bundler/man/bundle-gem.1 +1 -1
  145. data/bundler/man/bundle-info.1 +1 -1
  146. data/bundler/man/bundle-init.1 +1 -1
  147. data/bundler/man/bundle-inject.1 +1 -1
  148. data/bundler/man/bundle-install.1 +30 -3
  149. data/bundler/man/bundle-list.1 +1 -1
  150. data/bundler/man/bundle-lock.1 +1 -1
  151. data/bundler/man/bundle-open.1 +1 -1
  152. data/bundler/man/bundle-outdated.1 +1 -1
  153. data/bundler/man/bundle-platform.1 +1 -1
  154. data/bundler/man/bundle-pristine.1 +1 -1
  155. data/bundler/man/bundle-remove.1 +1 -1
  156. data/bundler/man/bundle-show.1 +1 -1
  157. data/bundler/man/bundle-update.1 +1 -1
  158. data/bundler/man/bundle-viz.1 +1 -1
  159. data/bundler/man/bundle.1 +1 -1
  160. data/bundler/man/gemfile.5 +4 -4
  161. data/lib/rubygems.rb +8 -7
  162. data/lib/rubygems/available_set.rb +1 -3
  163. data/lib/rubygems/basic_specification.rb +0 -4
  164. data/lib/rubygems/command.rb +0 -2
  165. data/lib/rubygems/command_manager.rb +2 -4
  166. data/lib/rubygems/commands/build_command.rb +40 -20
  167. data/lib/rubygems/commands/cert_command.rb +1 -9
  168. data/lib/rubygems/commands/check_command.rb +0 -2
  169. data/lib/rubygems/commands/cleanup_command.rb +8 -4
  170. data/lib/rubygems/commands/contents_command.rb +0 -2
  171. data/lib/rubygems/commands/dependency_command.rb +0 -2
  172. data/lib/rubygems/commands/environment_command.rb +1 -3
  173. data/lib/rubygems/commands/fetch_command.rb +0 -2
  174. data/lib/rubygems/commands/generate_index_command.rb +0 -2
  175. data/lib/rubygems/commands/help_command.rb +2 -2
  176. data/lib/rubygems/commands/info_command.rb +0 -2
  177. data/lib/rubygems/commands/install_command.rb +0 -2
  178. data/lib/rubygems/commands/list_command.rb +0 -2
  179. data/lib/rubygems/commands/lock_command.rb +0 -2
  180. data/lib/rubygems/commands/mirror_command.rb +0 -2
  181. data/lib/rubygems/commands/open_command.rb +0 -2
  182. data/lib/rubygems/commands/outdated_command.rb +0 -2
  183. data/lib/rubygems/commands/owner_command.rb +9 -4
  184. data/lib/rubygems/commands/pristine_command.rb +1 -3
  185. data/lib/rubygems/commands/push_command.rb +6 -5
  186. data/lib/rubygems/commands/query_command.rb +16 -1
  187. data/lib/rubygems/commands/rdoc_command.rb +0 -2
  188. data/lib/rubygems/commands/search_command.rb +0 -2
  189. data/lib/rubygems/commands/server_command.rb +3 -1
  190. data/lib/rubygems/commands/setup_command.rb +21 -44
  191. data/lib/rubygems/commands/signin_command.rb +0 -2
  192. data/lib/rubygems/commands/signout_command.rb +0 -2
  193. data/lib/rubygems/commands/sources_command.rb +6 -4
  194. data/lib/rubygems/commands/specification_command.rb +6 -2
  195. data/lib/rubygems/commands/stale_command.rb +0 -2
  196. data/lib/rubygems/commands/uninstall_command.rb +0 -2
  197. data/lib/rubygems/commands/unpack_command.rb +0 -2
  198. data/lib/rubygems/commands/update_command.rb +20 -5
  199. data/lib/rubygems/commands/which_command.rb +0 -2
  200. data/lib/rubygems/commands/yank_command.rb +4 -7
  201. data/lib/rubygems/config_file.rb +0 -2
  202. data/lib/rubygems/core_ext/kernel_require.rb +3 -0
  203. data/lib/rubygems/core_ext/kernel_warn.rb +12 -13
  204. data/lib/rubygems/defaults.rb +2 -2
  205. data/lib/rubygems/dependency.rb +1 -3
  206. data/lib/rubygems/dependency_installer.rb +5 -5
  207. data/lib/rubygems/dependency_list.rb +0 -2
  208. data/lib/rubygems/doctor.rb +0 -2
  209. data/lib/rubygems/errors.rb +0 -12
  210. data/lib/rubygems/exceptions.rb +0 -20
  211. data/lib/rubygems/ext/builder.rb +13 -34
  212. data/lib/rubygems/ext/cmake_builder.rb +4 -6
  213. data/lib/rubygems/ext/configure_builder.rb +4 -6
  214. data/lib/rubygems/ext/ext_conf_builder.rb +19 -16
  215. data/lib/rubygems/ext/rake_builder.rb +4 -6
  216. data/lib/rubygems/gem_runner.rb +0 -2
  217. data/lib/rubygems/gemcutter_utilities.rb +101 -20
  218. data/lib/rubygems/indexer.rb +0 -3
  219. data/lib/rubygems/install_update_options.rb +2 -2
  220. data/lib/rubygems/installer.rb +16 -40
  221. data/lib/rubygems/installer_test_case.rb +7 -10
  222. data/lib/rubygems/mock_gem_ui.rb +0 -6
  223. data/lib/rubygems/name_tuple.rb +1 -3
  224. data/lib/rubygems/openssl.rb +7 -0
  225. data/lib/rubygems/package.rb +6 -12
  226. data/lib/rubygems/package/digest_io.rb +0 -2
  227. data/lib/rubygems/package/file_source.rb +0 -2
  228. data/lib/rubygems/package/io_source.rb +0 -2
  229. data/lib/rubygems/package/old.rb +0 -2
  230. data/lib/rubygems/package/tar_header.rb +1 -3
  231. data/lib/rubygems/package/tar_reader.rb +0 -2
  232. data/lib/rubygems/package/tar_reader/entry.rb +0 -2
  233. data/lib/rubygems/package/tar_test_case.rb +1 -3
  234. data/lib/rubygems/package/tar_writer.rb +0 -6
  235. data/lib/rubygems/package_task.rb +0 -2
  236. data/lib/rubygems/path_support.rb +0 -2
  237. data/lib/rubygems/platform.rb +18 -9
  238. data/lib/rubygems/psych_tree.rb +0 -2
  239. data/lib/rubygems/query_utils.rb +0 -9
  240. data/lib/rubygems/remote_fetcher.rb +6 -9
  241. data/lib/rubygems/request.rb +4 -11
  242. data/lib/rubygems/request/connection_pools.rb +0 -4
  243. data/lib/rubygems/request/http_pool.rb +0 -2
  244. data/lib/rubygems/request/https_pool.rb +0 -2
  245. data/lib/rubygems/request_set.rb +2 -15
  246. data/lib/rubygems/request_set/gem_dependency_api.rb +4 -6
  247. data/lib/rubygems/request_set/lockfile.rb +0 -4
  248. data/lib/rubygems/request_set/lockfile/parser.rb +0 -2
  249. data/lib/rubygems/request_set/lockfile/tokenizer.rb +0 -2
  250. data/lib/rubygems/requirement.rb +8 -8
  251. data/lib/rubygems/resolver.rb +7 -4
  252. data/lib/rubygems/resolver/activation_request.rb +9 -3
  253. data/lib/rubygems/resolver/api_set.rb +27 -20
  254. data/lib/rubygems/resolver/api_set/gem_parser.rb +20 -0
  255. data/lib/rubygems/resolver/api_specification.rb +23 -9
  256. data/lib/rubygems/resolver/best_set.rb +1 -3
  257. data/lib/rubygems/resolver/composed_set.rb +0 -2
  258. data/lib/rubygems/resolver/conflict.rb +1 -3
  259. data/lib/rubygems/resolver/current_set.rb +0 -2
  260. data/lib/rubygems/resolver/dependency_request.rb +1 -3
  261. data/lib/rubygems/resolver/git_set.rb +0 -2
  262. data/lib/rubygems/resolver/git_specification.rb +0 -2
  263. data/lib/rubygems/resolver/index_set.rb +0 -2
  264. data/lib/rubygems/resolver/index_specification.rb +26 -2
  265. data/lib/rubygems/resolver/installed_specification.rb +0 -2
  266. data/lib/rubygems/resolver/installer_set.rb +57 -10
  267. data/lib/rubygems/resolver/local_specification.rb +0 -2
  268. data/lib/rubygems/resolver/lock_set.rb +1 -3
  269. data/lib/rubygems/resolver/lock_specification.rb +0 -2
  270. data/lib/rubygems/resolver/molinillo/lib/molinillo.rb +6 -5
  271. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +7 -0
  272. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +1 -0
  273. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +39 -5
  274. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +1 -0
  275. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +2 -1
  276. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +2 -1
  277. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +2 -1
  278. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +2 -1
  279. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +7 -6
  280. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +2 -1
  281. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +4 -3
  282. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +43 -10
  283. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +75 -7
  284. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +2 -1
  285. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/specification_provider.rb +1 -0
  286. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +3 -1
  287. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +506 -165
  288. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolver.rb +3 -2
  289. data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +8 -4
  290. data/lib/rubygems/resolver/requirement_list.rb +0 -2
  291. data/lib/rubygems/resolver/set.rb +0 -2
  292. data/lib/rubygems/resolver/source_set.rb +0 -2
  293. data/lib/rubygems/resolver/spec_specification.rb +14 -2
  294. data/lib/rubygems/resolver/specification.rb +13 -3
  295. data/lib/rubygems/resolver/stats.rb +0 -2
  296. data/lib/rubygems/resolver/vendor_set.rb +0 -2
  297. data/lib/rubygems/resolver/vendor_specification.rb +0 -2
  298. data/lib/rubygems/s3_uri_signer.rb +2 -8
  299. data/lib/rubygems/security.rb +2 -9
  300. data/lib/rubygems/security/policy.rb +1 -5
  301. data/lib/rubygems/security/signer.rb +1 -3
  302. data/lib/rubygems/security/trust_dir.rb +0 -2
  303. data/lib/rubygems/server.rb +7 -4
  304. data/lib/rubygems/source.rb +23 -12
  305. data/lib/rubygems/source/git.rb +0 -2
  306. data/lib/rubygems/source/installed.rb +0 -2
  307. data/lib/rubygems/source/local.rb +0 -2
  308. data/lib/rubygems/source/lock.rb +0 -2
  309. data/lib/rubygems/source/specific_file.rb +0 -2
  310. data/lib/rubygems/source/vendor.rb +0 -2
  311. data/lib/rubygems/source_list.rb +0 -2
  312. data/lib/rubygems/spec_fetcher.rb +1 -3
  313. data/lib/rubygems/specification.rb +27 -19
  314. data/lib/rubygems/specification_policy.rb +0 -2
  315. data/lib/rubygems/ssl_certs/{index.rubygems.org → rubygems.org}/GlobalSignRootCA.pem +0 -0
  316. data/lib/rubygems/ssl_certs/rubygems.org/GlobalSignRootCA_R3.pem +21 -0
  317. data/lib/rubygems/stub_specification.rb +1 -5
  318. data/lib/rubygems/syck_hack.rb +0 -2
  319. data/lib/rubygems/test_case.rb +18 -42
  320. data/lib/rubygems/test_utilities.rb +6 -13
  321. data/lib/rubygems/uninstaller.rb +0 -2
  322. data/lib/rubygems/uri_formatter.rb +2 -3
  323. data/lib/rubygems/uri_parser.rb +0 -2
  324. data/lib/rubygems/user_interaction.rb +0 -16
  325. data/lib/rubygems/util.rb +0 -2
  326. data/lib/rubygems/util/licenses.rb +0 -2
  327. data/lib/rubygems/util/list.rb +0 -2
  328. data/lib/rubygems/validator.rb +0 -2
  329. data/lib/rubygems/version.rb +0 -2
  330. data/lib/rubygems/version_option.rb +6 -0
  331. data/rubygems-update.gemspec +1 -1
  332. data/test/rubygems/plugin/load/rubygems_plugin.rb +0 -2
  333. data/test/rubygems/rubygems/commands/crash_command.rb +0 -2
  334. data/test/rubygems/rubygems_plugin.rb +0 -2
  335. data/test/rubygems/test_bundled_ca.rb +42 -41
  336. data/test/rubygems/test_config.rb +0 -2
  337. data/test/rubygems/test_deprecate.rb +0 -6
  338. data/test/rubygems/test_gem.rb +3 -5
  339. data/test/rubygems/test_gem_available_set.rb +0 -2
  340. data/test/rubygems/test_gem_bundler_version_finder.rb +0 -2
  341. data/test/rubygems/test_gem_command.rb +0 -4
  342. data/test/rubygems/test_gem_command_manager.rb +0 -2
  343. data/test/rubygems/test_gem_commands_build_command.rb +226 -13
  344. data/test/rubygems/test_gem_commands_cert_command.rb +2 -4
  345. data/test/rubygems/test_gem_commands_check_command.rb +0 -2
  346. data/test/rubygems/test_gem_commands_cleanup_command.rb +13 -4
  347. data/test/rubygems/test_gem_commands_contents_command.rb +2 -4
  348. data/test/rubygems/test_gem_commands_dependency_command.rb +0 -2
  349. data/test/rubygems/test_gem_commands_environment_command.rb +0 -2
  350. data/test/rubygems/test_gem_commands_fetch_command.rb +0 -2
  351. data/test/rubygems/test_gem_commands_generate_index_command.rb +0 -2
  352. data/test/rubygems/test_gem_commands_help_command.rb +15 -4
  353. data/test/rubygems/test_gem_commands_info_command.rb +0 -2
  354. data/test/rubygems/test_gem_commands_install_command.rb +132 -3
  355. data/test/rubygems/test_gem_commands_list_command.rb +0 -2
  356. data/test/rubygems/test_gem_commands_lock_command.rb +0 -2
  357. data/test/rubygems/test_gem_commands_mirror.rb +0 -2
  358. data/test/rubygems/test_gem_commands_open_command.rb +0 -2
  359. data/test/rubygems/test_gem_commands_outdated_command.rb +0 -2
  360. data/test/rubygems/test_gem_commands_owner_command.rb +48 -2
  361. data/test/rubygems/test_gem_commands_pristine_command.rb +2 -4
  362. data/test/rubygems/test_gem_commands_push_command.rb +70 -7
  363. data/test/rubygems/test_gem_commands_query_command.rb +3 -7
  364. data/test/rubygems/test_gem_commands_search_command.rb +0 -2
  365. data/test/rubygems/test_gem_commands_server_command.rb +0 -2
  366. data/test/rubygems/test_gem_commands_setup_command.rb +19 -30
  367. data/test/rubygems/test_gem_commands_signin_command.rb +27 -5
  368. data/test/rubygems/test_gem_commands_signout_command.rb +0 -2
  369. data/test/rubygems/test_gem_commands_sources_command.rb +60 -2
  370. data/test/rubygems/test_gem_commands_specification_command.rb +28 -2
  371. data/test/rubygems/test_gem_commands_stale_command.rb +0 -2
  372. data/test/rubygems/test_gem_commands_uninstall_command.rb +0 -2
  373. data/test/rubygems/test_gem_commands_unpack_command.rb +0 -2
  374. data/test/rubygems/test_gem_commands_update_command.rb +50 -4
  375. data/test/rubygems/test_gem_commands_which_command.rb +0 -2
  376. data/test/rubygems/test_gem_commands_yank_command.rb +30 -2
  377. data/test/rubygems/test_gem_config_file.rb +0 -2
  378. data/test/rubygems/test_gem_dependency.rb +0 -2
  379. data/test/rubygems/test_gem_dependency_installer.rb +38 -4
  380. data/test/rubygems/test_gem_dependency_list.rb +2 -4
  381. data/test/rubygems/test_gem_dependency_resolution_error.rb +0 -2
  382. data/test/rubygems/test_gem_doctor.rb +0 -2
  383. data/test/rubygems/test_gem_ext_builder.rb +12 -22
  384. data/test/rubygems/test_gem_ext_cmake_builder.rb +3 -11
  385. data/test/rubygems/test_gem_ext_configure_builder.rb +3 -11
  386. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +9 -28
  387. data/test/rubygems/test_gem_ext_rake_builder.rb +30 -15
  388. data/test/rubygems/test_gem_gem_runner.rb +7 -6
  389. data/test/rubygems/test_gem_gemcutter_utilities.rb +3 -5
  390. data/test/rubygems/test_gem_impossible_dependencies_error.rb +0 -2
  391. data/test/rubygems/test_gem_indexer.rb +0 -2
  392. data/test/rubygems/test_gem_install_update_options.rb +14 -4
  393. data/test/rubygems/test_gem_installer.rb +113 -74
  394. data/test/rubygems/test_gem_local_remote_options.rb +0 -2
  395. data/test/rubygems/test_gem_name_tuple.rb +0 -2
  396. data/test/rubygems/test_gem_package.rb +25 -19
  397. data/test/rubygems/test_gem_package_old.rb +4 -6
  398. data/test/rubygems/test_gem_package_tar_header.rb +0 -2
  399. data/test/rubygems/test_gem_package_tar_reader.rb +0 -2
  400. data/test/rubygems/test_gem_package_tar_reader_entry.rb +0 -2
  401. data/test/rubygems/test_gem_package_tar_writer.rb +1 -3
  402. data/test/rubygems/test_gem_package_task.rb +0 -2
  403. data/test/rubygems/test_gem_path_support.rb +0 -2
  404. data/test/rubygems/test_gem_platform.rb +63 -6
  405. data/test/rubygems/test_gem_rdoc.rb +0 -2
  406. data/test/rubygems/test_gem_remote_fetcher.rb +18 -23
  407. data/test/rubygems/test_gem_request.rb +2 -6
  408. data/test/rubygems/test_gem_request_connection_pools.rb +0 -4
  409. data/test/rubygems/test_gem_request_set.rb +0 -2
  410. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +0 -2
  411. data/test/rubygems/test_gem_request_set_lockfile.rb +4 -6
  412. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +0 -2
  413. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +0 -2
  414. data/test/rubygems/test_gem_requirement.rb +8 -2
  415. data/test/rubygems/test_gem_resolver.rb +0 -2
  416. data/test/rubygems/test_gem_resolver_activation_request.rb +0 -2
  417. data/test/rubygems/test_gem_resolver_api_set.rb +58 -57
  418. data/test/rubygems/test_gem_resolver_api_specification.rb +3 -5
  419. data/test/rubygems/test_gem_resolver_best_set.rb +3 -5
  420. data/test/rubygems/test_gem_resolver_composed_set.rb +0 -2
  421. data/test/rubygems/test_gem_resolver_conflict.rb +1 -3
  422. data/test/rubygems/test_gem_resolver_dependency_request.rb +0 -2
  423. data/test/rubygems/test_gem_resolver_git_set.rb +0 -2
  424. data/test/rubygems/test_gem_resolver_git_specification.rb +0 -2
  425. data/test/rubygems/test_gem_resolver_index_set.rb +0 -2
  426. data/test/rubygems/test_gem_resolver_index_specification.rb +0 -2
  427. data/test/rubygems/test_gem_resolver_installed_specification.rb +0 -2
  428. data/test/rubygems/test_gem_resolver_installer_set.rb +0 -2
  429. data/test/rubygems/test_gem_resolver_local_specification.rb +0 -2
  430. data/test/rubygems/test_gem_resolver_lock_set.rb +0 -2
  431. data/test/rubygems/test_gem_resolver_lock_specification.rb +0 -2
  432. data/test/rubygems/test_gem_resolver_requirement_list.rb +0 -2
  433. data/test/rubygems/test_gem_resolver_specification.rb +0 -4
  434. data/test/rubygems/test_gem_resolver_vendor_set.rb +1 -3
  435. data/test/rubygems/test_gem_resolver_vendor_specification.rb +0 -2
  436. data/test/rubygems/test_gem_security.rb +2 -4
  437. data/test/rubygems/test_gem_security_policy.rb +2 -4
  438. data/test/rubygems/test_gem_security_signer.rb +2 -4
  439. data/test/rubygems/test_gem_security_trust_dir.rb +2 -4
  440. data/test/rubygems/test_gem_server.rb +0 -4
  441. data/test/rubygems/test_gem_silent_ui.rb +0 -2
  442. data/test/rubygems/test_gem_source.rb +7 -4
  443. data/test/rubygems/test_gem_source_fetch_problem.rb +0 -2
  444. data/test/rubygems/test_gem_source_git.rb +0 -2
  445. data/test/rubygems/test_gem_source_installed.rb +0 -2
  446. data/test/rubygems/test_gem_source_list.rb +1 -2
  447. data/test/rubygems/test_gem_source_local.rb +0 -2
  448. data/test/rubygems/test_gem_source_lock.rb +0 -2
  449. data/test/rubygems/test_gem_source_specific_file.rb +0 -2
  450. data/test/rubygems/test_gem_source_subpath_problem.rb +49 -0
  451. data/test/rubygems/test_gem_source_vendor.rb +0 -2
  452. data/test/rubygems/test_gem_spec_fetcher.rb +0 -2
  453. data/test/rubygems/test_gem_specification.rb +15 -14
  454. data/test/rubygems/test_gem_stream_ui.rb +0 -2
  455. data/test/rubygems/test_gem_stub_specification.rb +4 -6
  456. data/test/rubygems/test_gem_text.rb +0 -2
  457. data/test/rubygems/test_gem_uninstaller.rb +7 -9
  458. data/test/rubygems/test_gem_unsatisfiable_dependency_error.rb +0 -2
  459. data/test/rubygems/test_gem_uri_formatter.rb +0 -2
  460. data/test/rubygems/test_gem_util.rb +0 -2
  461. data/test/rubygems/test_gem_validator.rb +1 -3
  462. data/test/rubygems/test_gem_version.rb +0 -2
  463. data/test/rubygems/test_gem_version_option.rb +1 -3
  464. data/test/rubygems/test_kernel.rb +0 -2
  465. data/test/rubygems/test_project_sanity.rb +0 -2
  466. data/test/rubygems/test_remote_fetch_error.rb +0 -2
  467. data/test/rubygems/test_require.rb +50 -17
  468. data/test/test_changelog_generator.rb +17 -0
  469. metadata +59 -77
  470. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +0 -26
  471. data/bundler/man/bundle-add.1.txt +0 -58
  472. data/bundler/man/bundle-binstubs.1.txt +0 -48
  473. data/bundler/man/bundle-cache.1.txt +0 -78
  474. data/bundler/man/bundle-check.1.txt +0 -33
  475. data/bundler/man/bundle-clean.1.txt +0 -26
  476. data/bundler/man/bundle-config.1.txt +0 -527
  477. data/bundler/man/bundle-doctor.1.txt +0 -44
  478. data/bundler/man/bundle-exec.1.txt +0 -181
  479. data/bundler/man/bundle-gem.1.txt +0 -117
  480. data/bundler/man/bundle-info.1.txt +0 -21
  481. data/bundler/man/bundle-init.1.txt +0 -34
  482. data/bundler/man/bundle-inject.1.txt +0 -32
  483. data/bundler/man/bundle-install.1.txt +0 -401
  484. data/bundler/man/bundle-list.1.txt +0 -44
  485. data/bundler/man/bundle-lock.1.txt +0 -93
  486. data/bundler/man/bundle-open.1.txt +0 -29
  487. data/bundler/man/bundle-outdated.1.txt +0 -131
  488. data/bundler/man/bundle-platform.1.txt +0 -57
  489. data/bundler/man/bundle-pristine.1.txt +0 -44
  490. data/bundler/man/bundle-remove.1.txt +0 -34
  491. data/bundler/man/bundle-show.1.txt +0 -27
  492. data/bundler/man/bundle-update.1.txt +0 -391
  493. data/bundler/man/bundle-viz.1.txt +0 -39
  494. data/bundler/man/bundle.1.txt +0 -116
  495. data/bundler/man/gemfile.5.txt +0 -651
  496. data/lib/rubygems/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
  497. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9674dd6c41b5b5949b145bff3ca8fe825b1d0b15b78643f91efdbb6b21f4058
4
- data.tar.gz: 178b23925b626f81220bf05f6f26ea9c3e7bf60411b45b88090a0f0949c978aa
3
+ metadata.gz: 482ec42938f23bcf5d942d87a0a5a173ac7810be736c08d533fca4100bea4cc1
4
+ data.tar.gz: 61c6a87a139ae0030f021bb8c7ca41af73ad62ee845aa4f32dee4e5accb400b8
5
5
  SHA512:
6
- metadata.gz: 03b6e5757f0aa561a8559468438e260ff49846ab1a4d57a1089fced6e649813f896b065ce5817371340eb321cf64dfef4e8219451096c100bf70d40e1b07293e
7
- data.tar.gz: c7b934dd19c4f6325e7f627cb70943ee39fe3ff0e65cb3eea768ad16ec0edb101a0e51f9aef24d7b4481880aad5d9e69bcad3e5055c3d319576b7b8e377135bb
6
+ metadata.gz: 0fc4d232c9f2b42bbc3982c548287d70af78c2b85f202b0e5de89039a4b6ffdc7aa38940007779ba5fe5cbb882043edab224188c64247b4eda086a5626f236a8
7
+ data.tar.gz: 13e095493a3d3e5872d5873d076f2e5295c8694ab1e007ce00730ce467934b577e782d39721c1cc4a41660f90001368f1b125f13eb9549640578d7671fd7f9d4
@@ -64,27 +64,42 @@ can help with. That are marked with a light gray `contribution: *`
64
64
 
65
65
  ### Type
66
66
 
67
- Most Issues or pull requests will have a light green `type: *` label, which
68
- 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.
69
69
 
70
70
  * **bug report** - An issue describing a bug in rubygems. This would be
71
71
  something that is broken, confusing, unexpected behavior etc.
72
- * **bug fix** - A pull request that fixes a bug report.
73
72
  * **feature request** - An issue describing a request for a new feature or
74
73
  enhancement.
75
- * **feature implementation** - A pull request implementing a feature
76
- request.
77
74
  * **question** - An issue that is a more of a question than a call for
78
75
  specific changes in the codebase.
79
- * **cleanup** - Generally for a pull request that improves the code base
80
- without fixing a bug or implementing a feature.
81
- * **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
82
79
  * **administrative** - This issue relates to administrative tasks that need
83
80
  to take place as it relates to rubygems
84
81
  * **documentation** - This issue relates to improving the documentation for
85
82
  in this repo. Note that much of the rubygems documentation is here:
86
83
  https://github.com/rubygems/guides
87
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.
88
103
 
89
104
  ### Workflow / Status
90
105
 
@@ -1,15 +1,145 @@
1
- # coding: UTF-8
1
+ === 3.2.3 / 2020-12-22
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
2
135
 
3
136
  === 3.2.0.rc.1 / 2020-07-04
4
137
 
5
- Major enhancements:
138
+ Enhancements:
6
139
 
7
140
  * Test TruffleRuby in CI. Pull request #2797 by Benoit Daloze.
8
141
  * Rework plugins system and speed up rubygems. Pull request #3108 by David
9
142
  Rodríguez.
10
-
11
- Minor enhancements:
12
-
13
143
  * Specify explicit separator not to be affected by $;. Pull request #3424
14
144
  by Nobuyoshi Nakada.
15
145
  * Enable `Layout/ExtraSpacing` cop. Pull request #3449 by David Rodríguez.
@@ -74,11 +204,13 @@ Bug fixes:
74
204
  * Fix `ruby setup.rb` for new plugins layout. Pull request #3144 by David
75
205
  Rodríguez.
76
206
 
77
- Compatibility changes:
207
+ Deprecations:
208
+
209
+ * Set deprecation warning on query command. Pull request #2967 by Luis
210
+ Sagastume.
211
+
212
+ Breaking changes:
78
213
 
79
- * Revert "Remove Gem::DependencyInstaller#find_gems_with_sources". Pull
80
- request #3412 by David Rodríguez.
81
- * Version horizon deprecations. Pull request #3414 by Luis Sagastume.
82
214
  * Remove ruby 1.8 leftovers. Pull request #3442 by David Rodríguez.
83
215
  * Minitest cleanup. Pull request #3445 by David Rodríguez.
84
216
  * Remove `builder` gem requirement for `gem regenerate_index`. Pull
@@ -93,8 +225,6 @@ Compatibility changes:
93
225
  Sagastume.
94
226
  * Remove dependency installer deprecated methods. Pull request #3106 by
95
227
  Luis Sagastume.
96
- * Set deprecation warning on query command. Pull request #2967 by Luis
97
- Sagastume.
98
228
  * Remove Gem::UserInteraction#debug method. Pull request #3107 by Luis
99
229
  Sagastume.
100
230
  * Remove options from Gem::GemRunner.new. Pull request #3110 by Luis
@@ -108,7 +238,7 @@ Compatibility changes:
108
238
 
109
239
  === 3.1.4 / 2020-06-03
110
240
 
111
- Minor enhancements:
241
+ Enhancements:
112
242
 
113
243
  * Deprecate rubyforge_project attribute only during build
114
244
  time. Pull request #3609 by Josef Šimánek.
@@ -119,7 +249,7 @@ Minor enhancements:
119
249
 
120
250
  === 3.1.3 / 2020-05-05
121
251
 
122
- Minor enhancements:
252
+ Enhancements:
123
253
 
124
254
  * Resolver: require NameTuple before use. Pull request #3171 by Olle
125
255
  Jonsson.
@@ -144,7 +274,7 @@ Bug fixes:
144
274
 
145
275
  === 3.1.2 / 2019-12-20
146
276
 
147
- Minor enhancements:
277
+ Enhancements:
148
278
 
149
279
  * Restore non prompting `gem update --system` behavior. Pull request #3040
150
280
  by David Rodríguez.
@@ -171,12 +301,9 @@ Bug fixes:
171
301
 
172
302
  === 3.1.0 / 2019-12-16
173
303
 
174
- Major enhancements:
304
+ Enhancements:
175
305
 
176
306
  * Vendor bundler 2.1. Pull request #3028 by David Rodríguez.
177
-
178
- Minor enhancements:
179
-
180
307
  * Check for rubygems.org typo squatting sources. Pull request #2999 by
181
308
  Luis Sagastume.
182
309
  * Refactor remote fetcher. Pull request #3017 by David Rodríguez.
@@ -195,15 +322,18 @@ Bug fixes:
195
322
  * Remove configuration that contained a typo. Pull request #2989 by David
196
323
  Rodríguez.
197
324
 
198
- Compatibility changes:
325
+ Deprecations:
199
326
 
200
- * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
201
327
  * Deprecate `gem generate_index --modern` and `gem generate_index
202
328
  --no-modern`. Pull request #2992 by David Rodríguez.
203
329
 
330
+ Breaking changes:
331
+
332
+ * Remove 1.8.7 leftovers. Pull request #2972 by David Rodríguez.
333
+
204
334
  === 3.1.0.pre3 / 2019-11-11
205
335
 
206
- Minor enhancements:
336
+ Enhancements:
207
337
 
208
338
  * Fix gem pristine not accounting for user installed gems. Pull request
209
339
  #2914 by Luis Sagastume.
@@ -224,7 +354,7 @@ Minor enhancements:
224
354
 
225
355
  === 3.1.0.pre2 / 2019-10-15
226
356
 
227
- Minor enhancements:
357
+ Enhancements:
228
358
 
229
359
  * Optimize Gem::Package::TarReader#each. Pull request #2941 by Jean byroot
230
360
  Boussier.
@@ -233,7 +363,7 @@ Minor enhancements:
233
363
 
234
364
  === 3.1.0.pre1 / 2019-10-08
235
365
 
236
- Major enhancements:
366
+ Enhancements:
237
367
 
238
368
  * Try to use bundler-2.1.0.pre.2. Pull request #2923 by SHIBATA Hiroshi.
239
369
  * [Require] Ensure -I beats a default gem. Pull request #1868 by Samuel
@@ -244,9 +374,6 @@ Major enhancements:
244
374
  Chaofan.
245
375
  * Autoswitch to exact bundler version if present. Pull request #2583 by
246
376
  David Rodríguez.
247
-
248
- Minor enhancements:
249
-
250
377
  * Fix Gem::Requirement equality comparison when ~> operator is used. Pull
251
378
  request #2554 by Grey Baker.
252
379
  * Don't use a proxy if https_proxy env var is empty. Pull request #2567 by
@@ -399,29 +526,33 @@ Bug fixes:
399
526
  * Fix cryptic error on local and ignore-dependencies combination. Pull
400
527
  request #2650 by David Rodríguez.
401
528
 
402
- Compatibility changes:
529
+ Deprecations:
403
530
 
404
- * 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
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
405
541
  Sagastume.
542
+
543
+ Breaking changes:
544
+
406
545
  * Suppress keywords warning. Pull request #2934 by Nobuyoshi Nakada.
407
546
  * Suppress Ruby 2.7's real kwargs warning. Pull request #2912 by Koichi
408
547
  ITO.
409
548
  * Fix Kernel#warn override. Pull request #2911 by Jeremy Evans.
410
- * Make deprecate Gem::RubyGemsVersion and Gem::ConfigMap. Pull request
411
- #2857 by SHIBATA Hiroshi.
412
- * Deprecate Gem::RemoteFetcher#fetch_size. Pull request #2833 by Luis
413
- Sagastume.
414
549
  * Remove conflict.rb code that was supposed to be removed in Rubygems 3.
415
550
  Pull request #2802 by Luis Sagastume.
416
- * Explicitly deprecate `rubyforge_project`. Pull request #2798 by David
417
- Rodríguez.
418
551
  * Compatibility cleanups. Pull request #2754 by David Rodríguez.
419
552
  * Remove `others_possible` activation request param. Pull request #2747 by
420
553
  David Rodríguez.
421
554
  * Remove dependency installer deprecated code. Pull request #2740 by Luis
422
555
  Sagastume.
423
- * Deprecate unused Gem::Installer#unpack method. Pull request #2715 by Vít
424
- Ondruch.
425
556
  * Removed guard condition with USE_BUNDLER_FOR_GEMDEPS. Pull request #2716
426
557
  by SHIBATA Hiroshi.
427
558
  * Skip deprecation warning during specs. Pull request #2718 by David
@@ -430,24 +561,7 @@ Compatibility changes:
430
561
  * Removed circular require. Pull request #2679 by Nobuyoshi Nakada.
431
562
  * Removed needless environmental variable for Travis CI. Pull request
432
563
  #2685 by SHIBATA Hiroshi.
433
- * Deprecate a few unused methods. Pull request #2674 by David Rodríguez.
434
564
  * Removing yaml require. Pull request #2538 by Luciano Sousa.
435
- * Add deprecation warnings for cli options. Pull request #2607 by Luis
436
- Sagastume.
437
-
438
- Style changes:
439
-
440
- * Enable `Layout/SpaceInsideParens` rubocop cop. Pull request #2630 by
441
- David Rodríguez.
442
- * Remove some extra empty lines from the repo. Pull request #2669 by David
443
- Rodríguez.
444
- * Enable Style/EmptyLinesAroundClassBody rubocop cop. Pull request #2636
445
- by David Rodríguez.
446
- * Enable Style/BlockDelimiters rubocop cop. Pull request #2640 by David
447
- Rodríguez.
448
- * Enable Layout/SpaceAroundOperators rubocop cop. Pull request #2642 by
449
- David Rodríguez.
450
- * Rubocop 0.71. Pull request #2785 by David Rodríguez.
451
565
 
452
566
  === 3.0.8 / 2020-02-19
453
567
 
@@ -476,7 +590,7 @@ Bug fixes:
476
590
 
477
591
  === 3.0.5 / 2019-08-16
478
592
 
479
- Minor enhancements:
593
+ Enhancements:
480
594
 
481
595
  * Use env var to configure api key on push. Pull request #2559 by Luis
482
596
  Sagastume.
@@ -529,7 +643,7 @@ Bug fixes:
529
643
 
530
644
  === 3.0.4 / 2019-06-14
531
645
 
532
- Minor enhancements:
646
+ Enhancements:
533
647
 
534
648
  * Add support for TruffleRuby #2612 by Benoit Daloze
535
649
  * Serve a more descriptive error when --no-ri or --no-rdoc are used #2572
@@ -586,7 +700,6 @@ Bug fixes:
586
700
 
587
701
  Security fixes:
588
702
 
589
- * Fixed following vulnerabilities:
590
703
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
591
704
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
592
705
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -596,7 +709,7 @@ Security fixes:
596
709
 
597
710
  === 3.0.2 / 2019-01-01
598
711
 
599
- Minor enhancements:
712
+ Enhancements:
600
713
 
601
714
  * Use Bundler-1.17.3. Pull request #2556 by SHIBATA Hiroshi.
602
715
  * Fix document flag description. Pull request #2555 by Luis Sagastume.
@@ -624,7 +737,7 @@ Bug fixes:
624
737
 
625
738
  === 3.0.0 / 2018-12-19
626
739
 
627
- Major enhancements:
740
+ Enhancements:
628
741
 
629
742
  * S3 source. Pull request #1690 by Aditya Prakash.
630
743
  * Download gems with threads. Pull request #1898 by André Arko.
@@ -632,9 +745,6 @@ Major enhancements:
632
745
  * [GSoC] Multi-factor feature for RubyGems. Pull request #2369 by Qiu
633
746
  Chaofan.
634
747
  * Use bundler 1.17.2. Pull request #2521 by SHIBATA Hiroshi.
635
-
636
- Minor enhancements:
637
-
638
748
  * Don't treat inaccessible working directories as build failures. Pull
639
749
  request #1135 by Pete.
640
750
  * Remove useless directory parameter from builders .build methods.
@@ -845,7 +955,7 @@ Bug fixes:
845
955
  * Fix tests when --program-suffix and similar ruby configure options are
846
956
  used. Pull request #2529 by Jeremy Evans.
847
957
 
848
- Compatibility changes:
958
+ Breaking changes:
849
959
 
850
960
  * IO.binread is not provided at Ruby 1.8. Pull request #2093 by SHIBATA
851
961
  Hiroshi.
@@ -898,32 +1008,9 @@ Compatibility changes:
898
1008
  * [BudlerVersionFinder] set .filter! and .compatible? to match only on
899
1009
  major versions. Pull request #2515 by Colby Swandale.
900
1010
 
901
- Style changes:
902
-
903
- * Add Rubocop. Pull request #2250 by Colby Swandale.
904
- * Removed explicitly declaration of thread library. Pull request #2324 by
905
- SHIBATA Hiroshi.
906
- * Remove Trailing whitespace with rubocop. Pull request #2394 by SHIBATA
907
- Hiroshi.
908
- * Update rubocop and also use correct pessimistic version. Pull request
909
- #2404 by Colby Swandale.
910
- * Enable more rubocop rules. Pull request #2435 by Ellen Marie Dash.
911
- * Fix and lock rubocop. Pull request #2465 by David Rodríguez.
912
- * Add a rubocop binstub. Pull request #2468 by David Rodríguez.
913
- * Restore the `rubocop` task. Pull request #2470 by David Rodríguez.
914
- * Remove trailing blank lines. Pull request #2471 by David Rodríguez.
915
- * Remove empty lines around method bodies. Pull request #2473 by David
916
- Rodríguez.
917
- * Enable Style/MethodDefParentheses in Rubocop. Pull request #2478 by
918
- Colby Swandale.
919
- * Enable Style/MultilineIfThen in Rubocop. Pull request #2479 by Luis
920
- Sagastume.
921
- * Remove trailing 'then' from generated code. Pull request #2480 by Luis
922
- Sagastume.
923
-
924
1011
  === 2.7.10 / 2019-06-14
925
1012
 
926
- Minor enhancements:
1013
+ Enhancements:
927
1014
 
928
1015
  * Fix bundler rubygems binstub not properly looking for bundler. Pull request #2426
929
1016
  by David Rodríguez.
@@ -935,7 +1022,6 @@ Minor enhancements:
935
1022
 
936
1023
  Security fixes:
937
1024
 
938
- * Fixed following vulnerabilities:
939
1025
  * CVE-2019-8320: Delete directory using symlink when decompressing tar
940
1026
  * CVE-2019-8321: Escape sequence injection vulnerability in `verbose`
941
1027
  * CVE-2019-8322: Escape sequence injection vulnerability in `gem owner`
@@ -945,7 +1031,7 @@ Security fixes:
945
1031
 
946
1032
  === 2.7.8 / 2018-11-02
947
1033
 
948
- Minor enhancements:
1034
+ Enhancements:
949
1035
 
950
1036
  * [Requirement] Treat requirements with == versions as equal. Pull
951
1037
  request #2230 by Samuel Giddins.
@@ -979,7 +1065,7 @@ Bug fixes:
979
1065
 
980
1066
  === 2.7.7 / 2018-05-08
981
1067
 
982
- Minor enhancements:
1068
+ Enhancements:
983
1069
 
984
1070
  * [RequestSet] Only suggest a gem version with an installable platform.
985
1071
  Pull request #2175 by Samuel Giddins.
@@ -1007,13 +1093,16 @@ Bug fixes:
1007
1093
  * Fix path checks for case insensitive filesystem. Pull request #2211 by
1008
1094
  Lars Kanis.
1009
1095
 
1010
- Compatibility changes:
1096
+ Deprecations:
1011
1097
 
1012
1098
  * Deprecate unused code before removing them at #1524. Pull request #2197
1013
1099
  by SHIBATA Hiroshi.
1014
1100
  * Deprecate for rubygems 3. Pull request #2214 by SHIBATA Hiroshi.
1015
1101
  * Mark deprecation to `ubygems.rb` for RubyGems 4. Pull request #2269 by
1016
1102
  SHIBATA Hiroshi.
1103
+
1104
+ Breaking changes:
1105
+
1017
1106
  * Update bundler-1.16.2. Pull request #2291 by SHIBATA Hiroshi.
1018
1107
 
1019
1108
  === 2.7.6 / 2018-02-16
@@ -1062,7 +1151,7 @@ Bug fixes:
1062
1151
 
1063
1152
  === 2.7.3
1064
1153
 
1065
- Minor enhancements:
1154
+ Enhancements:
1066
1155
 
1067
1156
  * Removed needless version lock. Pull request #2074 by SHIBATA Hiroshi.
1068
1157
  * Add --[no-]check-development option to cleanup command. Pull request
@@ -1112,15 +1201,12 @@ Bug fixes:
1112
1201
 
1113
1202
  === 2.7.0 (2017-11-02)
1114
1203
 
1115
- Major enhancements:
1204
+ Enhancements:
1116
1205
 
1117
1206
  * Update vendored bundler-1.16.0. Pull request #2051 by Samuel Giddins.
1118
1207
  * Use Bundler for Gem.use_gemdeps. Pull request #1674 by Samuel Giddins.
1119
1208
  * Add command `signin` to `gem` CLI. Pull request #1944 by Shiva Bhusal.
1120
1209
  * Add Logout feature to CLI. Pull request #1938 by Shiva Bhusal.
1121
-
1122
- Minor enhancements:
1123
-
1124
1210
  * Added message to uninstall command for gem that is not installed. Pull
1125
1211
  request #1979 by anant anil kolvankar.
1126
1212
  * Add --trust-policy option to unpack command. Pull request #1718 by
@@ -1206,11 +1292,8 @@ Minor enhancements:
1206
1292
  * Warn when requiring deprecated files. Pull request #1939 by Ellen Marie
1207
1293
  Dash.
1208
1294
 
1209
- Compatibility changes:
1295
+ Deprecations:
1210
1296
 
1211
- * Use `-rrubygems` instead of `-rubygems.rb`. Because ubygems.rb is
1212
- unavailable on Ruby 2.5. Pull request #2028 #2027 #2029
1213
- by SHIBATA Hiroshi.
1214
1297
  * Deprecate Gem::InstallerTestCase#util_gem_bindir and
1215
1298
  Gem::InstallerTestCase#util_gem_dir. Pull request #1729 by Jon Moss.
1216
1299
  * Deprecate passing options to Gem::GemRunner. Pull request #1730 by Jon
@@ -1218,6 +1301,12 @@ Compatibility changes:
1218
1301
  * Add deprecation for Gem#datadir. Pull request #1732 by Jon Moss.
1219
1302
  * Add deprecation warning for Gem::DependencyInstaller#gems_to_install.
1220
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.
1221
1310
  * Update Code of Conduct to Contributor Covenant v1.4.0. Pull request
1222
1311
  #1796 by Matej.
1223
1312
 
@@ -1390,7 +1479,7 @@ Bug fixes:
1390
1479
 
1391
1480
  === 2.6.5 / 2016-06-21
1392
1481
 
1393
- Minor enhancements:
1482
+ Enhancements:
1394
1483
 
1395
1484
  * Support for unified Integer in Ruby 2.4. Pull request #1618
1396
1485
  by SHIBATA Hiroshi.
@@ -1419,7 +1508,7 @@ Bug fixes:
1419
1508
 
1420
1509
  === 2.6.4 / 2016-04-26
1421
1510
 
1422
- Minor enhancements:
1511
+ Enhancements:
1423
1512
 
1424
1513
  * Use Gem::Util::NULL_DEVICE instead of hard coded strings. Pull request #1588
1425
1514
  by Chris Charabaruk.
@@ -1436,7 +1525,7 @@ Bug fixes:
1436
1525
 
1437
1526
  === 2.6.3 / 2016-04-05
1438
1527
 
1439
- Minor enhancements:
1528
+ Enhancements:
1440
1529
 
1441
1530
  * Lazily calculate Gem::LoadError exception messages. Pull request #1550
1442
1531
  by Aaron Patterson.
@@ -1489,7 +1578,7 @@ Bug fixes:
1489
1578
 
1490
1579
  === 2.6.0 / 2016-02-26
1491
1580
 
1492
- Minor enhancements:
1581
+ Enhancements:
1493
1582
 
1494
1583
  * RubyGems now defaults the `gem push` to the gem's "allowed_push_host"
1495
1584
  metadata setting. Pull request #1486 by Josh Lane.
@@ -1544,7 +1633,7 @@ Bug fixes:
1544
1633
  * Handle symlinks containing ".." correctly. Pull request #1457 by Samuel E.
1545
1634
  Giddins.
1546
1635
 
1547
- Minor enhancements:
1636
+ Enhancements:
1548
1637
 
1549
1638
  * Add `--no-rc` flag, which skips loading `.gemrc`. Pull request #1329 by Luis
1550
1639
  Sagastume.
@@ -1602,7 +1691,7 @@ Bug fixes:
1602
1691
 
1603
1692
  === 2.5.0 / 2015-11-03
1604
1693
 
1605
- Major enhancements:
1694
+ Enhancements:
1606
1695
 
1607
1696
  * Added the Gem::Licenses class which provides a set of standard license
1608
1697
  identifiers as set by spdx.org. This is now used by the
@@ -1611,8 +1700,6 @@ Major enhancements:
1611
1700
 
1612
1701
  Pull request #1249 by Kyle Mitchell.
1613
1702
 
1614
- Minor enhancements:
1615
-
1616
1703
  * Use Molinillo as the resolver library. This is the same resolver as used by
1617
1704
  Bundler. Pull request #1189 by Samuel E. Giddins.
1618
1705
  * Add `--skip=gem_name` to Pristine command. Pull request #1018 by windwiny.
@@ -1876,7 +1963,7 @@ Bug fixes:
1876
1963
 
1877
1964
  === 2.4.0 / 2014-07-16
1878
1965
 
1879
- Minor enhancements:
1966
+ Enhancements:
1880
1967
 
1881
1968
  * The contents command now supports a --show-install-dir option that shows
1882
1969
  only the directory the gem is installed in. Feature request #966 by Akinori
@@ -1939,7 +2026,7 @@ Bug fixes:
1939
2026
 
1940
2027
  === 2.3.0 / 2014-06-10
1941
2028
 
1942
- Minor enhancements:
2029
+ Enhancements:
1943
2030
 
1944
2031
  * Added the `open` command which allows you to inspect the source of a gem
1945
2032
  using your editor.
@@ -2140,7 +2227,7 @@ Bug fixes:
2140
2227
  Special thanks to Vít Ondruch and Michal Papis for testing and finding bugs in
2141
2228
  RubyGems as it was prepared for the 2.2.0 release.
2142
2229
 
2143
- Major enhancements:
2230
+ Enhancements:
2144
2231
 
2145
2232
  * RubyGems can check for gem dependencies files (gem.deps.rb or Gemfile) when
2146
2233
  rubygems executables are started and uses the found dependencies. This
@@ -2163,8 +2250,6 @@ Major enhancements:
2163
2250
  The default sharing location may be configured by RubyGems packagers through
2164
2251
  Gem.default_ext_dir_for. Pull Request #744 by Vít Ondruch.
2165
2252
 
2166
- Minor enhancements:
2167
-
2168
2253
  * RubyGems checks the 'allowed_push_host' metadata value when pushing a gem to
2169
2254
  prevent an accidental push to a public repository (such as rubygems.org).
2170
2255
  If you have private gems you should set this value in your gem specification
@@ -2363,15 +2448,13 @@ Security fixes:
2363
2448
  including vulnerable APIs. Fixed versions include 2.0.8, 1.8.26 and
2364
2449
  1.8.23.1 (for Ruby 1.9.3). Issue #626 by Damir Sharipov.
2365
2450
 
2366
- Major enhancements:
2451
+ Enhancements:
2367
2452
 
2368
2453
  * RubyGems uses a new dependency resolver for gem installation which works
2369
2454
  similar to the bundler resolver. The new resolver can resolve conflicts the
2370
2455
  previous resolver could not and offers improved diagnostics when conflicts
2371
2456
  are discovered.
2372
2457
 
2373
- Minor enhancements:
2374
-
2375
2458
  * RubyGems now has improved platform matching for the ARM architecture. Gems
2376
2459
  built with a CPU of "arm" will match any specific ARM CPU. See `gem help
2377
2460
  platform` for further details. Fixes #532 by Kim Burgestrand.
@@ -2622,7 +2705,7 @@ Bug fixes:
2622
2705
 
2623
2706
  === 2.0.3 / 2013-03-11
2624
2707
 
2625
- * Bug fixes:
2708
+ Bug fixes:
2626
2709
  * Reverted automatic upgrade to HTTPS as it breaks RubyGems APIs. Fixes
2627
2710
  #506 by André Arko
2628
2711
  * Use File.realpath to remove extra / while checking if files are
@@ -2639,7 +2722,7 @@ Bug fixes:
2639
2722
 
2640
2723
  === 2.0.2 / 2013-03-06
2641
2724
 
2642
- * Bug fixes:
2725
+ Bug fixes:
2643
2726
  * HTTPS URLs are preferred over HTTP URLs. RubyGems will now attempt to
2644
2727
  upgrade any HTTP source to HTTPS. Credit to Alex Gaynor.
2645
2728
  * SSL Certificates are now installed properly. Fixes #491 by hemanth.hm
@@ -2647,7 +2730,7 @@ Bug fixes:
2647
2730
 
2648
2731
  === 2.0.1 / 2013-03-05
2649
2732
 
2650
- * Bug fixes:
2733
+ Bug fixes:
2651
2734
  * Lazily load RubyGems.org API credentials to avoid failure during
2652
2735
  RubyGems installation. Bug #465 by Isaac Sanders.
2653
2736
  * RubyGems now picks the latest prerelease to install. Fixes bug #468 by
@@ -2681,7 +2764,7 @@ newer. Older versions of bundler will not work with RubyGems 2.0.
2681
2764
 
2682
2765
  Changes since RubyGems 1.8.25 (including past pre-releases):
2683
2766
 
2684
- * Breaking changes:
2767
+ Breaking changes:
2685
2768
 
2686
2769
  * Deprecated Gem.unresolved_deps in favor of
2687
2770
  Gem::Specification.unresolved_deps
@@ -2703,7 +2786,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2703
2786
  * Removed support for Ruby 1.9.1
2704
2787
  * Removed many deprecated methods
2705
2788
 
2706
- * Major enhancements:
2789
+ Enhancements:
2707
2790
 
2708
2791
  * Improved support for default gems shipping with ruby 2.0.0+
2709
2792
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2721,8 +2804,6 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2721
2804
  file (Gemfile, Isolate, gem.deps.rb).
2722
2805
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2723
2806
  to autodetect (current and parent directories are searched).
2724
-
2725
- * Minor enhancements:
2726
2807
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2727
2808
  #419 by Erik Hollensbe
2728
2809
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
@@ -2765,7 +2846,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2765
2846
  GEM_HOME
2766
2847
  * When building gems with non-world-readable files a warning is shown.
2767
2848
 
2768
- * Bug fixes:
2849
+ Bug fixes:
2769
2850
  * Gem.refresh now maintains the active gem list. Clearing the list would
2770
2851
  cause double-loads which would cause other bugs. Pull Request #427 by
2771
2852
  Jeremy Evans
@@ -2822,7 +2903,7 @@ Changes since RubyGems 1.8.25 (including past pre-releases):
2822
2903
 
2823
2904
  Changes since RubyGems 2.0.0.rc.2:
2824
2905
 
2825
- * Bug fixes:
2906
+ Bug fixes:
2826
2907
  * Gem.gzip and Gem.gunzip now return strings with BINARY encoding. Issue
2827
2908
  #450 by Jeremy Kemper
2828
2909
  * Fixed placement of executables with --user-install. Ruby bug #7779 by Jon
@@ -2837,7 +2918,7 @@ Changes since RubyGems 2.0.0.rc.2:
2837
2918
 
2838
2919
  === 2.0.0.rc.2 / 2013-02-08
2839
2920
 
2840
- * Bug fixes:
2921
+ Bug fixes:
2841
2922
  * Fixed signature verification of gems which was broken only on master.
2842
2923
  Thanks to Brian Buchanan.
2843
2924
  * Proper exceptions are raised when verifying an unsigned gem. Thanks to
@@ -2845,13 +2926,13 @@ Changes since RubyGems 2.0.0.rc.2:
2845
2926
 
2846
2927
  === 2.0.0.rc.1 / 2013-01-08
2847
2928
 
2848
- * Minor enhancements:
2929
+ Enhancements:
2849
2930
  * This release of RubyGems can push gems to rubygems.org. Ordinarily
2850
2931
  prerelease versions of RubyGems cannot push gems.
2851
2932
  * Added `gem check --doctor` to clean up after failed uninstallation. Bug
2852
2933
  #419 by Erik Hollensbe
2853
2934
 
2854
- * Bug fixes:
2935
+ Bug fixes:
2855
2936
  * Fixed exception raised when attempting to push gems to rubygems.org. Bug
2856
2937
  #418 by André Arko
2857
2938
  * Gem installation will fail if RubyGems cannot load the specification from
@@ -2859,24 +2940,24 @@ Changes since RubyGems 2.0.0.rc.2:
2859
2940
 
2860
2941
  === 2.0.0.preview2.2 / 2012-12-14
2861
2942
 
2862
- * Minor enhancements:
2943
+ Enhancements:
2863
2944
  * Added a cmake builder. Pull request #265 by Allan Espinosa.
2864
2945
  * Removed rubyforge page from gem list output
2865
2946
 
2866
- * Bug fixes:
2947
+ Bug fixes:
2867
2948
  * Restored RubyGems 1.8 packaging behavior of omitting directories. Bug
2868
2949
  #413 by Jeremy Kemper.
2869
2950
 
2870
2951
  === 2.0.0.preview2.1 / 2012-12-08
2871
2952
 
2872
- * Minor enhancements:
2953
+ Enhancements:
2873
2954
  * Gem::DependencyInstaller now passes build_args down to the installer.
2874
2955
  Pull Request #412 by Sam Rawlins.
2875
2956
  * RubyGems no longer defaults to uninstalling gems if a dependency would be
2876
2957
  broken. Now you must manually say "yes". Pull Request #406 by Shannon
2877
2958
  Skipper.
2878
2959
 
2879
- * Bug fixes:
2960
+ Bug fixes:
2880
2961
  * RubyGems tests now run in FIPS mode. Issue #365 by Vít Ondruch
2881
2962
  * Fixed Gem::Specification#base_dir for default gems. Ruby Bug #7469
2882
2963
  * Only update the spec cache when we have permission. Ruby Bug #7509
@@ -2894,7 +2975,7 @@ This release contains two commits not present in Ruby 2.0.0.preview2. One
2894
2975
  commit is for ruby 1.8.7 support, the second allows RubyGems to work under
2895
2976
  $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2896
2977
 
2897
- * Breaking changes:
2978
+ Breaking changes:
2898
2979
 
2899
2980
  * Deprecated Gem.unresolved_deps in favor of
2900
2981
  Gem::Specification.unresolved_deps
@@ -2916,7 +2997,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2916
2997
  * Removed support for Ruby 1.9.1
2917
2998
  * Removed many deprecated methods
2918
2999
 
2919
- * Major enhancements:
3000
+ Enhancements:
2920
3001
 
2921
3002
  * Improved support for default gems shipping with ruby 2.0.0+
2922
3003
  * A gem can have arbitrary metadata through Gem::Specification#metadata
@@ -2934,9 +3015,6 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2934
3015
  file (Gemfile, Isolate, gem.deps.rb).
2935
3016
  Set RUBYGEMS_GEMDEPS=path to have it loaded. Use - as the path
2936
3017
  to autodetect (current and parent directories are searched).
2937
-
2938
- * Minor enhancements:
2939
-
2940
3018
  * Added --only-executables option to `gem pristine`. Fixes #326
2941
3019
  * Added -I flag for 'gem query' to exclude installed items
2942
3020
  * Added Gem.install(name, version=default) for interactive sessions
@@ -2970,7 +3048,7 @@ $SAFE=1. There is no functional difference compared to Ruby 2.0.0.preview2
2970
3048
  GEM_HOME
2971
3049
  * When building gems with non-world-readable files a warning is shown.
2972
3050
 
2973
- * Bug fixes:
3051
+ Bug fixes:
2974
3052
 
2975
3053
  * Added PID to setup bin_file while installing RubyGems to protect against
2976
3054
  errors. Fixes #328 by ConradIrwin
@@ -3055,7 +3133,7 @@ Bug fixes:
3055
3133
 
3056
3134
  === 1.8.25 / 2013-01-24
3057
3135
 
3058
- * Bug fixes:
3136
+ Bug fixes:
3059
3137
  * Added 11627 to setup bin_file location to protect against errors. Fixes
3060
3138
  #328 by ConradIrwin
3061
3139
  * Specification#ruby_code didn't handle Requirement with multiple
@@ -3066,7 +3144,7 @@ Bug fixes:
3066
3144
 
3067
3145
  === 1.8.24 / 2012-04-27
3068
3146
 
3069
- * 1 bug fix:
3147
+ Bug fixes:
3070
3148
 
3071
3149
  * Install the .pem files properly. Fixes #320
3072
3150
  * Remove OpenSSL dependency from the http code path
@@ -3105,20 +3183,20 @@ You may also set :ssl_verify_mode to 0 to completely disable SSL
3105
3183
  certificate checks, but this is not recommended.
3106
3184
 
3107
3185
 
3108
- * 2 security fixes:
3186
+ Security fixes:
3109
3187
  * Disallow redirects from https to http
3110
3188
  * Turn on verification of server SSL certs
3111
3189
 
3112
- * 1 minor feature:
3190
+ Enhancements:
3113
3191
  * Add --clear-sources to fetch
3114
3192
 
3115
- * 2 bug fixes:
3193
+ Bug fixes:
3116
3194
  * Use File.identical? to check if two files are the same.
3117
3195
  * Fixed init_with warning when using psych
3118
3196
 
3119
3197
  === 1.8.22 / 2012-04-13
3120
3198
 
3121
- * 4 bug fixes:
3199
+ Bug fixes:
3122
3200
 
3123
3201
  * Workaround for psych/syck YAML date parsing issue
3124
3202
  * Don't trust the encoding of ARGV. Fixes #307
@@ -3127,14 +3205,14 @@ certificate checks, but this is not recommended.
3127
3205
 
3128
3206
  === 1.8.21 / 2012-03-22
3129
3207
 
3130
- * 2 bug fixes:
3208
+ Bug fixes:
3131
3209
 
3132
3210
  * Add workaround for buggy yaml output from 1.9.2
3133
3211
  * Force 1.9.1 to remove it's prelude code. Fixes #305
3134
3212
 
3135
3213
  === 1.8.20 / 2012-03-21
3136
3214
 
3137
- * 4 bug fixes:
3215
+ Bug fixes:
3138
3216
 
3139
3217
  * Add --force to `gem build` to skip validation. Fixes #297
3140
3218
  * Gracefully deal with YAML::PrivateType objects in Marshal'd gemspecs
@@ -3143,7 +3221,7 @@ certificate checks, but this is not recommended.
3143
3221
 
3144
3222
  === 1.8.19 / 2012-03-14
3145
3223
 
3146
- * 3 bug fixes:
3224
+ Bug fixes:
3147
3225
 
3148
3226
  * Handle loading psych vs syck properly. Fixes #298
3149
3227
  * Make sure Date objects don't leak in via Marshal
@@ -3151,7 +3229,7 @@ certificate checks, but this is not recommended.
3151
3229
 
3152
3230
  === 1.8.18 / 2012-03-11
3153
3231
 
3154
- * 4 bug fixes:
3232
+ Bug fixes:
3155
3233
 
3156
3234
  * Use Psych API to emit more compatible YAML
3157
3235
  * Download and write inside `gem fetch` directly. Fixes #289
@@ -3161,12 +3239,12 @@ certificate checks, but this is not recommended.
3161
3239
 
3162
3240
  === 1.8.17 / 2012-02-17
3163
3241
 
3164
- * 2 minor enhancements:
3242
+ Enhancements:
3165
3243
 
3166
3244
  * Add MacRuby to the list of special cases for platforms (ferrous26)
3167
3245
  * Add a default for where to install rubygems itself
3168
3246
 
3169
- * 3 bug fixes:
3247
+ Bug fixes:
3170
3248
 
3171
3249
  * Fixed gem loading issue caused by dependencies not resolving.
3172
3250
  * Fixed umask error when stdlib is required and unresolved dependencies exist.
@@ -3176,7 +3254,7 @@ certificate checks, but this is not recommended.
3176
3254
 
3177
3255
  === 1.8.16 / 2012-02-12
3178
3256
 
3179
- * 3 bug fixes:
3257
+ Bug fixes:
3180
3258
 
3181
3259
  * Fix gem specification loading when encoding is not UTF-8. #146
3182
3260
  * Allow group writable if umask allows it already.
@@ -3184,37 +3262,39 @@ certificate checks, but this is not recommended.
3184
3262
 
3185
3263
  === 1.8.15 / 2012-01-06
3186
3264
 
3187
- * 1 bug fix:
3265
+ Bug fixes:
3188
3266
 
3189
3267
  * Don't eager load yaml, it creates a bad loop. Fixes #256
3190
3268
 
3191
3269
  === 1.8.14 / 2012-01-05
3192
3270
 
3193
- * 2 bug fixes:
3271
+ Bug fixes:
3194
3272
 
3195
3273
  * Ignore old/bad cache data in Version
3196
3274
  * Make sure our YAML workarounds are loaded properly. Fixes #250.
3197
3275
 
3198
3276
  === 1.8.13 / 2011-12-21
3199
3277
 
3200
- * 1 bug fix:
3278
+ Bug fixes:
3201
3279
 
3202
3280
  * Check loaded_specs properly when trying to satisfy a dep
3203
3281
 
3204
- * 2 minor enhancements:
3282
+ Enhancements:
3205
3283
 
3206
3284
  * Remove using #loaded_path? for performance
3207
3285
  * Remove Zlib workaround for Windows build.
3208
3286
 
3209
3287
  === 1.8.12 / 2011-12-02
3210
3288
 
3211
- * Bug fix:
3289
+ Bug fixes:
3290
+
3212
3291
  * Handle more cases where Syck's DefaultKey showed up in requirements
3213
3292
  and wasn't cleaned out.
3214
3293
 
3215
3294
  === 1.8.11 / 2011-10-03
3216
3295
 
3217
- * Bug fix:
3296
+ Bug fixes:
3297
+
3218
3298
  * Deprecate was moved to Gem::Deprecate to stop polluting the top-level
3219
3299
  namespace.
3220
3300
 
@@ -3224,7 +3304,7 @@ RubyGems 1.8.10 contains a security fix that prevents malicious gems from
3224
3304
  executing code when their specification is loaded. See
3225
3305
  https://github.com/rubygems/rubygems/pull/165 for details.
3226
3306
 
3227
- * 5 bug fixes:
3307
+ Bug fixes:
3228
3308
 
3229
3309
  * RubyGems escapes strings in ruby-format specs using #dump instead of #to_s
3230
3310
  and %q to prevent code injection. Issue #165 by Postmodern
@@ -3237,19 +3317,19 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3237
3317
 
3238
3318
  === 1.8.9 / 2011-08-23
3239
3319
 
3240
- * Bug fixes:
3320
+ Bug fixes:
3241
3321
 
3242
3322
  * Fixed uninstalling multiple gems using `gem uninstall`
3243
3323
  * Gem.use_paths splatted to take multiple paths! Issue #148
3244
3324
 
3245
3325
  === 1.8.8 / 2011-08-11
3246
3326
 
3247
- * Bug fix:
3327
+ Bug fixes:
3248
3328
  * The encoding of a gem's YAML spec is now UTF-8. Issue #149
3249
3329
 
3250
3330
  === 1.8.7 / 2011-08-04
3251
3331
 
3252
- * Bug fixes:
3332
+ Bug fixes:
3253
3333
  * Added missing require for `gem uninstall --format-executable`
3254
3334
  * The correct name of the executable being uninstalled is now displayed with
3255
3335
  --format-executable
@@ -3263,12 +3343,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3263
3343
 
3264
3344
  === 1.8.6 / 2011-07-25
3265
3345
 
3266
- * 1 minor enhancement:
3346
+ Enhancements:
3267
3347
 
3268
3348
  * Add autorequires and delay startup of RubyGems until require is called.
3269
3349
  See Ruby bug #4962
3270
3350
 
3271
- * 9 bug fixes:
3351
+ Bug fixes:
3272
3352
 
3273
3353
  * Restore behavior of Gem::Specification#loaded? Ruby Bug #5032
3274
3354
  * Clean up SourceIndex.add_specs to not be so damn noisy. (tadman)
@@ -3282,25 +3362,25 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3282
3362
 
3283
3363
  === 1.8.5 / 2011-05-31
3284
3364
 
3285
- * 2 minor enhancement:
3365
+ Enhancements:
3286
3366
 
3287
3367
  * The -u option to 'update local source cache' is official deprecated.
3288
3368
  * Remove has_rdoc deprecations from Specification.
3289
3369
 
3290
- * 2 bug fixes:
3370
+ Bug fixes:
3291
3371
 
3292
3372
  * Handle bad specs more gracefully.
3293
3373
  * Reset any Gem paths changed in the installer.
3294
3374
 
3295
3375
  === 1.8.4 / 2011-05-25
3296
3376
 
3297
- * 1 minor enhancement:
3377
+ Enhancements:
3298
3378
 
3299
3379
  * Removed default_executable deprecations from Specification.
3300
3380
 
3301
3381
  === 1.8.3 / 2011-05-19
3302
3382
 
3303
- * 4 bug fixes:
3383
+ Bug fixes:
3304
3384
 
3305
3385
  * Fix independent testing of test_gem_package_tar_output. Ruby Bug #4686 by
3306
3386
  Shota Fukumori
@@ -3311,12 +3391,12 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3311
3391
 
3312
3392
  === 1.8.2 / 2011-05-11
3313
3393
 
3314
- * 2 minor enhancements:
3394
+ Enhancements:
3315
3395
 
3316
3396
  * Moved #outdated from OutdatedCommand to Specification (for Isolate).
3317
3397
  * Print out a warning about missing executables.
3318
3398
 
3319
- * 3 bug fixes:
3399
+ Bug fixes:
3320
3400
 
3321
3401
  * Added missing requires to fix various upgrade issues.
3322
3402
  * `gem pristine` respects multiple gem repositories.
@@ -3324,11 +3404,11 @@ https://github.com/rubygems/rubygems/pull/165 for details.
3324
3404
 
3325
3405
  === 1.8.1 / 2011-05-05
3326
3406
 
3327
- * 1 minor enhancement:
3407
+ Enhancements:
3328
3408
 
3329
3409
  * Added Gem::Requirement#specific? and Gem::Dependency#specific?
3330
3410
 
3331
- * 4 bug fixes:
3411
+ Bug fixes:
3332
3412
 
3333
3413
  * Typo on Indexer rendered it useless on Windows
3334
3414
  * gem dep can fetch remote dependencies for non-latest gems again.
@@ -3350,7 +3430,7 @@ extensions. You will need to run `gem pristine gem_with_extension --
3350
3430
  --build-arg` to regenerate a gem with an extension where it requires special
3351
3431
  build arguments.
3352
3432
 
3353
- * 24(+) Deprecations (WOOT!):
3433
+ Deprecations:
3354
3434
 
3355
3435
  * DependencyList.from_source_index deprecated the source_index argument.
3356
3436
  * Deprecated Dependency.new(/regex/).
@@ -3371,14 +3451,11 @@ build arguments.
3371
3451
  * Deprecated all of Gem::GemPathSearcher.
3372
3452
  * Deprecated Gem::Specification#default_executable.
3373
3453
 
3374
- * 2 major enhancements:
3454
+ Enhancements:
3375
3455
 
3376
3456
  * Gem::SourceIndex functionality has been moved to Gem::Specification.
3377
3457
  Gem::SourceIndex is completely disconnected from Gem::Specification
3378
3458
  * Refactored GemPathSearcher entirely out. RIPMF
3379
-
3380
- * 41 minor enhancements:
3381
-
3382
3459
  * Added CommandManager#unregister_command
3383
3460
  * Added Dependency#matching_specs + to_specs.
3384
3461
  * Added Dependency#to_spec
@@ -3426,7 +3503,7 @@ build arguments.
3426
3503
  extensions.
3427
3504
  * `gem pristine` can now restore multiple gems.
3428
3505
 
3429
- * 6 bug fixes:
3506
+ Bug fixes:
3430
3507
 
3431
3508
  * DependencyInstaller passed around a source_index instance but used
3432
3509
  Gem.source_index.
@@ -3440,13 +3517,13 @@ build arguments.
3440
3517
 
3441
3518
  === 1.7.1 / 2011-03-32
3442
3519
 
3443
- * 1 bug fix:
3520
+ Bug fixes:
3444
3521
  * Fixed missing file in Manifest.txt. (Also a bug in hoe was fixed where
3445
3522
  `rake check_manifest` showing a diff would not exit with an error.)
3446
3523
 
3447
3524
  === 1.7.0 / 2011-03-32
3448
3525
 
3449
- * 16 Deprecations (woot!)
3526
+ Deprecations:
3450
3527
  * Deprecated Gem.all_load_paths, latest_load_paths, promote_load_path, and
3451
3528
  cache.
3452
3529
  * Deprecated RemoteFetcher#open_uri_or_path.
@@ -3458,7 +3535,7 @@ build arguments.
3458
3535
  test_suite_file(=).
3459
3536
  * Deprecated Specification#has_rdoc= and default_executable=
3460
3537
 
3461
- * 26 minor enhancements:
3538
+ Enhancements:
3462
3539
  * Added stupid simple deprecation module.
3463
3540
  * Added --spec option to `gem unpack` to output a gem's original metadata
3464
3541
  * Added packaging option to Specification#validate
@@ -3490,7 +3567,7 @@ build arguments.
3490
3567
  * UpdateCommand#gems_to_update now returns (name, version) pairs.
3491
3568
  * UpdateCommand#which_to_update now takes an optional system argument.
3492
3569
 
3493
- * 11 bug fixes:
3570
+ Bug fixes:
3494
3571
  * Added missing remote fetcher require to pristine command (aarnell)
3495
3572
  * Building gems now checks to ensure all required fields are non-nil
3496
3573
  * Fix option parser when summary is nil.
@@ -3508,7 +3585,7 @@ build arguments.
3508
3585
 
3509
3586
  === 1.6.2 / 2011-03-08
3510
3587
 
3511
- Bug Fixes:
3588
+ Bug fixes:
3512
3589
 
3513
3590
  * require of an activated gem could cause activation conflicts. Fixes
3514
3591
  Bug #29056 by Dave Verwer.
@@ -3516,7 +3593,7 @@ Bug Fixes:
3516
3593
 
3517
3594
  === 1.6.1 / 2011-03-03
3518
3595
 
3519
- Bug Fixes:
3596
+ Bug fixes:
3520
3597
 
3521
3598
  * Installation no longer fails when a dependency from a version that won't be
3522
3599
  installed is unsatisfied.
@@ -3527,7 +3604,7 @@ Bug Fixes:
3527
3604
 
3528
3605
  === 1.6.0 / 2011-02-29
3529
3606
 
3530
- 4 Deprecations:
3607
+ Deprecations:
3531
3608
 
3532
3609
  * RubyGems no longer requires 'thread'. Rails < 3 will need to add require
3533
3610
  'thread' to their applications.
@@ -3536,14 +3613,11 @@ Bug Fixes:
3536
3613
  * Gem::LoadError#version_requirements has been removed. Use
3537
3614
  Gem::LoadError#requirement.
3538
3615
 
3539
- 2 Major Enhancements:
3616
+ Enhancements:
3540
3617
 
3541
3618
  * Rewrote how Gem::activate (gem and require) resolves dependencies.
3542
3619
  * Gem::LoadError#version_requirement has been removed. Use
3543
3620
  Gem::LoadError#requirement.
3544
-
3545
- 17 Minor Enhancments:
3546
-
3547
3621
  * Added --key to `gem push` for setting alternate API keys.
3548
3622
  * Added --format-executable support to gem uninstall.
3549
3623
  * Added Gem::DependencyList#clear.
@@ -3567,7 +3641,7 @@ Bug Fixes:
3567
3641
  locally cached gem specifications.
3568
3642
  * SpecFetcher.fetch_spec can now take a string source_uri.
3569
3643
 
3570
- 10 Bug Fixes:
3644
+ Bug fixes:
3571
3645
 
3572
3646
  * Added missing require of Gem::RemoteFetcher to the unpack command.
3573
3647
  * RubyGems now completely removes a previous install when reinstalling.
@@ -3582,14 +3656,14 @@ Bug Fixes:
3582
3656
 
3583
3657
  === 1.5.3 / 2011-02-26
3584
3658
 
3585
- Bug Fixes:
3659
+ Bug fixes:
3586
3660
 
3587
3661
  * Fix for a bug in Syck which causes install failures for gems packaged with
3588
3662
  Psych. Bug #28965 by Aaron Patterson.
3589
3663
 
3590
3664
  === 1.5.2 / 2011-02-10
3591
3665
 
3592
- Bug Fixes:
3666
+ Bug fixes:
3593
3667
 
3594
3668
  * Fixed <tt>gem update --system</tt>. RubyGems can now update itself again.
3595
3669
 
@@ -3597,11 +3671,11 @@ Bug Fixes:
3597
3671
 
3598
3672
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3599
3673
 
3600
- Minor Enhancement:
3674
+ Enhancements:
3601
3675
 
3602
3676
  * Added ability to do gem update --system X.Y.Z.
3603
3677
 
3604
- Bug Fixes:
3678
+ Bug fixes:
3605
3679
 
3606
3680
  * Scrub !!null YAML from 1.9.2 (install and build).
3607
3681
  * Added missing requires for user_interaction.
@@ -3614,13 +3688,10 @@ Bug Fixes:
3614
3688
 
3615
3689
  ==== NOTE: `gem update --system` is broken. See UPGRADING.rdoc.
3616
3690
 
3617
- Major Enhancements:
3691
+ Enhancements:
3618
3692
 
3619
3693
  * Finally fixed all known 1.9.x issues. Upgrading is now possible!
3620
3694
  * Merged huge 1.3.7/ruby-core changes to master.
3621
-
3622
- Minor Enhancements:
3623
-
3624
3695
  * Added UPGRADING.rdoc to help deal with 1.9 issues.
3625
3696
  * Gem::Format now gives better errors for corrupt gem files and includes paths
3626
3697
  * Pre-install hooks can now abort gem installation by returning false
@@ -3632,7 +3703,7 @@ Minor Enhancements:
3632
3703
  * Gem::SilentUI now behaves like Gem::StreamUI for asking questions. Patch by
3633
3704
  Erik Hollensbe.
3634
3705
 
3635
- Bug Fixes:
3706
+ Bug fixes:
3636
3707
 
3637
3708
  * `gem update` was implicitly doing --system.
3638
3709
  * 1.9.3: Fixed encoding errors causing gem installs to die during rdoc phase.
@@ -3658,7 +3729,7 @@ Since apparently nobody reads my emails, blog posts or the README:
3658
3729
 
3659
3730
  DO NOT UPDATE RUBYGEMS ON RUBY 1.9! See UPGRADING.rdoc for details.
3660
3731
 
3661
- Bug fix:
3732
+ Bug fixes:
3662
3733
 
3663
3734
  * Specification#load was untainting a frozen string (via `gem build *.spec`)
3664
3735
 
@@ -3672,7 +3743,7 @@ You have been warned!
3672
3743
 
3673
3744
  NOTE: We've switched to git/github. See README.rdoc for details.
3674
3745
 
3675
- New features:
3746
+ Features:
3676
3747
 
3677
3748
  * Added --launch option to `gem server`. (gthiesfeld)
3678
3749
  * Added fuzzy name matching on install failures. (gstark/presidentbeef)
@@ -3704,7 +3775,7 @@ http://gems.rubyforge.org with https://rubygems.org/
3704
3775
 
3705
3776
  http://gems.rubyforge.org will continue to work for the foreseeable future.
3706
3777
 
3707
- New features:
3778
+ Features:
3708
3779
 
3709
3780
  * `gem` commands
3710
3781
  * `gem install` and `gem fetch` now report alternate platforms when a
@@ -3737,7 +3808,7 @@ Bug fixes:
3737
3808
 
3738
3809
  === 1.3.6 / 2010-02-17
3739
3810
 
3740
- New features:
3811
+ Features:
3741
3812
 
3742
3813
  * `gem` commands
3743
3814
  * Added `gem push` and `gem owner` for interacting with modern/Gemcutter
@@ -3768,7 +3839,7 @@ Bug fixes:
3768
3839
  * Gem::RemoteFetcher no longer copies the file if it is where we want it.
3769
3840
  Patch #27409 by Jakub Šťastný.
3770
3841
 
3771
- Deprecation Notices:
3842
+ Deprecations:
3772
3843
 
3773
3844
  * lib/rubygems/timer.rb has been removed.
3774
3845
  * Gem::Dependency#version_requirements is deprecated and will be removed on or
@@ -3784,7 +3855,7 @@ Bug fixes:
3784
3855
  * Fix use of prerelease gems.
3785
3856
  * Gem.bin_path no longer escapes path with spaces. Bug #25935 and #26458.
3786
3857
 
3787
- Deprecation Notices:
3858
+ Deprecations:
3788
3859
 
3789
3860
  * Bulk index update is no longer supported (the code currently remains, but not
3790
3861
  the tests)
@@ -3793,7 +3864,7 @@ Deprecation Notices:
3793
3864
 
3794
3865
  === 1.3.4 / 2009-05-03
3795
3866
 
3796
- Bug Fixes:
3867
+ Bug fixes:
3797
3868
 
3798
3869
  * Fixed various warnings
3799
3870
  * Gem::ruby_version works correctly for 1.8 branch and trunk
@@ -3804,7 +3875,7 @@ Bug Fixes:
3804
3875
  drives. Bug #25882 by Lars Christensen
3805
3876
  * Fix typo in Gem::Requirement#parse. Bug #26000 by Mike Gunderloy.
3806
3877
 
3807
- Deprecation Notices:
3878
+ Deprecations:
3808
3879
 
3809
3880
  * Bulk index update is no longer supported (the code currently remains, but not
3810
3881
  the tests)
@@ -3813,7 +3884,7 @@ Deprecation Notices:
3813
3884
 
3814
3885
  === 1.3.3 / 2009-05-04
3815
3886
 
3816
- New Features:
3887
+ Features:
3817
3888
 
3818
3889
  * `gem server` allows port names (from /etc/services) with --port.
3819
3890
  * `gem server` now has search that jumps to RDoc. Patch #22959 by Vladimir
@@ -3823,7 +3894,7 @@ New Features:
3823
3894
  * Gem::Specification#has_rdoc= is deprecated and ignored (defaults to true)
3824
3895
  * RDoc is now generated regardless of Gem::Specification#has_rdoc?
3825
3896
 
3826
- Bug Fixes:
3897
+ Bug fixes:
3827
3898
 
3828
3899
  * `gem clean` now cleans up --user-install gems. Bug #25516 by Brett
3829
3900
  Eisenberg.
@@ -3845,7 +3916,7 @@ Bug Fixes:
3845
3916
  * Raise Gem::LoadError if Kernel#gem fails due to previously-loaded gem. Bug
3846
3917
  reported by Alf Mikula.
3847
3918
 
3848
- Deprecation Notices:
3919
+ Deprecations:
3849
3920
 
3850
3921
  * Gem::manage_gems has been removed.
3851
3922
  * Time::today has been removed early. There was no way to make it warn and be
@@ -3853,7 +3924,7 @@ Deprecation Notices:
3853
3924
 
3854
3925
  === 1.3.2 / 2009-04-15
3855
3926
 
3856
- Select New Features:
3927
+ Features:
3857
3928
 
3858
3929
  * RubyGems now loads plugins from rubygems_plugin.rb in installed gems.
3859
3930
  This can be used to add commands (See Gem::CommandManager) or add
@@ -3881,7 +3952,7 @@ Select New Features:
3881
3952
  * Modern indicies can now be updated incrementally.
3882
3953
  * Legacy indicies can be updated separately from modern.
3883
3954
 
3884
- Select Bugs Fixed:
3955
+ Bug fixes:
3885
3956
 
3886
3957
  * Better gem activation error message. Patch #23082.
3887
3958
  * Kernel methods are now private. Patch #20801 by James M. Lawrence.
@@ -3907,7 +3978,7 @@ Select Bugs Fixed:
3907
3978
  * Deal with extraneous quotation mark when autogenerating .bat file on MS
3908
3979
  Windows. Bug #22712.
3909
3980
 
3910
- Deprecation Notices:
3981
+ Deprecations:
3911
3982
 
3912
3983
  * Gem::manage_gems has been removed.
3913
3984
  * Time::today will be removed in RubyGems 1.4.
@@ -3917,7 +3988,7 @@ Lavena and Daniel Berger for continuing windows support.
3917
3988
 
3918
3989
  === 1.3.1 / 2008-10-28
3919
3990
 
3920
- Bugs fixed:
3991
+ Bug fixes:
3921
3992
 
3922
3993
  * Disregard ownership of ~ under Windows while creating ~/.gem. Fixes
3923
3994
  issues related to no uid support under Windows.
@@ -3928,13 +3999,13 @@ Bugs fixed:
3928
3999
  * Gem::location_of_caller now behaves on Windows. Patch by Daniel Berger.
3929
4000
  * Silence PATH warning.
3930
4001
 
3931
- Deprecation Notices:
4002
+ Deprecations:
3932
4003
 
3933
4004
  * Gem::manage_gems will be removed on or after March 2009.
3934
4005
 
3935
4006
  === 1.3.0 / 2008-09-25
3936
4007
 
3937
- New features:
4008
+ Features:
3938
4009
 
3939
4010
  * RubyGems doesn't print LOCAL/REMOTE titles for `gem query` and friends if
3940
4011
  stdout is not a TTY, except with --both.
@@ -3948,12 +4019,12 @@ New features:
3948
4019
  * RubyGems now updates the ri cache when the rdoc gem is installed and
3949
4020
  documentation is generated.
3950
4021
 
3951
- Deprecation Notices:
4022
+ Deprecations:
3952
4023
 
3953
4024
  * Gem::manage_gems now warns when called. It will be removed on or after March
3954
4025
  2009.
3955
4026
 
3956
- Bugs Fixed:
4027
+ Bug fixes:
3957
4028
 
3958
4029
  * RubyGems 1.3.0+ now updates when no previous rubygems-update is installed.
3959
4030
  Bug #20775 by Hemant Kumar.
@@ -3977,7 +4048,7 @@ Bugs Fixed:
3977
4048
  * `gem lock --strict` works again. Patch #21814 by Sven Engelhardt.
3978
4049
  * Platform detection for Solaris was improved. Patch #21911 by Bob Remeika.
3979
4050
 
3980
- Other Changes Include:
4051
+ Enhancements:
3981
4052
 
3982
4053
  * `gem help install` now describes _version_ argument to executable stubs
3983
4054
  * `gem help environment` describes environment variables and ~/.gemrc and
@@ -4005,7 +4076,7 @@ Other Changes Include:
4005
4076
 
4006
4077
  === 1.2.0 / 2008-06-21
4007
4078
 
4008
- New features:
4079
+ Features:
4009
4080
 
4010
4081
  * RubyGems no longer performs bulk updates and instead only fetches the gemspec
4011
4082
  files it needs. Alternate sources will need to upgrade to RubyGems 1.2 to
@@ -4024,7 +4095,7 @@ New features:
4024
4095
  * setup.rb now handles --vendor and --destdir for packagers
4025
4096
  * `gem stale` command that lists gems by last access time
4026
4097
 
4027
- Bugs Fixed:
4098
+ Bug fixes:
4028
4099
 
4029
4100
  * File modes from gems are now honored, patch #19737
4030
4101
  * Marshal Gem::Specification objects from the future can now be loaded.
@@ -4039,7 +4110,7 @@ Bugs Fixed:
4039
4110
  * Gem::DependencyInstaller resets installed gems every install, bug #19444
4040
4111
  * Gem.default_path is now honored if GEM_PATH is not set, patch #19502
4041
4112
 
4042
- Other Changes Include:
4113
+ Enhancements:
4043
4114
 
4044
4115
  * setup.rb
4045
4116
  * stub files created by RubyGems 0.7.x and older are no longer removed. When
@@ -4060,7 +4131,7 @@ Other Changes Include:
4060
4131
 
4061
4132
  === 1.1.1 / 2008-04-11
4062
4133
 
4063
- Bugs Fixed:
4134
+ Bug fixes:
4064
4135
 
4065
4136
  * Gem.prefix now returns non-nil only when RubyGems was installed outside
4066
4137
  sitelibdir or libdir.
@@ -4077,7 +4148,7 @@ Bugs Fixed:
4077
4148
 
4078
4149
  === 1.1.0 / 2008-03-29
4079
4150
 
4080
- New features:
4151
+ Features:
4081
4152
 
4082
4153
  * RubyGems now uses persistent connections on index updates. Index updates are
4083
4154
  much faster now.
@@ -4089,7 +4160,7 @@ New features:
4089
4160
  * `gem spec` now extracts specifications from .gem files.
4090
4161
  * `gem query --installed` to aid automation of checking for gems.
4091
4162
 
4092
- Bugs Fixed:
4163
+ Bug fixes:
4093
4164
 
4094
4165
  * RubyGems works with both Config and RbConfig now.
4095
4166
  * Executables are now cleaned upon uninstall.
@@ -4105,7 +4176,7 @@ Bugs Fixed:
4105
4176
  * Gem stub scripts on windows now work outside Gem.bindir.
4106
4177
  * `gem sources -r` now works without network access.
4107
4178
 
4108
- Other Changes Include:
4179
+ Enhancements:
4109
4180
 
4110
4181
  * RubyGems now requires Ruby > 1.8.3.
4111
4182
  * Release notes are now printed upon installation.
@@ -4118,24 +4189,24 @@ For a full list of changes to RubyGems, see the ChangeLog file.
4118
4189
 
4119
4190
  === 1.0.1 / 2007-12-20
4120
4191
 
4121
- Bugs Fixed:
4192
+ Bug fixes:
4122
4193
 
4123
4194
  * Installation on Ruby 1.8.3 through 1.8.5 fixed
4124
4195
  * `gem build` on 1.8.3 fixed
4125
4196
 
4126
- Other Changes Include:
4197
+ Enhancements:
4127
4198
 
4128
4199
  * Since RubyGems 0.9.5, RubyGems is no longer supported on Ruby 1.8.2 or older,
4129
4200
  this is official in RubyGems 1.0.1.
4130
4201
 
4131
4202
  === 1.0.0 / 2007-12-20
4132
4203
 
4133
- Major New Features Include:
4204
+ Features:
4134
4205
 
4135
4206
  * RubyGems warns about various problems with gemspecs during gem building
4136
4207
  * More-consistent versioning for the RubyGems software
4137
4208
 
4138
- Other Changes Include:
4209
+ Enhancements:
4139
4210
 
4140
4211
  * Fixed various bugs and problems with installing gems on Windows
4141
4212
  * Fixed using `gem server` for installing gems
@@ -4149,7 +4220,7 @@ Other Changes Include:
4149
4220
  * `gem unpack` can now unpack into a specific directory with --target
4150
4221
  * OpenSSL is no longer required by default
4151
4222
 
4152
- Deprecations and Deletions:
4223
+ Breaking changes:
4153
4224
 
4154
4225
  * Kernel#require_gem has been removed
4155
4226
  * Executables without a shebang will not be wrapped in a future version, this
@@ -4163,7 +4234,7 @@ Deprecations and Deletions:
4163
4234
 
4164
4235
  === 0.9.5 / 2007-11-19
4165
4236
 
4166
- Major New Features Include:
4237
+ Features:
4167
4238
 
4168
4239
  * Platform support
4169
4240
  * Automatic installation of platform gems
@@ -4175,7 +4246,7 @@ Major New Features Include:
4175
4246
  * Improved stubs and `gem.bat` on mswin, including better compatibility
4176
4247
  with the One-Click Installer.
4177
4248
 
4178
- Other Changes Include:
4249
+ Enhancements:
4179
4250
 
4180
4251
  * Time::today is deprecated and will be removed at a future date
4181
4252
  * Gem::manage_gems is deprecated and will be removed at a future date
@@ -4226,7 +4297,7 @@ If you are experiencing problems with the source index (e.g. strange
4226
4297
  "No Method" errors), or problems with zlib (e.g. "Buffer Error"
4227
4298
  messsage), we recommend upgrading to RubyGems 0.9.4.
4228
4299
 
4229
- Bug Fixes Include:
4300
+ Bug fixes:
4230
4301
 
4231
4302
  * Several people have been experiencing problems with no method errors
4232
4303
  on the source index cache. The source index cache is now a bit more
@@ -4240,7 +4311,7 @@ Bug Fixes Include:
4240
4311
 
4241
4312
  === 0.9.3 / 2007-05-10
4242
4313
 
4243
- Bug Fixes Include:
4314
+ Bug fixes:
4244
4315
 
4245
4316
  The ZLib library on Windows will occasionally complains about a buffer error
4246
4317
  when unpacking gems. The Gems software has a workaround for that problem, but
@@ -4250,7 +4321,7 @@ have permanently enabled the work around on all versions.
4250
4321
 
4251
4322
  === 0.9.2 / 2007-02-05
4252
4323
 
4253
- Bug Fixes Include:
4324
+ Bug fixes:
4254
4325
 
4255
4326
  * The "unpack" command now works properly.
4256
4327
  * User name and password are now passed properly to the authenticating
@@ -4268,7 +4339,7 @@ number one change is that we can now download the gem index
4268
4339
  incrementally. This will greatly speed up the gem command when only a
4269
4340
  few gems are out of date.
4270
4341
 
4271
- Major Enhancments include:
4342
+ Enhancements:
4272
4343
 
4273
4344
  * The gem index is now downloaded incrementally, only updating entries
4274
4345
  that are out of date. If more than 50 entries are out of date, we
@@ -4283,9 +4354,6 @@ Major Enhancments include:
4283
4354
  * Both RI and RDOC documents are now generated by default.
4284
4355
  * A gemri command is included to read gem RI docs (only needed for
4285
4356
  Ruby 1.8.4 or earlier).
4286
-
4287
- Minor enhancements include:
4288
-
4289
4357
  * Version 0.0.0 is now a valid gem version.
4290
4358
  * Better detection of missing SSL functionality.
4291
4359
  * SSL is not required if the security policy does not require
@@ -4298,7 +4366,7 @@ Minor enhancements include:
4298
4366
  * .rbw is now a supported suffix for RubyGem's custom require.
4299
4367
  * Several Ruby 1.9 compatibility fixes (Eric Hodel).
4300
4368
 
4301
- Bug Fixes:
4369
+ Bug fixes:
4302
4370
 
4303
4371
  * Added dashes to gemspecs generated in Ruby 1.8.3. This solves some
4304
4372
  cross-Ruby version compatibility issues.