bundler 1.11.1 → 2.2.6

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