rubygems-update 2.6.3 → 2.7.7

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rubygems-update might be problematic. Click here for more details.

Files changed (462) hide show
  1. checksums.yaml +5 -5
  2. data/.travis.yml +17 -34
  3. data/CODE_OF_CONDUCT.md +36 -33
  4. data/CONTRIBUTING.rdoc +56 -55
  5. data/History.txt +467 -10
  6. data/Manifest.txt +276 -4
  7. data/POLICIES.rdoc +4 -4
  8. data/README.md +72 -0
  9. data/Rakefile +77 -10
  10. data/appveyor.yml +61 -31
  11. data/bin/gem +1 -1
  12. data/bin/update_rubygems +2 -2
  13. data/bundler/CHANGELOG.md +2910 -0
  14. data/bundler/CODE_OF_CONDUCT.md +42 -0
  15. data/bundler/CONTRIBUTING.md +17 -0
  16. data/bundler/LICENSE.md +23 -0
  17. data/bundler/README.md +63 -0
  18. data/bundler/bundler.gemspec +57 -0
  19. data/bundler/exe/bundle +31 -0
  20. data/bundler/exe/bundle_ruby +60 -0
  21. data/bundler/exe/bundler +4 -0
  22. data/bundler/lib/bundler/build_metadata.rb +36 -0
  23. data/bundler/lib/bundler/capistrano.rb +22 -0
  24. data/bundler/lib/bundler/cli/add.rb +25 -0
  25. data/bundler/lib/bundler/cli/binstubs.rb +43 -0
  26. data/bundler/lib/bundler/cli/cache.rb +36 -0
  27. data/bundler/lib/bundler/cli/check.rb +38 -0
  28. data/bundler/lib/bundler/cli/clean.rb +25 -0
  29. data/bundler/lib/bundler/cli/common.rb +102 -0
  30. data/bundler/lib/bundler/cli/config.rb +119 -0
  31. data/bundler/lib/bundler/cli/console.rb +43 -0
  32. data/bundler/lib/bundler/cli/doctor.rb +94 -0
  33. data/bundler/lib/bundler/cli/exec.rb +104 -0
  34. data/bundler/lib/bundler/cli/gem.rb +252 -0
  35. data/bundler/lib/bundler/cli/info.rb +50 -0
  36. data/bundler/lib/bundler/cli/init.rb +47 -0
  37. data/bundler/lib/bundler/cli/inject.rb +60 -0
  38. data/bundler/lib/bundler/cli/install.rb +214 -0
  39. data/bundler/lib/bundler/cli/issue.rb +40 -0
  40. data/bundler/lib/bundler/cli/list.rb +22 -0
  41. data/bundler/lib/bundler/cli/lock.rb +63 -0
  42. data/bundler/lib/bundler/cli/open.rb +26 -0
  43. data/bundler/lib/bundler/cli/outdated.rb +260 -0
  44. data/bundler/lib/bundler/cli/package.rb +49 -0
  45. data/bundler/lib/bundler/cli/platform.rb +46 -0
  46. data/bundler/lib/bundler/cli/plugin.rb +24 -0
  47. data/bundler/lib/bundler/cli/pristine.rb +43 -0
  48. data/bundler/lib/bundler/cli/show.rb +75 -0
  49. data/bundler/lib/bundler/cli/update.rb +91 -0
  50. data/bundler/lib/bundler/cli/viz.rb +31 -0
  51. data/bundler/lib/bundler/cli.rb +748 -0
  52. data/bundler/lib/bundler/compact_index_client/cache.rb +118 -0
  53. data/bundler/lib/bundler/compact_index_client/updater.rb +116 -0
  54. data/bundler/lib/bundler/compact_index_client.rb +109 -0
  55. data/bundler/lib/bundler/compatibility_guard.rb +14 -0
  56. data/bundler/lib/bundler/constants.rb +7 -0
  57. data/bundler/lib/bundler/current_ruby.rb +86 -0
  58. data/bundler/lib/bundler/definition.rb +989 -0
  59. data/bundler/lib/bundler/dep_proxy.rb +48 -0
  60. data/bundler/lib/bundler/dependency.rb +138 -0
  61. data/bundler/lib/bundler/deployment.rb +69 -0
  62. data/bundler/lib/bundler/deprecate.rb +43 -0
  63. data/bundler/lib/bundler/dsl.rb +599 -0
  64. data/bundler/lib/bundler/endpoint_specification.rb +141 -0
  65. data/bundler/lib/bundler/env.rb +153 -0
  66. data/bundler/lib/bundler/environment_preserver.rb +59 -0
  67. data/bundler/lib/bundler/errors.rb +158 -0
  68. data/bundler/lib/bundler/feature_flag.rb +67 -0
  69. data/bundler/lib/bundler/fetcher/base.rb +52 -0
  70. data/bundler/lib/bundler/fetcher/compact_index.rb +126 -0
  71. data/bundler/lib/bundler/fetcher/dependency.rb +82 -0
  72. data/bundler/lib/bundler/fetcher/downloader.rb +79 -0
  73. data/bundler/lib/bundler/fetcher/index.rb +52 -0
  74. data/bundler/lib/bundler/fetcher.rb +312 -0
  75. data/bundler/lib/bundler/friendly_errors.rb +131 -0
  76. data/bundler/lib/bundler/gem_helper.rb +202 -0
  77. data/bundler/lib/bundler/gem_helpers.rb +101 -0
  78. data/bundler/lib/bundler/gem_remote_fetcher.rb +43 -0
  79. data/bundler/lib/bundler/gem_tasks.rb +7 -0
  80. data/bundler/lib/bundler/gem_version_promoter.rb +176 -0
  81. data/bundler/lib/bundler/gemdeps.rb +29 -0
  82. data/bundler/lib/bundler/graph.rb +152 -0
  83. data/bundler/lib/bundler/index.rb +213 -0
  84. data/bundler/lib/bundler/injector.rb +94 -0
  85. data/bundler/lib/bundler/inline.rb +74 -0
  86. data/bundler/lib/bundler/installer/gem_installer.rb +83 -0
  87. data/bundler/lib/bundler/installer/parallel_installer.rb +228 -0
  88. data/bundler/lib/bundler/installer/standalone.rb +53 -0
  89. data/bundler/lib/bundler/installer.rb +295 -0
  90. data/bundler/lib/bundler/lazy_specification.rb +123 -0
  91. data/bundler/lib/bundler/lockfile_generator.rb +95 -0
  92. data/bundler/lib/bundler/lockfile_parser.rb +256 -0
  93. data/bundler/lib/bundler/match_platform.rb +24 -0
  94. data/bundler/lib/bundler/mirror.rb +223 -0
  95. data/bundler/lib/bundler/plugin/api/source.rb +306 -0
  96. data/bundler/lib/bundler/plugin/api.rb +81 -0
  97. data/bundler/lib/bundler/plugin/dsl.rb +53 -0
  98. data/bundler/lib/bundler/plugin/index.rb +162 -0
  99. data/bundler/lib/bundler/plugin/installer/git.rb +38 -0
  100. data/bundler/lib/bundler/plugin/installer/rubygems.rb +27 -0
  101. data/bundler/lib/bundler/plugin/installer.rb +96 -0
  102. data/bundler/lib/bundler/plugin/source_list.rb +27 -0
  103. data/bundler/lib/bundler/plugin.rb +285 -0
  104. data/bundler/lib/bundler/process_lock.rb +24 -0
  105. data/bundler/lib/bundler/psyched_yaml.rb +37 -0
  106. data/bundler/lib/bundler/remote_specification.rb +114 -0
  107. data/bundler/lib/bundler/resolver/spec_group.rb +110 -0
  108. data/bundler/lib/bundler/resolver.rb +372 -0
  109. data/bundler/lib/bundler/retry.rb +66 -0
  110. data/bundler/lib/bundler/ruby_dsl.rb +18 -0
  111. data/bundler/lib/bundler/ruby_version.rb +152 -0
  112. data/bundler/lib/bundler/rubygems_ext.rb +210 -0
  113. data/bundler/lib/bundler/rubygems_gem_installer.rb +99 -0
  114. data/bundler/lib/bundler/rubygems_integration.rb +898 -0
  115. data/bundler/lib/bundler/runtime.rb +316 -0
  116. data/bundler/lib/bundler/settings/validator.rb +79 -0
  117. data/bundler/lib/bundler/settings.rb +442 -0
  118. data/bundler/lib/bundler/setup.rb +28 -0
  119. data/bundler/lib/bundler/shared_helpers.rb +356 -0
  120. data/bundler/lib/bundler/similarity_detector.rb +63 -0
  121. data/bundler/lib/bundler/source/gemspec.rb +18 -0
  122. data/bundler/lib/bundler/source/git/git_proxy.rb +262 -0
  123. data/bundler/lib/bundler/source/git.rb +329 -0
  124. data/bundler/lib/bundler/source/metadata.rb +63 -0
  125. data/bundler/lib/bundler/source/path/installer.rb +74 -0
  126. data/bundler/lib/bundler/source/path.rb +249 -0
  127. data/bundler/lib/bundler/source/rubygems/remote.rb +66 -0
  128. data/bundler/lib/bundler/source/rubygems.rb +535 -0
  129. data/bundler/lib/bundler/source.rb +94 -0
  130. data/bundler/lib/bundler/source_list.rb +186 -0
  131. data/bundler/lib/bundler/spec_set.rb +192 -0
  132. data/bundler/lib/bundler/ssl_certs/.document +1 -0
  133. data/bundler/lib/bundler/ssl_certs/certificate_manager.rb +66 -0
  134. data/bundler/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  135. data/bundler/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
  136. data/bundler/lib/bundler/stub_specification.rb +108 -0
  137. data/bundler/lib/bundler/templates/.document +1 -0
  138. data/bundler/lib/bundler/templates/Executable +29 -0
  139. data/bundler/lib/bundler/templates/Executable.bundler +105 -0
  140. data/bundler/lib/bundler/templates/Executable.standalone +14 -0
  141. data/bundler/lib/bundler/templates/Gemfile +7 -0
  142. data/bundler/lib/bundler/templates/gems.rb +8 -0
  143. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
  144. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +6 -0
  145. data/bundler/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
  146. data/bundler/lib/bundler/templates/newgem/README.md.tt +47 -0
  147. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +29 -0
  148. data/bundler/lib/bundler/templates/newgem/bin/console.tt +14 -0
  149. data/bundler/lib/bundler/templates/newgem/bin/setup.tt +8 -0
  150. data/bundler/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  151. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
  152. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  153. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  154. data/bundler/lib/bundler/templates/newgem/gitignore.tt +20 -0
  155. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  156. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
  157. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +51 -0
  158. data/bundler/lib/bundler/templates/newgem/rspec.tt +3 -0
  159. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +9 -0
  160. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -0
  161. data/bundler/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
  162. data/bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
  163. data/bundler/lib/bundler/templates/newgem/travis.yml.tt +5 -0
  164. data/bundler/lib/bundler/ui/rg_proxy.rb +19 -0
  165. data/bundler/lib/bundler/ui/shell.rb +146 -0
  166. data/bundler/lib/bundler/ui/silent.rb +69 -0
  167. data/bundler/lib/bundler/ui.rb +9 -0
  168. data/bundler/lib/bundler/uri_credentials_filter.rb +37 -0
  169. data/bundler/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
  170. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
  171. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
  172. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +81 -0
  173. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
  174. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
  175. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
  176. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
  177. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
  178. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
  179. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
  180. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
  181. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +126 -0
  182. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
  183. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +138 -0
  184. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
  185. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +101 -0
  186. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +67 -0
  187. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
  188. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +46 -0
  189. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
  190. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
  191. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +27 -0
  192. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +129 -0
  193. data/bundler/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +1233 -0
  194. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +104 -0
  195. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +60 -0
  196. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
  197. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +143 -0
  198. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +364 -0
  199. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +109 -0
  200. data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +321 -0
  201. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +679 -0
  202. data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +135 -0
  203. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +97 -0
  204. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
  205. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
  206. data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +32 -0
  207. data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
  208. data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +177 -0
  209. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +37 -0
  210. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  211. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
  212. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +70 -0
  213. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
  214. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +146 -0
  215. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +221 -0
  216. data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  217. data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
  218. data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +324 -0
  219. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +437 -0
  220. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
  221. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
  222. data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
  223. data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +268 -0
  224. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
  225. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +509 -0
  226. data/bundler/lib/bundler/vendored_fileutils.rb +9 -0
  227. data/bundler/lib/bundler/vendored_molinillo.rb +4 -0
  228. data/bundler/lib/bundler/vendored_persistent.rb +52 -0
  229. data/bundler/lib/bundler/vendored_thor.rb +8 -0
  230. data/bundler/lib/bundler/version.rb +28 -0
  231. data/bundler/lib/bundler/version_ranges.rb +76 -0
  232. data/bundler/lib/bundler/vlad.rb +17 -0
  233. data/bundler/lib/bundler/worker.rb +106 -0
  234. data/bundler/lib/bundler/yaml_serializer.rb +90 -0
  235. data/bundler/lib/bundler.rb +545 -0
  236. data/bundler/man/bundle-add.ronn +29 -0
  237. data/bundler/man/bundle-binstubs.ronn +43 -0
  238. data/bundler/man/bundle-check.ronn +26 -0
  239. data/bundler/man/bundle-clean.ronn +18 -0
  240. data/bundler/man/bundle-config.ronn +376 -0
  241. data/bundler/man/bundle-doctor.ronn +33 -0
  242. data/bundler/man/bundle-exec.ronn +152 -0
  243. data/bundler/man/bundle-gem.ronn +78 -0
  244. data/bundler/man/bundle-info.ronn +17 -0
  245. data/bundler/man/bundle-init.ronn +29 -0
  246. data/bundler/man/bundle-inject.ronn +22 -0
  247. data/bundler/man/bundle-install.ronn +369 -0
  248. data/bundler/man/bundle-list.ronn +15 -0
  249. data/bundler/man/bundle-lock.ronn +94 -0
  250. data/bundler/man/bundle-open.ronn +19 -0
  251. data/bundler/man/bundle-outdated.ronn +107 -0
  252. data/bundler/man/bundle-package.ronn +72 -0
  253. data/bundler/man/bundle-platform.ronn +42 -0
  254. data/bundler/man/bundle-pristine.ronn +34 -0
  255. data/bundler/man/bundle-show.ronn +20 -0
  256. data/bundler/man/bundle-update.ronn +346 -0
  257. data/bundler/man/bundle-viz.ronn +30 -0
  258. data/bundler/man/bundle.ronn +108 -0
  259. data/bundler/man/gemfile.5.ronn +506 -0
  260. data/lib/rubygems/basic_specification.rb +8 -4
  261. data/lib/rubygems/bundler_version_finder.rb +116 -0
  262. data/lib/rubygems/command.rb +10 -2
  263. data/lib/rubygems/command_manager.rb +3 -1
  264. data/lib/rubygems/commands/cert_command.rb +31 -6
  265. data/lib/rubygems/commands/cleanup_command.rb +10 -3
  266. data/lib/rubygems/commands/generate_index_command.rb +1 -1
  267. data/lib/rubygems/commands/help_command.rb +1 -1
  268. data/lib/rubygems/commands/open_command.rb +1 -1
  269. data/lib/rubygems/commands/owner_command.rb +4 -2
  270. data/lib/rubygems/commands/pristine_command.rb +11 -8
  271. data/lib/rubygems/commands/push_command.rb +3 -2
  272. data/lib/rubygems/commands/query_command.rb +17 -17
  273. data/lib/rubygems/commands/setup_command.rb +175 -70
  274. data/lib/rubygems/commands/signin_command.rb +33 -0
  275. data/lib/rubygems/commands/signout_command.rb +33 -0
  276. data/lib/rubygems/commands/sources_command.rb +1 -1
  277. data/lib/rubygems/commands/uninstall_command.rb +4 -3
  278. data/lib/rubygems/commands/unpack_command.rb +19 -7
  279. data/lib/rubygems/commands/update_command.rb +2 -2
  280. data/lib/rubygems/commands/which_command.rb +1 -1
  281. data/lib/rubygems/commands/yank_command.rb +4 -11
  282. data/lib/rubygems/config_file.rb +21 -28
  283. data/lib/rubygems/core_ext/kernel_require.rb +10 -9
  284. data/lib/rubygems/defaults.rb +18 -0
  285. data/lib/rubygems/dependency.rb +10 -4
  286. data/lib/rubygems/dependency_installer.rb +8 -2
  287. data/lib/rubygems/dependency_list.rb +1 -1
  288. data/lib/rubygems/errors.rb +4 -0
  289. data/lib/rubygems/exceptions.rb +11 -1
  290. data/lib/rubygems/ext/builder.rb +2 -2
  291. data/lib/rubygems/ext/ext_conf_builder.rb +7 -7
  292. data/lib/rubygems/ext/rake_builder.rb +2 -2
  293. data/lib/rubygems/gem_runner.rb +5 -1
  294. data/lib/rubygems/indexer.rb +6 -5
  295. data/lib/rubygems/install_update_options.rb +5 -28
  296. data/lib/rubygems/installer.rb +53 -22
  297. data/lib/rubygems/installer_test_case.rb +6 -3
  298. data/lib/rubygems/package/file_source.rb +2 -2
  299. data/lib/rubygems/package/old.rb +3 -3
  300. data/lib/rubygems/package/tar_header.rb +14 -9
  301. data/lib/rubygems/package/tar_writer.rb +12 -16
  302. data/lib/rubygems/package.rb +48 -9
  303. data/lib/rubygems/platform.rb +1 -1
  304. data/lib/rubygems/remote_fetcher.rb +13 -18
  305. data/lib/rubygems/request.rb +47 -1
  306. data/lib/rubygems/request_set/gem_dependency_api.rb +3 -3
  307. data/lib/rubygems/request_set/lockfile/tokenizer.rb +1 -1
  308. data/lib/rubygems/request_set/lockfile.rb +1 -1
  309. data/lib/rubygems/request_set.rb +22 -3
  310. data/lib/rubygems/requirement.rb +5 -1
  311. data/lib/rubygems/resolver/installer_set.rb +4 -6
  312. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +50 -0
  313. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +80 -0
  314. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +35 -0
  315. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +65 -0
  316. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +61 -0
  317. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +62 -0
  318. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +60 -0
  319. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +125 -0
  320. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +45 -0
  321. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +35 -0
  322. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +125 -0
  323. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +78 -147
  324. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +1 -1
  325. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  326. data/lib/rubygems/resolver/molinillo/lib/molinillo/modules/ui.rb +1 -1
  327. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +110 -75
  328. data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +4 -2
  329. data/lib/rubygems/resolver/set.rb +1 -1
  330. data/lib/rubygems/resolver.rb +61 -5
  331. data/lib/rubygems/safe_yaml.rb +51 -0
  332. data/lib/rubygems/security/signer.rb +2 -0
  333. data/lib/rubygems/security/trust_dir.rb +1 -1
  334. data/lib/rubygems/security.rb +12 -5
  335. data/lib/rubygems/security_option.rb +43 -0
  336. data/lib/rubygems/server.rb +49 -40
  337. data/lib/rubygems/source/git.rb +2 -1
  338. data/lib/rubygems/source/local.rb +38 -35
  339. data/lib/rubygems/source/lock.rb +4 -1
  340. data/lib/rubygems/source.rb +9 -6
  341. data/lib/rubygems/source_local.rb +3 -1
  342. data/lib/rubygems/source_specific_file.rb +3 -2
  343. data/lib/rubygems/spec_fetcher.rb +7 -3
  344. data/lib/rubygems/specification.rb +317 -251
  345. data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  346. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
  347. data/lib/rubygems/stub_specification.rb +10 -4
  348. data/lib/rubygems/test_case.rb +51 -11
  349. data/lib/rubygems/test_utilities.rb +2 -2
  350. data/lib/rubygems/text.rb +14 -1
  351. data/lib/rubygems/user_interaction.rb +22 -20
  352. data/lib/rubygems/util/licenses.rb +37 -0
  353. data/lib/rubygems/util.rb +6 -16
  354. data/lib/rubygems/validator.rb +3 -3
  355. data/lib/rubygems/version.rb +24 -5
  356. data/lib/rubygems/version_option.rb +6 -1
  357. data/lib/rubygems.rb +147 -45
  358. data/lib/ubygems.rb +3 -0
  359. data/setup.rb +1 -1
  360. data/test/rubygems/alternate_cert.pem +10 -9
  361. data/test/rubygems/alternate_cert_32.pem +10 -9
  362. data/test/rubygems/child_cert.pem +11 -9
  363. data/test/rubygems/child_cert_32.pem +11 -9
  364. data/test/rubygems/encrypted_private_key.pem +26 -26
  365. data/test/rubygems/expired_cert.pem +9 -8
  366. data/test/rubygems/future_cert.pem +9 -8
  367. data/test/rubygems/future_cert_32.pem +9 -8
  368. data/test/rubygems/grandchild_cert.pem +11 -9
  369. data/test/rubygems/grandchild_cert_32.pem +11 -9
  370. data/test/rubygems/invalid_issuer_cert.pem +11 -9
  371. data/test/rubygems/invalid_issuer_cert_32.pem +11 -9
  372. data/test/rubygems/invalid_signer_cert.pem +10 -9
  373. data/test/rubygems/invalid_signer_cert_32.pem +10 -9
  374. data/test/rubygems/invalidchild_cert.pem +11 -9
  375. data/test/rubygems/invalidchild_cert_32.pem +11 -9
  376. data/test/rubygems/private3072_key.pem +40 -0
  377. data/test/rubygems/public3072_cert.pem +25 -0
  378. data/test/rubygems/public_cert.pem +11 -9
  379. data/test/rubygems/public_cert_32.pem +10 -9
  380. data/test/rubygems/rubygems_plugin.rb +4 -0
  381. data/test/rubygems/test_bundled_ca.rb +1 -1
  382. data/test/rubygems/test_config.rb +1 -1
  383. data/test/rubygems/test_gem.rb +168 -55
  384. data/test/rubygems/test_gem_bundler_version_finder.rb +125 -0
  385. data/test/rubygems/test_gem_command.rb +7 -1
  386. data/test/rubygems/test_gem_commands_build_command.rb +27 -1
  387. data/test/rubygems/test_gem_commands_cert_command.rb +64 -0
  388. data/test/rubygems/test_gem_commands_cleanup_command.rb +44 -1
  389. data/test/rubygems/test_gem_commands_install_command.rb +36 -2
  390. data/test/rubygems/test_gem_commands_open_command.rb +2 -1
  391. data/test/rubygems/test_gem_commands_owner_command.rb +25 -0
  392. data/test/rubygems/test_gem_commands_pristine_command.rb +1 -1
  393. data/test/rubygems/test_gem_commands_push_command.rb +5 -5
  394. data/test/rubygems/test_gem_commands_query_command.rb +154 -1
  395. data/test/rubygems/test_gem_commands_setup_command.rb +140 -10
  396. data/test/rubygems/test_gem_commands_signin_command.rb +98 -0
  397. data/test/rubygems/test_gem_commands_signout_command.rb +37 -0
  398. data/test/rubygems/test_gem_commands_sources_command.rb +52 -0
  399. data/test/rubygems/test_gem_commands_uninstall_command.rb +14 -2
  400. data/test/rubygems/test_gem_commands_update_command.rb +1 -7
  401. data/test/rubygems/test_gem_commands_which_command.rb +3 -3
  402. data/test/rubygems/test_gem_config_file.rb +1 -2
  403. data/test/rubygems/test_gem_dependency.rb +28 -0
  404. data/test/rubygems/test_gem_dependency_installer.rb +1 -1
  405. data/test/rubygems/test_gem_doctor.rb +2 -2
  406. data/test/rubygems/test_gem_ext_builder.rb +8 -8
  407. data/test/rubygems/test_gem_ext_configure_builder.rb +1 -1
  408. data/test/rubygems/test_gem_ext_ext_conf_builder.rb +23 -0
  409. data/test/rubygems/test_gem_ext_rake_builder.rb +33 -16
  410. data/test/rubygems/test_gem_gemcutter_utilities.rb +4 -4
  411. data/test/rubygems/test_gem_indexer.rb +1 -2
  412. data/test/rubygems/test_gem_install_update_options.rb +4 -1
  413. data/test/rubygems/test_gem_installer.rb +230 -32
  414. data/test/rubygems/test_gem_package.rb +156 -29
  415. data/test/rubygems/test_gem_package_old.rb +1 -1
  416. data/test/rubygems/test_gem_package_tar_header.rb +21 -0
  417. data/test/rubygems/test_gem_package_tar_writer.rb +24 -0
  418. data/test/rubygems/test_gem_rdoc.rb +2 -0
  419. data/test/rubygems/test_gem_remote_fetcher.rb +38 -19
  420. data/test/rubygems/test_gem_request.rb +132 -0
  421. data/test/rubygems/test_gem_request_connection_pools.rb +6 -7
  422. data/test/rubygems/test_gem_request_set.rb +7 -7
  423. data/test/rubygems/test_gem_request_set_gem_dependency_api.rb +3 -3
  424. data/test/rubygems/test_gem_request_set_lockfile.rb +4 -4
  425. data/test/rubygems/test_gem_request_set_lockfile_parser.rb +1 -1
  426. data/test/rubygems/test_gem_request_set_lockfile_tokenizer.rb +1 -1
  427. data/test/rubygems/test_gem_requirement.rb +6 -0
  428. data/test/rubygems/test_gem_resolver.rb +29 -3
  429. data/test/rubygems/test_gem_resolver_conflict.rb +1 -1
  430. data/test/rubygems/test_gem_resolver_git_specification.rb +1 -1
  431. data/test/rubygems/test_gem_security.rb +5 -0
  432. data/test/rubygems/test_gem_security_policy.rb +27 -27
  433. data/test/rubygems/test_gem_security_signer.rb +14 -6
  434. data/test/rubygems/test_gem_security_trust_dir.rb +2 -2
  435. data/test/rubygems/test_gem_server.rb +210 -12
  436. data/test/rubygems/test_gem_source.rb +12 -3
  437. data/test/rubygems/test_gem_source_fetch_problem.rb +8 -0
  438. data/test/rubygems/test_gem_source_git.rb +1 -1
  439. data/test/rubygems/test_gem_spec_fetcher.rb +20 -0
  440. data/test/rubygems/test_gem_specification.rb +163 -32
  441. data/test/rubygems/test_gem_stream_ui.rb +6 -6
  442. data/test/rubygems/test_gem_stub_specification.rb +85 -6
  443. data/test/rubygems/test_gem_text.rb +11 -0
  444. data/test/rubygems/test_gem_util.rb +26 -0
  445. data/test/rubygems/test_gem_version.rb +46 -7
  446. data/test/rubygems/test_gem_version_option.rb +15 -0
  447. data/test/rubygems/test_kernel.rb +30 -0
  448. data/test/rubygems/test_remote_fetch_error.rb +21 -0
  449. data/test/rubygems/test_require.rb +95 -21
  450. data/test/rubygems/wrong_key_cert.pem +10 -9
  451. data/test/rubygems/wrong_key_cert_32.pem +10 -9
  452. data/util/ci +74 -0
  453. data/util/create_certs.rb +64 -49
  454. data/util/generate_spdx_license_list.rb +2 -1
  455. data/util/patch_with_prs.rb +77 -0
  456. data/util/update_bundled_ca_certificates.rb +23 -2
  457. data/util/update_changelog.rb +67 -0
  458. metadata +301 -48
  459. data/README.rdoc +0 -54
  460. data/lib/gauntlet_rubygems.rb +0 -51
  461. data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRoot.pem +0 -18
  462. /data/{lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot-2048.pem → bundler/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem} +0 -0
