bundler 2.0.2

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

Potentially problematic release.


This version of bundler might be problematic. Click here for more details.

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