@@ -0,0 +1,2910 @@
1
+ ## 1.16.2 (2018-04-20)
2
+
3
+ Changes:
4
+
5
+ - Include the gem's source in the gem install error message when available (@papanikge)
6
+ - Remove unnecessary executable bit from gem template (@voxik)
7
+ - Dont add the timestamp comment with gems added to the Gemfile via `bundle add` ([#6193](https://github.com/bundler/bundler/issues/6193), @cpgo)
8
+ - Improve yanked gem error message (@alyssais)
9
+ - Use `Bundler.rubygems.inflate` instead of the Gem::Util method directly (@segiddins)
10
+ - Remove unused instance variable (@segiddins)
11
+
12
+ Bugfixes:
13
+
14
+ - Only trap INT signal and have Ruby's signal default handler be invoked (@shayonj)
15
+ - Fix warning about the use of `__FILE__` in RubyGems integration testing (@MSP-Greg)
16
+ - Skip the outdated bundler check when MD5 is not available ([#6032](https://github.com/bundler/bundler/issues/6032), @segiddins)
17
+ - Fallback to the original error if the friendly message raises (@segiddins)
18
+ - Rename Bundler.frozen? to avoid Object method conflict ([#6252](https://github.com/bundler/bundler/issues/6252), @segiddins)
19
+ - Ensure the bindir exists before installing gems (@segiddins)
20
+ - Handle gzip corruption errors in the compact index client ([#6261](https://github.com/bundler/bundler/issues/6261), @colby-swandale)
21
+ - Check if the current directory is writeable when writing files in `bundle gem` ([#6219](https://github.com/bundler/bundler/issues/6219), @nilsding)
22
+ - Fix hang when gemspec has incompatible encoding (@deivid-rodriguez)
23
+ - Gracefully handle when the lockfile is missing spec entries for the current platform ([#6079](https://github.com/bundler/bundler/issues/6079), @segiddins)
24
+ - Use Gem::Util.inflate instead of Gem.inflate (@hsbt)
25
+ - Update binstub generator to use new ERB.new arity in Ruby 2.6 (@koic)
26
+ - Fix `source_location` call in rubygems integration (@MSP-Greg)
27
+ - Use `filesystem_access` when copying files in Compact Index Updater ([#6289](https://github.com/bundler/bundler/issues/6289), @segiddins)
28
+ - Fail gracefully when resetting git gems to the given revision fails ([#6324](https://github.com/bundler/bundler/issues/6324), @segiddins)
29
+ - Handle exceptions that do not have a backtrace ([#6342](https://github.com/bundler/bundler/issues/6342), @nesaulov)
30
+ - Check if stderr was closed before writing to it (@shime)
31
+ - Handle updating a specific gem for a non-local platform ([#6350](https://github.com/bundler/bundler/issues/6350), @greysteil)
32
+ - Bump the `bundle_binstub` check-length to 300 characters (@tduffield)
33
+ - Fix specifying alterntive Lockfile with `bundle lock` when default gemfile is present ([#6460](https://github.com/bundler/bundler/issues/6460), @agrim123)
34
+ - Allow installing dependencies when the path is set to `.` ([#6475](https://github.com/bundler/bundler/issues/6475), @segiddins)
35
+ - Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/bundler/bundler/issues/6461), @grosser)
36
+ - Filter git uri credentials in source description (@segiddins)
37
+
38
+ Documentation:
39
+
40
+ - Correct typos in `bundle binstubs` man page (@erikj, @samueloph)
41
+ - Update links in `bundle gem` command documentation to use https (@KrauseFx)
42
+ - Fix broken links between bundler man pages (@segiddins)
43
+ - Add man page for the `bundle doctor` command ([#6243](https://github.com/bundler/bundler/issues/6243), @nholden)
44
+ - Document `# frozen_string_literal` in `bundle init` Gemfile (@315tky)
45
+ - Explain the gemspec files attribute in `bundle gem` template and print a link to bundler.io guides when running `bundle gem` ([#6246](https://github.com/bundler/bundler/issues/6246), @nesaulov)
46
+ - Small copy tweaks & removed redundant phrasing in the bundler man page (@rubymorillo)
47
+ - Improve the documentation of the settings load order in Bundler (@rubymorillo)
48
+ - Added license info to main README (@rubymorillo)
49
+ - Document parameters and return value of Injector#inject (@tobias-grasse)
50
+
51
+ ## 1.16.1 (2017-12-12)
52
+
53
+ Bugfixes:
54
+
55
+ - avoid hanging on complex resolver errors ([#6114](https://github.com/bundler/bundler/issues/6114), @halfbyte)
56
+ - avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
57
+ - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
58
+ - include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
59
+ - ensure locally installed specs are not overriden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
60
+ - ensure custom gemfiles are respected in generated binstubs (@pftg)
61
+ - fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/bundler/bundler/issues/6149), @hsbt)
62
+ - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)
63
+
64
+ ## 1.16.0 (2017-10-31)
65
+
66
+ Bugfixes:
67
+
68
+ - avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
69
+ - load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
70
+ - avoid unusued variable warnings under ruby 2.5 (@amatsuda)
71
+ - fix printing the same message twice in verbose mode ([#6028](https://github.com/bundler/bundler/issues/6028), @akhramov)
72
+ - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/bundler/bundler/issues/6090), @dekellum)
73
+ - avoid activating stdlib digest under Ruby 2.5 (@segiddins)
74
+ - prioritise explicitly requested gems in dependency resolution sort order (@segiddins)
75
+ - reduce memory usage during dependency resolution ([#6114](https://github.com/bundler/bundler/issues/6114), @greysteil)
76
+ - ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)
77
+
78
+ ## 1.16.0.pre.3 (2017-10-04)
79
+
80
+ Features:
81
+
82
+ - the output from `bundle env` includes more information, particularly both the compiled & loaded versions of OpenSSL (@indirect)
83
+
84
+ Bugfixes:
85
+
86
+ - fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
87
+ - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
88
+ - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
89
+ - the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)
90
+
91
+ ## 1.16.0.pre.2 (2017-09-06)
92
+
93
+ Bugfixes:
94
+
95
+ - handle when a connection is missing a socket when warning about OpenSSL version (@greysteil)
96
+ - the description for the `rake release` task now reflects `$RUBYGEMS_HOST` (@wadetandy)
97
+ - fix a bug where `bundle update` would regress transitive dependencies (@greysteil)
98
+
99
+ ## 1.16.0.pre.1 (2017-09-04)
100
+
101
+ Features:
102
+
103
+ - allow using non-branch symbolic refs in a git source (#4845, @segiddins)
104
+ - allow absolute paths in the `cache path` setting (#5627, @mal)
105
+ - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
106
+ - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
107
+ - allow passing gem names to `bundle pristine` (@segiddins)
108
+ - `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
109
+ - add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
110
+ - gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
111
+ - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
112
+ - speed up no-op installations (#5842, @segiddins)
113
+ - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
114
+ - add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
115
+ - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
116
+ - add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
117
+ - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
118
+ - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
119
+
120
+ Bugfixes:
121
+
122
+ - allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
123
+ - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
124
+ - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
125
+ - ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
126
+ - ensure `bundle pristine` removes files added to a git gem (@segiddins)
127
+ - load plugin files from path gems before gem installation (#5429, @segiddins)
128
+ - ensure gems containing manpages are properly set up (#5730, @segiddins)
129
+ - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
130
+ - allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
131
+ - show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
132
+ - add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
133
+ - ensure that specifications always return an array for `#extensions` (@greysteil)
134
+ - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
135
+ - ensure that all gemfiles are included in `bundle env` (@segiddins)
136
+ - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
137
+ - avoid global namespace pollution when loading gems (#5958, @shyouhei)
138
+ - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
139
+ - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
140
+ - fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
141
+
142
+ ## 1.15.4 (2017-08-19)
143
+
144
+ Bugfixes:
145
+
146
+ - handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
147
+ - bundler will fail gracefully when the bundle path contains the system path separator (#5485, ajwann)
148
+ - failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
149
+ - `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
150
+
151
+ ## 1.15.3 (2017-07-21)
152
+
153
+ Bugfixes:
154
+
155
+ - ensure that empty strings passed to `bundle config` are serialized & parsed properly (#5881, @segiddins)
156
+ - avoid printing an outdated version warning when running a parseable command (@segiddins)
157
+
158
+ ## 1.15.2 (2017-07-17)
159
+
160
+ Features:
161
+
162
+ - new gemfiles created by bundler will include an explicit `github` git source that uses `https` (@segiddins)
163
+
164
+ Bugfixes:
165
+
166
+ - inline gemfiles work when `BUNDLE_BIN` is set (#5847, @segiddins)
167
+ - avoid using the old dependency API when there are no changes to the compact index files (#5373, @greysteil)
168
+ - fail gracefully when the full index serves gemspecs with invalid dependencies (#5797, @segiddins)
169
+ - support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
170
+ - `bundle config` will print settings as the type they are interpreted as (@segiddins)
171
+ - respect the `no_proxy` environment variable when making network requests (#5781, @jakauppila)
172
+ - commands invoked with `--verbose` will not have default flags printed (@segiddins)
173
+ - allow `bundle viz` to work when another gem has a requirable `grapviz` file (#5707, @segiddins)
174
+ - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order (#5696, @segiddins)
175
+
176
+ ## 1.15.1 (2017-06-02)
177
+
178
+ Bugfixes:
179
+
180
+ - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
181
+ - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
182
+ - `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
183
+ - `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)
184
+
185
+ ## 1.15.0 (2017-05-19)
186
+
187
+ This space intentionally left blank.
188
+
189
+ ## 1.15.0.pre.4 (2017-05-10)
190
+
191
+ Bugfixes:
192
+
193
+ - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
194
+ - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
195
+
196
+ ## 1.15.0.pre.3 (2017-04-30)
197
+
198
+ Bugfixes:
199
+
200
+ - avoid redundant blank lines in the readme generated by `bundle gem` (@koic)
201
+ - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
202
+ - print a helpful error message when an activated default gem conflicts with
203
+ a gem in the gemfile (@segiddins)
204
+ - only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)
205
+
206
+ ## 1.15.0.pre.2 (2017-04-23)
207
+
208
+ Bugfixes:
209
+
210
+ - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
211
+ - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
212
+ - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)
213
+
214
+ ## 1.15.0.pre.1 (2017-04-16)
215
+
216
+ Features:
217
+
218
+ - print a notification when a newer version of bundler is available (#4683, @segiddins)
219
+ - add man pages for all bundler commands (#4988, @feministy)
220
+ - add the `bundle info` command (@fredrb, @colby-swandale)
221
+ - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
222
+ - if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
223
+ - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
224
+ - print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
225
+ - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
226
+ - add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
227
+ - add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
228
+ - add the `bundle add` command to add a gem to the gemfile (@denniss)
229
+ - add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
230
+ - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
231
+
232
+ Performance:
233
+
234
+ - speed up gemfile initialization by storing locked dependencies as a hash (@jules2689)
235
+ - speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689)
236
+ - only validate git gems when they are downloaded, instead of every time `Bundler.setup` is run (@segiddins)
237
+ - avoid regenerating the lockfile when nothing has changed (@segiddins)
238
+ - avoid diffing large arrays when no sources in the gemfile have changed (@segiddins)
239
+ - avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins)
240
+
241
+ Bugfixes:
242
+
243
+ - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
244
+ - print out a stack trace after an interrupt when running in debug mode (@segiddins)
245
+ - print out when bundler starts fetching a gem from a remote server (@segiddins)
246
+ - fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
247
+ - suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
248
+ - ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
249
+ - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
250
+ - ensure `socket` is required before being referenced (#5533, @rafaelfranca)
251
+ - allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
252
+ - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
253
+ - print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
254
+ - allow interrupts to exit the process after gems have been installed (@segiddins)
255
+ - print the underlying error when downloading gem metadata fails (#5579, @segiddins)
256
+ - avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)
257
+
258
+ ## 1.14.6 (2017-03-03)
259
+
260
+ Bugfixes:
261
+
262
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
263
+ - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
264
+ - fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
265
+ - ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
266
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
267
+
268
+ ## 1.14.5 (2017-02-22)
269
+
270
+ Bugfixes:
271
+
272
+ - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
273
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
274
+ - enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
275
+ - use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
276
+ - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
277
+ - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
278
+ - handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
279
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
280
+ - avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
281
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
282
+
283
+ ## 1.14.4 (2017-02-12)
284
+
285
+ Bugfixes:
286
+
287
+ - fail gracefully when attempting to overwrite an existing directory with `bundle gem` (#5358, @nodo)
288
+ - fix a resolver bug that would cause bundler to report conflicts that it could resolve (#5359, #5362, @segiddins)
289
+ - set native extension build arguments for git gems (#5401, @segiddins)
290
+ - fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
291
+ - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing (#5380, @segiddins)
292
+ - show `bundle inject` usage when too many arguments are passed (#5384, @Shekharrajak)
293
+ - stop `bundle show --outdated` from implicitly running `bundle update` (#5375, @colby-swandale)
294
+ - allow the temporary home directory fallback to work for multiple users (@svoop)
295
+
296
+ ## 1.14.3 (2017-01-24)
297
+
298
+ Bugfixes:
299
+
300
+ - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
301
+ - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)
302
+
303
+ ## 1.14.2 (2017-01-22)
304
+
305
+ Bugfixes:
306
+
307
+ - fix using `force_ruby_platform` on windows (#5344, @segiddins)
308
+ - fix an incorrect version conflict error when using `gemspec` on multiple platforms (#5340, @segiddins)
309
+
310
+ ## 1.14.1 (2017-01-21)
311
+
312
+ Bugfixes:
313
+
314
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
315
+
316
+ ## 1.14.0 (2017-01-20)
317
+
318
+ Bugfixes:
319
+
320
+ - ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
321
+ (#5238, @segiddins)
322
+ - fix `bundler/inline` when `BUNDLE_GEMFILE=""` (#5079, @segiddins)
323
+
324
+ ## 1.14.0.pre.2 (2017-01-11)
325
+
326
+ Bugfixes:
327
+
328
+ - allow not selecting a gem when running `bundle open` (#5301, @segiddins)
329
+ - support installing gems from git branches that contain shell metacharacters (#5295, @segiddins)
330
+ - fix a resolver error that could leave dependencies unresolved (#5294, @segiddins)
331
+ - fix a stack overflow error when invoking commands (#5296, @segiddins)
332
+
333
+ ## 1.14.0.pre.1 (2016-12-29)
334
+
335
+ Features:
336
+
337
+ - `bundle doctor` first runs `bundle check` (@segiddins)
338
+ - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
339
+ - gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
340
+ - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
341
+ - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
342
+ - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
343
+ - always prompt the user for a password when using `sudo` (#3006, @segiddins)
344
+ - support running without a home directory (#4778, @segiddins)
345
+ - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
346
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
347
+ - add conservative update options to `bundle lock` (#4912, @chrismo)
348
+ - improve `bundle outdated` output to group gems by group (@ryanfox1985)
349
+ - add conservative update options to `bundle update` (#5065, #5076, @chrismo)
350
+ - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
351
+ - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
352
+ - add support for the `ruby_25` gemfile filter (@amatsuda)
353
+ - when installing with a lockfile that is missing dependencies, allow installation to proceed (but without parallelism) (@segiddins)
354
+
355
+ Performance:
356
+
357
+ - improve `require "bundler"` performance by ~5x (@segiddins)
358
+ - allow install gems in parallel when running on rubygems 2+
359
+
360
+ Bugfixes:
361
+
362
+ - config files with CRLF line endings can be read (#4435, @segiddins)
363
+ - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
364
+ - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
365
+ - fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
366
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
367
+ - `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
368
+ - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
369
+ - print friendly filesystem access errors in the new index (@segiddins)
370
+ - print a helpful error when running out of memory on jruby (#4673, @segiddins)
371
+ - load all rubygems plugins when installing gems (#2824, @segiddins)
372
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
373
+ - local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
374
+ - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
375
+ - print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
376
+ - ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
377
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
378
+ - allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
379
+ - ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
380
+ - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
381
+ - fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
382
+ - fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
383
+ - fix `bundle lock --add-platform ruby` (#5230, @segiddins)
384
+ - print gem post-install messages when running `bundle update` (@smathy)
385
+ - ensure errors due to a retries are all separated by a newline (@segiddins)
386
+ - print out the bundle path in gem not found errors (#4854, @diegosteiner)
387
+ - fail gracefully when creating threads fails (@segiddins)
388
+ - avoid downloading metadata for gems that are only development dependencies (@Paxa)
389
+
390
+ ## 1.13.7 (2016-12-25)
391
+
392
+ Features:
393
+
394
+ - add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
395
+
396
+ ## 1.13.6 (2016-10-22)
397
+
398
+ Bugfixes:
399
+
400
+ - make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins)
401
+
402
+ ## 1.13.5 (2016-10-15)
403
+
404
+ Bugfixes:
405
+
406
+ - Ensure a locked pre-release spec can always be re-resolved (#5089, @segiddins)
407
+
408
+ ## 1.13.4 (2016-10-11)
409
+
410
+ Bugfixes:
411
+
412
+ - stop printing warning when compact index versions file is rewritten (#5064, @indirect)
413
+ - fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
414
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
415
+ - make `update` options for major, minor, and patch updates consistent (#4934, @chrismo)
416
+
417
+ ## 1.13.3 (2016-10-10)
418
+
419
+ Bugfixes:
420
+
421
+ - add support for weak etags to the new index (@segiddins)
422
+
423
+ ## 1.13.2 (2016-09-30)
424
+
425
+ Bugfixes:
426
+
427
+ - allow `Settings` to be initialized without a root directory (@m1k3)
428
+ - allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
429
+ - avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
430
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
431
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
432
+ - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
433
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
434
+
435
+ Performance:
436
+
437
+ - avoid parsing the lockfile twice when evaluating gemfiles (@segiddins)
438
+
439
+ ## 1.13.1 (2016-09-13)
440
+
441
+ Bugfixes:
442
+
443
+ - ensure that `Gem::Source` is available, fixing several exceptions (#4944, @dekellum)
444
+ - ensure that dependency resolution works when multiple gems have the same dependency (#4961, @segiddins)
445
+
446
+ ## 1.13.0 (2016-09-05)
447
+
448
+ This space deliberately left blank.
449
+
450
+ ## 1.13.0.rc.2 (2016-08-21)
451
+
452
+ Features:
453
+
454
+ - add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
455
+ - add `doctor` command to help with issues like unlinked compiled gems (#4765, @mistydemeo)
456
+ - rework the `update` command, providing fine-grained control via flags (#4676, @chrismo)
457
+ - add URI to http response output in debug mode (#4808, @NickLaMuro)
458
+ - add manpage for `binstubs` command (#4847, @Zorbash)
459
+ - support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
460
+ - print gem installation errors after other install output (#4834, @segiddins)
461
+ - add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
462
+ - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
463
+ - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
464
+
465
+ Bugfixes:
466
+
467
+ - retry gem downloads (#4846, @jkeiser)
468
+ - improve the CompactIndex to handle capitalized legacy gems (#4867, @segiddins)
469
+ - re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
470
+ - respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
471
+ - allow `rake release` to sign git tags (#4743, @eagletmt)
472
+ - set process titles when using `#load` during `exec` (@yob)
473
+ - recognize JRuby shebangs for using `#load` during `exec` (@ojab)
474
+ - handle world-writable home directories (#4726, @allenzhao)
475
+ - support multi-platform gems via the `gemspec` Gemfile method (#4798, @segiddins)
476
+ - print dots correctly for CompactIndex fetcher (@NickLaMuro)
477
+ - set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
478
+ - rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
479
+ - show help only when `-h` or `--help` is passed to Bundler, not to `exec` (#4801, @segiddins)
480
+ - handle symlinks to binstubs created by `--standalone` (#4782, @terinjokes)
481
+
482
+ ## 1.13.0.rc.1 (2016-06-27)
483
+
484
+ Features:
485
+
486
+ - when `bundle config major_deprecations` or `BUNDLE_MAJOR_DEPRECATIONS` is set, deprecation warnings for bundler 2 will be printed (@segiddins)
487
+ - when running with `--verbose`, bundler will print the reason it is re-resolving a gemfile (@segiddins)
488
+
489
+ Bugfixes:
490
+
491
+ - fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
492
+ - fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
493
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
494
+ - stop changing the load path to require the vendored postit when trampolining (@segiddins)
495
+ - ensure relative paths are properly printed after completing an installation (@jenseng)
496
+ - fix re-resolving when there are multiple unchanged path sources (@segiddins)
497
+ - de-init submodules when running git 2.9 and requesting a git gem without submodules (@segiddins)
498
+
499
+ ## 1.13.0.pre.1 (2016-06-20)
500
+
501
+ Performance:
502
+
503
+ - speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
504
+ - generally reduce object allocations when using bundler (@segiddins)
505
+ - speed up bin generation for path gems with many files (#2846, @segiddins)
506
+ - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
507
+
508
+ Features:
509
+
510
+ - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
511
+ - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
512
+ - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
513
+ - support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
514
+ - colorize updated gem versions (#4334, @bronzdoc)
515
+ - add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
516
+ - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
517
+ - use a custom YAML serializer to make config file consistent (@segiddins)
518
+ - filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
519
+ - support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
520
+ - fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
521
+ - automatically install an inline gemfile when gems are missing locally (@segiddins)
522
+ - allow conflicts for gems resolved via `gemspec` (@segiddins)
523
+ - add `--add-platform` option to `bundle lock` (@segiddins)
524
+ - fail gracefully when a resolved spec's `required_ruby_version` or `required_rubygems_version` is incompatible (@segiddins)
525
+
526
+ Bugfixes:
527
+
528
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
529
+ - add support for quoted paths in `$PATH` (#4323, @segiddins)
530
+ - check out missing git repos that are not being installed (#3981, @asutoshpalai)
531
+ - write `bundler/setup.rb` to a consistent path (@glennpratt)
532
+ - open editor in `bundle open` with a clean environment (@sj26)
533
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
534
+ - fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
535
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
536
+ - fix loading config files with very long values (#4370, @segiddins)
537
+ - only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
538
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
539
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
540
+
541
+ ## 1.12.6 (2016-10-10)
542
+
543
+ Bugfixes:
544
+ - add support for weak etags to the new index (@segiddins)
545
+
546
+ ## 1.12.5 (2016-05-25)
547
+
548
+ Bugfixes:
549
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
550
+ - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
551
+ - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
552
+
553
+ ## 1.12.4 (2016-05-16)
554
+
555
+ Bugfixes:
556
+ - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
557
+ - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
558
+ - fix installing built-in specs with `--standalone` (#4557, @segiddins)
559
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
560
+
561
+ ## 1.12.3 (2016-05-06)
562
+
563
+ Bugfixes:
564
+ - fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
565
+ - fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
566
+
567
+ ## 1.12.2 (2016-05-04)
568
+
569
+ Bugfixes:
570
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
571
+ - fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
572
+
573
+ ## 1.12.1 (2016-04-30)
574
+
575
+ Bugfixes:
576
+ - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
577
+ - fix computation of new index file local checksums on Windows (#4472, @mwrock)
578
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
579
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
580
+
581
+ ## 1.12.0 (2016-04-28)
582
+
583
+ This space intentionally left blank.
584
+
585
+ ## 1.12.0.rc.4 (2016-04-21)
586
+
587
+ Bugfixes:
588
+
589
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
590
+
591
+ ## 1.12.0.rc.3 (2016-04-19)
592
+
593
+ Bugfixes:
594
+
595
+ - don't allow new attributes to dirty a lockfile when running `bundle exec`, `-rbundler/setup`, or `bundle check` (@segiddins)
596
+
597
+ ## 1.12.0.rc.2 (2016-04-15)
598
+
599
+ Features:
600
+
601
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
602
+
603
+ Bugfixes:
604
+
605
+ - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
606
+ - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
607
+ - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
608
+
609
+ ## 1.12.0.rc (2016-03-13)
610
+
611
+ Performance:
612
+
613
+ - Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
614
+
615
+ Bugfixes:
616
+
617
+ - handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
618
+ - support binstubs from RubyGems 2.6 (#4341, @segiddins)
619
+ - handle quotes present in in PATH (#4326, @segiddins)
620
+
621
+ ## 1.12.0.pre.2 (2016-02-26)
622
+
623
+ Performance:
624
+
625
+ - speed up `bundle exec` by `load`ing the executable whenever possible, saving roughly .2 seconds per invocation (@segiddins)
626
+
627
+ Features:
628
+
629
+ - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
630
+ - add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
631
+ - add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
632
+
633
+ Bugfixes:
634
+
635
+ - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
636
+ - give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
637
+ - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
638
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
639
+ - give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
640
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
641
+ - give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
642
+ - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
643
+ - fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
644
+ - give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
645
+ - skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
646
+ - fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
647
+
648
+ ## 1.12.0.pre.1 (2016-02-09)
649
+
650
+ Performance:
651
+
652
+ - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
653
+ - speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
654
+
655
+ Features:
656
+
657
+ - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
658
+ - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
659
+ - support probing a mirror with a fallback timeout (#4128, @pcarranza)
660
+ - add `--full-index` option to `bundle lock` (@segiddins)
661
+ - support running with frozen string literals (@deepj, @segiddins)
662
+ - add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
663
+ - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
664
+ - add support for ruby 2.4 (#4266, @segiddins)
665
+ - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
666
+
667
+ Bugfixes:
668
+
669
+ - fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
670
+ - fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
671
+ - give a better error message when a given git commit can't be found (#4140, @doy)
672
+ - give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
673
+ - give a better error message when reading a bundler config file fails (@segiddins)
674
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
675
+ - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
676
+ - give a better error message when ssl isn't available (#4054, @RochesterinNYC)
677
+ - print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
678
+ - give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
679
+ - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
680
+ - ignore colorized output from `git` when determining the current branch (#4056, @agis-)
681
+ - fix storing the shared gems config option as a boolean (@vassilevsky)
682
+ - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
683
+ - fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
684
+ - avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
685
+ - ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
686
+ - give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
687
+ - preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
688
+ - ensure standalone file paths are relative to the project root (#4144, @glennpratt)
689
+
690
+ ## 1.11.2 (2015-12-15)
691
+
692
+ Bugfixes:
693
+
694
+ - _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
695
+
696
+ ## 1.11.1 (2015-12-15)
697
+
698
+ Bugfixes:
699
+
700
+ - lazy-load Psych, again (#4149, @indirect)
701
+ - allow gemspec gems on other platforms (#4150, @indirect)
702
+ - fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
703
+ - stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
704
+
705
+ ## 1.11.0 (2015-12-12)
706
+
707
+ (this space intentionally left blank)
708
+
709
+ ## 1.11.0.pre.2 (2015-12-06)
710
+
711
+ Bugfixes:
712
+
713
+ - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
714
+ - fix a crash when pushing a gem via `rake release` (@segiddins)
715
+
716
+ ## 1.11.0.pre.1 (2015-11-29)
717
+
718
+ Features:
719
+
720
+ - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
721
+ - the git remote for `rake release` is now customizable (@skateman)
722
+ - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
723
+ - add support for showing help for plugin commands (@tf)
724
+ - send `X-Gemfile-Source` header to source mirrors (@agis-)
725
+ - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
726
+ - add support for using bundler setting to add private access credentials for git sources (@frsyuki)
727
+ - take into consideration HTTP proxy settings in `.gemrc` (@PG-kura)
728
+ - allow specifying a gem host to push to in the `GEM_HOST` environment variable (@pmenglund)
729
+ - when gempec `required_ruby_version` is available and the Gemfile specifies a ruby version, resolve for the given ruby version (@segiddins)
730
+ - allow setting a `silence_root_warning` setting to silence the warning when `bundle install` is run as root (@blackxored)
731
+ - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
732
+ - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
733
+ - added support for MRI 2.3 (@amatsuda)
734
+ - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
735
+ - include git revision hash when printing a git source (#3433, @agis-)
736
+ - improve hint when a resolution conflict occurs (@seanlinsley)
737
+ - show a friendly error when a git ref is not found (#3879, @agis-)
738
+ - improve error message when sources are not absolute URIs (#3925, @agis-)
739
+ - add `pkg` to rake's clobber list (#3676, @jasonkarns)
740
+ - retry fetching specs when fetching version metadata fails (@jingweno)
741
+
742
+ Bugfixes:
743
+
744
+ - avoid showing bundler version warning messages twice (@fotanus)
745
+ - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
746
+ - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
747
+ - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
748
+ - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
749
+ - fix the `bundle gem` readme when no tests are generated (@roseweixel)
750
+ - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
751
+ - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
752
+ - fix trying to cache a gem that has no source (@EduardoBautista)
753
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
754
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
755
+ - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
756
+ - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
757
+ - fix not retrying on zlib errors (#4047, @andremedeiros)
758
+ - fix a warning being shown for using `URI.encode` (@EduardoBautista)
759
+ - fix handling of fatal HTTP errors (#3830, @indirect)
760
+ - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
761
+ - fix caching gems with a path with the same prefix as the bundled application (@indirect)
762
+ - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
763
+ - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
764
+ - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
765
+ - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
766
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
767
+ - also print gemspecs in `bundle env` output (@agis-)
768
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
769
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
770
+ - fix handling invalid RubyGems configuration files (#4042, @agis-)
771
+ - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
772
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
773
+
774
+ Performance:
775
+
776
+ - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
777
+ - drop string allocations when searching for gems (@jrafanie)
778
+
779
+ ## 1.10.6 (2015-07-22)
780
+
781
+ Workarounds:
782
+
783
+ - only warn on invalid gemspecs (@indirect)
784
+
785
+ Bugfixes:
786
+
787
+ - fix installing dependencies in the correct order (#3799, @pducks32)
788
+ - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
789
+ - fix `install_if` conditionals when using the block form (@danieltdt)
790
+
791
+ ## 1.10.5 (2015-06-24)
792
+
793
+ Workarounds:
794
+
795
+ - don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
796
+
797
+ Bugfixes:
798
+
799
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
800
+ - speed up resolver for path and git gems (@segiddins)
801
+ - fix `install --force` to not reinstall Bundler (#3743, @karlo57)
802
+
803
+ ## 1.10.4 (2015-06-16)
804
+
805
+ Workarounds:
806
+
807
+ - don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
808
+
809
+ Bugfixes:
810
+
811
+ - display "with native extensions" log output correctly (@ivantsepp)
812
+ - alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
813
+
814
+ ## 1.10.3 (2015-06-03)
815
+
816
+ Bugfixes:
817
+
818
+ - allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
819
+ - fix regression in `rake install` (#3701, #3705, @segiddins)
820
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
821
+ - fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
822
+
823
+ ## 1.10.2 (2015-05-29)
824
+
825
+ Bugfixes:
826
+
827
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
828
+
829
+ ## 1.10.1 (2015-05-28)
830
+
831
+ Bugfixes:
832
+
833
+ - silence ruby warning when running CLI commands (@segiddins)
834
+ - validate gemspecs in non-packaging mode (#3681, @segiddins)
835
+ - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
836
+
837
+ ## 1.10.0 (2015-05-28)
838
+
839
+ (this space intentionally left blank)
840
+
841
+ ## 1.10.0.rc (2015-05-16)
842
+
843
+ Features:
844
+
845
+ - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
846
+ - track CI platforms running Bundler (#3646, @fotanus)
847
+
848
+ Bugfixes:
849
+
850
+ - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
851
+ - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
852
+ - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
853
+ - Without groups saved via `config` are no longer ignored when the `--without` flag is used
854
+
855
+ ## 1.10.0.pre.2 (2015-05-07)
856
+
857
+ Bugfixes:
858
+
859
+ - make BUNDLED WITH backwards compatible (#3623, @segiddins)
860
+
861
+ ## 1.10.0.pre.1 (2015-05-05)
862
+
863
+ Bugfixes:
864
+
865
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
866
+
867
+ ## 1.10.0.pre (2015-05-03)
868
+
869
+ Features:
870
+
871
+ - support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
872
+ - add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
873
+ - improved error reports for Gemfile errors (#3480, @segiddins)
874
+ - `lock` command (#3437, @segiddins)
875
+ - add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
876
+ - improve `gem` minitest template (#3513, #3515, @arthurnn)
877
+ - add `install --force` to re-install installed gems (#3519, @segiddins)
878
+ - show more `outdated` information, including groups (@smlance, @indirect)
879
+ - add optional groups to the Gemfile (#3531, @jhass)
880
+ - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
881
+ - make timeouts and retries configurable via `config` (#3601, @pducks32)
882
+ - add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
883
+
884
+ Bugfixes:
885
+
886
+ - standalone mode now uses builtin gems correctly (#3610, @segiddins)
887
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
888
+ - remember all y/n answers when generating gems (#3579, @pducks32)
889
+
890
+ Performance:
891
+
892
+ - use RubyGems stub specifications when possible (#3580, @segiddins)
893
+
894
+ Deprecations:
895
+
896
+ - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
897
+
898
+ ## 1.9.10 (2015-06-22)
899
+
900
+ Features:
901
+
902
+ - the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
903
+
904
+ ## 1.9.9 (2015-05-16)
905
+
906
+ Bugfixes:
907
+
908
+ - read mirror and credential settings from older versions (#3557, @Strech)
909
+
910
+ ## 1.9.8 (2015-05-12)
911
+
912
+ Bugfixes:
913
+
914
+ - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
915
+
916
+ ## 1.9.7 (2015-05-11)
917
+
918
+ Bugfixes:
919
+
920
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
921
+
922
+ ## 1.9.6 (2015-05-02)
923
+
924
+ Bugfixes:
925
+
926
+ - use RubyGems spec stubs if available (@segiddins)
927
+ - allow creating gems with names containing two dashes (#3483, @janlelis)
928
+ - allow creating gems with names extending constants (#3603, @amatsuda)
929
+
930
+ ## 1.9.5 (2015-04-29)
931
+
932
+ Bugfixes:
933
+
934
+ - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
935
+
936
+ ## 1.9.4 (2015-04-13)
937
+
938
+ Bugfixes:
939
+
940
+ - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
941
+ - improve error when gems are missing (#3564, @sealocal)
942
+
943
+ ## 1.9.3 (2015-04-12)
944
+
945
+ Bugfixes:
946
+
947
+ - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
948
+ - install 'universal' gems on Windows (#3066, @jdmundrawala)
949
+ - stop passing --local during `rake install` task (#3236, @indirect)
950
+ - guard against all possible accidental public gem pushes (#3533, @indirect)
951
+
952
+ ## 1.9.2 (2015-03-30)
953
+
954
+ Bugfixes:
955
+
956
+ - ensure gem executables are executable (#3517, #3511, @indirect)
957
+ - fix warnings in Molinillo (#3516, @segiddins)
958
+ - ensure duplicate dependencies do not propagate (#3522, @segiddins)
959
+ - keep gems locked when updating another gem from the same source (#3520, @indirect)
960
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
961
+
962
+ ## 1.9.1 (2015-03-21)
963
+
964
+ Bugfixes:
965
+
966
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
967
+
968
+ ## 1.9.0 (2015-03-20)
969
+
970
+ ## 1.9.0.rc (2015-03-13)
971
+
972
+ Bugfixes:
973
+
974
+ - make Bundler.which stop finding directories (@nohoho)
975
+ - handle Bundler prereleases correctly (#3470, @segiddins)
976
+ - add before_install to .travis.yml template for new gems (@kodnin)
977
+
978
+ ## 1.9.0.pre.1 (2015-03-11)
979
+
980
+ Bugfixes:
981
+
982
+ - make `gem` command work again (@arthurnn)
983
+
984
+ ## 1.9.0.pre (2015-03-11)
985
+
986
+ Features:
987
+
988
+ - prefer gemspecs closest to the directory root (#3428, @segiddins)
989
+ - debug log for API request limits (#3452, @neerfri)
990
+
991
+ "Features":
992
+
993
+ - Molinillo resolver, shared with CocoaPods (@segiddins)
994
+ - updated Thor to v0.19.1 (@segiddins)
995
+
996
+ ## 1.8.9 (2015-05-02)
997
+
998
+ Bugfixes:
999
+
1000
+ - Use RubyGems spec stubs if available (@segiddins)
1001
+
1002
+ ## 1.8.8 (2015-04-29)
1003
+
1004
+ Bugfixes:
1005
+
1006
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1007
+
1008
+ ## 1.8.7 (2015-04-07)
1009
+
1010
+ Bugfixes:
1011
+
1012
+ - stop suppressing errors inside gems that get required (#3549, @indirect)
1013
+
1014
+ ## 1.8.6 (2015-03-30)
1015
+
1016
+ Bugfixes:
1017
+
1018
+ - keep gems locked when updating another gem from the same source (#3250, @indirect)
1019
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
1020
+
1021
+ ## 1.8.5 (2015-03-11)
1022
+
1023
+ Bugfixes:
1024
+
1025
+ - remove MIT license from gemspec when removing license file (@indirect)
1026
+ - respect 'no' immediately as well as saving it in `gem` config (@kirs)
1027
+
1028
+ ## 1.8.4 (2015-03-05)
1029
+
1030
+ Bugfixes:
1031
+
1032
+ - document --all-platforms option (#3449, @moeffju)
1033
+ - find gems from all sources on exec after install (#3450, @TimMoore)
1034
+
1035
+ ## 1.8.3 (2015-02-24)
1036
+
1037
+ Bugfixes:
1038
+
1039
+ - handle boolean values for gem settings (@EduardoBautista)
1040
+ - stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
1041
+
1042
+ ## 1.8.2 (2015-02-14)
1043
+
1044
+ Bugfixes:
1045
+
1046
+ - allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
1047
+
1048
+ ## 1.8.1 (2015-02-13)
1049
+
1050
+ Bugfixes:
1051
+
1052
+ - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
1053
+ - set gemspec bindir correctly (#3392, @TimMoore)
1054
+ - request lockfile deletion when it is malformed (#3396, @indirect)
1055
+ - explain problem when mirror config is missing (#3386, @indirect)
1056
+ - explain problem when caching causes permission error (#3390, @indirect)
1057
+ - normalize URLs in config keys (#3391, @indirect)
1058
+
1059
+ ## 1.8.0 (2015-02-10)
1060
+
1061
+ Bugfixes:
1062
+
1063
+ - gemfile `github` blocks now work (#3379, @indirect)
1064
+
1065
+ Bugfixes from v1.7.13:
1066
+
1067
+ - look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
1068
+ - look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
1069
+ - request dependencies for no more than 100 gems at a time (#3367, @segiddins)
1070
+
1071
+ ## 1.8.0.rc (2015-01-26)
1072
+
1073
+ Features:
1074
+
1075
+ - add `config disable_multisource` option to ensure sources can't compete (@indirect)
1076
+
1077
+ Bugfixes:
1078
+
1079
+ - don't add extra quotes around long, quoted config values (@aroben, #3338)
1080
+
1081
+ Security:
1082
+
1083
+ - warn when more than one top-level source is present (@indirect)
1084
+
1085
+ ## 1.8.0.pre (2015-01-26)
1086
+
1087
+ Features:
1088
+
1089
+ - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
1090
+ - adds a `--no-install` flag to `bundle package` (@d-reinhold)
1091
+ - add `bundle config auto_install true` to install automatically (@smashwilson)
1092
+ - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
1093
+ - prevent whitespace in gem declarations with clear messaging (@benlakey)
1094
+ - tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
1095
+ - tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
1096
+ - change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
1097
+ - add `package --all-platforms` to cache gems for each known platform (@ccutrer)
1098
+ - speed up `exec` when running commands on the $PATH (@kirs)
1099
+ - add gem code of conduct file and option (@kirs)
1100
+ - add config settings for gem license and tests (@kirs)
1101
+ - add `bin/setup` and `bin/console` to new gems (@indirect)
1102
+ - include configured user-agent in network requests (@indirect)
1103
+ - support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
1104
+ - add `package --cache-path` and `config cache_path` for cache location (@jnraine)
1105
+ - allow `config` to work even when a Gemfile is not present (@dholdren)
1106
+ - add `config gemfile /path` for other Gemfile locations (@dholdren)
1107
+ - add `github` method alonside the `git` method (@BenMorganIO)
1108
+
1109
+ Bugfixes:
1110
+
1111
+ - reduce memory usage with threaded parallel workers (@Who828)
1112
+ - support read-only git gems (@pmahoney)
1113
+ - various resolver performance improvements (@dubek)
1114
+ - untaint git gem paths for Rubygems compatibility (@tdtds)
1115
+
1116
+ Documentation:
1117
+
1118
+ - add missing Gemfile global `path` explanation (@agenteo)
1119
+
1120
+ ## 1.7.15 (2015-04-29)
1121
+
1122
+ Bugfixes:
1123
+
1124
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1125
+
1126
+ ## 1.7.14 (2015-03-30)
1127
+
1128
+ Bugfixes:
1129
+
1130
+ - Keep gems locked when updating another gem from the same source (#3250, @indirect)
1131
+ - Don't add extra quotes around long, quoted config values (@aroben, #3338)
1132
+
1133
+ ## 1.7.13 (2015-02-07)
1134
+
1135
+ Bugfixes:
1136
+
1137
+ - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
1138
+ - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
1139
+ - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
1140
+
1141
+ ## 1.7.12 (2015-01-08)
1142
+
1143
+ Bugfixes:
1144
+
1145
+ - Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
1146
+
1147
+ ## 1.7.11 (2015-01-04)
1148
+
1149
+ Bugfixes:
1150
+
1151
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
1152
+
1153
+ ## 1.7.10 (2014-12-29)
1154
+
1155
+ Bugfixes:
1156
+
1157
+ - Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
1158
+
1159
+ Features(?):
1160
+
1161
+ - Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
1162
+
1163
+ ## 1.7.9 (2014-12-09)
1164
+
1165
+ Bugfixes:
1166
+
1167
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
1168
+ - Ensure bundle update installs the newer version of the gem (#3089, @Who828)
1169
+ - Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
1170
+
1171
+ ## 1.7.8 (2014-12-06)
1172
+
1173
+ Bugfixes:
1174
+
1175
+ - Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
1176
+
1177
+ ## 1.7.7 (2014-11-19)
1178
+
1179
+ Bugfixes:
1180
+
1181
+ - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
1182
+ - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
1183
+ - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
1184
+
1185
+ ## 1.7.6 (2014-11-11)
1186
+
1187
+ Bugfixes:
1188
+
1189
+ - CA certificates that work with all OpenSSLs (@luislavena, @indirect)
1190
+
1191
+ ## 1.7.5 (2014-11-10)
1192
+
1193
+ Bugfixes:
1194
+
1195
+ - Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
1196
+ - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
1197
+
1198
+ ## 1.7.4 (2014-10-19)
1199
+
1200
+ Bugfixes:
1201
+
1202
+ - Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
1203
+ - Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
1204
+ - Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
1205
+ - Stop asking gem servers for gems already found locally (#2909, @dubek)
1206
+
1207
+ ## 1.7.3 (2014-09-14)
1208
+
1209
+ Bugfixes:
1210
+
1211
+ - `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
1212
+ - Fix various Ruby warnings (@piotrsanarki, @indirect)
1213
+
1214
+ ## 1.7.2 (2014-08-23)
1215
+
1216
+ Bugfixes:
1217
+
1218
+ - Revert gem source sorting in lock files (@indirect)
1219
+
1220
+ ## 1.7.1 (2014-08-20)
1221
+
1222
+ Bugfixes:
1223
+
1224
+ - Install gems from one source needed by gems in another source (@indirect)
1225
+ - Install the same gem versions even after some are installed (@TimMoore)
1226
+ - Download specs only when installing from servers (@indirect)
1227
+
1228
+ ## 1.7.0 (2014-08-13)
1229
+
1230
+ Security:
1231
+
1232
+ - Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
1233
+
1234
+ Features:
1235
+
1236
+ - Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
1237
+ - Added the `:source` option to `gem` to specify a source (@TimMoore)
1238
+
1239
+ Bugfixes:
1240
+
1241
+ - Warn on ambiguous gems available from more than one source (@TimMoore)
1242
+
1243
+ ## 1.6.7 (2014-10-19)
1244
+
1245
+ Features:
1246
+
1247
+ - warn to upgrade when using useless source blocks (@danfinnie)
1248
+
1249
+ Documentation:
1250
+
1251
+ - explain how to use gem server credentials via ENV (@hwartig)
1252
+
1253
+ ## 1.6.6 (2014-08-23)
1254
+
1255
+ Bugfixes:
1256
+
1257
+ - restore Gemfile credentials to Gemfile.lock (@indirect)
1258
+
1259
+ ## 1.6.5 (2014-07-23)
1260
+
1261
+ Bugfixes:
1262
+
1263
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
1264
+
1265
+ ## 1.6.4 (2014-07-17)
1266
+
1267
+ Bugfixes:
1268
+
1269
+ - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
1270
+ - work when installed git gems are not writable (#3092, @pmahoney)
1271
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
1272
+ - don't include config source credentials in the lockfile (Lars Haugseth)
1273
+ - use threads for jobs on Rubinius (@YorickPeterse)
1274
+ - skip dependencies from other platforms (@mvz)
1275
+ - work when Rubygems was built without SSL (@andremedeiros)
1276
+
1277
+ ## 1.6.3 (2014-06-16)
1278
+
1279
+ Bugfixes:
1280
+
1281
+ - fix regression when resolving many conflicts (#2994, @Who828)
1282
+ - use local gemspec for builtin gems during install --local (#3041, @Who828)
1283
+ - don't warn about sudo when installing on Windows (#2984, @indirect)
1284
+ - shell escape `bundle open` arguments (@indirect)
1285
+
1286
+ ## 1.6.2 (2014-04-13)
1287
+
1288
+ Bugfixes:
1289
+
1290
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
1291
+ - cache gems that are built in to the running ruby (#2975, @indirect)
1292
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
1293
+ - keep standalone working even with builtin gems (@indirect)
1294
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
1295
+
1296
+ Features:
1297
+
1298
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
1299
+
1300
+ ## 1.6.1 (2014-04-02)
1301
+
1302
+ Bugfixes:
1303
+
1304
+ - update C extensions when git gem versions change (#2948, @dylanahsmith)
1305
+
1306
+ Features:
1307
+
1308
+ - add support for C extensions in sudo mode on Rubygems 2.2
1309
+
1310
+ ## 1.6.0 (2014-03-28)
1311
+
1312
+ Bugfixes:
1313
+
1314
+ - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
1315
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
1316
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
1317
+ - support escaped characters in usernames and passwords (@punkie)
1318
+ - no more exception on `update GEM` without lock file (@simi)
1319
+ - allow long config values (#2823, @kgrz)
1320
+ - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
1321
+ - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
1322
+ - only retry git commands that hit the network (#2899, @timmoore)
1323
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
1324
+ - handle exception installing when build_info owned by root (@Who828)
1325
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
1326
+
1327
+ Features:
1328
+
1329
+ - resolver rewritten to avoid recursion (@Who828)
1330
+ - add `git_source` for custom options like :github and :gist (@strzalek)
1331
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
1332
+ - some complex Gemfiles are resolved up to 10x faster (@Who828)
1333
+ - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
1334
+ - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
1335
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
1336
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
1337
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
1338
+ - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
1339
+ - Avoid using threequals operator where possible (@as-cii)
1340
+ - Add `bundle update --group` to update specific group (#2731 @banyan)
1341
+
1342
+ Documentation:
1343
+
1344
+ - Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
1345
+
1346
+ ## 1.5.3 (2014-02-06)
1347
+
1348
+ Bugfixes:
1349
+
1350
+ - find "missing" gems that are actually present (#2780, #2818, #2854)
1351
+ - use n-1 cores when given n jobs for parallel install (@jdickey)
1352
+
1353
+ ## 1.5.2 (2014-01-10)
1354
+
1355
+ Bugfixes:
1356
+
1357
+ - fix integration with Rubygems 1.8.0-1.8.19
1358
+ - handle ENETDOWN exception during network requests
1359
+ - gracefully shut down after interrupt during parallel install (@Who828)
1360
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
1361
+ - set git binstub permissions by umask (@v-yarotsky)
1362
+ - remove parallel install debug log
1363
+
1364
+ ## 1.5.1 (2013-12-28)
1365
+
1366
+ Bugfixes:
1367
+
1368
+ - correctly find gems installed with Ruby by default
1369
+
1370
+ ## 1.5.0 (2013-12-26)
1371
+
1372
+ Features:
1373
+
1374
+ - install missing gems if their specs are present (@hone)
1375
+
1376
+ Bugfixes:
1377
+
1378
+ - use print for "Installing…" so messages are thread-safe (@TimMoore)
1379
+
1380
+ ## 1.5.0.rc.2 (2013-12-18)
1381
+
1382
+ "Features":
1383
+
1384
+ - Support threaded installation on Rubygems 2.0.7+
1385
+ - Debug installation logs in .bundle/install.log
1386
+
1387
+ "Bugfixes":
1388
+
1389
+ - Try to catch gem installation race conditions
1390
+
1391
+ ## 1.5.0.rc.1 (2013-11-09)
1392
+
1393
+ Features:
1394
+
1395
+ - bundle update also accepts --jobs (#2692, @mrkn)
1396
+ - add fork URL to README for new `bundle gem` (#2665, @zzak)
1397
+ - add `bundle outdated --strict` (#2685, @davidblondeau)
1398
+ - warn if same gem/version is added twice (#2679, @jendiamond)
1399
+ - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
1400
+ - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
1401
+
1402
+ Bugfixes:
1403
+
1404
+ - fix sharing same SSL socket when forking workers for parallel install (#2632)
1405
+ - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
1406
+ - fix Bundler.which for directories (#2697, @rhysd)
1407
+ - properly require `Capistrano::Version` (#2690, @steveklabnik)
1408
+ - search for git.exe and git
1409
+ - fix the bug that downloads every spec when API fetcher encouters an error
1410
+ - only retry network requests
1411
+
1412
+ ## 1.4.0.rc.1 (2013-09-29)
1413
+
1414
+ Features:
1415
+
1416
+ - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
1417
+ - add :patchlevel option to ruby DSL
1418
+ - add `bundler` bin (#2598, @kirs)
1419
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
1420
+ - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
1421
+ - add X.509 client certificates for auth without passwords (@snackbandit)
1422
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
1423
+ - print a better error when git is not installed (@joyicecloud)
1424
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
1425
+ - add `:ruby_21` platform option (@brandonblack)
1426
+ - add `--retry` to retry failed network and git commands (@schneems)
1427
+ - include command and versions in User-Agent (@indirect, @joyicecloud)
1428
+
1429
+ Bugfixes:
1430
+
1431
+ - allow passwordless Basic Auth (#2606, @rykov)
1432
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
1433
+ - revert #2569, staying compatible with git: instead of https: for :github gems
1434
+ - handle exceptions while installing gems in parallel (@gnufied)
1435
+
1436
+ ## 1.4.0.pre.1 (2013-08-04)
1437
+
1438
+ Features:
1439
+
1440
+ - retry network requests while installing gems (#2561, @ascherger)
1441
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
1442
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
1443
+ - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
1444
+ - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
1445
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
1446
+ - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
1447
+ - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
1448
+ - rescue and report Thor errors (#2478, @pjvds)
1449
+ - detect cyclic dependencies (#2564, @gnufied)
1450
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
1451
+ - use https instead of git for :github gems (#2569, @fuadsaud)
1452
+ - add quiet option to `bundle package` (#2573, @shtirlic)
1453
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
1454
+
1455
+ Bugfixes:
1456
+
1457
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
1458
+ - display GitErrors while loading specs in --verbose mode (#2461)
1459
+ - allow the same options hash to be passed to multiple gems (#2447)
1460
+ - handle missing binaries without an exception (#2019, @luismreis)
1461
+
1462
+ ## 1.3.6 (8 January 2014)
1463
+
1464
+ Bugfixes:
1465
+
1466
+ - make gemspec path option preserve relative paths in lock file (@bwillis)
1467
+ - use umask when creating binstubs (#1618, @v-yarotsky)
1468
+ - warn if graphviz is not installed (#2435, @Agis-)
1469
+ - show git errors while loading gemspecs
1470
+ - don't mutate gem method options hash (#2447)
1471
+ - print Thor errors (#2478, @pjvds)
1472
+ - print Rubygems system exit errors (James Cook)
1473
+ - more Pathnames into Strings for MacRuby (@kml)
1474
+ - preserve original gemspec path (@bwillis)
1475
+ - remove warning about deps with :git (#1651, @ixti)
1476
+ - split git files on null (#2634, @jasonmp85)
1477
+ - handle cross-host redirects without SSL (#2686, @grddev)
1478
+ - handle Rubygems 2 security exception (@zzak)
1479
+ - reinstall gems if they are missing with spec present
1480
+ - set binstub permissions using umask (#1618, @v-yarotsky)
1481
+
1482
+ ## 1.3.5 (3 April 2013)
1483
+
1484
+ Features:
1485
+
1486
+ - progress indicator while resolver is running (@chief)
1487
+
1488
+ Bugfixes:
1489
+
1490
+ - update local overrides with orphaned revisions (@jamesferguson)
1491
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
1492
+ - use basic auth even when SSL is not available (@jayniz)
1493
+ - installing git gems without dependencies in deployment now works
1494
+
1495
+ ## 1.3.4 (15 March 2013)
1496
+
1497
+ Bugfixes:
1498
+
1499
+ - load YAML on Rubygems versions that define module YAML
1500
+ - fix regression that broke --without on ruby 1.8.7
1501
+
1502
+ ## 1.3.3 (13 March 2013)
1503
+
1504
+ Features:
1505
+
1506
+ - compatible with Rubygems 2.0.2 (higher and lower already work)
1507
+ - mention skipped groups in bundle install and bundle update output (@simi)
1508
+ - `gem` creates rake tasks for minitest (@coop) and rspec
1509
+
1510
+ Bugfixes:
1511
+
1512
+ - require rbconfig for standalone mode
1513
+
1514
+ ## 1.3.2 (7 March 2013)
1515
+
1516
+ Features:
1517
+
1518
+ - include rubygems.org CA chain
1519
+
1520
+ Bugfixes:
1521
+
1522
+ - don't store --dry-run as a Bundler setting
1523
+
1524
+ ## 1.3.1 (3 March 2013)
1525
+
1526
+ Bugfixes:
1527
+
1528
+ - include manpages in gem, restoring many help pages
1529
+ - handle more SSL certificate verification failures
1530
+ - check for the full version of SSL, which we need (@alup)
1531
+ - gem rake task 'install' now depends on task 'build' (@sunaku)
1532
+
1533
+ ## 1.3.0 (24 February 2013)
1534
+
1535
+ Features:
1536
+
1537
+ - raise a useful error when the lockfile contains a merge conflict (@zofrex)
1538
+ - ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
1539
+ - allow environment variables to be negated with 'false' and '0' (@brettporter)
1540
+ - set $MANPATH inside `exec` for gems with man pages (@sunaku)
1541
+ - partial gem names for `open` and `update` now return a list (@takkanm)
1542
+
1543
+ Bugfixes:
1544
+
1545
+ - `update` now (again) finds gems that aren't listed in the Gemfile
1546
+ - `install` now (again) updates cached gems that aren't in the Gemfile
1547
+ - install Gemfiles with HTTP sources even without OpenSSL present
1548
+ - display CerficateFailureError message in full
1549
+
1550
+ ## 1.3.0.pre.8 (12 February 2013)
1551
+
1552
+ Security:
1553
+
1554
+ - validate SSL certificate chain during HTTPS network requests
1555
+ - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
1556
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
1557
+
1558
+ Features:
1559
+
1560
+ - optimize resolver when too new of a gem is already activated (@rykov, #2248)
1561
+ - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
1562
+ - explain SSL cert validation failures
1563
+ - generate gemspecs when installing git repos, removing shellouts
1564
+ - add pager selection (@csgui)
1565
+ - add `licenses` command (@bryanwoods, #1898)
1566
+ - sort output from `outdated` (@richardkmichael, #1896)
1567
+ - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
1568
+ - inform users when the resolver starts
1569
+ - disable reverse DNS to speed up API requests (@raggi)
1570
+
1571
+ Bugfixes:
1572
+
1573
+ - raise errors while requiring dashed gems (#1807)
1574
+ - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
1575
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1576
+ - support any ruby version in --standalone
1577
+ - resolve some ruby -w warnings (@chastell, #2193)
1578
+ - don't scare users with an error message during API fallback
1579
+ - `install --binstubs` is back to overwriting. thanks, SemVer.
1580
+
1581
+ ## 1.3.0.pre.7 (22 January 2013)
1582
+
1583
+ Bugfixes:
1584
+
1585
+ - stubs for gems with dev deps no longer cause exceptions (#2272)
1586
+ - don't suggest binstubs to --binstubs users
1587
+
1588
+ ## 1.3.0.pre.6 (22 January 2013)
1589
+
1590
+ Features:
1591
+
1592
+ - `binstubs` lists child gem bins if a gem has no binstubs
1593
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
1594
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
1595
+ - `bundle env` prints info about bundler's environment (@peeja)
1596
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
1597
+
1598
+ Bugfixes:
1599
+
1600
+ - don't overwrite custom binstubs during `install --binstubs`
1601
+ - don't throw an exception if `binstubs` gem doesn't exist
1602
+ - `bundle config` now works in directories without a Gemfile
1603
+
1604
+ ## 1.3.0.pre.5 (Jan 9, 2013)
1605
+
1606
+ Features:
1607
+
1608
+ - make `--standalone` require lines ruby engine/version agnostic
1609
+ - add `--dry-run` to `bundle clean` (@wfarr, #2237)
1610
+
1611
+ Bugfixes:
1612
+
1613
+ - don't skip writing binstubs when doing `bundle install`
1614
+ - distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
1615
+
1616
+ ## 1.3.0.pre.4 (Jan 3, 2013)
1617
+
1618
+ Features:
1619
+
1620
+ - `bundle binstubs <gem>` to setup individual binstubs
1621
+ - `bundle install --binstubs ""` will remove binstubs option
1622
+ - `bundle clean --dry-run` will print out gems instead of removing them
1623
+
1624
+ Bugfixes:
1625
+
1626
+ - Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
1627
+ - fix YAML parsing in in ruby-preview2
1628
+
1629
+ ## 1.3.0.pre.3 (Dec 21, 2012)
1630
+
1631
+ Features:
1632
+
1633
+ - pushing gems during `rake release` can be disabled (@trans)
1634
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
1635
+ - added platforms :ruby_20 and :mri_20, since the ABI has changed
1636
+ - added '--edit' option to open generated gemspec in editor
1637
+
1638
+ Bugfixes:
1639
+
1640
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
1641
+ - revert SemVer breaking change to :github
1642
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
1643
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
1644
+ - namespaced gems no longer generate a superfluous directory (@banyan)
1645
+
1646
+ ## 1.3.0.pre.2 (Dec 9, 2012)
1647
+
1648
+ Features:
1649
+
1650
+ - `config` expands local overrides like `local.rack .` (@gkop, #2205)
1651
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
1652
+ - use gems from gists with the :gist option in the Gemfile (@jgaskins)
1653
+
1654
+ Bugfixes:
1655
+
1656
+ - Gemfile sources other than rubygems.org work even when .gemrc contains sources
1657
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
1658
+ - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
1659
+ - git output hidden when running in --quiet mode (@rohit)
1660
+
1661
+ ## 1.3.0.pre (Nov 29, 2012)
1662
+
1663
+ Features:
1664
+
1665
+ - compatible with Ruby 2.0.0-preview2
1666
+ - compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
1667
+ - ruby 2.0 added to the `:ruby19` ABI-compatible platform
1668
+ - lazy load YAML, allowing Psych to be specified in the Gemfile
1669
+ - significant performance improvements (@cheald, #2181)
1670
+ - `inject` command for scripted Gemfile additions (Engine Yard)
1671
+ - :github option uses slashless arguments as repo owner (@rking)
1672
+ - `open` suggests gem names for typos (@jdelStrother)
1673
+ - `update` reports non-existent gems (@jdelStrother)
1674
+ - `gem` option --test can generate rspec stubs (@MafcoCinco)
1675
+ - `gem` option --test can generate minitest stubs (@kcurtin)
1676
+ - `gem` command generates MIT license (@BrentWheeldon)
1677
+ - gem rake task 'release' resuses existing tags (@shtirlic)
1678
+
1679
+ Bugfixes:
1680
+
1681
+ - JRuby new works with HTTPS gem sources (@davidcelis)
1682
+ - `install` installs both rake rake-built gems at once (@crowbot, #2107)
1683
+ - handle Errno::ETIMEDOUT errors (@jmoses)
1684
+ - handle Errno::EAGAIN errors on JRuby
1685
+ - disable ANSI coloring when output is redirected (@tomykaira)
1686
+ - raise LoadErrors correctly during Bundler.require (@Empact)
1687
+ - do not swallow --verbose on `bundle exec` (@sol, #2102)
1688
+ - `gem` generates gemspecs that block double-requires
1689
+ - `gem` generates gemspecs that admit they depend on rake
1690
+
1691
+ ## 1.2.5 (Feb 24, 2013)
1692
+
1693
+ Bugfixes:
1694
+
1695
+ - install Gemfiles with HTTP sources even without OpenSSL present
1696
+ - display CerficateFailureError message in full
1697
+
1698
+ ## 1.2.4 (Feb 12, 2013)
1699
+
1700
+ Features:
1701
+
1702
+ - warn about Ruby 2.0 and Rubygems 2.0
1703
+ - inform users when the resolver starts
1704
+ - disable reverse DNS to speed up API requests (@raggi)
1705
+
1706
+ Bugfixes:
1707
+
1708
+ - don't send user/pass when redirected to another host (@perplexes)
1709
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1710
+ - support any ruby version in --standalone
1711
+ - resolve some ruby -w warnings (@chastell, #2193)
1712
+ - don't scare users with an error message during API fallback
1713
+
1714
+ ## 1.2.3 (Nov 29, 2012)
1715
+
1716
+ Bugfixes:
1717
+
1718
+ - fix exceptions while loading some gemspecs
1719
+
1720
+ ## 1.2.2 (Nov 14, 2012)
1721
+
1722
+ Bugfixes:
1723
+
1724
+ - support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
1725
+ - `bundle viz` works with git gems again (@hirochachacha)
1726
+ - recognize more cases when OpenSSL is not present
1727
+
1728
+ ## 1.2.1 (Sep 19, 2012)
1729
+
1730
+ Bugfixes:
1731
+
1732
+ - `bundle clean` now works with BUNDLE_WITHOUT groups again
1733
+ - have a net/http read timeout around the Gemcutter API Endpoint
1734
+
1735
+ ## 1.2.0 (Aug 30, 2012)
1736
+
1737
+ Bugfixes:
1738
+
1739
+ - raise original error message from LoadError's
1740
+
1741
+ Documentation:
1742
+
1743
+ - `platform` man pages
1744
+
1745
+ ## 1.2.0.rc.2 (Aug 8, 2012)
1746
+
1747
+ Bugfixes:
1748
+
1749
+ - `clean` doesn't remove gems that are included in the lockfile
1750
+
1751
+ ## 1.2.0.rc (Jul 17, 2012)
1752
+
1753
+ Features:
1754
+
1755
+ - `check` now has a `--dry-run` option (@svenfuchs, #1811)
1756
+ - loosen ruby directive for engines
1757
+ - prune git/path directories inside vendor/cache (@josevalim, #1988)
1758
+ - update vendored thor to 0.15.2 (@sferik)
1759
+ - add .txt to LICENSE (@postmodern, #2001)
1760
+ - add `config disable_local_branch_check` (@josevalim, #1985)
1761
+ - fall back on the full index when experiencing syck errors (#1419)
1762
+ - handle syntax errors in Ruby gemspecs (#1974)
1763
+
1764
+ Bugfixes:
1765
+
1766
+ - fix `pack`/`cache` with `--all` (@josevalim, #1989)
1767
+ - don't display warning message when `cache_all` is set
1768
+ - check for `nil` PATH (#2006)
1769
+ - Always try to keep original GEM_PATH (@drogus, #1920)
1770
+
1771
+ ## 1.2.0.pre.1 (May 27, 2012)
1772
+
1773
+ Features:
1774
+
1775
+ - Git gems import submodules of submodules recursively (@nwwatson, #1935)
1776
+
1777
+ Bugfixes:
1778
+
1779
+ - Exit from `check` with a non-zero status when frozen with no lock
1780
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1781
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1782
+
1783
+ Documentation:
1784
+
1785
+ - Add instructions for local git repos to the `config` manpage
1786
+ - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
1787
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1788
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1789
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1790
+
1791
+ ## 1.2.0.pre (May 4, 2012)
1792
+
1793
+ Features:
1794
+
1795
+ - bundle package now accepts --all to package git and path dependencies
1796
+ - bundle config now accepts --local, --global and --delete options
1797
+ - It is possible to override a git repository via configuration.
1798
+ For instance, if you have a git dependency on rack, you can force
1799
+ it to use a local repo with `bundle config local.rack ~/path/to/rack`
1800
+ - Cache gemspec loads for performance (@dekellum, #1635)
1801
+ - add --full-index flag to `bundle update` (@fluxx, #1829)
1802
+ - add --quiet flag to `bundle update` (@nashby, #1654)
1803
+ - Add Bundler::GemHelper.gemspec (@knu, #1637)
1804
+ - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
1805
+ - `bundle platform` command
1806
+ - add ruby to DSL, to specify version of ruby
1807
+ - error out if the ruby version doesn't match
1808
+
1809
+ Performance:
1810
+
1811
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
1812
+
1813
+ Bugfixes:
1814
+
1815
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
1816
+ - Use the same ruby to run subprocesses as is running rake (@brixen)
1817
+
1818
+ Documentation:
1819
+
1820
+ - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
1821
+ - Add docs for the --no-cache option (@fluxx, #1796)
1822
+ - Add basic documentation for bin_path and bundle_path (@radar)
1823
+ - Add documentation for the run method in Bundler::Installer
1824
+
1825
+ ## 1.1.5 (Jul 17, 2012)
1826
+
1827
+ Features:
1828
+
1829
+ - Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
1830
+
1831
+ ## 1.1.4 (May 27, 2012)
1832
+
1833
+ Bugfixes:
1834
+
1835
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1836
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1837
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1838
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1839
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1840
+
1841
+ ## 1.1.3 (March 23, 2012)
1842
+
1843
+ Bugfixes:
1844
+
1845
+ - escape the bundler root path (@tenderlove, #1789)
1846
+
1847
+ ## 1.1.2 (March 20, 2012)
1848
+
1849
+ Bugfixes:
1850
+
1851
+ - Fix --deployment for multiple PATH sections of the same source (#1782)
1852
+
1853
+ ## 1.1.1 (March 14, 2012)
1854
+
1855
+ Bugfixes:
1856
+
1857
+ - Rescue EAGAIN so the fetcher works on JRuby on Windows
1858
+ - Stop asking users to report gem installation errors
1859
+ - Clarify "no sources" message
1860
+ - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
1861
+ - URI-encode gem names for dependency API (@rohit, #1672)
1862
+ - Fix `cache` edge case in rubygems 1.3.7 (#1202)
1863
+
1864
+ Performance:
1865
+
1866
+ - Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
1867
+
1868
+ ## 1.1.0 (Mar 7, 2012)
1869
+
1870
+ Bugfixes:
1871
+
1872
+ - Clean up corrupted lockfiles on bundle installs
1873
+ - Prevent duplicate GIT sources
1874
+ - Fix post_install_message when uing the endpoint API
1875
+
1876
+ ## 1.1.rc.8 (Mar 3, 2012)
1877
+
1878
+ Performance:
1879
+
1880
+ - don't resolve if the Gemfile.lock and Gemfile haven't changed
1881
+
1882
+ Bugfixes:
1883
+
1884
+ - Load gemspecs from git even when a released gem has the same version (#1609)
1885
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
1886
+ - handle gemspec development dependencies correctly (@raggi, #1639)
1887
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
1888
+
1889
+ ## 1.1.rc.7 (Dec 29, 2011)
1890
+
1891
+ Bugfixes:
1892
+
1893
+ - Fix bug where `clean` would break when using :path with no gemspec
1894
+
1895
+ ## 1.1.rc.6 (Dec 22, 2011)
1896
+
1897
+ Bugfixes:
1898
+
1899
+ - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
1900
+ - Load gems correctly when GEM_HOME is blank
1901
+ - Refresh gems so Bundler works from inside a bundle
1902
+ - Handle empty .bundle/config files without an error
1903
+
1904
+ ## 1.1.rc.5 (Dec 14, 2011)
1905
+
1906
+ Bugfixes:
1907
+
1908
+ - Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
1909
+
1910
+ ## 1.1.rc.4 (Dec 14, 2011)
1911
+
1912
+ Features:
1913
+
1914
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
1915
+
1916
+ Bugfixes:
1917
+
1918
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
1919
+ - fix `bundle viz` (@hirochachacha, #1586)
1920
+
1921
+ ## 1.1.rc.3 (Dec 8, 2011)
1922
+
1923
+ Bugfixes:
1924
+
1925
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
1926
+ - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
1927
+
1928
+ ## 1.1.rc.2 (Dec 6, 2011)
1929
+
1930
+ Features:
1931
+
1932
+ - Added README.md to `newgem` (@ognevsky, #1574)
1933
+ - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
1934
+
1935
+ Bugfixes:
1936
+
1937
+ - only auto-namespace requires for implied requires (#1531)
1938
+ - fix bundle clean output for git repos (#1473)
1939
+ - use Gem.bindir for bundle clean (#1544, #1532)
1940
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
1941
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
1942
+ - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
1943
+ - fix Psych loading issues
1944
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
1945
+ - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
1946
+ - `newgem` now uses https://rubygems.org (#1562)
1947
+ - `bundle init` now uses https://rubygems.org (@jjb, #1522)
1948
+ - `bundle install/update` does not autoclean when using --path for semver
1949
+
1950
+ Documentation:
1951
+
1952
+ - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
1953
+
1954
+ ## 1.1.rc (Oct 3, 2011)
1955
+
1956
+ Features:
1957
+
1958
+ - add `--shebang` option to bundle install (@bensie, #1467)
1959
+ - build passes on ruby 1.9.3rc1 (#1458, #1469)
1960
+ - hide basic auth credentials for custom sources (#1440, #1463)
1961
+
1962
+ Bugfixes:
1963
+
1964
+ - fix index search result caching (#1446, #1466)
1965
+ - fix fetcher prints multiple times during install (#1445, #1462)
1966
+ - don't mention API errors from non-rubygems.org sources
1967
+ - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
1968
+
1969
+ Documentation:
1970
+
1971
+ - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
1972
+
1973
+ ## 1.1.pre.10 (Sep 27, 2011)
1974
+
1975
+ Features:
1976
+
1977
+ - `config system_bindir foo` added, works like "-n foo" in your .gemrc file
1978
+
1979
+ ## 1.1.pre.9 (Sep 18, 2011)
1980
+
1981
+ Features:
1982
+
1983
+ - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
1984
+ - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
1985
+ - `clean` now takes a `--force` option (#1247, #1426)
1986
+ - `clean` will clean up cached git dirs in bundle clean (#1390)
1987
+ - remove deprecations from DSL (#1119)
1988
+ - autorequire tries directories for gems with dashed names (#1205)
1989
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
1990
+ - load rubygems plugins in the bundle binary (@tpope, #1364)
1991
+ - make `--standalone` respect `--path` (@cowboyd, #1361)
1992
+
1993
+ Bugfixes:
1994
+
1995
+ - Fix `clean` to handle nested gems in a git repo (#1329)
1996
+ - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
1997
+ - Fix fatal error when unable to connect to gem source (#1269)
1998
+ - Fix `outdated` to find pre-release gems that are installed. (#1359)
1999
+ - Fix color for ui. (#1374)
2000
+ - Fix installing to user-owned system gems on OS X
2001
+ - Fix caching issue in the resolver (#1353, #1421)
2002
+ - Fix :github DSL option
2003
+
2004
+ ## 1.1.pre.8 (Aug 13, 2011)
2005
+
2006
+ Bugfixes:
2007
+
2008
+ - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
2009
+ - Fix require_sudo when Gem.bindir isn't writeable (#1352)
2010
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
2011
+ - Fix `install --binstubs` when using --path (#1332)
2012
+
2013
+ ## 1.1.pre.7 (Aug 8, 2011)
2014
+
2015
+ Bugfixes:
2016
+
2017
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
2018
+ - Fixed exception when sudo was needed to install gems (@spastorino)
2019
+
2020
+ ## 1.1.pre.6 (Aug 8, 2011)
2021
+
2022
+ Bugfixes:
2023
+
2024
+ - Fix cross repository dependencies (#1138)
2025
+ - Fix git dependency fetching from API endpoint (#1254)
2026
+ - Fixes for bundle outdated (@joelmoss, #1238)
2027
+ - Fix bundle standalone when using the endpoint (#1240)
2028
+
2029
+ Features:
2030
+
2031
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
2032
+ - bundle clean removes old .gem files (@cldwalker, #1293)
2033
+ - Correcly identify missing child dependency in error message
2034
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
2035
+ - create Gemfile.lock for empty Gemfile (#1218)
2036
+
2037
+ ## 1.1.pre.5 (June 11, 2011)
2038
+
2039
+ Bugfixes:
2040
+
2041
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
2042
+ - Fix HTTP proxy support (@leobessa, #878)
2043
+
2044
+ Features:
2045
+
2046
+ - Speed up `install --deployment` by using the API endpoint
2047
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
2048
+ - Add `install --full-index` to disable the API endpoint, just in case
2049
+ - Significantly speed up install by removing unneeded gemspec fetches
2050
+ - `outdated` command shows outdated gems (@joelmoss, #1130)
2051
+ - Print gem post install messages (@csquared, #1155)
2052
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
2053
+ - Allow `check --path`
2054
+
2055
+ ## 1.1.pre.4 (May 5, 2011)
2056
+
2057
+ Bugfixes:
2058
+
2059
+ - Fix bug that could prevent installing new gems
2060
+
2061
+ ## 1.1.pre.3 (May 4, 2011)
2062
+
2063
+ Features:
2064
+
2065
+ - Add `bundle outdated` to show outdated gems (@joelmoss)
2066
+ - Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
2067
+ - Add Bundler.clean_system, and clean_exec (@wuputah)
2068
+ - Use git config for gem author name and email (@krekoten)
2069
+
2070
+ Bugfixes:
2071
+
2072
+ - Fix error calling Bundler.rubygems.gem_path
2073
+ - Fix error when Gem.path returns Gem::FS instead of String
2074
+
2075
+ ## 1.1.pre.2 (April 28, 2011)
2076
+
2077
+ Features:
2078
+
2079
+ - Add :github option to Gemfile DSL for easy git repos
2080
+ - Merge all fixes from 1.0.12 and 1.0.13
2081
+
2082
+ ## 1.1.pre.1 (February 2, 2011)
2083
+
2084
+ Bugfixes:
2085
+
2086
+ - Compatibility with changes made by Rubygems 1.5
2087
+
2088
+ ## 1.1.pre (January 21, 2011)
2089
+
2090
+ Features:
2091
+
2092
+ - Add bundle clean. Removes unused gems from --path directory
2093
+ - Initial Gemcutter Endpoint API work, BAI Fetching source index
2094
+ - Added bundle install --standalone
2095
+ - Ignore Gemfile.lock when building new gems
2096
+ - Make it possible to override a .gemspec dependency's source in the
2097
+ Gemfile
2098
+
2099
+ Removed:
2100
+
2101
+ - Removed bundle lock
2102
+ - Removed bundle install <path>
2103
+ - Removed bundle install --production
2104
+ - Removed bundle install --disable-shared-gems
2105
+
2106
+ ## 1.0.21 (September 30, 2011)
2107
+
2108
+ - No changes from RC
2109
+
2110
+ ## 1.0.21.rc (September 29, 2011)
2111
+
2112
+ Bugfixes:
2113
+
2114
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
2115
+
2116
+ ## 1.0.20 (September 27, 2011)
2117
+
2118
+ Features:
2119
+
2120
+ - Add platform :maglev (@timfel, #1444)
2121
+
2122
+ Bugfixes:
2123
+
2124
+ - Ensure YAML is required even if Psych is found
2125
+ - Handle directory names that contain invalid regex characters
2126
+
2127
+ ## 1.0.20.rc (September 18, 2011)
2128
+
2129
+ Features:
2130
+
2131
+ - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
2132
+ - Allow clearing without groups by passing `--without ''` (#1259)
2133
+
2134
+ Bugfixes:
2135
+
2136
+ - Manually sort requirements in the lockfile (#1375)
2137
+ - Remove several warnings generated by ruby -w (@stephencelis)
2138
+ - Handle trailing slashes on names passed to `gem` (#1372)
2139
+ - Name modules for gems like 'test-foo_bar' correctly (#1303)
2140
+ - Don't require Psych if Syck is already loaded (#1239)
2141
+
2142
+ ## 1.0.19.rc (September 13, 2011)
2143
+
2144
+ Features:
2145
+
2146
+ - Compatibility with Rubygems 1.8.10 installer changes
2147
+ - Report gem installation failures clearly (@rwilcox, #1380)
2148
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
2149
+
2150
+ Bugfixes:
2151
+
2152
+ - `exec` now works when the command contains 'exec'
2153
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
2154
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
2155
+
2156
+ ## 1.0.18 (August 16, 2011)
2157
+
2158
+ Bugfixes:
2159
+
2160
+ - Fix typo in DEBUG_RESOLVER (@geemus)
2161
+ - Fixes rake 0.9.x warning (@mtylty, #1333)
2162
+ - Fix `bundle cache` again for rubygems 1.3.x
2163
+
2164
+ Features:
2165
+
2166
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
2167
+ - Support hidden gemspec (@trans, @cldwalker, #827)
2168
+ - Make fetch_specs faster (@zeha, #1294)
2169
+ - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
2170
+
2171
+ ## 1.0.17 (August 8, 2011)
2172
+
2173
+ Bugfixes:
2174
+
2175
+ - Fix rake issues with rubygems 1.3.x (#1342)
2176
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
2177
+
2178
+ ## 1.0.16 (August 8, 2011)
2179
+
2180
+ Features:
2181
+
2182
+ - Performance fix for MRI 1.9 (@efficientcloud, #1288)
2183
+ - Shortcuts (like `bundle i`) for all commands (@amatsuda)
2184
+ - Correcly identify missing child dependency in error message
2185
+
2186
+ Bugfixes:
2187
+
2188
+ - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
2189
+ - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
2190
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
2191
+ - Fix `bundle install --without` on kiji (@tmm1, #1287)
2192
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
2193
+
2194
+ Documentation:
2195
+
2196
+ - Documentation for `gem ..., :require => false` (@kmayer, #1292)
2197
+ - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
2198
+
2199
+ ## 1.0.15 (June 9, 2011)
2200
+
2201
+ Features:
2202
+
2203
+ - Improved Rubygems integration, removed many deprecation notices
2204
+
2205
+ Bugfixes:
2206
+
2207
+ - Escape URL arguments to git correctly on Windows (1.0.14 regression)
2208
+
2209
+ ## 1.0.14 (May 27, 2011)
2210
+
2211
+ Features:
2212
+
2213
+ - Rubinius platform :rbx (@rkbodenner)
2214
+ - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
2215
+ - Include user name and email from git config in new gemspec (@ognevsky)
2216
+
2217
+ Bugfixes:
2218
+
2219
+ - Set file permissions after checking out git repos (@tissak)
2220
+ - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
2221
+ - Require the version file in new gemspecs (@rubiii)
2222
+ - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
2223
+ - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
2224
+ - Display installed path correctly on Windows (@tadman)
2225
+ - Escape quotes in git URIs (@mheffner)
2226
+ - Improve Rake 0.9 support (@quix)
2227
+ - Handle certain directories already existing (@raggi)
2228
+ - Escape filenames containing regex characters (@indirect)
2229
+
2230
+ ## 1.0.13 (May 4, 2011)
2231
+
2232
+ Features:
2233
+
2234
+ - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
2235
+ - Informative error when --path points to a broken symlink
2236
+ - Support Rake 0.9 and greater (@e2)
2237
+ - Output full errors for non-TTYs e.g. pow (@josh)
2238
+
2239
+ Bugfixes:
2240
+
2241
+ - Allow spaces in gem path names for gem tasks (@rslifka)
2242
+ - Have cap run bundle install from release_path (@martinjagusch)
2243
+ - Quote git refspec so zsh doesn't expand it (@goneflyin)
2244
+
2245
+ ## 1.0.12 (April 8, 2011)
2246
+
2247
+ Features:
2248
+
2249
+ - Add --no-deployment option to `install` for disabling it on dev machines
2250
+ - Better error message when git fails and cache is present (@parndt)
2251
+ - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
2252
+
2253
+ Bugfixes:
2254
+
2255
+ - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
2256
+ - Fix changing gem order in lock (@gucki)
2257
+ - Remove color escape sequences when displaying man pages (@bgreenlee)
2258
+ - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
2259
+ - Fix gems without a gemspec and directories in bin/ (@epall)
2260
+ - Fix --no-prune option for `bundle install` (@cmeiklejohn)
2261
+
2262
+ ## 1.0.11 (April 1, 2011)
2263
+
2264
+ Features:
2265
+
2266
+ - Compatibility with Rubygems 1.6 and 1.7
2267
+ - Better error messages when a git command fails
2268
+
2269
+ Bugfixes:
2270
+
2271
+ - Don't always update gemspec gems (@carllerche)
2272
+ - Remove ivar warnings (@jackdempsey)
2273
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
2274
+ - Consistent lock for gems with double deps like Cap (@akahn)
2275
+
2276
+ ## 1.0.10 (February 1, 2011)
2277
+
2278
+ Bugfixes:
2279
+
2280
+ - Fix a regression loading YAML gemspecs from :git and :path gems
2281
+ - Requires, namespaces, etc. to work with changes in Rubygems 1.5
2282
+
2283
+ ## 1.0.9 (January 19, 2011)
2284
+
2285
+ Bugfixes:
2286
+
2287
+ - Fix a bug where Bundler.require could remove gems from the load
2288
+ path. In Rails apps with a default application.rb, this removed
2289
+ all gems in groups other than :default and Rails.env
2290
+
2291
+ ## 1.0.8 (January 18, 2011)
2292
+
2293
+ Features:
2294
+
2295
+ - Allow overriding gemspec() deps with :git deps
2296
+ - Add --local option to `bundle update`
2297
+ - Ignore Gemfile.lock in newly generated gems
2298
+ - Use `less` as help pager instead of `more`
2299
+ - Run `bundle exec rake` instead of `rake` in Capistrano tasks
2300
+
2301
+ Bugfixes:
2302
+
2303
+ - Fix --no-cache option for `bundle install`
2304
+ - Allow Vlad deploys to work without Capistrano gem installed
2305
+ - Fix group arguments to `bundle console`
2306
+ - Allow groups to be loaded even if other groups were loaded
2307
+ - Evaluate gemspec() gemspecs in their directory not the cwd
2308
+ - Count on Rake to chdir to the right place in GemHelper
2309
+ - Change Pathnames to Strings for MacRuby
2310
+ - Check git process exit status correctly
2311
+ - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
2312
+
2313
+ ## 1.0.7 (November 17, 2010)
2314
+
2315
+ Bugfixes:
2316
+
2317
+ - Remove Bundler version from the lockfile because it broke
2318
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
2319
+
2320
+ ## 1.0.6 (November 16, 2010)
2321
+
2322
+ Bugfixes:
2323
+
2324
+ - Fix regression in `update` that caused long/wrong results
2325
+ - Allow git gems on other platforms while installing (#579)
2326
+
2327
+ Features:
2328
+
2329
+ - Speed up `install` command using various optimizations
2330
+ - Significantly increase performance of resolver
2331
+ - Use upcoming Rubygems performance improvements (@tmm1)
2332
+ - Warn if the lockfile was generated by a newer version
2333
+ - Set generated gems' homepage to "", so Rubygems will warn
2334
+
2335
+ ## 1.0.5 (November 13, 2010)
2336
+
2337
+ Bugfixes:
2338
+
2339
+ - Fix regression disabling all operations that employ sudo
2340
+
2341
+ ## 1.0.4 (November 12, 2010)
2342
+
2343
+ Bugfixes:
2344
+
2345
+ - Expand relative :paths from Bundler.root (eg ./foogem)
2346
+ - Allow git gems in --without groups while --frozen
2347
+ - Allow gem :ref to be a symbol as well as a string
2348
+ - Fix exception when Gemfile needs a newer Bundler version
2349
+ - Explanation when the current Bundler version conflicts
2350
+ - Explicit error message if Gemfile needs newer Bundler
2351
+ - Ignore an empty string BUNDLE_GEMFILE
2352
+ - Skeleton gemspec now works with older versions of git
2353
+ - Fix shell quoting and ref fetching in GemHelper
2354
+ - Disable colored output in --deployment
2355
+ - Preserve line endings in lock file
2356
+
2357
+ Features:
2358
+
2359
+ - Add support for 'mingw32' platform (aka RubyInstaller)
2360
+ - Large speed increase when Gemfile.lock is already present
2361
+ - Huge speed increase when many (100+) system gems are present
2362
+ - Significant expansion of ISSUES, man pages, and docs site
2363
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
2364
+ - Allow setting roles in built-in cap and vlad tasks
2365
+
2366
+ ## 1.0.3 (October 15, 2010)
2367
+
2368
+ Bugfixes:
2369
+
2370
+ - Use bitwise or in #hash to reduce the chance of overflow
2371
+ - `bundle update` now works with :git + :tag updates
2372
+ - Record relative :path options in the Gemfile.lock
2373
+ - :groups option on gem method in Gemfile now works
2374
+ - Add #platform method and :platform option to Gemfile DSL
2375
+ - --without now accepts a quoted, space-separated list
2376
+ - Installing after --deployment with no lock is now possible
2377
+ - Binstubs can now be symlinked
2378
+ - Print warning if cache for --local install is missing gems
2379
+ - Improve output when installing to a path
2380
+ - The tests all pass! Yay!
2381
+
2382
+ ## 1.0.2 (October 2, 2010)
2383
+
2384
+ Bugfix:
2385
+
2386
+ - Actually include the man pages in the gem, so help works
2387
+
2388
+ ## 1.0.1 (October 1, 2010)
2389
+
2390
+ Features:
2391
+
2392
+ - Vlad deployment recipe, `require 'bundler/vlad'`
2393
+ - Prettier bundle graphs
2394
+ - Improved gem skeleton for `bundle gem`
2395
+ - Prompt on file clashes when generating a gem
2396
+ - Option to generate binary with gem skeleton
2397
+ - Allow subclassing of GemHelper for custom tasks
2398
+ - Chdir to gem directory during `bundle open`
2399
+
2400
+ Bugfixes:
2401
+
2402
+ - Allow gemspec requirements with a list of versions
2403
+ - Accept lockfiles with windows line endings
2404
+ - Respect BUNDLE_WITHOUT env var
2405
+ - Allow `gem "foo", :platform => :jruby`
2406
+ - Specify loaded_from path in fake gemspec
2407
+ - Flesh out gem_helper tasks, raise errors correctly
2408
+ - Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
2409
+
2410
+ ## 1.0.0 (August 29, 2010)
2411
+
2412
+ Features:
2413
+
2414
+ - You can now define `:bundle_cmd` in the capistrano task
2415
+
2416
+ Bugfixes:
2417
+
2418
+ - Various bugfixes to the built-in rake helpers
2419
+ - Fix a bug where shortrefs weren't unique enough and were
2420
+ therfore colliding
2421
+ - Fix a small bug involving checking whether a local git
2422
+ clone is up to date
2423
+ - Correctly handle explicit '=' dependencies with gems
2424
+ pinned to a git source
2425
+ - Fix an issue with Windows-generated lockfiles by reading
2426
+ and writing the lockfile in binary mode
2427
+ - Fix an issue with shelling out to git in Windows by
2428
+ using double quotes around paths
2429
+ - Detect new Rubygems sources in the Gemfile and update
2430
+ the lockfile
2431
+
2432
+ ## 1.0.0.rc.6 (August 23, 2010)
2433
+
2434
+ Features:
2435
+
2436
+ - Much better documentation for most of the commands and Gemfile
2437
+ format
2438
+
2439
+ Bugfixes:
2440
+
2441
+ - Don't attempt to create directories if they already exist
2442
+ - Fix the capistrano task so that it actually runs
2443
+ - Update the Gemfile template to reference rubygems.org instead
2444
+ of :gemcutter
2445
+ - bundle exec should exit with a non zero exit code when the gem
2446
+ binary does not exist or the file is not executable.
2447
+ - Expand paths in Gemfile relative to the Gemfile and not the current
2448
+ working directory.
2449
+
2450
+ ## 1.0.0.rc.5 (August 10, 2010)
2451
+
2452
+ Features:
2453
+
2454
+ - Make the Capistrano task more concise.
2455
+
2456
+ Bugfixes:
2457
+
2458
+ - Fix a regression with determining whether or not to use sudo
2459
+ - Allow using the --gemfile flag with the --deployment flag
2460
+
2461
+ ## 1.0.0.rc.4 (August 9, 2010)
2462
+
2463
+ Features:
2464
+
2465
+ - `bundle gem NAME` command to generate a new gem with Gemfile
2466
+ - Bundle config file location can be specified by BUNDLE_APP_CONFIG
2467
+ - Add --frozen to disable updating the Gemfile.lock at runtime
2468
+ (default with --deployment)
2469
+ - Basic Capistrano task now added as 'bundler/capistrano'
2470
+
2471
+ Bugfixes:
2472
+
2473
+ - Multiple bundler process no longer share a tmp directory
2474
+ - `bundle update GEM` always updates dependencies of GEM as well
2475
+ - Deleting the cache directory no longer causes errors
2476
+ - Moving the bundle after installation no longer causes git errors
2477
+ - Bundle path is now correctly remembered on a read-only filesystem
2478
+ - Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
2479
+ - Fetch gems from vendor/cache, even without --local
2480
+ - Sort lockfile by platform as well as spec
2481
+
2482
+ ## 1.0.0.rc.3 (August 3, 2010)
2483
+
2484
+ Features:
2485
+
2486
+ - Deprecate --production flag for --deployment, since the former
2487
+ was causing confusion with the :production group
2488
+ - Add --gemfile option to `bundle check`
2489
+ - Reduce memory usage of `bundle install` by 2-4x
2490
+ - Improve message from `bundle check` under various conditions
2491
+ - Better error when a changed Gemfile conflicts with Gemfile.lock
2492
+
2493
+ Bugfixes:
2494
+
2495
+ - Create bin/ directory if it is missing, then install binstubs
2496
+ - Error nicely on the edge case of a pinned gem with no spec
2497
+ - Do not require gems for other platforms
2498
+ - Update git sources along with the gems they contain
2499
+
2500
+ ## 1.0.0.rc.2 (July 29, 2010)
2501
+
2502
+ - `bundle install path` was causing confusion, so we now print
2503
+ a clarifying warning. The preferred way to install to a path
2504
+ (which will not print the warning) is
2505
+ `bundle install --path path/to/install`.
2506
+ - `bundle install --system` installs to the default system
2507
+ location ($BUNDLE_PATH or $GEM_HOME) even if you previously
2508
+ used `bundle install --path`
2509
+ - completely remove `--disable-shared-gems`. If you install to
2510
+ system, you will not be isolated, while if you install to
2511
+ another path, you will be isolated from gems installed to
2512
+ the system. This was mostly an internal option whose naming
2513
+ and semantics were extremely confusing.
2514
+ - Add a `--production` option to `bundle install`:
2515
+ - by default, installs to `vendor/bundle`. This can be
2516
+ overridden with the `--path` option
2517
+ - uses `--local` if `vendor/cache` is found. This will
2518
+ guarantee that Bundler does not attempt to connect to
2519
+ Rubygems and will use the gems cached in `vendor/cache`
2520
+ instead
2521
+ - Raises an exception if a Gemfile.lock is not found
2522
+ - Raises an exception if you modify your Gemfile in development
2523
+ but do not check in an updated Gemfile.lock
2524
+ - Fixes a bug where switching a source from Rubygems to git
2525
+ would always say "the git source is not checked out" when
2526
+ running `bundle install`
2527
+
2528
+ NOTE: We received several reports of "the git source has not
2529
+ been checked out. Please run bundle install". As far as we
2530
+ can tell, these problems have two possible causes:
2531
+
2532
+ 1. `bundle install ~/.bundle` in one user, but actually running
2533
+ the application as another user. Never install gems to a
2534
+ directory scoped to a user (`~` or `$HOME`) in deployment.
2535
+ 2. A bug that happened when changing a gem to a git source.
2536
+
2537
+ To mitigate several common causes of `(1)`, please use the
2538
+ new `--production` flag. This flag is simply a roll-up of
2539
+ the best practices we have been encouraging people to use
2540
+ for deployment.
2541
+
2542
+ If you want to share gems across deployments, and you use
2543
+ Capistrano, symlink release_path/current/vendor/bundle to
2544
+ release_path/shared/bundle. This will keep deployments
2545
+ snappy while maintaining the benefits of clean, deploy-time
2546
+ isolation.
2547
+
2548
+ ## 1.0.0.rc.1 (July 26, 2010)
2549
+
2550
+ - Fixed a bug with `bundle install` on multiple machines and git
2551
+
2552
+ ## 1.0.0.beta.10 (July 25, 2010)
2553
+
2554
+ - Last release before 1.0.0.rc.1
2555
+ - Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
2556
+ - Fix `bundle install` immediately after modifying the :submodule option
2557
+ - Don't write to Gemfile.lock if nothing has changed, fixing situations
2558
+ where bundle install was run with a different user than the app
2559
+ itself
2560
+ - Fix a bug where other platforms were being wiped on `bundle update`
2561
+ - Don't ask for root password on `bundle install` if not needed
2562
+ - Avoid setting `$GEM_HOME` where not needed
2563
+ - First solid pass of `bundle config`
2564
+ - Add build options
2565
+ - `bundle config build.mysql --with-mysql-config=/path/to/config`
2566
+
2567
+ ## 1.0.0.beta.9 (July 21, 2010)
2568
+
2569
+ - Fix install failure when switching from a path to git source
2570
+ - Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
2571
+ - Fix `bundle *` from inside a bundle with --disable-shared-gem
2572
+ - Shim Gem.refresh. This is used by Unicorn
2573
+ - Fix install failure when a path's dependencies changed
2574
+
2575
+ ## 1.0.0.beta.8 (July 20, 2010)
2576
+
2577
+ - Fix a Beta 7 bug involving Ruby 1.9
2578
+
2579
+ ## 1.0.0.beta.7 (July 20, 2010, yanked)
2580
+
2581
+ - Running `bundle install` twice in a row with a git source always crashed
2582
+
2583
+ ## 1.0.0.beta.6 (July 20, 2010, yanked)
2584
+
2585
+ - Create executables with bundle install --binstubs
2586
+ - You can customize the location (default is app/bin) with --binstubs other/location
2587
+ - Fix a bug where the Gemfile.lock would be deleted even if the update was exited
2588
+ - Fix a bug where cached gems for other platforms were sometimes deleted
2589
+ - Clean up output when nothing was deleted from cache (it previously said
2590
+ "Removing outdated gems ...")
2591
+ - Improve performance of bundle install if the git gem was already checked out,
2592
+ and the revision being used already exists locally
2593
+ - Fix bundle show bundler in some cases
2594
+ - Fix bugs with bundle update
2595
+ - Don't ever run git commands at runtime (fixes a number of common passenger issues)
2596
+ - Fixes an obscure bug where switching the source of a gem could fail to correctly
2597
+ change the source of its dependencies
2598
+ - Support multiple version dependencies in the Gemfile
2599
+ (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
2600
+ - Raise an exception for ambiguous uses of multiple declarations of the same gem
2601
+ (for instance, with different versions or sources).
2602
+ - Fix cases where the same dependency appeared several times in the Gemfile.lock
2603
+ - Fix a bug where require errors were being swallowed during Bundler.require
2604
+
2605
+ ## 1.0.0.beta.1
2606
+
2607
+ - No `bundle lock` command. Locking happens automatically on install or update
2608
+ - No .bundle/environment.rb. Require 'bundler/setup' instead.
2609
+ - $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
2610
+ - Remove lockfiles generated by 0.9
2611
+
2612
+ ## 0.9.26
2613
+
2614
+ Features:
2615
+
2616
+ - error nicely on incompatible 0.10 lockfiles
2617
+
2618
+ ## 0.9.25 (May 3, 2010)
2619
+
2620
+ Bugfixes:
2621
+
2622
+ - explicitly coerce Pathname objects to Strings for Ruby 1.9
2623
+ - fix some newline weirdness in output from install command
2624
+
2625
+ ## 0.9.24 (April 22, 2010)
2626
+
2627
+ Features:
2628
+
2629
+ - fetch submodules for git sources
2630
+ - limit the bundled version of bundler to the same as the one installing
2631
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
2632
+ - serialize GemCache sources correctly, so locking works
2633
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
2634
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
2635
+
2636
+ Bugfixes:
2637
+
2638
+ - don't try to regenerate environment.rb if it is read-only
2639
+ - prune outdated gems with the platform "ruby"
2640
+ - prune cache without errors when there are directories or non-gem files
2641
+ - don't re-write environment.rb if running after it has been loaded
2642
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
2643
+
2644
+ ## 0.9.23 (April 20, 2010)
2645
+
2646
+ Bugfixes:
2647
+
2648
+ - cache command no longer prunes gems created by an older rubygems version
2649
+ - cache command no longer prunes gems that are for other platforms
2650
+
2651
+ ## 0.9.22 (April 20, 2010)
2652
+
2653
+ Features:
2654
+
2655
+ - cache command now prunes stale .gem files from vendor/cache
2656
+ - init --gemspec command now generates development dependencies
2657
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
2658
+ - remove .gem files generated after installing a gem from a :path (#286)
2659
+ - improve install/lock messaging (#284)
2660
+
2661
+ Bugfixes:
2662
+
2663
+ - ignore cached gems that are for another platform (#288)
2664
+ - install Windows gems that have no architecture set, like rcov (#277)
2665
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
2666
+ - fix the `rake install` task
2667
+ - add GemspecError so it can be raised without (further) error (#292)
2668
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
2669
+
2670
+ ## 0.9.21 (April 16, 2010)
2671
+
2672
+ Bugfixes:
2673
+
2674
+ - don't raise 'omg wtf' when lockfile is outdated
2675
+
2676
+ ## 0.9.20 (April 15, 2010)
2677
+
2678
+ Features:
2679
+
2680
+ - load YAML format gemspecs
2681
+ - no backtraces when calling Bundler.setup if gems are missing
2682
+ - no backtraces when trying to exec a file without the executable bit
2683
+
2684
+ Bugfixes:
2685
+
2686
+ - fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
2687
+ - request install instead of lock when env.rb is out of sync with Gemfile.lock
2688
+
2689
+ ## 0.9.19 (April 12, 2010)
2690
+
2691
+ Features:
2692
+
2693
+ - suggest `bundle install --relock` when the Gemfile has changed (#272)
2694
+ - source support for Rubygems servers without prerelease gem indexes (#262)
2695
+
2696
+ Bugfixes:
2697
+
2698
+ - don't set up all groups every time Bundler.setup is called while locked (#263)
2699
+ - fix #full_gem_path for git gems while locked (#268)
2700
+ - eval gemspecs at the top level, not inside the Bundler class (#269)
2701
+
2702
+
2703
+ ## 0.9.18 (April 8, 2010)
2704
+
2705
+ Features:
2706
+
2707
+ - console command that runs irb with bundle (and optional group) already loaded
2708
+
2709
+ Bugfixes:
2710
+
2711
+ - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
2712
+ - fixes Yard, which found plugins in Gem.source_index that it could not load
2713
+ - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
2714
+
2715
+ ## 0.9.17 (April 7, 2010)
2716
+
2717
+ Features:
2718
+
2719
+ - Bundler.require now calls Bundler.setup automatically
2720
+ - Gem::Specification#add_bundler_dependencies added for gemspecs
2721
+
2722
+ Bugfixes:
2723
+
2724
+ - Gem paths are not longer duplicated while loading bundler
2725
+ - exec no longer duplicates RUBYOPT if it is already set correctly
2726
+
2727
+ ## 0.9.16 (April 3, 2010)
2728
+
2729
+ Features:
2730
+
2731
+ - exit gracefully on INT signal
2732
+ - resolver output now indicates whether remote sources were checked
2733
+ - print error instead of backtrace when exec cannot find a binary (#241)
2734
+
2735
+ Bugfixes:
2736
+
2737
+ - show, check, and open commands work again while locked (oops)
2738
+ - show command for git gems
2739
+ - outputs branch names other than master
2740
+ - gets the correct sha from the checkout
2741
+ - doesn't print sha twice if :ref is set
2742
+ - report errors from bundler/setup.rb without backtraces (#243)
2743
+ - fix Gem::Spec#git_version to not error on unloaded specs
2744
+ - improve deprecation, Gemfile, and command error messages (#242)
2745
+
2746
+ ## 0.9.15 (April 1, 2010)
2747
+
2748
+ Features:
2749
+
2750
+ - use the env_file if possible instead of doing a runtime resolve
2751
+ - huge speedup when calling Bundler.setup while locked
2752
+ - ensures bundle exec is fast while locked
2753
+ - regenerates env_file if it was generated by an older version
2754
+ - update cached/packed gems when you update gems via bundle install
2755
+
2756
+ Bugfixes:
2757
+
2758
+ - prep for Rubygems 1.3.7 changes
2759
+ - install command now pulls git branches correctly (#211)
2760
+ - raise errors on invalid options in the Gemfile
2761
+
2762
+ ## 0.9.14 (March 30, 2010)
2763
+
2764
+ Features:
2765
+
2766
+ - install command output vastly improved
2767
+ - installation message now accurate, with 'using' and 'installing'
2768
+ - bundler gems no longer listed as 'system gems'
2769
+ - show command output now includes sha and branch name for git gems
2770
+ - init command now takes --gemspec option for bootstrapping gem Gemfiles
2771
+ - Bundler.with_clean_env for shelling out to ruby scripts
2772
+ - show command now aliased as 'list'
2773
+ - VISUAL env var respected for GUI editors
2774
+
2775
+ Bugfixes:
2776
+
2777
+ - exec command now finds binaries from gems with no gemspec
2778
+ - note source of Gemfile resolver errors
2779
+ - don't blow up if git urls are changed
2780
+
2781
+ ## 0.9.13 (March 23, 2010)
2782
+
2783
+ Bugfixes:
2784
+
2785
+ - exec command now finds binaries from gems installed via :path
2786
+ - gem dependencies are pulled in even if their type is nil
2787
+ - paths with spaces have double-quotes to work on Windows
2788
+ - set GEM_PATH in environment.rb so generators work with Rails 2
2789
+
2790
+ ## 0.9.12 (March 17, 2010)
2791
+
2792
+ - refactoring, internal cleanup, more solid specs
2793
+
2794
+ Features:
2795
+
2796
+ - check command takes a --without option
2797
+ - check command exits 1 if the check fails
2798
+
2799
+ Bugfixes:
2800
+
2801
+ - perform a topological sort on resolved gems (#191)
2802
+ - gems from git work even when paths or repos have spaces (#196)
2803
+ - Specification#loaded_from returns a String, like Gem::Specification (#197)
2804
+ - specs eval from inside the gem directory, even when locked
2805
+ - virtual gemspecs are now saved in environment.rb for use when loading
2806
+ - unify the Installer's local index and the runtime index (#204)
2807
+
2808
+ ## 0.9.11 (March 9, 2010)
2809
+
2810
+ - added roadmap with future development plans
2811
+
2812
+ Features:
2813
+
2814
+ - install command can take the path to the gemfile with --gemfile (#125)
2815
+ - unknown command line options are now rejected (#163)
2816
+ - exec command hugely sped up while locked (#177)
2817
+ - show command prints the install path if you pass it a gem name (#148)
2818
+ - open command edits an installed gem with $EDITOR (#148)
2819
+ - Gemfile allows assigning an array of groups to a gem (#114)
2820
+ - Gemfile allows :tag option on :git sources
2821
+ - improve backtraces when a gemspec is invalid
2822
+ - improve performance by installing gems from the cache if present
2823
+
2824
+ Bugfixes:
2825
+
2826
+ - normalize parameters to Bundler.require (#153)
2827
+ - check now checks installed gems rather than cached gems (#162)
2828
+ - don't update the gem index when installing after locking (#169)
2829
+ - bundle parenthesises arguments for 1.8.6 (#179)
2830
+ - gems can now be assigned to multiple groups without problems (#135)
2831
+ - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
2832
+ - fix a Dependency.to_yaml error due to accidentally including sources and groups
2833
+ - don't reinstall packed gems
2834
+ - fix gems with git sources that are private repositories
2835
+
2836
+ ## 0.9.10 (March 1, 2010)
2837
+
2838
+ - depends on Rubygems 1.3.6
2839
+
2840
+ Bugfixes:
2841
+
2842
+ - support locking after install --without
2843
+ - don't reinstall gems from the cache if they're already in the bundle
2844
+ - fixes for Ruby 1.8.7 and 1.9
2845
+
2846
+ ## 0.9.9 (February 25, 2010)
2847
+
2848
+ Bugfixes:
2849
+
2850
+ - don't die if GEM_HOME is an empty string
2851
+ - fixes for Ruby 1.8.6 and 1.9
2852
+
2853
+ ## 0.9.8 (February 23, 2010)
2854
+
2855
+ Features:
2856
+
2857
+ - pack command which both caches and locks
2858
+ - descriptive error if a cached gem is missing
2859
+ - remember the --without option after installing
2860
+ - expand paths given in the Gemfile via the :path option
2861
+ - add block syntax to the git and group options in the Gemfile
2862
+ - support gems with extensions that don't admit they depend on rake
2863
+ - generate gems using gem build gemspec so git gems can have native extensions
2864
+ - print a useful warning if building a gem fails
2865
+ - allow manual configuration via BUNDLE_PATH
2866
+
2867
+ Bugfixes:
2868
+
2869
+ - eval gemspecs in the gem directory so relative paths work
2870
+ - make default spec for git sources valid
2871
+ - don't reinstall gems that are already packed
2872
+
2873
+ ## 0.9.7 (February 17, 2010)
2874
+
2875
+ Bugfixes:
2876
+
2877
+ - don't say that a gem from an excluded group is "installing"
2878
+ - improve crippling rubygems in locked scenarios
2879
+
2880
+ ## 0.9.6 (February 16, 2010)
2881
+
2882
+ Features:
2883
+
2884
+ - allow String group names
2885
+ - a number of improvements in the documentation and error messages
2886
+
2887
+ Bugfixes:
2888
+
2889
+ - set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
2890
+ - ensure Rubygems is fully loaded in Ruby 1.9 before patching it
2891
+ - fix `bundle install` for a locked app without a .bundle directory
2892
+ - require gems in the order that the resolver determines
2893
+ - make the tests platform agnostic so we can confirm that they're green on JRuby
2894
+ - fixes for Ruby 1.9
2895
+
2896
+ ## 0.9.5 (February 12, 2010)
2897
+
2898
+ Features:
2899
+
2900
+ - added support for :path => "relative/path"
2901
+ - added support for older versions of git
2902
+ - added `bundle install --disable-shared-gems`
2903
+ - Bundler.require fails silently if a library does not have a file on the load path with its name
2904
+ - Basic support for multiple rubies by namespacing the default bundle path using the version and engine
2905
+
2906
+ Bugfixes:
2907
+
2908
+ - if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
2909
+ - same if it's not present with `bundle check`
2910
+ - same if it's not present with `bundle install`