bundler 1.17.3 → 2.1.1

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 (249) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +794 -570
  3. data/LICENSE.md +18 -19
  4. data/README.md +9 -8
  5. data/bundler.gemspec +8 -25
  6. data/exe/bundle +19 -3
  7. data/lib/bundler.rb +202 -87
  8. data/lib/bundler/build_metadata.rb +3 -3
  9. data/lib/bundler/capistrano.rb +4 -4
  10. data/lib/bundler/cli.rb +178 -140
  11. data/lib/bundler/cli/add.rb +28 -16
  12. data/lib/bundler/cli/cache.rb +25 -13
  13. data/lib/bundler/cli/common.rb +11 -12
  14. data/lib/bundler/cli/config.rb +161 -86
  15. data/lib/bundler/cli/console.rb +1 -1
  16. data/lib/bundler/cli/doctor.rb +4 -4
  17. data/lib/bundler/cli/exec.rb +4 -16
  18. data/lib/bundler/cli/gem.rb +5 -5
  19. data/lib/bundler/cli/info.rb +17 -5
  20. data/lib/bundler/cli/init.rb +1 -1
  21. data/lib/bundler/cli/install.rb +11 -10
  22. data/lib/bundler/cli/issue.rb +3 -3
  23. data/lib/bundler/cli/open.rb +10 -6
  24. data/lib/bundler/cli/outdated.rb +85 -81
  25. data/lib/bundler/cli/plugin.rb +9 -2
  26. data/lib/bundler/cli/pristine.rb +1 -1
  27. data/lib/bundler/cli/show.rb +1 -1
  28. data/lib/bundler/cli/update.rb +32 -12
  29. data/lib/bundler/compact_index_client.rb +25 -9
  30. data/lib/bundler/compact_index_client/updater.rb +2 -6
  31. data/lib/bundler/current_ruby.rb +9 -7
  32. data/lib/bundler/definition.rb +35 -26
  33. data/lib/bundler/dependency.rb +16 -4
  34. data/lib/bundler/deployment.rb +1 -1
  35. data/lib/bundler/dsl.rb +16 -40
  36. data/lib/bundler/env.rb +8 -13
  37. data/lib/bundler/environment_preserver.rb +0 -1
  38. data/lib/bundler/feature_flag.rb +23 -34
  39. data/lib/bundler/fetcher.rb +16 -13
  40. data/lib/bundler/fetcher/compact_index.rb +26 -12
  41. data/lib/bundler/fetcher/dependency.rb +1 -1
  42. data/lib/bundler/fetcher/downloader.rb +5 -2
  43. data/lib/bundler/fetcher/index.rb +5 -3
  44. data/lib/bundler/friendly_errors.rb +6 -7
  45. data/lib/bundler/gem_helper.rb +40 -25
  46. data/lib/bundler/gem_helpers.rb +2 -4
  47. data/lib/bundler/gem_tasks.rb +1 -1
  48. data/lib/bundler/gem_version_promoter.rb +3 -3
  49. data/lib/bundler/graph.rb +2 -2
  50. data/lib/bundler/injector.rb +10 -8
  51. data/lib/bundler/inline.rb +40 -30
  52. data/lib/bundler/installer.rb +7 -14
  53. data/lib/bundler/installer/gem_installer.rb +5 -1
  54. data/lib/bundler/installer/parallel_installer.rb +4 -8
  55. data/lib/bundler/installer/standalone.rb +1 -2
  56. data/lib/bundler/lazy_specification.rb +2 -3
  57. data/lib/bundler/lockfile_parser.rb +14 -21
  58. data/lib/bundler/match_platform.rb +1 -1
  59. data/lib/bundler/mirror.rb +3 -3
  60. data/lib/bundler/plugin.rb +42 -29
  61. data/lib/bundler/plugin/api.rb +1 -1
  62. data/lib/bundler/plugin/api/source.rb +4 -6
  63. data/lib/bundler/plugin/index.rb +14 -3
  64. data/lib/bundler/plugin/installer.rb +28 -15
  65. data/lib/bundler/psyched_yaml.rb +1 -1
  66. data/lib/bundler/remote_specification.rb +0 -2
  67. data/lib/bundler/resolver.rb +72 -24
  68. data/lib/bundler/resolver/spec_group.rb +3 -2
  69. data/lib/bundler/retry.rb +2 -2
  70. data/lib/bundler/ruby_version.rb +4 -19
  71. data/lib/bundler/rubygems_ext.rb +11 -67
  72. data/lib/bundler/rubygems_gem_installer.rb +1 -8
  73. data/lib/bundler/rubygems_integration.rb +148 -400
  74. data/lib/bundler/runtime.rb +2 -9
  75. data/lib/bundler/settings.rb +22 -51
  76. data/lib/bundler/setup.rb +11 -12
  77. data/lib/bundler/shared_helpers.rb +51 -77
  78. data/lib/bundler/similarity_detector.rb +2 -2
  79. data/lib/bundler/source.rb +5 -5
  80. data/lib/bundler/source/git.rb +24 -17
  81. data/lib/bundler/source/git/git_proxy.rb +38 -41
  82. data/lib/bundler/source/metadata.rb +7 -2
  83. data/lib/bundler/source/path.rb +13 -8
  84. data/lib/bundler/source/rubygems.rb +14 -8
  85. data/lib/bundler/source/rubygems/remote.rb +2 -3
  86. data/lib/bundler/source_list.rb +9 -12
  87. data/lib/bundler/spec_set.rb +23 -12
  88. data/lib/bundler/stub_specification.rb +18 -30
  89. data/lib/bundler/templates/Executable.bundler +23 -14
  90. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +3 -3
  91. data/lib/bundler/templates/newgem/Gemfile.tt +8 -2
  92. data/lib/bundler/templates/newgem/README.md.tt +4 -3
  93. data/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -27
  94. data/lib/bundler/templates/newgem/test/test_helper.rb.tt +1 -1
  95. data/lib/bundler/templates/newgem/travis.yml.tt +0 -1
  96. data/lib/bundler/ui.rb +3 -3
  97. data/lib/bundler/ui/rg_proxy.rb +1 -1
  98. data/lib/bundler/ui/shell.rb +4 -8
  99. data/lib/bundler/uri_credentials_filter.rb +7 -3
  100. data/lib/bundler/vendor/connection_pool/lib/connection_pool.rb +161 -0
  101. data/lib/bundler/vendor/connection_pool/lib/connection_pool/monotonic_time.rb +66 -0
  102. data/lib/bundler/vendor/connection_pool/lib/connection_pool/timed_stack.rb +176 -0
  103. data/lib/bundler/vendor/connection_pool/lib/connection_pool/version.rb +3 -0
  104. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +273 -147
  105. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +6 -6
  106. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +2 -2
  107. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +1 -1
  108. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +1 -1
  109. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +1 -1
  110. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +1 -1
  111. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +6 -6
  112. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +1 -1
  113. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +1 -1
  114. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +30 -8
  115. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +1 -1
  116. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +4 -4
  117. data/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +2 -2
  118. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +273 -304
  119. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/connection.rb +40 -0
  120. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/pool.rb +53 -0
  121. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/timed_stack_multi.rb +79 -0
  122. data/lib/bundler/vendor/thor/lib/thor.rb +19 -4
  123. data/lib/bundler/vendor/thor/lib/thor/actions.rb +27 -12
  124. data/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +1 -1
  125. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +1 -1
  126. data/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +7 -17
  127. data/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +16 -7
  128. data/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +19 -8
  129. data/lib/bundler/vendor/thor/lib/thor/base.rb +54 -43
  130. data/lib/bundler/vendor/thor/lib/thor/command.rb +21 -14
  131. data/lib/bundler/vendor/thor/lib/thor/error.rb +78 -0
  132. data/lib/bundler/vendor/thor/lib/thor/group.rb +3 -3
  133. data/lib/bundler/vendor/thor/lib/thor/invocation.rb +1 -0
  134. data/lib/bundler/vendor/thor/lib/thor/line_editor.rb +2 -2
  135. data/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +1 -1
  136. data/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +6 -6
  137. data/lib/bundler/vendor/thor/lib/thor/nested_context.rb +29 -0
  138. data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -4
  139. data/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +2 -2
  140. data/lib/bundler/vendor/thor/lib/thor/parser/option.rb +20 -7
  141. data/lib/bundler/vendor/thor/lib/thor/parser/options.rb +20 -5
  142. data/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +1 -0
  143. data/lib/bundler/vendor/thor/lib/thor/runner.rb +15 -14
  144. data/lib/bundler/vendor/thor/lib/thor/shell.rb +4 -4
  145. data/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +62 -8
  146. data/lib/bundler/vendor/thor/lib/thor/shell/color.rb +6 -2
  147. data/lib/bundler/vendor/thor/lib/thor/shell/html.rb +3 -3
  148. data/lib/bundler/vendor/thor/lib/thor/util.rb +18 -2
  149. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  150. data/lib/bundler/vendor/uri/lib/uri.rb +104 -0
  151. data/lib/bundler/vendor/uri/lib/uri/common.rb +744 -0
  152. data/lib/bundler/vendor/uri/lib/uri/file.rb +94 -0
  153. data/lib/bundler/vendor/uri/lib/uri/ftp.rb +267 -0
  154. data/lib/bundler/vendor/uri/lib/uri/generic.rb +1568 -0
  155. data/lib/bundler/vendor/uri/lib/uri/http.rb +88 -0
  156. data/lib/bundler/vendor/uri/lib/uri/https.rb +23 -0
  157. data/lib/bundler/vendor/uri/lib/uri/ldap.rb +261 -0
  158. data/lib/bundler/vendor/uri/lib/uri/ldaps.rb +21 -0
  159. data/lib/bundler/vendor/uri/lib/uri/mailto.rb +294 -0
  160. data/lib/bundler/vendor/uri/lib/uri/rfc2396_parser.rb +546 -0
  161. data/lib/bundler/vendor/uri/lib/uri/rfc3986_parser.rb +125 -0
  162. data/lib/bundler/vendor/uri/lib/uri/version.rb +6 -0
  163. data/lib/bundler/vendored_fileutils.rb +1 -6
  164. data/lib/bundler/vendored_molinillo.rb +1 -1
  165. data/lib/bundler/vendored_persistent.rb +7 -5
  166. data/lib/bundler/vendored_thor.rb +2 -2
  167. data/lib/bundler/vendored_uri.rb +4 -0
  168. data/lib/bundler/version.rb +1 -20
  169. data/lib/bundler/version_ranges.rb +51 -5
  170. data/lib/bundler/vlad.rb +2 -2
  171. data/lib/bundler/worker.rb +1 -3
  172. data/lib/bundler/yaml_serializer.rb +2 -3
  173. data/man/bundle-add.1 +10 -2
  174. data/man/bundle-add.1.txt +11 -5
  175. data/man/bundle-add.ronn +7 -1
  176. data/man/bundle-binstubs.1 +2 -2
  177. data/man/bundle-binstubs.1.txt +2 -2
  178. data/man/bundle-binstubs.ronn +1 -1
  179. data/man/bundle-cache.1 +55 -0
  180. data/man/bundle-cache.1.txt +78 -0
  181. data/man/{bundle-package.ronn → bundle-cache.ronn} +15 -15
  182. data/man/bundle-check.1 +1 -1
  183. data/man/bundle-check.1.txt +6 -6
  184. data/man/bundle-clean.1 +1 -1
  185. data/man/bundle-clean.1.txt +1 -1
  186. data/man/bundle-config.1 +36 -36
  187. data/man/bundle-config.1.txt +66 -67
  188. data/man/bundle-config.ronn +42 -40
  189. data/man/bundle-doctor.1 +1 -1
  190. data/man/bundle-doctor.1.txt +1 -1
  191. data/man/bundle-exec.1 +2 -2
  192. data/man/bundle-exec.1.txt +2 -2
  193. data/man/bundle-exec.ronn +1 -1
  194. data/man/bundle-gem.1 +1 -1
  195. data/man/bundle-gem.1.txt +3 -3
  196. data/man/bundle-info.1 +1 -1
  197. data/man/bundle-info.1.txt +1 -1
  198. data/man/bundle-init.1 +2 -2
  199. data/man/bundle-init.1.txt +2 -2
  200. data/man/bundle-init.ronn +1 -1
  201. data/man/bundle-inject.1 +1 -1
  202. data/man/bundle-inject.1.txt +1 -1
  203. data/man/bundle-install.1 +8 -5
  204. data/man/bundle-install.1.txt +56 -51
  205. data/man/bundle-install.ronn +9 -4
  206. data/man/bundle-list.1 +1 -1
  207. data/man/bundle-list.1.txt +1 -1
  208. data/man/bundle-lock.1 +1 -1
  209. data/man/bundle-lock.1.txt +16 -16
  210. data/man/bundle-open.1 +1 -1
  211. data/man/bundle-open.1.txt +1 -1
  212. data/man/bundle-outdated.1 +1 -1
  213. data/man/bundle-outdated.1.txt +1 -1
  214. data/man/bundle-platform.1 +1 -1
  215. data/man/bundle-platform.1.txt +1 -1
  216. data/man/bundle-pristine.1 +1 -1
  217. data/man/bundle-pristine.1.txt +1 -1
  218. data/man/bundle-remove.1 +1 -1
  219. data/man/bundle-remove.1.txt +1 -1
  220. data/man/bundle-show.1 +1 -1
  221. data/man/bundle-show.1.txt +1 -1
  222. data/man/bundle-update.1 +4 -4
  223. data/man/bundle-update.1.txt +64 -65
  224. data/man/bundle-update.ronn +3 -3
  225. data/man/bundle-viz.1 +1 -1
  226. data/man/bundle-viz.1.txt +1 -1
  227. data/man/bundle.1 +3 -3
  228. data/man/bundle.1.txt +8 -8
  229. data/man/bundle.ronn +2 -2
  230. data/man/gemfile.5 +17 -20
  231. data/man/gemfile.5.ronn +14 -18
  232. data/man/gemfile.5.txt +108 -112
  233. data/man/index.txt +1 -1
  234. metadata +34 -110
  235. data/exe/bundle_ruby +0 -60
  236. data/lib/bundler/cli/package.rb +0 -49
  237. data/lib/bundler/compatibility_guard.rb +0 -14
  238. data/lib/bundler/gem_remote_fetcher.rb +0 -43
  239. data/lib/bundler/ssl_certs/.document +0 -1
  240. data/lib/bundler/ssl_certs/certificate_manager.rb +0 -66
  241. data/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +0 -21
  242. data/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +0 -23
  243. data/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +0 -25
  244. data/lib/bundler/vendor/net-http-persistent/lib/net/http/faster.rb +0 -27
  245. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent/ssl_reuse.rb +0 -129
  246. data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +0 -12
  247. data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +0 -129
  248. data/man/bundle-package.1 +0 -55
  249. data/man/bundle-package.1.txt +0 -79
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 57be2a031c802a256fffbddca6f7cac7814f550ba22a5228ca4d69ffc6219ca0
4
- data.tar.gz: f1928fbdadc8b1e2dbbedfb9361a7afed83b8d51b5fea407c5bef0857f93fd03
3
+ metadata.gz: 4cc0a71e765b27ffb15501a912f2c5d44c78a978da6b7bdf59a863fa401c4ecf
4
+ data.tar.gz: 3458392859f76d896ec97b3f45ca2dc68ffb2a7512fa7a8498557a3c9f4a81f5
5
5
  SHA512:
6
- metadata.gz: '08986fab1b004158cb55a6f0ef41e4a17e4b85561a97b24e85a731056af327f801e1d105915e6760e99b4b006da7f9a3c79b388d3ca998d2d12492e9accf7ad6'
7
- data.tar.gz: fb07fcd0f42267952e5ce1a929825b7c1d7e42cd489f025a03a3a8846616bcd60bb477d12e437206dbb188f4e7c575fc6d0e6f89ab8adaf1bb6b01e91739fe21
6
+ metadata.gz: 5ad6af5ddd2da1be83fd0df6e50e3808fb4eb73bba4e94bbfc4690bcb2a566bfc29af77a5bcffdc047f900138b3b1b88074bd6ea0d9a052ca1aa9e7ee7fb4680
7
+ data.tar.gz: 16d9d4a621cb5857157a7362182d269ad87b8a902eece6f88fa00024eb502463872d507d4ddf0e95b035ed1497bccb10f2d8d201f954fa438a3fb29e1a6a28fa
@@ -1,3 +1,227 @@
1
+ ## 2.1.1 (December 17, 2019)
2
+
3
+ Bugfixes:
4
+
5
+ - Fix some cases of shelling out to `rubygems` still being silent [#7493](https://github.com/bundler/bundler/pull/7493)
6
+ - Restore compatibility with `rubygems-bundler` so that binstubs work under `RVM` [#7498](https://github.com/bundler/bundler/pull/7498)
7
+
8
+ ## 2.1.0 (December 15, 2019)
9
+
10
+ Features:
11
+
12
+ - Add support for new default gems. In particular,
13
+
14
+ * `open3` [#7455](https://github.com/bundler/bundler/pull/7455)
15
+ * `cgi`: [#7456](https://github.com/bundler/bundler/pull/7456)
16
+ * `uri` [#7460](https://github.com/bundler/bundler/pull/7460)
17
+
18
+ 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/bundler/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
19
+
20
+ Bugfixes:
21
+
22
+ - Fix `bundle exec rake install` failing [#7474](https://github.com/bundler/bundler/pull/7474)
23
+ - Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/bundler/bundler/pull/7442)
24
+ - Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/bundler/bundler/pull/7418)
25
+ - Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/bundler/bundler/pull/7419)
26
+
27
+ Changes:
28
+
29
+ - `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
30
+ - `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
31
+
32
+ ## 2.1.0.pre.3 (November 12, 2019)
33
+
34
+ Features:
35
+
36
+ - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361)
37
+ - 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/bundler/bundler/pull/7389)
38
+ - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394)
39
+
40
+ Bugfixes:
41
+
42
+ - Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374)
43
+ - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385)
44
+ - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388)
45
+ - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393)
46
+ - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416)
47
+ - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)
48
+
49
+ ## 2.1.0.pre.2 (September 15, 2019)
50
+
51
+ Bugfixes:
52
+
53
+ - Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/bundler/bundler/pull/7340))
54
+ - Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))
55
+
56
+ ## 2.1.0.pre.1 (August 28, 2019)
57
+
58
+ One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
59
+ breaking changes in bundler 3 will be turned on by default. We do this to grab
60
+ feedback and communicate early to our users the kind of changes we're intending
61
+ to ship with bundler 3. See
62
+ [#6965](https://github.com/bundler/bundler/pull/6965).
63
+
64
+ Another important improvement is a better coexistence between bundler
65
+ installations and the default copy of bundler that comes with ruby installed as
66
+ a default gem. Since bundler is shipped as a default gem with ruby, a number of
67
+ users have been affected by issues where bundler ends up failing due to version
68
+ mismatches, because at some point of the execution, bundler switches to run the
69
+ default copy instead of the expected version. A number of PRs have been focused
70
+ on minimizing (hopefully eliminating) this, such as
71
+ [#7100](https://github.com/bundler/bundler/pull/7100),
72
+ [#7137](https://github.com/bundler/bundler/pull/7137),
73
+ [#6996](https://github.com/bundler/bundler/pull/6996),
74
+ [#7056](https://github.com/bundler/bundler/pull/7056),
75
+ [#7062](https://github.com/bundler/bundler/pull/7062),
76
+ [#7193](https://github.com/bundler/bundler/pull/7193),
77
+ [#7216](https://github.com/bundler/bundler/pull/7216),
78
+ [#7274](https://github.com/bundler/bundler/pull/7274)
79
+
80
+ Deprecations:
81
+
82
+ * See the [the upgrading document](UPGRADING.md) for a detailed explanation of
83
+ the deprecations that are getting enabled in bundler 2.1, and the future
84
+ breaking changes in bundler 3.
85
+
86
+ Features:
87
+
88
+ - Reimplement `config` command using subcommands ([#5981](https://github.com/bundler/bundler/pull/5981))
89
+ - Add `bundle plugin list` command ([#6120](https://github.com/bundler/bundler/pull/6120))
90
+ - Introduce a `bundle lock --gemfile` flag ([#6748](https://github.com/bundler/bundler/pull/6748))
91
+ - Add local git repository source option (`--local_git`) to plugin installation ([#6749](https://github.com/bundler/bundler/pull/6749))
92
+ - Add `quiet` flag to inline bundler ([#6828](https://github.com/bundler/bundler/pull/6828))
93
+ - Introduce a `prefer_patch` configuration that makes `bundle update` behave like `bundle update --patch` ([#6931](https://github.com/bundler/bundler/pull/6931))
94
+ - 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/bundler/bundler/pull/7052))
95
+ - Add feature parity to `bundle info GEM` with respect to the old deprecated command `bundle show GEM` [#7026](https://github.com/bundler/bundler/pull/7026)
96
+ - 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/bundler/bundler/pull/7072)
97
+ - Introduce `bundle outdated --filter-strict` as an alias to `bundle outdated --strict` [#6030](https://github.com/bundler/bundler/pull/6030)
98
+ - Add `:git` and `:branch` options to `bundle add` ([#7127](https://github.com/bundler/bundler/pull/7127))
99
+ - Add `:ruby_26` as a valid value to the `:platform(s)` dsl ([#7155](https://github.com/bundler/bundler/pull/7155))
100
+ - Let the `bundle cache` command include all features currently provided by `bundle package` ([#7249](https://github.com/bundler/bundler/pull/7249))
101
+ - Several improvements on new gem templates ([#6924](https://github.com/bundler/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))
102
+ - Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/bundler/bundler/pull/7263))
103
+
104
+ Bugfixes:
105
+
106
+ - Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/bundler/bundler/pull/5985))
107
+ - Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/bundler/bundler/pull/5954))
108
+ - Remove downloaded `.gem` file from the cache if it's corrupted ([#6010](https://github.com/bundler/bundler/pull/6010))
109
+ - 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/bundler/bundler/pull/6068))
110
+ - Fix `bundle outdated --group NAME` when the group is listed second in the Gemfile ([#6116](https://github.com/bundler/bundler/pull/6116))
111
+ - 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/bundler/bundler/pull/6647))
112
+ - Avoid fetching and rebuilding git gems whenever any gem is changed in the Gemfile ([#6711](https://github.com/bundler/bundler/pull/6711))
113
+ - 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/bundler/bundler/pull/6971)
114
+ - Fix plugins being installed every time a command is run #[#6978](https://github.com/bundler/bundler/pull/6978)
115
+ - Fallback to sequentially fetching specs on 429s [#6728](https://github.com/bundler/bundler/pull/6728)
116
+ - Make `bundle clean` also clean native extensions for gems with a git source [#7058](https://github.com/bundler/bundler/pull/7058)
117
+ - Fix `bundle info bundler` to show the correct path to the bundler gem [#7026](https://github.com/bundler/bundler/pull/7026)
118
+ - Fix `bundle config build.<gem>` not sending multiple parameters to `extconf.rb` correctly [#7023](https://github.com/bundler/bundler/pull/7023)
119
+ - 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/bundler/bundler/pull/7038)
120
+ - Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/bundler/bundler/pull/7075))
121
+ - Ignore `frozen` setting in inline mode ([#7125](https://github.com/bundler/bundler/pull/7125))
122
+ - Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/bundler/bundler/pull/6325))
123
+ - Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
124
+ - Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/bundler/bundler/pull/6928))
125
+ - Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/bundler/bundler/pull/7063))
126
+ - Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/bundler/bundler/pull/7143))
127
+ - Fix `bundle exec` not respecting custom process titles inside scripts ([#7140](https://github.com/bundler/bundler/pull/7140))
128
+ - Fix `bundle update` message about exclude groups saying "installed" instead of "updated" ([#7150](https://github.com/bundler/bundler/pull/7150))
129
+ - Fix `bundle licenses` not showing correct information about bundler itself ([#7147](https://github.com/bundler/bundler/pull/7147))
130
+ - Fix installation path not including ruby scope when `BUNDLE_PATH` was set ([#7163](https://github.com/bundler/bundler/pull/7163))
131
+ - Fix `bundle clean` incorrectly removing git depedencies present in the Gemfile when rubygems 3.0+ was used and path involved a symlink ([#7211](https://github.com/bundler/bundler/pull/7211))
132
+ - Fix platform specific gems always being re-resolved when bundler was not running under that platform ([#7212](https://github.com/bundler/bundler/pull/7212))
133
+ - Fix `bundle package --all-platforms` causing `bundle install` to ignore `--with` and `--without` ([#6113](https://github.com/bundler/bundler/pull/6113))
134
+ - Fix `MissingRevision` git errors to include the specific `git` command that failed under the hood ([#7225](https://github.com/bundler/bundler/pull/7225))
135
+ - Fix using gemspec & `force_ruby_platform` on Windows ([#6809](https://github.com/bundler/bundler/pull/6809))
136
+ - Make bundler's binstub checks on bundler version consistent with rubygems `BundlerVersionFinder` ([#7259](https://github.com/bundler/bundler/pull/7259))
137
+ - Fix `bundle install` and `bundle update` generating different lockfiles when `path:` gems with relative paths starting with "./" were used ([#7264](https://github.com/bundler/bundler/pull/7264))
138
+ - Give a proper error when user tries to `bundle open` a default gem ([#7288](https://github.com/bundler/bundler/pull/7288))
139
+ - Fix `bundle doctor` command ([#7309](https://github.com/bundler/bundler/pull/7309))
140
+ - Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/bundler/bundler/pull/7302))
141
+
142
+ Documentation:
143
+
144
+ - Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/bundler/bundler/pull/7146)
145
+ - Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/bundler/bundler/pull/7229))
146
+ - Binstubs documentation has been improved ([#5889](https://github.com/bundler/bundler/pull/5889))
147
+ - Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/bundler/bundler/pull/7265))
148
+ - Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/bundler/bundler/pull/7242))
149
+
150
+ Internally, there's also been a bunch of improvements in our development
151
+ environment, test suite, policies, contributing docs, and a bunch of cleanups of
152
+ old compatibility code.
153
+
154
+ ## 2.0.2 (2019-06-13)
155
+
156
+ Changes:
157
+
158
+ - Fixes for Bundler integration with ruby-src ([#6941](https://github.com/bundler/bundler/pull/6941), [#6973](https://github.com/bundler/bundler/pull/6973), [#6977](https://github.com/bundler/bundler/pull/6977), [#6315](https://github.com/bundler/bundler/pull/6315), [#7061](https://github.com/bundler/bundler/pull/7061))
159
+ - Use `__dir__` instead of `__FILE__` when generating a gem with `bundle gem` ([#6503](https://github.com/bundler/bundler/pull/6503))
160
+ - Use `https` on externals links in the Bundler gemspec ([#6721](https://github.com/bundler/bundler/pull/6721))
161
+ - Removed duplicate gem names from the suggested `did you mean` list for gem typos ([#6739](https://github.com/bundler/bundler/pull/6739))
162
+ - Removed Ruby 1.x compatibility code ([#6764](https://github.com/bundler/bundler/pull/6764), [#6806](https://github.com/bundler/bundler/pull/6806))
163
+ - Fixed an issue where `bundle remove` would crash with certain Gemfiles ([#6768](https://github.com/bundler/bundler/pull/6769))
164
+ - Fixed indentation in the Bundler executable template ([#6773](https://github.com/bundler/bundler/pull/6773))
165
+ - Fixed an issue where plugins could register for the same Bundler hook multiple times ([#6775](https://github.com/bundler/bundler/pull/6775))
166
+ - Changed the "multiple sources" message in `bundle install` to be a warning instead of an error ([#6790](https://github.com/bundler/bundler/pull/6790))
167
+ - Fixed a bug where path gems would break when using `only_update_to_newer_versions` ([#6774](https://github.com/bundler/bundler/pull/6774))
168
+ - Fixed a bug where installing plugins with the `--deployment` setting would fail ([#6805](https://github.com/bundler/bundler/pull/6805))
169
+ - Fixed an issue where `bundle update` couldn't update & install a gem when `no_install` was set (a `bundle package` config) ([#7078](https://github.com/bundler/bundler/pull/7078))
170
+ - Fixed an issue where users could not run `bundle exec` on default gems ([#6963](https://github.com/bundler/bundler/pull/6963))
171
+ - Updated vendor libraries to their latest version ([#7076](https://github.com/bundler/bundler/pull/7067), [#7068](https://github.com/bundler/bundler/pull/7068))
172
+ - Fixed an issue where the `github` source was not using `https` by default that we mentioned in the 2.0 release ([#7182](https://github.com/bundler/bundler/pull/7182))
173
+ - Fixed an issue where `rake release` was not outputting the message to users asking for a 2fa token ([#7199](https://github.com/bundler/bundler/pull/7199))
174
+
175
+ Documentation:
176
+
177
+ - Fix incorrect documented `BUNDLE_PATH_RELATIVE_TO_CWD` env var ([#6751](https://github.com/bundler/bundler/pull/6751))
178
+ - Update URLs in Bundler's documentation to use `https` ([#6935](https://github.com/bundler/bundler/pull/6935))
179
+
180
+ ## 2.0.1 (2019-01-04)
181
+
182
+ Changes:
183
+
184
+ - Relaxed RubyGems requirement to `>= 2.5.0` ([#6867](https://github.com/bundler/bundler/pull/6867))
185
+
186
+ ## 2.0.0 (2019-01-03)
187
+
188
+ No new changes
189
+
190
+ ## 2.0.0.pre.3 (2018-12-30)
191
+
192
+ Breaking Changes:
193
+
194
+ - Bundler 2 now requires RubyGems 3.0.0 at minimum
195
+
196
+ Changes:
197
+
198
+ - Ruby 2.6 compatibility fixes (@segiddins)
199
+ - Import changes from Bundler 1.17.3 release
200
+
201
+ Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
202
+
203
+ ## 2.0.0.pre.2 (2018-11-27)
204
+
205
+ Breaking Changes:
206
+
207
+ - `:github` source in the Gemfile now defaults to using HTTPS
208
+
209
+ Changes
210
+
211
+ - Add compatibility for Bundler merge into ruby-src
212
+
213
+ Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
214
+
215
+ ## 2.0.0.pre.1 (2018-11-09)
216
+
217
+ Breaking Changes:
218
+
219
+ - Dropped support for versions of Ruby under 2.3
220
+ - Dropped support for version of RubyGems under 2.5
221
+ - Moved error messages from STDOUT to STDERR
222
+
223
+ Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update --bundler`
224
+
1
225
  ## 1.17.3 (2018-12-27)
2
226
 
3
227
  Bugfixes:
@@ -68,14 +292,14 @@ The following new features are available but are not enabled by default. These a
68
292
  Changes:
69
293
 
70
294
  - Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/bundler/bundler/issues/6341), @agrim123)
71
- - Add Homepage, Source Code and Chanagelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
295
+ - Add Homepage, Source Code and Changelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
72
296
 
73
297
  Bugfixes:
74
298
 
75
299
  - Fix issue where updating a gem resulted in the gem's version being downgraded when `BUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS` was set ([#6529](https://github.com/bundler/bundler/issues/6529), @theflow)
76
300
  - Fix some rescue calls that don't specifiy error type (@utilum)
77
301
  - Fix an issue when the Lockfile would contain platform-specific gems that it didn't need ([#6491](https://github.com/bundler/bundler/issues/6491), @segiddins)
78
- - Improve handlding of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123)
302
+ - Improve handling of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123)
79
303
  - Refactor check for OpenSSL in `bundle env` (@voxik)
80
304
  - Remove an unnecessary assignment in Metadata (@voxik)
81
305
 
@@ -201,7 +425,7 @@ Bugfixes:
201
425
  - avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
202
426
  - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
203
427
  - include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
204
- - ensure locally installed specs are not overriden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
428
+ - ensure locally installed specs are not overridden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
205
429
  - ensure custom gemfiles are respected in generated binstubs (@pftg)
206
430
  - fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/bundler/bundler/issues/6149), @hsbt)
207
431
  - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)
@@ -228,10 +452,10 @@ Features:
228
452
 
229
453
  Bugfixes:
230
454
 
231
- - fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
455
+ - fix a bug where installing on FreeBSD would accidentally raise an error ([#6013](https://github.com/bundler/bundler/issues/6013), @olleolleolle)
232
456
  - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
233
457
  - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
234
- - the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)
458
+ - the outdated bundler version message is disabled by default until the message has been fine-tuned ([#6004](https://github.com/bundler/bundler/issues/6004), @segiddins)
235
459
 
236
460
  ## 1.16.0.pre.2 (2017-09-06)
237
461
 
@@ -245,51 +469,51 @@ Bugfixes:
245
469
 
246
470
  Features:
247
471
 
248
- - allow using non-branch symbolic refs in a git source (#4845, @segiddins)
249
- - allow absolute paths in the `cache path` setting (#5627, @mal)
472
+ - allow using non-branch symbolic refs in a git source ([#4845](https://github.com/bundler/bundler/issues/4845), @segiddins)
473
+ - allow absolute paths in the `cache path` setting ([#5627](https://github.com/bundler/bundler/issues/5627), @mal)
250
474
  - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
251
- - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
475
+ - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match ([#5616](https://github.com/bundler/bundler/issues/5616), @segiddins)
252
476
  - allow passing gem names to `bundle pristine` (@segiddins)
253
- - `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
254
- - add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
255
- - gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
477
+ - `bundle version` and `bundle env` include the commit and build date for the bundler gem ([#5049](https://github.com/bundler/bundler/issues/5049), @segiddins)
478
+ - add the `--shebang` option to `bundle binstubs` ([#4070](https://github.com/bundler/bundler/issues/4070), @segiddins, @Zorbash)
479
+ - gemfiles are `eval`ed one fewer time when running `bundle install` ([#4952](https://github.com/bundler/bundler/issues/4952), [#3096](https://github.com/bundler/bundler/issues/3096), [#4417](https://github.com/bundler/bundler/issues/4417), @segiddins)
256
480
  - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
257
- - speed up no-op installations (#5842, @segiddins)
481
+ - speed up no-op installations ([#5842](https://github.com/bundler/bundler/issues/5842), @segiddins)
258
482
  - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
259
- - add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
483
+ - add a special bundler binstub that ensures the correct version of bundler is activated ([#5876](https://github.com/bundler/bundler/issues/5876), @segiddins)
260
484
  - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
261
- - add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
485
+ - add a `bundle list` command that prints the gems in use ([#4754](https://github.com/bundler/bundler/issues/4754), @colby-swandale)
262
486
  - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
263
487
  - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
264
488
 
265
489
  Bugfixes:
266
490
 
267
- - allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
491
+ - allow configuring a mirror fallback timeout without a trailing slash ([#4830](https://github.com/bundler/bundler/issues/4830), @segiddins)
268
492
  - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
269
493
  - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
270
- - ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
494
+ - ensure `Bundler.original_env` preserves all env keys that bundler sets ([#5700](https://github.com/bundler/bundler/issues/5700), @segiddins)
271
495
  - ensure `bundle pristine` removes files added to a git gem (@segiddins)
272
- - load plugin files from path gems before gem installation (#5429, @segiddins)
273
- - ensure gems containing manpages are properly set up (#5730, @segiddins)
496
+ - load plugin files from path gems before gem installation ([#5429](https://github.com/bundler/bundler/issues/5429), @segiddins)
497
+ - ensure gems containing manpages are properly set up ([#5730](https://github.com/bundler/bundler/issues/5730), @segiddins)
274
498
  - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
275
- - allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
276
- - show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
277
- - add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
499
+ - allow `BUNDLE_GEMFILE` to be a relative path ([#5712](https://github.com/bundler/bundler/issues/5712), @gxespino)
500
+ - show a more helpful error message when a gem fails to install due to a corrupted lockfile ([#5846](https://github.com/bundler/bundler/issues/5846), @segiddins)
501
+ - add a process lock to allow multiple concurrent `bundle install`s ([#5851](https://github.com/bundler/bundler/issues/5851), @stefansedich)
278
502
  - ensure that specifications always return an array for `#extensions` (@greysteil)
279
503
  - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
280
504
  - ensure that all gemfiles are included in `bundle env` (@segiddins)
281
505
  - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
282
- - avoid global namespace pollution when loading gems (#5958, @shyouhei)
506
+ - avoid global namespace pollution when loading gems ([#5958](https://github.com/bundler/bundler/issues/5958), @shyouhei)
283
507
  - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
284
508
  - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
285
- - fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
509
+ - fix support for bundle paths that include jars or wars on jruby ([#5975](https://github.com/bundler/bundler/issues/5975), @torcido)
286
510
 
287
511
  ## 1.15.4 (2017-08-19)
288
512
 
289
513
  Bugfixes:
290
514
 
291
515
  - handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
292
- - bundler will fail gracefully when the bundle path contains the system path separator (#5485, ajwann)
516
+ - bundler will fail gracefully when the bundle path contains the system path separator ([#5485](https://github.com/bundler/bundler/issues/5485), ajwann)
293
517
  - failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
294
518
  - `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
295
519
 
@@ -297,7 +521,7 @@ Bugfixes:
297
521
 
298
522
  Bugfixes:
299
523
 
300
- - ensure that empty strings passed to `bundle config` are serialized & parsed properly (#5881, @segiddins)
524
+ - ensure that empty strings passed to `bundle config` are serialized & parsed properly ([#5881](https://github.com/bundler/bundler/issues/5881), @segiddins)
301
525
  - avoid printing an outdated version warning when running a parseable command (@segiddins)
302
526
 
303
527
  ## 1.15.2 (2017-07-17)
@@ -308,24 +532,24 @@ Features:
308
532
 
309
533
  Bugfixes:
310
534
 
311
- - inline gemfiles work when `BUNDLE_BIN` is set (#5847, @segiddins)
312
- - avoid using the old dependency API when there are no changes to the compact index files (#5373, @greysteil)
313
- - fail gracefully when the full index serves gemspecs with invalid dependencies (#5797, @segiddins)
535
+ - inline gemfiles work when `BUNDLE_BIN` is set ([#5847](https://github.com/bundler/bundler/issues/5847), @segiddins)
536
+ - avoid using the old dependency API when there are no changes to the compact index files ([#5373](https://github.com/bundler/bundler/issues/5373), @greysteil)
537
+ - fail gracefully when the full index serves gemspecs with invalid dependencies ([#5797](https://github.com/bundler/bundler/issues/5797), @segiddins)
314
538
  - support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
315
539
  - `bundle config` will print settings as the type they are interpreted as (@segiddins)
316
- - respect the `no_proxy` environment variable when making network requests (#5781, @jakauppila)
540
+ - respect the `no_proxy` environment variable when making network requests ([#5781](https://github.com/bundler/bundler/issues/5781), @jakauppila)
317
541
  - commands invoked with `--verbose` will not have default flags printed (@segiddins)
318
- - allow `bundle viz` to work when another gem has a requirable `grapviz` file (#5707, @segiddins)
319
- - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order (#5696, @segiddins)
542
+ - allow `bundle viz` to work when another gem has a requirable `grapviz` file ([#5707](https://github.com/bundler/bundler/issues/5707), @segiddins)
543
+ - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order ([#5696](https://github.com/bundler/bundler/issues/5696), @segiddins)
320
544
 
321
545
  ## 1.15.1 (2017-06-02)
322
546
 
323
547
  Bugfixes:
324
548
 
325
- - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
549
+ - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile ([#5693](https://github.com/bundler/bundler/issues/5693), @segiddins)
326
550
  - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
327
- - `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
328
- - `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)
551
+ - `bundle install --force` works when the gemfile contains git gems ([#5678](https://github.com/bundler/bundler/issues/5678), @segiddins)
552
+ - `bundle env` will print well-formed markdown when there are no settings ([#5677](https://github.com/bundler/bundler/issues/5677), @segiddins)
329
553
 
330
554
  ## 1.15.0 (2017-05-19)
331
555
 
@@ -336,7 +560,7 @@ This space intentionally left blank.
336
560
  Bugfixes:
337
561
 
338
562
  - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
339
- - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
563
+ - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it ([#5592](https://github.com/bundler/bundler/issues/5592), @jules2689)
340
564
 
341
565
  ## 1.15.0.pre.3 (2017-04-30)
342
566
 
@@ -346,32 +570,32 @@ Bugfixes:
346
570
  - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
347
571
  - print a helpful error message when an activated default gem conflicts with
348
572
  a gem in the gemfile (@segiddins)
349
- - only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)
573
+ - only shorten `ref` option for git gems when it is a SHA ([#5620](https://github.com/bundler/bundler/issues/5620), @segiddins)
350
574
 
351
575
  ## 1.15.0.pre.2 (2017-04-23)
352
576
 
353
577
  Bugfixes:
354
578
 
355
- - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
356
- - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
357
- - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)
579
+ - ensure pre-existing fit caches are updated from remote sources ([#5423](https://github.com/bundler/bundler/issues/5423), @alextaylor000)
580
+ - avoid duplicating specs in the lockfile after updating with the gem uninstalled ([#5599](https://github.com/bundler/bundler/issues/5599), @segiddins)
581
+ - ensure git gems have their extensions available at runtime ([#5594](https://github.com/bundler/bundler/issues/5594), @jules2689, @segiddins)
358
582
 
359
583
  ## 1.15.0.pre.1 (2017-04-16)
360
584
 
361
585
  Features:
362
586
 
363
- - print a notification when a newer version of bundler is available (#4683, @segiddins)
364
- - add man pages for all bundler commands (#4988, @feministy)
587
+ - print a notification when a newer version of bundler is available ([#4683](https://github.com/bundler/bundler/issues/4683), @segiddins)
588
+ - add man pages for all bundler commands ([#4988](https://github.com/bundler/bundler/issues/4988), @feministy)
365
589
  - add the `bundle info` command (@fredrb, @colby-swandale)
366
590
  - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
367
- - if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
591
+ - if installing a gem fails, print out the reason the gem needed to be installed ([#5078](https://github.com/bundler/bundler/issues/5078), @segiddins)
368
592
  - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
369
- - print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
593
+ - print gem versions that are regressing during `bundle update` in yellow ([#5506](https://github.com/bundler/bundler/issues/5506), @brchristian)
370
594
  - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
371
- - add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
372
- - add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
595
+ - add the `bundle issue` command that prints instructions for reporting issues ([#4871](https://github.com/bundler/bundler/issues/4871), @jonathanpike)
596
+ - add `--source` and `--group` options to the `bundle inject` command ([#5452](https://github.com/bundler/bundler/issues/5452), @Shekharrajak)
373
597
  - add the `bundle add` command to add a gem to the gemfile (@denniss)
374
- - add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
598
+ - add the `bundle pristine` command to re-install gems from cached `.gem` files ([#4509](https://github.com/bundler/bundler/issues/4509), @denniss)
375
599
  - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
376
600
 
377
601
  Performance:
@@ -385,95 +609,95 @@ Performance:
385
609
 
386
610
  Bugfixes:
387
611
 
388
- - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
612
+ - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems ([#5031](https://github.com/bundler/bundler/issues/5031), [#5095](https://github.com/bundler/bundler/issues/5095), @segiddins)
389
613
  - print out a stack trace after an interrupt when running in debug mode (@segiddins)
390
614
  - print out when bundler starts fetching a gem from a remote server (@segiddins)
391
- - fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
392
- - suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
393
- - ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
615
+ - fix `bundle gem` failing when `git` is unavailable ([#5458](https://github.com/bundler/bundler/issues/5458), @Shekharrajak, @colby-swandale)
616
+ - suggest the appropriate command to unfreeze a bundle ([#5009](https://github.com/bundler/bundler/issues/5009), @denniss)
617
+ - ensure nested calls to `bundle exec` resolve default gems correctly ([#5500](https://github.com/bundler/bundler/issues/5500), @segiddins)
394
618
  - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
395
- - ensure `socket` is required before being referenced (#5533, @rafaelfranca)
396
- - allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
397
- - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
398
- - print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
619
+ - ensure `socket` is required before being referenced ([#5533](https://github.com/bundler/bundler/issues/5533), @rafaelfranca)
620
+ - allow running `bundle outdated` when gems aren't installed locally ([#5553](https://github.com/bundler/bundler/issues/5553), @segiddins)
621
+ - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle ([#5487](https://github.com/bundler/bundler/issues/5487), @segiddins)
622
+ - print an error message when a non-git gem is given a `branch` option ([#5530](https://github.com/bundler/bundler/issues/5530), @colby-swandale)
399
623
  - allow interrupts to exit the process after gems have been installed (@segiddins)
400
- - print the underlying error when downloading gem metadata fails (#5579, @segiddins)
401
- - avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)
624
+ - print the underlying error when downloading gem metadata fails ([#5579](https://github.com/bundler/bundler/issues/5579), @segiddins)
625
+ - avoid deadlocking when installing with a lockfile that is missing dependencies ([#5378](https://github.com/bundler/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)
402
626
 
403
627
  ## 1.14.6 (2017-03-03)
404
628
 
405
629
  Bugfixes:
406
630
 
407
- - avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
631
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception ([#5409](https://github.com/bundler/bundler/issues/5409), @segiddins)
408
632
  - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
409
- - fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
410
- - ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
411
- - fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
633
+ - fail gracefully when the compact index does not send an ETag ([#5463](https://github.com/bundler/bundler/issues/5463), @olleolleolle)
634
+ - ensure `bundle outdated --local` shows all outdated gems ([#5430](https://github.com/bundler/bundler/issues/5430), @denniss)
635
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts ([#5425](https://github.com/bundler/bundler/issues/5425), @segiddins)
412
636
 
413
637
  ## 1.14.5 (2017-02-22)
414
638
 
415
639
  Bugfixes:
416
640
 
417
641
  - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
418
- - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
419
- - enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
420
- - use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
642
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements ([#5444](https://github.com/bundler/bundler/issues/5444), [#5457](https://github.com/bundler/bundler/issues/5457), @segiddins)
643
+ - enable compact index when OpenSSL FIPS mode is enabled but not active ([#5433](https://github.com/bundler/bundler/issues/5433), @wjordan)
644
+ - use github username instead of git name for the github url in `bundle gem` ([#5438](https://github.com/bundler/bundler/issues/5438), @danielpclark)
421
645
  - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
422
646
  - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
423
- - handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
424
- - allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
425
- - avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
426
- - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
647
+ - handle when a platform-specific gem has more dependencies than the ruby platform version ([#5339](https://github.com/bundler/bundler/issues/5339), [#5426](https://github.com/bundler/bundler/issues/5426), @segiddins)
648
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable ([#5371](https://github.com/bundler/bundler/issues/5371), @segiddins)
649
+ - avoid gem version conflicts on openssl using Ruby 2.5 ([#5235](https://github.com/bundler/bundler/issues/5235), @rhenium)
650
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated ([#5264](https://github.com/bundler/bundler/issues/5264), @segiddins)
427
651
 
428
652
  ## 1.14.4 (2017-02-12)
429
653
 
430
654
  Bugfixes:
431
655
 
432
- - fail gracefully when attempting to overwrite an existing directory with `bundle gem` (#5358, @nodo)
433
- - fix a resolver bug that would cause bundler to report conflicts that it could resolve (#5359, #5362, @segiddins)
434
- - set native extension build arguments for git gems (#5401, @segiddins)
656
+ - fail gracefully when attempting to overwrite an existing directory with `bundle gem` ([#5358](https://github.com/bundler/bundler/issues/5358), @nodo)
657
+ - fix a resolver bug that would cause bundler to report conflicts that it could resolve ([#5359](https://github.com/bundler/bundler/issues/5359), [#5362](https://github.com/bundler/bundler/issues/5362), @segiddins)
658
+ - set native extension build arguments for git gems ([#5401](https://github.com/bundler/bundler/issues/5401), @segiddins)
435
659
  - fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
436
- - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing (#5380, @segiddins)
437
- - show `bundle inject` usage when too many arguments are passed (#5384, @Shekharrajak)
438
- - stop `bundle show --outdated` from implicitly running `bundle update` (#5375, @colby-swandale)
660
+ - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing ([#5380](https://github.com/bundler/bundler/issues/5380), @segiddins)
661
+ - show `bundle inject` usage when too many arguments are passed ([#5384](https://github.com/bundler/bundler/issues/5384), @Shekharrajak)
662
+ - stop `bundle show --outdated` from implicitly running `bundle update` ([#5375](https://github.com/bundler/bundler/issues/5375), @colby-swandale)
439
663
  - allow the temporary home directory fallback to work for multiple users (@svoop)
440
664
 
441
665
  ## 1.14.3 (2017-01-24)
442
666
 
443
667
  Bugfixes:
444
668
 
445
- - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
446
- - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)
669
+ - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms ([#5349](https://github.com/bundler/bundler/issues/5349), [#5356](https://github.com/bundler/bundler/issues/5356), @segiddins)
670
+ - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies ([#5349](https://github.com/bundler/bundler/issues/5349), @segiddins)
447
671
 
448
672
  ## 1.14.2 (2017-01-22)
449
673
 
450
674
  Bugfixes:
451
675
 
452
- - fix using `force_ruby_platform` on windows (#5344, @segiddins)
453
- - fix an incorrect version conflict error when using `gemspec` on multiple platforms (#5340, @segiddins)
676
+ - fix using `force_ruby_platform` on windows ([#5344](https://github.com/bundler/bundler/issues/5344), @segiddins)
677
+ - fix an incorrect version conflict error when using `gemspec` on multiple platforms ([#5340](https://github.com/bundler/bundler/issues/5340), @segiddins)
454
678
 
455
679
  ## 1.14.1 (2017-01-21)
456
680
 
457
681
  Bugfixes:
458
682
 
459
- - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
683
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation ([#5342](https://github.com/bundler/bundler/issues/5342), @segiddins)
460
684
 
461
685
  ## 1.14.0 (2017-01-20)
462
686
 
463
687
  Bugfixes:
464
688
 
465
689
  - ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
466
- (#5238, @segiddins)
467
- - fix `bundler/inline` when `BUNDLE_GEMFILE=""` (#5079, @segiddins)
690
+ ([#5238](https://github.com/bundler/bundler/issues/5238), @segiddins)
691
+ - fix `bundler/inline` when `BUNDLE_GEMFILE=""` ([#5079](https://github.com/bundler/bundler/issues/5079), @segiddins)
468
692
 
469
693
  ## 1.14.0.pre.2 (2017-01-11)
470
694
 
471
695
  Bugfixes:
472
696
 
473
- - allow not selecting a gem when running `bundle open` (#5301, @segiddins)
474
- - support installing gems from git branches that contain shell metacharacters (#5295, @segiddins)
475
- - fix a resolver error that could leave dependencies unresolved (#5294, @segiddins)
476
- - fix a stack overflow error when invoking commands (#5296, @segiddins)
697
+ - allow not selecting a gem when running `bundle open` ([#5301](https://github.com/bundler/bundler/issues/5301), @segiddins)
698
+ - support installing gems from git branches that contain shell metacharacters ([#5295](https://github.com/bundler/bundler/issues/5295), @segiddins)
699
+ - fix a resolver error that could leave dependencies unresolved ([#5294](https://github.com/bundler/bundler/issues/5294), @segiddins)
700
+ - fix a stack overflow error when invoking commands ([#5296](https://github.com/bundler/bundler/issues/5296), @segiddins)
477
701
 
478
702
  ## 1.14.0.pre.1 (2016-12-29)
479
703
 
@@ -481,17 +705,17 @@ Features:
481
705
 
482
706
  - `bundle doctor` first runs `bundle check` (@segiddins)
483
707
  - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
484
- - gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
708
+ - gem checksums returned by rubygems.org are validated when installing gems ([#4464](https://github.com/bundler/bundler/issues/4464), @segiddins)
485
709
  - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
486
710
  - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
487
- - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
488
- - always prompt the user for a password when using `sudo` (#3006, @segiddins)
489
- - support running without a home directory (#4778, @segiddins)
711
+ - 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/bundler/bundler/issues/4295), [#4896](https://github.com/bundler/bundler/issues/4896), @segiddins)
712
+ - always prompt the user for a password when using `sudo` ([#3006](https://github.com/bundler/bundler/issues/3006), @segiddins)
713
+ - support running without a home directory ([#4778](https://github.com/bundler/bundler/issues/4778), @segiddins)
490
714
  - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
491
- - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
492
- - add conservative update options to `bundle lock` (#4912, @chrismo)
715
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms ([#4813](https://github.com/bundler/bundler/issues/4813), @segiddins)
716
+ - add conservative update options to `bundle lock` ([#4912](https://github.com/bundler/bundler/issues/4912), @chrismo)
493
717
  - improve `bundle outdated` output to group gems by group (@ryanfox1985)
494
- - add conservative update options to `bundle update` (#5065, #5076, @chrismo)
718
+ - add conservative update options to `bundle update` ([#5065](https://github.com/bundler/bundler/issues/5065), [#5076](https://github.com/bundler/bundler/issues/5076), @chrismo)
495
719
  - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
496
720
  - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
497
721
  - add support for the `ruby_25` gemfile filter (@amatsuda)
@@ -504,31 +728,31 @@ Performance:
504
728
 
505
729
  Bugfixes:
506
730
 
507
- - config files with CRLF line endings can be read (#4435, @segiddins)
508
- - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
731
+ - config files with CRLF line endings can be read ([#4435](https://github.com/bundler/bundler/issues/4435), @segiddins)
732
+ - `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/bundler/bundler/issues/4896), @segiddins)
509
733
  - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
510
- - fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
511
- - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
512
- - `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
734
+ - fail gracefully when attempting to use a source with an unknown URI scheme ([#4953](https://github.com/bundler/bundler/issues/4953), @segiddins)
735
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` ([#4966](https://github.com/bundler/bundler/issues/4966), @segiddins)
736
+ - `bundle lock` will not update without the `--update` flag ([#4957](https://github.com/bundler/bundler/issues/4957), @segiddins)
513
737
  - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
514
738
  - print friendly filesystem access errors in the new index (@segiddins)
515
- - print a helpful error when running out of memory on jruby (#4673, @segiddins)
516
- - load all rubygems plugins when installing gems (#2824, @segiddins)
517
- - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
518
- - local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
739
+ - print a helpful error when running out of memory on jruby ([#4673](https://github.com/bundler/bundler/issues/4673), @segiddins)
740
+ - load all rubygems plugins when installing gems ([#2824](https://github.com/bundler/bundler/issues/2824), @segiddins)
741
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set ([#5027](https://github.com/bundler/bundler/issues/5027), @hmistry)
742
+ - local installs no longer print "this gem may have been yanked" ([#5022](https://github.com/bundler/bundler/issues/5022), @hmistry)
519
743
  - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
520
- - print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
521
- - ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
522
- - fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
523
- - allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
524
- - ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
744
+ - print a warning when attempting to `bundle exec` an empty program ([#5084](https://github.com/bundler/bundler/issues/5084), @bronzdoc)
745
+ - ensure `bundle outdated` lists all outdated gems ([#4979](https://github.com/bundler/bundler/issues/4979), @chrismo)
746
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name ([#5185](https://github.com/bundler/bundler/issues/5185), @segiddins)
747
+ - allow `bundler/inline` to work in a directory that contains a gemfile ([#5117](https://github.com/bundler/bundler/issues/5117), @colby-swandale)
748
+ - ensure that the new index is thread-safe, allowing installation on rbx ([#5142](https://github.com/bundler/bundler/issues/5142), @segiddins)
525
749
  - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
526
- - fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
527
- - fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
528
- - fix `bundle lock --add-platform ruby` (#5230, @segiddins)
750
+ - fail gracefully when any system error is encountered when touching the filesystem ([#5134](https://github.com/bundler/bundler/issues/5134), @segiddins)
751
+ - fix compatibility with a machine running with FIPS mode enabled ([#4989](https://github.com/bundler/bundler/issues/4989), @segiddins)
752
+ - fix `bundle lock --add-platform ruby` ([#5230](https://github.com/bundler/bundler/issues/5230), @segiddins)
529
753
  - print gem post-install messages when running `bundle update` (@smathy)
530
754
  - ensure errors due to a retries are all separated by a newline (@segiddins)
531
- - print out the bundle path in gem not found errors (#4854, @diegosteiner)
755
+ - print out the bundle path in gem not found errors ([#4854](https://github.com/bundler/bundler/issues/4854), @diegosteiner)
532
756
  - fail gracefully when creating threads fails (@segiddins)
533
757
  - avoid downloading metadata for gems that are only development dependencies (@Paxa)
534
758
 
@@ -536,28 +760,28 @@ Bugfixes:
536
760
 
537
761
  Features:
538
762
 
539
- - add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
763
+ - add support for the `ruby_24` gemfile filter ([#5281](https://github.com/bundler/bundler/issues/5281), @amatsuda)
540
764
 
541
765
  ## 1.13.6 (2016-10-22)
542
766
 
543
767
  Bugfixes:
544
768
 
545
- - make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins)
769
+ - make the `gem` method public again, fixing a regression in 1.13.4 ([#5102](https://github.com/bundler/bundler/issues/5102), @segiddins)
546
770
 
547
771
  ## 1.13.5 (2016-10-15)
548
772
 
549
773
  Bugfixes:
550
774
 
551
- - Ensure a locked pre-release spec can always be re-resolved (#5089, @segiddins)
775
+ - Ensure a locked pre-release spec can always be re-resolved ([#5089](https://github.com/bundler/bundler/issues/5089), @segiddins)
552
776
 
553
777
  ## 1.13.4 (2016-10-11)
554
778
 
555
779
  Bugfixes:
556
780
 
557
- - stop printing warning when compact index versions file is rewritten (#5064, @indirect)
558
- - fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
559
- - fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
560
- - make `update` options for major, minor, and patch updates consistent (#4934, @chrismo)
781
+ - stop printing warning when compact index versions file is rewritten ([#5064](https://github.com/bundler/bundler/issues/5064), @indirect)
782
+ - fix `parent directory is world writable but not sticky` error on install ([#5043](https://github.com/bundler/bundler/issues/5043), @indirect)
783
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error ([#5010](https://github.com/bundler/bundler/issues/5010), @hsbt, @aycabta)
784
+ - make `update` options for major, minor, and patch updates consistent ([#4934](https://github.com/bundler/bundler/issues/4934), @chrismo)
561
785
 
562
786
  ## 1.13.3 (2016-10-10)
563
787
 
@@ -570,12 +794,12 @@ Bugfixes:
570
794
  Bugfixes:
571
795
 
572
796
  - allow `Settings` to be initialized without a root directory (@m1k3)
573
- - allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
797
+ - allow specifying ruby engines in the gemfile as a symbol ([#4919](https://github.com/bundler/bundler/issues/4919), @JuanitoFatas)
574
798
  - avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
575
- - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
576
- - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
799
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby ([#4975](https://github.com/bundler/bundler/issues/4975), @segiddins)
800
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile ([#5006](https://github.com/bundler/bundler/issues/5006), @segiddins)
577
801
  - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
578
- - fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
802
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) ([#4974](https://github.com/bundler/bundler/issues/4974), @chrismo)
579
803
 
580
804
  Performance:
581
805
 
@@ -585,8 +809,8 @@ Performance:
585
809
 
586
810
  Bugfixes:
587
811
 
588
- - ensure that `Gem::Source` is available, fixing several exceptions (#4944, @dekellum)
589
- - ensure that dependency resolution works when multiple gems have the same dependency (#4961, @segiddins)
812
+ - ensure that `Gem::Source` is available, fixing several exceptions ([#4944](https://github.com/bundler/bundler/issues/4944), @dekellum)
813
+ - ensure that dependency resolution works when multiple gems have the same dependency ([#4961](https://github.com/bundler/bundler/issues/4961), @segiddins)
590
814
 
591
815
  ## 1.13.0 (2016-09-05)
592
816
 
@@ -597,32 +821,32 @@ This space deliberately left blank.
597
821
  Features:
598
822
 
599
823
  - add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
600
- - add `doctor` command to help with issues like unlinked compiled gems (#4765, @mistydemeo)
601
- - rework the `update` command, providing fine-grained control via flags (#4676, @chrismo)
602
- - add URI to http response output in debug mode (#4808, @NickLaMuro)
603
- - add manpage for `binstubs` command (#4847, @Zorbash)
824
+ - add `doctor` command to help with issues like unlinked compiled gems ([#4765](https://github.com/bundler/bundler/issues/4765), @mistydemeo)
825
+ - rework the `update` command, providing fine-grained control via flags ([#4676](https://github.com/bundler/bundler/issues/4676), @chrismo)
826
+ - add URI to http response output in debug mode ([#4808](https://github.com/bundler/bundler/issues/4808), @NickLaMuro)
827
+ - add manpage for `binstubs` command ([#4847](https://github.com/bundler/bundler/issues/4847), @Zorbash)
604
828
  - support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
605
- - print gem installation errors after other install output (#4834, @segiddins)
606
- - add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
829
+ - print gem installation errors after other install output ([#4834](https://github.com/bundler/bundler/issues/4834), @segiddins)
830
+ - add `lock --remove-platform` flag to remove platforms from the lock ([#4877](https://github.com/bundler/bundler/issues/4877), @segiddins)
607
831
  - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
608
832
  - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
609
833
 
610
834
  Bugfixes:
611
835
 
612
- - retry gem downloads (#4846, @jkeiser)
613
- - improve the CompactIndex to handle capitalized legacy gems (#4867, @segiddins)
836
+ - retry gem downloads ([#4846](https://github.com/bundler/bundler/issues/4846), @jkeiser)
837
+ - improve the CompactIndex to handle capitalized legacy gems ([#4867](https://github.com/bundler/bundler/issues/4867), @segiddins)
614
838
  - re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
615
839
  - respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
616
- - allow `rake release` to sign git tags (#4743, @eagletmt)
840
+ - allow `rake release` to sign git tags ([#4743](https://github.com/bundler/bundler/issues/4743), @eagletmt)
617
841
  - set process titles when using `#load` during `exec` (@yob)
618
842
  - recognize JRuby shebangs for using `#load` during `exec` (@ojab)
619
- - handle world-writable home directories (#4726, @allenzhao)
620
- - support multi-platform gems via the `gemspec` Gemfile method (#4798, @segiddins)
843
+ - handle world-writable home directories ([#4726](https://github.com/bundler/bundler/issues/4726), @allenzhao)
844
+ - support multi-platform gems via the `gemspec` Gemfile method ([#4798](https://github.com/bundler/bundler/issues/4798), @segiddins)
621
845
  - print dots correctly for CompactIndex fetcher (@NickLaMuro)
622
846
  - set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
623
847
  - rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
624
- - show help only when `-h` or `--help` is passed to Bundler, not to `exec` (#4801, @segiddins)
625
- - handle symlinks to binstubs created by `--standalone` (#4782, @terinjokes)
848
+ - show help only when `-h` or `--help` is passed to Bundler, not to `exec` ([#4801](https://github.com/bundler/bundler/issues/4801), @segiddins)
849
+ - handle symlinks to binstubs created by `--standalone` ([#4782](https://github.com/bundler/bundler/issues/4782), @terinjokes)
626
850
 
627
851
  ## 1.13.0.rc.1 (2016-06-27)
628
852
 
@@ -633,9 +857,9 @@ Features:
633
857
 
634
858
  Bugfixes:
635
859
 
636
- - fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
637
- - fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
638
- - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
860
+ - fix support for running RubyGems 1.x on Ruby 2.3 ([#4698](https://github.com/bundler/bundler/issues/4698), @segiddins)
861
+ - fix bundle exec'ing to a ruby file when gems are installed into a path ([#4592](https://github.com/bundler/bundler/issues/4592), @chrismo)
862
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem ([#4705](https://github.com/bundler/bundler/issues/4705), @segiddins)
639
863
  - stop changing the load path to require the vendored postit when trampolining (@segiddins)
640
864
  - ensure relative paths are properly printed after completing an installation (@jenseng)
641
865
  - fix re-resolving when there are multiple unchanged path sources (@segiddins)
@@ -645,9 +869,9 @@ Bugfixes:
645
869
 
646
870
  Performance:
647
871
 
648
- - speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
872
+ - speed up gemfile resolution during `bundle install` by between 4x-100x ([#4376](https://github.com/bundler/bundler/issues/4376), @segiddins)
649
873
  - generally reduce object allocations when using bundler (@segiddins)
650
- - speed up bin generation for path gems with many files (#2846, @segiddins)
874
+ - speed up bin generation for path gems with many files ([#2846](https://github.com/bundler/bundler/issues/2846), @segiddins)
651
875
  - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
652
876
 
653
877
  Features:
@@ -655,14 +879,14 @@ Features:
655
879
  - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
656
880
  - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
657
881
  - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
658
- - support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
659
- - colorize updated gem versions (#4334, @bronzdoc)
660
- - add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
882
+ - support for RubyGems 2.6.4 ([#4368](https://github.com/bundler/bundler/issues/4368), @segiddins, @RochesterinNYC)
883
+ - colorize updated gem versions ([#4334](https://github.com/bundler/bundler/issues/4334), @bronzdoc)
884
+ - add the `--standalone` flag to `bundle binstubs` ([#4594](https://github.com/bundler/bundler/issues/4594), @b-ggs)
661
885
  - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
662
886
  - use a custom YAML serializer to make config file consistent (@segiddins)
663
- - filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
664
- - support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
665
- - fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
887
+ - filter credentials from error messages (bundler/bundler-features[#111](https://github.com/bundler/bundler/issues/111), @RochesterinNYC, @sandlerr)
888
+ - support relative paths used inside a nested invocation of `eval_gemfile` ([#4584](https://github.com/bundler/bundler/issues/4584), @RochesterinNYC)
889
+ - fail gracefully when attempting to install a yanked gem ([#4344](https://github.com/bundler/bundler/issues/4344), @allenzhao)
666
890
  - automatically install an inline gemfile when gems are missing locally (@segiddins)
667
891
  - allow conflicts for gems resolved via `gemspec` (@segiddins)
668
892
  - add `--add-platform` option to `bundle lock` (@segiddins)
@@ -670,18 +894,18 @@ Features:
670
894
 
671
895
  Bugfixes:
672
896
 
673
- - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
674
- - add support for quoted paths in `$PATH` (#4323, @segiddins)
675
- - check out missing git repos that are not being installed (#3981, @asutoshpalai)
897
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version ([#4595](https://github.com/bundler/bundler/issues/4595), [#4627](https://github.com/bundler/bundler/issues/4627), @segiddins)
898
+ - add support for quoted paths in `$PATH` ([#4323](https://github.com/bundler/bundler/issues/4323), @segiddins)
899
+ - check out missing git repos that are not being installed ([#3981](https://github.com/bundler/bundler/issues/3981), @asutoshpalai)
676
900
  - write `bundler/setup.rb` to a consistent path (@glennpratt)
677
901
  - open editor in `bundle open` with a clean environment (@sj26)
678
- - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
679
- - fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
680
- - fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
681
- - fix loading config files with very long values (#4370, @segiddins)
682
- - only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
683
- - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
684
- - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
902
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile ([#4392](https://github.com/bundler/bundler/issues/4392), [#4430](https://github.com/bundler/bundler/issues/4430), @RochesterinNYC)
903
+ - fail gracefully when encountering an `Errno::ENOTSUP` ([#4394](https://github.com/bundler/bundler/issues/4394), @segiddins)
904
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` ([#4642](https://github.com/bundler/bundler/issues/4642), @allenzhao)
905
+ - fix loading config files with very long values ([#4370](https://github.com/bundler/bundler/issues/4370), @segiddins)
906
+ - only show potential updates for gemfile platforms in `bundle outdated` ([#4450](https://github.com/bundler/bundler/issues/4450), @RochesterinNYC)
907
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems ([#2175](https://github.com/bundler/bundler/issues/2175), @allenzhao)
908
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs ([#4593](https://github.com/bundler/bundler/issues/4593), @chalkos)
685
909
 
686
910
  ## 1.12.6 (2016-10-10)
687
911
 
@@ -691,17 +915,17 @@ Bugfixes:
691
915
  ## 1.12.5 (2016-05-25)
692
916
 
693
917
  Bugfixes:
694
- - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
918
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` ([#4596](https://github.com/bundler/bundler/issues/4596), @segiddins)
695
919
  - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
696
- - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
920
+ - reduce the number of threads used simultaneously by bundler ([#4367](https://github.com/bundler/bundler/issues/4367), @will-in-wi)
697
921
 
698
922
  ## 1.12.4 (2016-05-16)
699
923
 
700
924
  Bugfixes:
701
- - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
702
- - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
703
- - fix installing built-in specs with `--standalone` (#4557, @segiddins)
704
- - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
925
+ - ensure concurrent use of the new index can't corrupt the cache ([#4519](https://github.com/bundler/bundler/issues/4519), @domcleal)
926
+ - allow missing rubygems credentials when pushing a gem with a custom host ([#4437](https://github.com/bundler/bundler/issues/4437), @Cohen-Carlisle)
927
+ - fix installing built-in specs with `--standalone` ([#4557](https://github.com/bundler/bundler/issues/4557), @segiddins)
928
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` ([#4385](https://github.com/bundler/bundler/issues/4385), @segiddins)
705
929
 
706
930
  ## 1.12.3 (2016-05-06)
707
931
 
@@ -712,16 +936,16 @@ Bugfixes:
712
936
  ## 1.12.2 (2016-05-04)
713
937
 
714
938
  Bugfixes:
715
- - fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
716
- - fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
939
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements ([#4520](https://github.com/bundler/bundler/issues/4520), @grzuy)
940
+ - fix `bundle exec foo --help` not showing the invoked command's help ([#4480](https://github.com/bundler/bundler/issues/4480), @b-ggs)
717
941
 
718
942
  ## 1.12.1 (2016-04-30)
719
943
 
720
944
  Bugfixes:
721
945
  - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
722
- - fix computation of new index file local checksums on Windows (#4472, @mwrock)
723
- - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
724
- - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
946
+ - fix computation of new index file local checksums on Windows ([#4472](https://github.com/bundler/bundler/issues/4472), @mwrock)
947
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, [#4484](https://github.com/bundler/bundler/issues/4484))
948
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, [#4482](https://github.com/bundler/bundler/issues/4482))
725
949
 
726
950
  ## 1.12.0 (2016-04-28)
727
951
 
@@ -731,7 +955,7 @@ This space intentionally left blank.
731
955
 
732
956
  Bugfixes:
733
957
 
734
- - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
958
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions ([#4438](https://github.com/bundler/bundler/issues/4438), @RochesterinNYC)
735
959
 
736
960
  ## 1.12.0.rc.3 (2016-04-19)
737
961
 
@@ -743,11 +967,11 @@ Bugfixes:
743
967
 
744
968
  Features:
745
969
 
746
- - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
970
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` ([#4396](https://github.com/bundler/bundler/issues/4396), @RochesterinNYC)
747
971
 
748
972
  Bugfixes:
749
973
 
750
- - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
974
+ - prevent endless recursive copy for `bundle package --all` ([#4392](https://github.com/bundler/bundler/issues/4392), @RochesterinNYC)
751
975
  - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
752
976
  - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
753
977
 
@@ -755,13 +979,13 @@ Bugfixes:
755
979
 
756
980
  Performance:
757
981
 
758
- - Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
982
+ - Download gem metadata from globally distributed CDN endpoints ([#4358](https://github.com/bundler/bundler/issues/4358), @segiddins)
759
983
 
760
984
  Bugfixes:
761
985
 
762
- - handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
763
- - support binstubs from RubyGems 2.6 (#4341, @segiddins)
764
- - handle quotes present in in PATH (#4326, @segiddins)
986
+ - handle Ruby pre-releases built from source ([#4324](https://github.com/bundler/bundler/issues/4324), @RochesterinNYC)
987
+ - support binstubs from RubyGems 2.6 ([#4341](https://github.com/bundler/bundler/issues/4341), @segiddins)
988
+ - handle quotes present in in PATH ([#4326](https://github.com/bundler/bundler/issues/4326), @segiddins)
765
989
 
766
990
  ## 1.12.0.pre.2 (2016-02-26)
767
991
 
@@ -772,80 +996,80 @@ Performance:
772
996
  Features:
773
997
 
774
998
  - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
775
- - add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
776
- - add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
999
+ - add `Bundler.clean_env` and `Bundler.original_env` ([#4232](https://github.com/bundler/bundler/issues/4232), @njam)
1000
+ - add `--frozen` support to `bundle package` ([#3356](https://github.com/bundler/bundler/issues/3356), @RochesterinNYC)
777
1001
 
778
1002
  Bugfixes:
779
1003
 
780
1004
  - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
781
- - give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
1005
+ - give a better error message when filesystem access raises an `EPROTO` error ([#3581](https://github.com/bundler/bundler/issues/3581), [#3932](https://github.com/bundler/bundler/issues/3932), [#4163](https://github.com/bundler/bundler/issues/4163), @RochesterinNYC)
782
1006
  - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
783
- - fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
784
- - give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
785
- - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
786
- - give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
1007
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins, @njam)
1008
+ - give a better error message when running `bundle outdated` in frozen mode ([#4287](https://github.com/bundler/bundler/issues/4287), @RochesterinNYC)
1009
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration ([#4294](https://github.com/bundler/bundler/issues/4294), @segiddins)
1010
+ - give a better error message when authentication details aren't properly escaped ([#4288](https://github.com/bundler/bundler/issues/4288), @RochesterinNYC)
787
1011
  - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
788
- - fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
789
- - give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
790
- - skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
791
- - fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
1012
+ - fix extra dependencies being resolved unnecessarily ([#4276](https://github.com/bundler/bundler/issues/4276), @segiddins)
1013
+ - give a better error message when missing specs due to platform mis-matches ([#4259](https://github.com/bundler/bundler/issues/4259), @RochesterinNYC)
1014
+ - skip rebuilding extensions for git gems if they are already built ([#4082](https://github.com/bundler/bundler/issues/4082), @csfrancis, @indirect, @segiddins)
1015
+ - fix `bundle install` not installing when the `no_install` setting is set ([#3966](https://github.com/bundler/bundler/issues/3966), @chulkilee, @segiddins)
792
1016
 
793
1017
  ## 1.12.0.pre.1 (2016-02-09)
794
1018
 
795
1019
  Performance:
796
1020
 
797
1021
  - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
798
- - speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
1022
+ - speed up `bundle exec` by avoiding loading the gemfile twice ([#2951](https://github.com/bundler/bundler/issues/2951), [#2952](https://github.com/bundler/bundler/issues/2952), @segiddins)
799
1023
 
800
1024
  Features:
801
1025
 
802
1026
  - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
803
1027
  - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
804
- - support probing a mirror with a fallback timeout (#4128, @pcarranza)
1028
+ - support probing a mirror with a fallback timeout ([#4128](https://github.com/bundler/bundler/issues/4128), @pcarranza)
805
1029
  - add `--full-index` option to `bundle lock` (@segiddins)
806
1030
  - support running with frozen string literals (@deepj, @segiddins)
807
- - add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
1031
+ - add `--major` and `--minor` options to `bundle outdated` ([#3805](https://github.com/bundler/bundler/issues/3805), @cirdes)
808
1032
  - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
809
- - add support for ruby 2.4 (#4266, @segiddins)
1033
+ - add support for ruby 2.4 ([#4266](https://github.com/bundler/bundler/issues/4266), @segiddins)
810
1034
  - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
811
1035
 
812
1036
  Bugfixes:
813
1037
 
814
- - fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
815
- - fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
816
- - give a better error message when a given git commit can't be found (#4140, @doy)
817
- - give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
1038
+ - fix `bundle package --all` recursing endlessly ([#4158](https://github.com/bundler/bundler/issues/4158), @RochesterinNYC)
1039
+ - fail fast on more errors when fetching remote resources ([#4154](https://github.com/bundler/bundler/issues/4154), @RochesterinNYC)
1040
+ - give a better error message when a given git commit can't be found ([#4140](https://github.com/bundler/bundler/issues/4140), @doy)
1041
+ - give a better error message when `bundle clean` doesn't have sufficient permissions ([#4170](https://github.com/bundler/bundler/issues/4170), @RochesterinNYC)
818
1042
  - give a better error message when reading a bundler config file fails (@segiddins)
819
- - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
1043
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), [#4150](https://github.com/bundler/bundler/issues/4150), @smellsblue)
820
1044
  - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
821
- - give a better error message when ssl isn't available (#4054, @RochesterinNYC)
822
- - print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
823
- - give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
1045
+ - give a better error message when ssl isn't available ([#4054](https://github.com/bundler/bundler/issues/4054), @RochesterinNYC)
1046
+ - print the original `require` error when `Bundler.require` fails ([#4182](https://github.com/bundler/bundler/issues/4182), @RochesterinNYC)
1047
+ - give a better error message when certain resources are temporarily unavailable ([#4183](https://github.com/bundler/bundler/issues/4183), @RochesterinNYC)
824
1048
  - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
825
- - ignore colorized output from `git` when determining the current branch (#4056, @agis-)
1049
+ - ignore colorized output from `git` when determining the current branch ([#4056](https://github.com/bundler/bundler/issues/4056), @agis-)
826
1050
  - fix storing the shared gems config option as a boolean (@vassilevsky)
827
1051
  - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
828
- - fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
829
- - avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
830
- - ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
831
- - give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
832
- - preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
833
- - ensure standalone file paths are relative to the project root (#4144, @glennpratt)
1052
+ - fix `exec`-ing with 0 args in a directory with spaces ([#4230](https://github.com/bundler/bundler/issues/4230), @segiddins)
1053
+ - avoid installing extraneous gems when resolving to an older version of a spec ([#4101](https://github.com/bundler/bundler/issues/4101), [#4198](https://github.com/bundler/bundler/issues/4198), @segiddins)
1054
+ - ensure paths resolved when parsing a gemfile are relative to that file ([#3349](https://github.com/bundler/bundler/issues/3349), @dtognazzini)
1055
+ - give a better error message when encountering an invalid gemspec ([#4248](https://github.com/bundler/bundler/issues/4248), [#4275](https://github.com/bundler/bundler/issues/4275), @RochesterinNYC)
1056
+ - preserve the original `PATH` in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins)
1057
+ - ensure standalone file paths are relative to the project root ([#4144](https://github.com/bundler/bundler/issues/4144), @glennpratt)
834
1058
 
835
1059
  ## 1.11.2 (2015-12-15)
836
1060
 
837
1061
  Bugfixes:
838
1062
 
839
- - _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
1063
+ - _really_ stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
840
1064
 
841
1065
  ## 1.11.1 (2015-12-15)
842
1066
 
843
1067
  Bugfixes:
844
1068
 
845
- - lazy-load Psych, again (#4149, @indirect)
846
- - allow gemspec gems on other platforms (#4150, @indirect)
847
- - fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
848
- - stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
1069
+ - lazy-load Psych, again ([#4149](https://github.com/bundler/bundler/issues/4149), @indirect)
1070
+ - allow gemspec gems on other platforms ([#4150](https://github.com/bundler/bundler/issues/4150), @indirect)
1071
+ - fix --no-coc and --no-mit flags on `gem` ([#4148](https://github.com/bundler/bundler/issues/4148), @RochesterinNYC)
1072
+ - stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
849
1073
 
850
1074
  ## 1.11.0 (2015-12-12)
851
1075
 
@@ -855,16 +1079,16 @@ Bugfixes:
855
1079
 
856
1080
  Bugfixes:
857
1081
 
858
- - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
1082
+ - fail gracefully when trying to execute a non-executable file ([#4081](https://github.com/bundler/bundler/issues/4081), @fotanus)
859
1083
  - fix a crash when pushing a gem via `rake release` (@segiddins)
860
1084
 
861
1085
  ## 1.11.0.pre.1 (2015-11-29)
862
1086
 
863
1087
  Features:
864
1088
 
865
- - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
1089
+ - actual Gemfile and lockfile filenames are used in messages ([#3672](https://github.com/bundler/bundler/issues/3672), @segiddins)
866
1090
  - the git remote for `rake release` is now customizable (@skateman)
867
- - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
1091
+ - file access permissions errors are now much more friendly ([#3703](https://github.com/bundler/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-)
868
1092
  - add support for showing help for plugin commands (@tf)
869
1093
  - send `X-Gemfile-Source` header to source mirrors (@agis-)
870
1094
  - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
@@ -876,12 +1100,12 @@ Features:
876
1100
  - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
877
1101
  - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
878
1102
  - added support for MRI 2.3 (@amatsuda)
879
- - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
880
- - include git revision hash when printing a git source (#3433, @agis-)
1103
+ - show a helpful message when requiring a file in `bundler require` fails ([#3960](https://github.com/bundler/bundler/issues/3960), @agis-)
1104
+ - include git revision hash when printing a git source ([#3433](https://github.com/bundler/bundler/issues/3433), @agis-)
881
1105
  - improve hint when a resolution conflict occurs (@seanlinsley)
882
- - show a friendly error when a git ref is not found (#3879, @agis-)
883
- - improve error message when sources are not absolute URIs (#3925, @agis-)
884
- - add `pkg` to rake's clobber list (#3676, @jasonkarns)
1106
+ - show a friendly error when a git ref is not found ([#3879](https://github.com/bundler/bundler/issues/3879), @agis-)
1107
+ - improve error message when sources are not absolute URIs ([#3925](https://github.com/bundler/bundler/issues/3925), @agis-)
1108
+ - add `pkg` to rake's clobber list ([#3676](https://github.com/bundler/bundler/issues/3676), @jasonkarns)
885
1109
  - retry fetching specs when fetching version metadata fails (@jingweno)
886
1110
 
887
1111
  Bugfixes:
@@ -889,36 +1113,36 @@ Bugfixes:
889
1113
  - avoid showing bundler version warning messages twice (@fotanus)
890
1114
  - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
891
1115
  - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
892
- - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
1116
+ - fail more gracefully when an HTTP remote is unreachable ([#3765](https://github.com/bundler/bundler/issues/3765), @steverob)
893
1117
  - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
894
1118
  - fix the `bundle gem` readme when no tests are generated (@roseweixel)
895
- - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
896
- - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
1119
+ - the dependencies on test gems in `bundle gem` are now locked to major versions ([#3811](https://github.com/bundler/bundler/issues/3811), @indirect)
1120
+ - fix the paths for native extensions generated by `--standalone` ([#3813](https://github.com/bundler/bundler/issues/3813), @AlexanderPavlenko)
897
1121
  - fix trying to cache a gem that has no source (@EduardoBautista)
898
- - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
899
- - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
1122
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking ([#3759](https://github.com/bundler/bundler/issues/3759), [#3761](https://github.com/bundler/bundler/issues/3761), @neoeno)
1123
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables ([#3678](https://github.com/bundler/bundler/issues/3678), @agis-)
900
1124
  - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
901
1125
  - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
902
- - fix not retrying on zlib errors (#4047, @andremedeiros)
1126
+ - fix not retrying on zlib errors ([#4047](https://github.com/bundler/bundler/issues/4047), @andremedeiros)
903
1127
  - fix a warning being shown for using `URI.encode` (@EduardoBautista)
904
- - fix handling of fatal HTTP errors (#3830, @indirect)
905
- - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
1128
+ - fix handling of fatal HTTP errors ([#3830](https://github.com/bundler/bundler/issues/3830), @indirect)
1129
+ - ensure all `sudo` access is done in a thread-safe manner ([#3910](https://github.com/bundler/bundler/issues/3910), @agis-)
906
1130
  - fix caching gems with a path with the same prefix as the bundled application (@indirect)
907
- - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
908
- - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
909
- - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
910
- - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
911
- - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
1131
+ - fix showing gemspec validation errors on `bundle exec` ([#3895](https://github.com/bundler/bundler/issues/3895), @agis-)
1132
+ - distinguish Gemfile syntax and evaluation errors ([#3783](https://github.com/bundler/bundler/issues/3783), @agis-)
1133
+ - fix nested Gemfile sources not restoring the previous source ([#3974](https://github.com/bundler/bundler/issues/3974), @agis-)
1134
+ - fix the `RUBYLIB` environment variable not being cleaned ([#3982](https://github.com/bundler/bundler/issues/3982), @agis-)
1135
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock ([#4012](https://github.com/bundler/bundler/issues/4012), @lukaso)
912
1136
  - also print gemspecs in `bundle env` output (@agis-)
913
- - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
914
- - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
915
- - fix handling invalid RubyGems configuration files (#4042, @agis-)
1137
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is ([#4004](https://github.com/bundler/bundler/issues/4004), @segiddins)
1138
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set ([#3656](https://github.com/bundler/bundler/issues/3656), @agis-)
1139
+ - fix handling invalid RubyGems configuration files ([#4042](https://github.com/bundler/bundler/issues/4042), @agis-)
916
1140
  - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
917
- - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
1141
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), @smellsblue)
918
1142
 
919
1143
  Performance:
920
1144
 
921
- - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
1145
+ - speed up dependency resolution in pathological cases by 25x ([#3803](https://github.com/bundler/bundler/issues/3803), @segiddins)
922
1146
  - drop string allocations when searching for gems (@jrafanie)
923
1147
 
924
1148
  ## 1.10.6 (2015-07-22)
@@ -929,8 +1153,8 @@ Workarounds:
929
1153
 
930
1154
  Bugfixes:
931
1155
 
932
- - fix installing dependencies in the correct order (#3799, @pducks32)
933
- - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
1156
+ - fix installing dependencies in the correct order ([#3799](https://github.com/bundler/bundler/issues/3799), @pducks32)
1157
+ - fix sorting of mixed DependencyLists ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
934
1158
  - fix `install_if` conditionals when using the block form (@danieltdt)
935
1159
 
936
1160
  ## 1.10.5 (2015-06-24)
@@ -941,9 +1165,9 @@ Workarounds:
941
1165
 
942
1166
  Bugfixes:
943
1167
 
944
- - fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
1168
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
945
1169
  - speed up resolver for path and git gems (@segiddins)
946
- - fix `install --force` to not reinstall Bundler (#3743, @karlo57)
1170
+ - fix `install --force` to not reinstall Bundler ([#3743](https://github.com/bundler/bundler/issues/3743), @karlo57)
947
1171
 
948
1172
  ## 1.10.4 (2015-06-16)
949
1173
 
@@ -960,24 +1184,24 @@ Bugfixes:
960
1184
 
961
1185
  Bugfixes:
962
1186
 
963
- - allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
964
- - fix regression in `rake install` (#3701, #3705, @segiddins)
965
- - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
966
- - fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
1187
+ - allow missing gemspec files when validating path and git gems ([#3686](https://github.com/bundler/bundler/issues/3686), [#3698](https://github.com/bundler/bundler/issues/3698), @segiddins)
1188
+ - fix regression in `rake install` ([#3701](https://github.com/bundler/bundler/issues/3701), [#3705](https://github.com/bundler/bundler/issues/3705), @segiddins)
1189
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` ([#3699](https://github.com/bundler/bundler/issues/3699), @segiddins)
1190
+ - fix `bundler/inline` requiring a newly-installed gem ([#3693](https://github.com/bundler/bundler/issues/3693), @indirect, @segiddins)
967
1191
 
968
1192
  ## 1.10.2 (2015-05-29)
969
1193
 
970
1194
  Bugfixes:
971
1195
 
972
- - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
1196
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 ([#3687](https://github.com/bundler/bundler/issues/3687), @segiddins)
973
1197
 
974
1198
  ## 1.10.1 (2015-05-28)
975
1199
 
976
1200
  Bugfixes:
977
1201
 
978
1202
  - silence ruby warning when running CLI commands (@segiddins)
979
- - validate gemspecs in non-packaging mode (#3681, @segiddins)
980
- - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
1203
+ - validate gemspecs in non-packaging mode ([#3681](https://github.com/bundler/bundler/issues/3681), @segiddins)
1204
+ - ensure the same chdir mutex as RubyGems is used ([#3680](https://github.com/bundler/bundler/issues/3680), @segiddins)
981
1205
 
982
1206
  ## 1.10.0 (2015-05-28)
983
1207
 
@@ -987,54 +1211,54 @@ Bugfixes:
987
1211
 
988
1212
  Features:
989
1213
 
990
- - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
991
- - track CI platforms running Bundler (#3646, @fotanus)
1214
+ - dramatically speed up resolving some slow Gemfiles ([#3635](https://github.com/bundler/bundler/issues/3635), @segiddins)
1215
+ - track CI platforms running Bundler ([#3646](https://github.com/bundler/bundler/issues/3646), @fotanus)
992
1216
 
993
1217
  Bugfixes:
994
1218
 
995
- - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
996
- - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
997
- - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
1219
+ - allow `viz` to work with prereleases ([#3621](https://github.com/bundler/bundler/issues/3621), [#3217](https://github.com/bundler/bundler/issues/3217), @aprescott)
1220
+ - validate gemspecs used in path and git gems ([#3639](https://github.com/bundler/bundler/issues/3639), @segiddins, @indirect)
1221
+ - stop printing config warnings when config is unchanged ([#3649](https://github.com/bundler/bundler/issues/3649), @fotanus, @indirect)
998
1222
  - Without groups saved via `config` are no longer ignored when the `--without` flag is used
999
1223
 
1000
1224
  ## 1.10.0.pre.2 (2015-05-07)
1001
1225
 
1002
1226
  Bugfixes:
1003
1227
 
1004
- - make BUNDLED WITH backwards compatible (#3623, @segiddins)
1228
+ - make BUNDLED WITH backwards compatible ([#3623](https://github.com/bundler/bundler/issues/3623), @segiddins)
1005
1229
 
1006
1230
  ## 1.10.0.pre.1 (2015-05-05)
1007
1231
 
1008
1232
  Bugfixes:
1009
1233
 
1010
- - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
1234
+ - always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
1011
1235
 
1012
1236
  ## 1.10.0.pre (2015-05-03)
1013
1237
 
1014
1238
  Features:
1015
1239
 
1016
- - support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
1017
- - add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
1018
- - improved error reports for Gemfile errors (#3480, @segiddins)
1019
- - `lock` command (#3437, @segiddins)
1020
- - add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
1021
- - improve `gem` minitest template (#3513, #3515, @arthurnn)
1022
- - add `install --force` to re-install installed gems (#3519, @segiddins)
1240
+ - support gem extensions built into any directory on RubyGems 2.2+ ([#3582](https://github.com/bundler/bundler/issues/3582), @voxik)
1241
+ - add 'bundler/inline' which provides a `gemfile` method ([#3440](https://github.com/bundler/bundler/issues/3440), @segiddins)
1242
+ - improved error reports for Gemfile errors ([#3480](https://github.com/bundler/bundler/issues/3480), @segiddins)
1243
+ - `lock` command ([#3437](https://github.com/bundler/bundler/issues/3437), @segiddins)
1244
+ - add `ignore_messages` config to suppress post-install text ([#3510](https://github.com/bundler/bundler/issues/3510), @pducks32)
1245
+ - improve `gem` minitest template ([#3513](https://github.com/bundler/bundler/issues/3513), [#3515](https://github.com/bundler/bundler/issues/3515), @arthurnn)
1246
+ - add `install --force` to re-install installed gems ([#3519](https://github.com/bundler/bundler/issues/3519), @segiddins)
1023
1247
  - show more `outdated` information, including groups (@smlance, @indirect)
1024
- - add optional groups to the Gemfile (#3531, @jhass)
1025
- - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
1026
- - make timeouts and retries configurable via `config` (#3601, @pducks32)
1027
- - add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
1248
+ - add optional groups to the Gemfile ([#3531](https://github.com/bundler/bundler/issues/3531), @jhass)
1249
+ - accept glob argument to `gemspec` in Gemfile ([#3464](https://github.com/bundler/bundler/issues/3464), @pjump)
1250
+ - make timeouts and retries configurable via `config` ([#3601](https://github.com/bundler/bundler/issues/3601), @pducks32)
1251
+ - add `install_if` Gemfile method for conditional installs ([#3611](https://github.com/bundler/bundler/issues/3611), @segiddins)
1028
1252
 
1029
1253
  Bugfixes:
1030
1254
 
1031
- - standalone mode now uses builtin gems correctly (#3610, @segiddins)
1032
- - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
1033
- - remember all y/n answers when generating gems (#3579, @pducks32)
1255
+ - standalone mode now uses builtin gems correctly ([#3610](https://github.com/bundler/bundler/issues/3610), @segiddins)
1256
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ ([#3487](https://github.com/bundler/bundler/issues/3487), @marutosi)
1257
+ - remember all y/n answers when generating gems ([#3579](https://github.com/bundler/bundler/issues/3579), @pducks32)
1034
1258
 
1035
1259
  Performance:
1036
1260
 
1037
- - use RubyGems stub specifications when possible (#3580, @segiddins)
1261
+ - use RubyGems stub specifications when possible ([#3580](https://github.com/bundler/bundler/issues/3580), @segiddins)
1038
1262
 
1039
1263
  Deprecations:
1040
1264
 
@@ -1050,65 +1274,65 @@ Features:
1050
1274
 
1051
1275
  Bugfixes:
1052
1276
 
1053
- - read mirror and credential settings from older versions (#3557, @Strech)
1277
+ - read mirror and credential settings from older versions ([#3557](https://github.com/bundler/bundler/issues/3557), @Strech)
1054
1278
 
1055
1279
  ## 1.9.8 (2015-05-12)
1056
1280
 
1057
1281
  Bugfixes:
1058
1282
 
1059
- - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
1283
+ - fix regression in sudo mode introduced by 1.9.7 ([#3642](https://github.com/bundler/bundler/issues/3642), @segiddins)
1060
1284
 
1061
1285
  ## 1.9.7 (2015-05-11)
1062
1286
 
1063
1287
  Bugfixes:
1064
1288
 
1065
- - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
1289
+ - always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
1066
1290
 
1067
1291
  ## 1.9.6 (2015-05-02)
1068
1292
 
1069
1293
  Bugfixes:
1070
1294
 
1071
1295
  - use RubyGems spec stubs if available (@segiddins)
1072
- - allow creating gems with names containing two dashes (#3483, @janlelis)
1073
- - allow creating gems with names extending constants (#3603, @amatsuda)
1296
+ - allow creating gems with names containing two dashes ([#3483](https://github.com/bundler/bundler/issues/3483), @janlelis)
1297
+ - allow creating gems with names extending constants ([#3603](https://github.com/bundler/bundler/issues/3603), @amatsuda)
1074
1298
 
1075
1299
  ## 1.9.5 (2015-04-29)
1076
1300
 
1077
1301
  Bugfixes:
1078
1302
 
1079
- - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1303
+ - respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1080
1304
 
1081
1305
  ## 1.9.4 (2015-04-13)
1082
1306
 
1083
1307
  Bugfixes:
1084
1308
 
1085
- - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
1086
- - improve error when gems are missing (#3564, @sealocal)
1309
+ - fix regression in installing x86 and universal gems ([#3565](https://github.com/bundler/bundler/issues/3565), @jdmundrawala)
1310
+ - improve error when gems are missing ([#3564](https://github.com/bundler/bundler/issues/3564), @sealocal)
1087
1311
 
1088
1312
  ## 1.9.3 (2015-04-12)
1089
1313
 
1090
1314
  Bugfixes:
1091
1315
 
1092
- - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
1093
- - install 'universal' gems on Windows (#3066, @jdmundrawala)
1094
- - stop passing --local during `rake install` task (#3236, @indirect)
1095
- - guard against all possible accidental public gem pushes (#3533, @indirect)
1316
+ - handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/bundler/bundler/issues/3558), @indirect)
1317
+ - install 'universal' gems on Windows ([#3066](https://github.com/bundler/bundler/issues/3066), @jdmundrawala)
1318
+ - stop passing --local during `rake install` task ([#3236](https://github.com/bundler/bundler/issues/3236), @indirect)
1319
+ - guard against all possible accidental public gem pushes ([#3533](https://github.com/bundler/bundler/issues/3533), @indirect)
1096
1320
 
1097
1321
  ## 1.9.2 (2015-03-30)
1098
1322
 
1099
1323
  Bugfixes:
1100
1324
 
1101
- - ensure gem executables are executable (#3517, #3511, @indirect)
1102
- - fix warnings in Molinillo (#3516, @segiddins)
1103
- - ensure duplicate dependencies do not propagate (#3522, @segiddins)
1104
- - keep gems locked when updating another gem from the same source (#3520, @indirect)
1105
- - resolve race that could build gems without saved arguments (#3404, @indirect)
1325
+ - ensure gem executables are executable ([#3517](https://github.com/bundler/bundler/issues/3517), [#3511](https://github.com/bundler/bundler/issues/3511), @indirect)
1326
+ - fix warnings in Molinillo ([#3516](https://github.com/bundler/bundler/issues/3516), @segiddins)
1327
+ - ensure duplicate dependencies do not propagate ([#3522](https://github.com/bundler/bundler/issues/3522), @segiddins)
1328
+ - keep gems locked when updating another gem from the same source ([#3520](https://github.com/bundler/bundler/issues/3520), @indirect)
1329
+ - resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
1106
1330
 
1107
1331
  ## 1.9.1 (2015-03-21)
1108
1332
 
1109
1333
  Bugfixes:
1110
1334
 
1111
- - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
1335
+ - avoid exception in 'bundler/gem_tasks' ([#3492](https://github.com/bundler/bundler/issues/3492), @segiddins)
1112
1336
 
1113
1337
  ## 1.9.0 (2015-03-20)
1114
1338
 
@@ -1117,7 +1341,7 @@ Bugfixes:
1117
1341
  Bugfixes:
1118
1342
 
1119
1343
  - make Bundler.which stop finding directories (@nohoho)
1120
- - handle Bundler prereleases correctly (#3470, @segiddins)
1344
+ - handle Bundler prereleases correctly ([#3470](https://github.com/bundler/bundler/issues/3470), @segiddins)
1121
1345
  - add before_install to .travis.yml template for new gems (@kodnin)
1122
1346
 
1123
1347
  ## 1.9.0.pre.1 (2015-03-11)
@@ -1130,8 +1354,8 @@ Bugfixes:
1130
1354
 
1131
1355
  Features:
1132
1356
 
1133
- - prefer gemspecs closest to the directory root (#3428, @segiddins)
1134
- - debug log for API request limits (#3452, @neerfri)
1357
+ - prefer gemspecs closest to the directory root ([#3428](https://github.com/bundler/bundler/issues/3428), @segiddins)
1358
+ - debug log for API request limits ([#3452](https://github.com/bundler/bundler/issues/3452), @neerfri)
1135
1359
 
1136
1360
  "Features":
1137
1361
 
@@ -1148,20 +1372,20 @@ Bugfixes:
1148
1372
 
1149
1373
  Bugfixes:
1150
1374
 
1151
- - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1375
+ - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1152
1376
 
1153
1377
  ## 1.8.7 (2015-04-07)
1154
1378
 
1155
1379
  Bugfixes:
1156
1380
 
1157
- - stop suppressing errors inside gems that get required (#3549, @indirect)
1381
+ - stop suppressing errors inside gems that get required ([#3549](https://github.com/bundler/bundler/issues/3549), @indirect)
1158
1382
 
1159
1383
  ## 1.8.6 (2015-03-30)
1160
1384
 
1161
1385
  Bugfixes:
1162
1386
 
1163
- - keep gems locked when updating another gem from the same source (#3250, @indirect)
1164
- - resolve race that could build gems without saved arguments (#3404, @indirect)
1387
+ - keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
1388
+ - resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
1165
1389
 
1166
1390
  ## 1.8.5 (2015-03-11)
1167
1391
 
@@ -1174,44 +1398,44 @@ Bugfixes:
1174
1398
 
1175
1399
  Bugfixes:
1176
1400
 
1177
- - document --all-platforms option (#3449, @moeffju)
1178
- - find gems from all sources on exec after install (#3450, @TimMoore)
1401
+ - document --all-platforms option ([#3449](https://github.com/bundler/bundler/issues/3449), @moeffju)
1402
+ - find gems from all sources on exec after install ([#3450](https://github.com/bundler/bundler/issues/3450), @TimMoore)
1179
1403
 
1180
1404
  ## 1.8.3 (2015-02-24)
1181
1405
 
1182
1406
  Bugfixes:
1183
1407
 
1184
1408
  - handle boolean values for gem settings (@EduardoBautista)
1185
- - stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
1409
+ - stop always looking for updated `path` gems ([#3414](https://github.com/bundler/bundler/issues/3414), [#3417](https://github.com/bundler/bundler/issues/3417), [#3429](https://github.com/bundler/bundler/issues/3429), @TimMoore)
1186
1410
 
1187
1411
  ## 1.8.2 (2015-02-14)
1188
1412
 
1189
1413
  Bugfixes:
1190
1414
 
1191
- - allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
1415
+ - allow config settings for gems with 'http' in the name again ([#3398](https://github.com/bundler/bundler/issues/3398), @TimMoore)
1192
1416
 
1193
1417
  ## 1.8.1 (2015-02-13)
1194
1418
 
1195
1419
  Bugfixes:
1196
1420
 
1197
- - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
1198
- - set gemspec bindir correctly (#3392, @TimMoore)
1199
- - request lockfile deletion when it is malformed (#3396, @indirect)
1200
- - explain problem when mirror config is missing (#3386, @indirect)
1201
- - explain problem when caching causes permission error (#3390, @indirect)
1202
- - normalize URLs in config keys (#3391, @indirect)
1421
+ - synchronize building git gem native extensions ([#3385](https://github.com/bundler/bundler/issues/3385), @antifuchs & @indirect)
1422
+ - set gemspec bindir correctly ([#3392](https://github.com/bundler/bundler/issues/3392), @TimMoore)
1423
+ - request lockfile deletion when it is malformed ([#3396](https://github.com/bundler/bundler/issues/3396), @indirect)
1424
+ - explain problem when mirror config is missing ([#3386](https://github.com/bundler/bundler/issues/3386), @indirect)
1425
+ - explain problem when caching causes permission error ([#3390](https://github.com/bundler/bundler/issues/3390), @indirect)
1426
+ - normalize URLs in config keys ([#3391](https://github.com/bundler/bundler/issues/3391), @indirect)
1203
1427
 
1204
1428
  ## 1.8.0 (2015-02-10)
1205
1429
 
1206
1430
  Bugfixes:
1207
1431
 
1208
- - gemfile `github` blocks now work (#3379, @indirect)
1432
+ - gemfile `github` blocks now work ([#3379](https://github.com/bundler/bundler/issues/3379), @indirect)
1209
1433
 
1210
1434
  Bugfixes from v1.7.13:
1211
1435
 
1212
- - look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
1213
- - look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
1214
- - request dependencies for no more than 100 gems at a time (#3367, @segiddins)
1436
+ - look up installed gems in remote sources ([#3300](https://github.com/bundler/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)
1437
+ - look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
1438
+ - request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
1215
1439
 
1216
1440
  ## 1.8.0.rc (2015-01-26)
1217
1441
 
@@ -1221,7 +1445,7 @@ Features:
1221
1445
 
1222
1446
  Bugfixes:
1223
1447
 
1224
- - don't add extra quotes around long, quoted config values (@aroben, #3338)
1448
+ - don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
1225
1449
 
1226
1450
  Security:
1227
1451
 
@@ -1231,7 +1455,7 @@ Security:
1231
1455
 
1232
1456
  Features:
1233
1457
 
1234
- - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
1458
+ - add metadata allowed_push_host to new gem template ([#3002](https://github.com/bundler/bundler/issues/3002), @juanitofatas)
1235
1459
  - adds a `--no-install` flag to `bundle package` (@d-reinhold)
1236
1460
  - add `bundle config auto_install true` to install automatically (@smashwilson)
1237
1461
  - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
@@ -1266,66 +1490,66 @@ Documentation:
1266
1490
 
1267
1491
  Bugfixes:
1268
1492
 
1269
- - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1493
+ - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1270
1494
 
1271
1495
  ## 1.7.14 (2015-03-30)
1272
1496
 
1273
1497
  Bugfixes:
1274
1498
 
1275
- - Keep gems locked when updating another gem from the same source (#3250, @indirect)
1276
- - Don't add extra quotes around long, quoted config values (@aroben, #3338)
1499
+ - Keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
1500
+ - Don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
1277
1501
 
1278
1502
  ## 1.7.13 (2015-02-07)
1279
1503
 
1280
1504
  Bugfixes:
1281
1505
 
1282
- - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
1283
- - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
1284
- - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
1506
+ - Look up installed gems in remote sources ([#3300](https://github.com/bundler/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)
1507
+ - Look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
1508
+ - Request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
1285
1509
 
1286
1510
  ## 1.7.12 (2015-01-08)
1287
1511
 
1288
1512
  Bugfixes:
1289
1513
 
1290
- - Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
1514
+ - Always send credentials for sources, fixing private Gemfury gems ([#3342](https://github.com/bundler/bundler/issues/3342), @TimMoore)
1291
1515
 
1292
1516
  ## 1.7.11 (2015-01-04)
1293
1517
 
1294
1518
  Bugfixes:
1295
1519
 
1296
- - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
1520
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` ([#3328](https://github.com/bundler/bundler/issues/3328), @myabc)
1297
1521
 
1298
1522
  ## 1.7.10 (2014-12-29)
1299
1523
 
1300
1524
  Bugfixes:
1301
1525
 
1302
- - Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
1526
+ - Fix source blocks sometimes causing deployment mode to fail wrongly ([#3298](https://github.com/bundler/bundler/issues/3298), @TimMoore)
1303
1527
 
1304
1528
  Features(?):
1305
1529
 
1306
- - Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
1530
+ - Support `platform :mri_22` and related version bits ([#3309](https://github.com/bundler/bundler/issues/3309), @thomasfedb)
1307
1531
 
1308
1532
  ## 1.7.9 (2014-12-09)
1309
1533
 
1310
1534
  Bugfixes:
1311
1535
 
1312
- - Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
1313
- - Ensure bundle update installs the newer version of the gem (#3089, @Who828)
1314
- - Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
1536
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock ([#3216](https://github.com/bundler/bundler/issues/3216), @Who828)
1537
+ - Ensure bundle update installs the newer version of the gem ([#3089](https://github.com/bundler/bundler/issues/3089), @Who828)
1538
+ - Fix an regression which stopped Bundler from resolving some Gemfiles ([#3059](https://github.com/bundler/bundler/issues/3059), [#3248](https://github.com/bundler/bundler/issues/3248), @Who828)
1315
1539
 
1316
1540
  ## 1.7.8 (2014-12-06)
1317
1541
 
1318
1542
  Bugfixes:
1319
1543
 
1320
- - Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
1544
+ - Hide credentials while warning about gems with ambiguous sources ([#3256](https://github.com/bundler/bundler/issues/3256), @TimMoore)
1321
1545
 
1322
1546
  ## 1.7.7 (2014-11-19)
1323
1547
 
1324
1548
  Bugfixes:
1325
1549
 
1326
- - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
1327
- - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
1328
- - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
1550
+ - Ensure server credentials stored in config or ENV will be used ([#3180](https://github.com/bundler/bundler/issues/3180), @arronmabrey)
1551
+ - Fix race condition causing errors while installing git-based gems ([#3174](https://github.com/bundler/bundler/issues/3174), @Who828)
1552
+ - Use single quotes in config so YAML won't add more quotes ([#3261](https://github.com/bundler/bundler/issues/3261), @indirect)
1329
1553
 
1330
1554
  ## 1.7.6 (2014-11-11)
1331
1555
 
@@ -1337,17 +1561,17 @@ Bugfixes:
1337
1561
 
1338
1562
  Bugfixes:
1339
1563
 
1340
- - Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
1564
+ - Fix --deployment with source blocks and non-alphabetical gems ([#3224](https://github.com/bundler/bundler/issues/3224), @TimMoore)
1341
1565
  - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
1342
1566
 
1343
1567
  ## 1.7.4 (2014-10-19)
1344
1568
 
1345
1569
  Bugfixes:
1346
1570
 
1347
- - Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
1348
- - Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
1349
- - Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
1350
- - Stop asking gem servers for gems already found locally (#2909, @dubek)
1571
+ - Allow --deployment after `pack` while using source blocks ([#3167](https://github.com/bundler/bundler/issues/3167), @TimMoore)
1572
+ - Use dependency API even when HTTP credentials are in ENV ([#3191](https://github.com/bundler/bundler/issues/3191), @fvaleur)
1573
+ - Silence warnings (including root warning) in --quiet mode ([#3186](https://github.com/bundler/bundler/issues/3186), @indirect)
1574
+ - Stop asking gem servers for gems already found locally ([#2909](https://github.com/bundler/bundler/issues/2909), @dubek)
1351
1575
 
1352
1576
  ## 1.7.3 (2014-09-14)
1353
1577
 
@@ -1405,15 +1629,15 @@ Bugfixes:
1405
1629
 
1406
1630
  Bugfixes:
1407
1631
 
1408
- - require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
1632
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, [#3107](https://github.com/bundler/bundler/issues/3107))
1409
1633
 
1410
1634
  ## 1.6.4 (2014-07-17)
1411
1635
 
1412
1636
  Bugfixes:
1413
1637
 
1414
- - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
1415
- - work when installed git gems are not writable (#3092, @pmahoney)
1416
- - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
1638
+ - fix undefined constant error when can't find gem during binstubs ([#3095](https://github.com/bundler/bundler/issues/3095), @jetaggart)
1639
+ - work when installed git gems are not writable ([#3092](https://github.com/bundler/bundler/issues/3092), @pmahoney)
1640
+ - don't store configured source credentials in Gemfile.lock ([#3045](https://github.com/bundler/bundler/issues/3045), @lhz)
1417
1641
  - don't include config source credentials in the lockfile (Lars Haugseth)
1418
1642
  - use threads for jobs on Rubinius (@YorickPeterse)
1419
1643
  - skip dependencies from other platforms (@mvz)
@@ -1423,30 +1647,30 @@ Bugfixes:
1423
1647
 
1424
1648
  Bugfixes:
1425
1649
 
1426
- - fix regression when resolving many conflicts (#2994, @Who828)
1427
- - use local gemspec for builtin gems during install --local (#3041, @Who828)
1428
- - don't warn about sudo when installing on Windows (#2984, @indirect)
1650
+ - fix regression when resolving many conflicts ([#2994](https://github.com/bundler/bundler/issues/2994), @Who828)
1651
+ - use local gemspec for builtin gems during install --local ([#3041](https://github.com/bundler/bundler/issues/3041), @Who828)
1652
+ - don't warn about sudo when installing on Windows ([#2984](https://github.com/bundler/bundler/issues/2984), @indirect)
1429
1653
  - shell escape `bundle open` arguments (@indirect)
1430
1654
 
1431
1655
  ## 1.6.2 (2014-04-13)
1432
1656
 
1433
1657
  Bugfixes:
1434
1658
 
1435
- - fix an exception when using builtin gems (#2915, #2963, @gnufied)
1436
- - cache gems that are built in to the running ruby (#2975, @indirect)
1437
- - re-allow deploying cached git gems without git installed (#2968, @aughr)
1659
+ - fix an exception when using builtin gems ([#2915](https://github.com/bundler/bundler/issues/2915), [#2963](https://github.com/bundler/bundler/issues/2963), @gnufied)
1660
+ - cache gems that are built in to the running ruby ([#2975](https://github.com/bundler/bundler/issues/2975), @indirect)
1661
+ - re-allow deploying cached git gems without git installed ([#2968](https://github.com/bundler/bundler/issues/2968), @aughr)
1438
1662
  - keep standalone working even with builtin gems (@indirect)
1439
- - don't update vendor/cache in deployment mode (#2921, @indirect)
1663
+ - don't update vendor/cache in deployment mode ([#2921](https://github.com/bundler/bundler/issues/2921), @indirect)
1440
1664
 
1441
1665
  Features:
1442
1666
 
1443
- - warn informatively when `bundle install` is run as root (#2936, @1337807)
1667
+ - warn informatively when `bundle install` is run as root ([#2936](https://github.com/bundler/bundler/issues/2936), @1337807)
1444
1668
 
1445
1669
  ## 1.6.1 (2014-04-02)
1446
1670
 
1447
1671
  Bugfixes:
1448
1672
 
1449
- - update C extensions when git gem versions change (#2948, @dylanahsmith)
1673
+ - update C extensions when git gem versions change ([#2948](https://github.com/bundler/bundler/issues/2948), @dylanahsmith)
1450
1674
 
1451
1675
  Features:
1452
1676
 
@@ -1457,15 +1681,15 @@ Features:
1457
1681
  Bugfixes:
1458
1682
 
1459
1683
  - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
1460
- - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
1461
- - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
1684
+ - redirects across hosts now work on rubies without OpenSSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
1685
+ - gemspecs now handle filenames with newlines ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
1462
1686
  - support escaped characters in usernames and passwords (@punkie)
1463
1687
  - no more exception on `update GEM` without lock file (@simi)
1464
- - allow long config values (#2823, @kgrz)
1465
- - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
1466
- - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
1467
- - only retry git commands that hit the network (#2899, @timmoore)
1468
- - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
1688
+ - allow long config values ([#2823](https://github.com/bundler/bundler/issues/2823), @kgrz)
1689
+ - cache successfully even locked to gems shipped with Ruby ([#2869](https://github.com/bundler/bundler/issues/2869), @aughr)
1690
+ - respect NO_PROXY even if a proxy is configured ([#2878](https://github.com/bundler/bundler/issues/2878), @stlay)
1691
+ - only retry git commands that hit the network ([#2899](https://github.com/bundler/bundler/issues/2899), @timmoore)
1692
+ - fix NameError regression when OpenSSL is not available ([#2898](https://github.com/bundler/bundler/issues/2898), @timmoore)
1469
1693
  - handle exception installing when build_info owned by root (@Who828)
1470
1694
  - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
1471
1695
 
@@ -1476,13 +1700,13 @@ Features:
1476
1700
  - HTTP auth may now be stored in `bundle config` (@smashwilson)
1477
1701
  - some complex Gemfiles are resolved up to 10x faster (@Who828)
1478
1702
  - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
1479
- - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
1703
+ - highlight installed or updated gems ([#2722](https://github.com/bundler/bundler/issues/2722), [#2741](https://github.com/bundler/bundler/issues/2741), @yaotti, @simi)
1480
1704
  - display the `post_install_message` for gems installed via :git (@phallstrom)
1481
1705
  - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
1482
1706
  - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
1483
1707
  - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
1484
1708
  - Avoid using threequals operator where possible (@as-cii)
1485
- - Add `bundle update --group` to update specific group (#2731 @banyan)
1709
+ - Add `bundle update --group` to update specific group ([#2731](https://github.com/bundler/bundler/issues/2731) @banyan)
1486
1710
 
1487
1711
  Documentation:
1488
1712
 
@@ -1492,7 +1716,7 @@ Documentation:
1492
1716
 
1493
1717
  Bugfixes:
1494
1718
 
1495
- - find "missing" gems that are actually present (#2780, #2818, #2854)
1719
+ - find "missing" gems that are actually present ([#2780](https://github.com/bundler/bundler/issues/2780), [#2818](https://github.com/bundler/bundler/issues/2818), [#2854](https://github.com/bundler/bundler/issues/2854))
1496
1720
  - use n-1 cores when given n jobs for parallel install (@jdickey)
1497
1721
 
1498
1722
  ## 1.5.2 (2014-01-10)
@@ -1537,19 +1761,19 @@ Bugfixes:
1537
1761
 
1538
1762
  Features:
1539
1763
 
1540
- - bundle update also accepts --jobs (#2692, @mrkn)
1541
- - add fork URL to README for new `bundle gem` (#2665, @zzak)
1542
- - add `bundle outdated --strict` (#2685, @davidblondeau)
1543
- - warn if same gem/version is added twice (#2679, @jendiamond)
1544
- - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
1545
- - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
1764
+ - bundle update also accepts --jobs ([#2692](https://github.com/bundler/bundler/issues/2692), @mrkn)
1765
+ - add fork URL to README for new `bundle gem` ([#2665](https://github.com/bundler/bundler/issues/2665), @zzak)
1766
+ - add `bundle outdated --strict` ([#2685](https://github.com/bundler/bundler/issues/2685), @davidblondeau)
1767
+ - warn if same gem/version is added twice ([#2679](https://github.com/bundler/bundler/issues/2679), @jendiamond)
1768
+ - don't redownload installed specs for `bundle install` ([#2680](https://github.com/bundler/bundler/issues/2680), @cainlevy)
1769
+ - override gem sources with mirrors ([#2650](https://github.com/bundler/bundler/issues/2650), @danielsdeleo, @mkristian)
1546
1770
 
1547
1771
  Bugfixes:
1548
1772
 
1549
- - fix sharing same SSL socket when forking workers for parallel install (#2632)
1550
- - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
1551
- - fix Bundler.which for directories (#2697, @rhysd)
1552
- - properly require `Capistrano::Version` (#2690, @steveklabnik)
1773
+ - fix sharing same SSL socket when forking workers for parallel install ([#2632](https://github.com/bundler/bundler/issues/2632))
1774
+ - fix msg typo in GitNotAllowedError ([#2654](https://github.com/bundler/bundler/issues/2654), @joyicecloud)
1775
+ - fix Bundler.which for directories ([#2697](https://github.com/bundler/bundler/issues/2697), @rhysd)
1776
+ - properly require `Capistrano::Version` ([#2690](https://github.com/bundler/bundler/issues/2690), @steveklabnik)
1553
1777
  - search for git.exe and git
1554
1778
  - fix the bug that downloads every spec when API fetcher encouters an error
1555
1779
  - only retry network requests
@@ -1558,10 +1782,10 @@ Bugfixes:
1558
1782
 
1559
1783
  Features:
1560
1784
 
1561
- - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
1785
+ - add support for the x64-mingw32 platform ([#2356](https://github.com/bundler/bundler/issues/2356), [#2590](https://github.com/bundler/bundler/issues/2590), @larskanis)
1562
1786
  - add :patchlevel option to ruby DSL
1563
- - add `bundler` bin (#2598, @kirs)
1564
- - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
1787
+ - add `bundler` bin ([#2598](https://github.com/bundler/bundler/issues/2598), @kirs)
1788
+ - friendly ambiguous error messages ([#2581](https://github.com/bundler/bundler/issues/2581), [#2550](https://github.com/bundler/bundler/issues/2550), @jlsuttles, @jendiamond, @joyicecloud)
1565
1789
  - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
1566
1790
  - add X.509 client certificates for auth without passwords (@snackbandit)
1567
1791
  - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
@@ -1573,56 +1797,56 @@ Features:
1573
1797
 
1574
1798
  Bugfixes:
1575
1799
 
1576
- - allow passwordless Basic Auth (#2606, @rykov)
1800
+ - allow passwordless Basic Auth ([#2606](https://github.com/bundler/bundler/issues/2606), @rykov)
1577
1801
  - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
1578
- - revert #2569, staying compatible with git: instead of https: for :github gems
1802
+ - revert [#2569](https://github.com/bundler/bundler/issues/2569), staying compatible with git: instead of https: for :github gems
1579
1803
  - handle exceptions while installing gems in parallel (@gnufied)
1580
1804
 
1581
1805
  ## 1.4.0.pre.1 (2013-08-04)
1582
1806
 
1583
1807
  Features:
1584
1808
 
1585
- - retry network requests while installing gems (#2561, @ascherger)
1586
- - faster installs using gemspecs from the local system cache (#2497, @mipearson)
1587
- - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
1809
+ - retry network requests while installing gems ([#2561](https://github.com/bundler/bundler/issues/2561), @ascherger)
1810
+ - faster installs using gemspecs from the local system cache ([#2497](https://github.com/bundler/bundler/issues/2497), @mipearson)
1811
+ - add `bundle install -jN` for N parallel gem installations ([#2481](https://github.com/bundler/bundler/issues/2481), @eagletmt)
1588
1812
  - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
1589
- - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
1590
- - use `man` instead of `groff` (#2579, @ixti, @simi)
1591
- - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
1592
- - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
1593
- - rescue and report Thor errors (#2478, @pjvds)
1594
- - detect cyclic dependencies (#2564, @gnufied)
1595
- - support multiple gems in `binstubs` (#2576, @lucasmazza)
1596
- - use https instead of git for :github gems (#2569, @fuadsaud)
1597
- - add quiet option to `bundle package` (#2573, @shtirlic)
1598
- - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
1813
+ - set $MANPATH so `bundle exec man name` works ([#1624](https://github.com/bundler/bundler/issues/1624), @sunaku)
1814
+ - use `man` instead of `groff` ([#2579](https://github.com/bundler/bundler/issues/2579), @ixti, @simi)
1815
+ - add Gemfile dependency info to bundle outdated output ([#2487](https://github.com/bundler/bundler/issues/2487), @rahearn)
1816
+ - allow `require: true` as an alias for `require: <name>` ([#2538](https://github.com/bundler/bundler/issues/2538), @ndbroadbent)
1817
+ - rescue and report Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
1818
+ - detect cyclic dependencies ([#2564](https://github.com/bundler/bundler/issues/2564), @gnufied)
1819
+ - support multiple gems in `binstubs` ([#2576](https://github.com/bundler/bundler/issues/2576), @lucasmazza)
1820
+ - use https instead of git for :github gems ([#2569](https://github.com/bundler/bundler/issues/2569), @fuadsaud)
1821
+ - add quiet option to `bundle package` ([#2573](https://github.com/bundler/bundler/issues/2573), @shtirlic)
1822
+ - use RUBYLIB instead of RUBYOPT for better Windows support ([#2536](https://github.com/bundler/bundler/issues/2536), @equinux)
1599
1823
 
1600
1824
  Bugfixes:
1601
1825
 
1602
- - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
1603
- - display GitErrors while loading specs in --verbose mode (#2461)
1604
- - allow the same options hash to be passed to multiple gems (#2447)
1605
- - handle missing binaries without an exception (#2019, @luismreis)
1826
+ - reduce stack size while resolving to fix JRuby overflow ([#2510](https://github.com/bundler/bundler/issues/2510), @headius)
1827
+ - display GitErrors while loading specs in --verbose mode ([#2461](https://github.com/bundler/bundler/issues/2461))
1828
+ - allow the same options hash to be passed to multiple gems ([#2447](https://github.com/bundler/bundler/issues/2447))
1829
+ - handle missing binaries without an exception ([#2019](https://github.com/bundler/bundler/issues/2019), @luismreis)
1606
1830
 
1607
1831
  ## 1.3.6 (8 January 2014)
1608
1832
 
1609
1833
  Bugfixes:
1610
1834
 
1611
1835
  - make gemspec path option preserve relative paths in lock file (@bwillis)
1612
- - use umask when creating binstubs (#1618, @v-yarotsky)
1613
- - warn if graphviz is not installed (#2435, @Agis-)
1836
+ - use umask when creating binstubs ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
1837
+ - warn if graphviz is not installed ([#2435](https://github.com/bundler/bundler/issues/2435), @Agis-)
1614
1838
  - show git errors while loading gemspecs
1615
- - don't mutate gem method options hash (#2447)
1616
- - print Thor errors (#2478, @pjvds)
1839
+ - don't mutate gem method options hash ([#2447](https://github.com/bundler/bundler/issues/2447))
1840
+ - print Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
1617
1841
  - print Rubygems system exit errors (James Cook)
1618
1842
  - more Pathnames into Strings for MacRuby (@kml)
1619
1843
  - preserve original gemspec path (@bwillis)
1620
- - remove warning about deps with :git (#1651, @ixti)
1621
- - split git files on null (#2634, @jasonmp85)
1622
- - handle cross-host redirects without SSL (#2686, @grddev)
1844
+ - remove warning about deps with :git ([#1651](https://github.com/bundler/bundler/issues/1651), @ixti)
1845
+ - split git files on null ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
1846
+ - handle cross-host redirects without SSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
1623
1847
  - handle Rubygems 2 security exception (@zzak)
1624
1848
  - reinstall gems if they are missing with spec present
1625
- - set binstub permissions using umask (#1618, @v-yarotsky)
1849
+ - set binstub permissions using umask ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
1626
1850
 
1627
1851
  ## 1.3.5 (3 April 2013)
1628
1852
 
@@ -1698,28 +1922,28 @@ Security:
1698
1922
 
1699
1923
  - validate SSL certificate chain during HTTPS network requests
1700
1924
  - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
1701
- - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
1925
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, [#2293](https://github.com/bundler/bundler/issues/2293))
1702
1926
 
1703
1927
  Features:
1704
1928
 
1705
- - optimize resolver when too new of a gem is already activated (@rykov, #2248)
1929
+ - optimize resolver when too new of a gem is already activated (@rykov, [#2248](https://github.com/bundler/bundler/issues/2248))
1706
1930
  - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
1707
1931
  - explain SSL cert validation failures
1708
1932
  - generate gemspecs when installing git repos, removing shellouts
1709
1933
  - add pager selection (@csgui)
1710
- - add `licenses` command (@bryanwoods, #1898)
1711
- - sort output from `outdated` (@richardkmichael, #1896)
1712
- - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
1934
+ - add `licenses` command (@bryanwoods, [#1898](https://github.com/bundler/bundler/issues/1898))
1935
+ - sort output from `outdated` (@richardkmichael, [#1896](https://github.com/bundler/bundler/issues/1896))
1936
+ - add a .travis.yml to `gem -t` (@ndbroadbent, [#2143](https://github.com/bundler/bundler/issues/2143))
1713
1937
  - inform users when the resolver starts
1714
1938
  - disable reverse DNS to speed up API requests (@raggi)
1715
1939
 
1716
1940
  Bugfixes:
1717
1941
 
1718
- - raise errors while requiring dashed gems (#1807)
1719
- - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
1720
- - load gemspecs containing unicode (@gaffneyc, #2301)
1942
+ - raise errors while requiring dashed gems ([#1807](https://github.com/bundler/bundler/issues/1807))
1943
+ - quote the Bundler path on Windows (@jgeiger, [#1862](https://github.com/bundler/bundler/issues/1862), [#1856](https://github.com/bundler/bundler/issues/1856))
1944
+ - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
1721
1945
  - support any ruby version in --standalone
1722
- - resolve some ruby -w warnings (@chastell, #2193)
1946
+ - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
1723
1947
  - don't scare users with an error message during API fallback
1724
1948
  - `install --binstubs` is back to overwriting. thanks, SemVer.
1725
1949
 
@@ -1727,7 +1951,7 @@ Bugfixes:
1727
1951
 
1728
1952
  Bugfixes:
1729
1953
 
1730
- - stubs for gems with dev deps no longer cause exceptions (#2272)
1954
+ - stubs for gems with dev deps no longer cause exceptions ([#2272](https://github.com/bundler/bundler/issues/2272))
1731
1955
  - don't suggest binstubs to --binstubs users
1732
1956
 
1733
1957
  ## 1.3.0.pre.6 (22 January 2013)
@@ -1751,7 +1975,7 @@ Bugfixes:
1751
1975
  Features:
1752
1976
 
1753
1977
  - make `--standalone` require lines ruby engine/version agnostic
1754
- - add `--dry-run` to `bundle clean` (@wfarr, #2237)
1978
+ - add `--dry-run` to `bundle clean` (@wfarr, [#2237](https://github.com/bundler/bundler/issues/2237))
1755
1979
 
1756
1980
  Bugfixes:
1757
1981
 
@@ -1784,7 +2008,7 @@ Bugfixes:
1784
2008
 
1785
2009
  - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
1786
2010
  - revert SemVer breaking change to :github
1787
- - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
2011
+ - `outdated` exits non-zero if outdated gems found (@rohit, [#2021](https://github.com/bundler/bundler/issues/2021))
1788
2012
  - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
1789
2013
  - namespaced gems no longer generate a superfluous directory (@banyan)
1790
2014
 
@@ -1792,15 +2016,15 @@ Bugfixes:
1792
2016
 
1793
2017
  Features:
1794
2018
 
1795
- - `config` expands local overrides like `local.rack .` (@gkop, #2205)
1796
- - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
2019
+ - `config` expands local overrides like `local.rack .` (@gkop, [#2205](https://github.com/bundler/bundler/issues/2205))
2020
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, [#2201](https://github.com/bundler/bundler/issues/2201))
1797
2021
  - use gems from gists with the :gist option in the Gemfile (@jgaskins)
1798
2022
 
1799
2023
  Bugfixes:
1800
2024
 
1801
2025
  - Gemfile sources other than rubygems.org work even when .gemrc contains sources
1802
- - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
1803
- - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
2026
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, [#2039](https://github.com/bundler/bundler/issues/2039))
2027
+ - `show GEM` now warns if the directory has been deleted (@rohit, [#2070](https://github.com/bundler/bundler/issues/2070))
1804
2028
  - git output hidden when running in --quiet mode (@rohit)
1805
2029
 
1806
2030
  ## 1.3.0.pre (Nov 29, 2012)
@@ -1811,7 +2035,7 @@ Features:
1811
2035
  - compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
1812
2036
  - ruby 2.0 added to the `:ruby19` ABI-compatible platform
1813
2037
  - lazy load YAML, allowing Psych to be specified in the Gemfile
1814
- - significant performance improvements (@cheald, #2181)
2038
+ - significant performance improvements (@cheald, [#2181](https://github.com/bundler/bundler/issues/2181))
1815
2039
  - `inject` command for scripted Gemfile additions (Engine Yard)
1816
2040
  - :github option uses slashless arguments as repo owner (@rking)
1817
2041
  - `open` suggests gem names for typos (@jdelStrother)
@@ -1824,12 +2048,12 @@ Features:
1824
2048
  Bugfixes:
1825
2049
 
1826
2050
  - JRuby new works with HTTPS gem sources (@davidcelis)
1827
- - `install` installs both rake rake-built gems at once (@crowbot, #2107)
2051
+ - `install` installs both rake rake-built gems at once (@crowbot, [#2107](https://github.com/bundler/bundler/issues/2107))
1828
2052
  - handle Errno::ETIMEDOUT errors (@jmoses)
1829
2053
  - handle Errno::EAGAIN errors on JRuby
1830
2054
  - disable ANSI coloring when output is redirected (@tomykaira)
1831
2055
  - raise LoadErrors correctly during Bundler.require (@Empact)
1832
- - do not swallow --verbose on `bundle exec` (@sol, #2102)
2056
+ - do not swallow --verbose on `bundle exec` (@sol, [#2102](https://github.com/bundler/bundler/issues/2102))
1833
2057
  - `gem` generates gemspecs that block double-requires
1834
2058
  - `gem` generates gemspecs that admit they depend on rake
1835
2059
 
@@ -1851,9 +2075,9 @@ Features:
1851
2075
  Bugfixes:
1852
2076
 
1853
2077
  - don't send user/pass when redirected to another host (@perplexes)
1854
- - load gemspecs containing unicode (@gaffneyc, #2301)
2078
+ - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
1855
2079
  - support any ruby version in --standalone
1856
- - resolve some ruby -w warnings (@chastell, #2193)
2080
+ - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
1857
2081
  - don't scare users with an error message during API fallback
1858
2082
 
1859
2083
  ## 1.2.3 (Nov 29, 2012)
@@ -1897,41 +2121,41 @@ Bugfixes:
1897
2121
 
1898
2122
  Features:
1899
2123
 
1900
- - `check` now has a `--dry-run` option (@svenfuchs, #1811)
2124
+ - `check` now has a `--dry-run` option (@svenfuchs, [#1811](https://github.com/bundler/bundler/issues/1811))
1901
2125
  - loosen ruby directive for engines
1902
- - prune git/path directories inside vendor/cache (@josevalim, #1988)
2126
+ - prune git/path directories inside vendor/cache (@josevalim, [#1988](https://github.com/bundler/bundler/issues/1988))
1903
2127
  - update vendored thor to 0.15.2 (@sferik)
1904
- - add .txt to LICENSE (@postmodern, #2001)
1905
- - add `config disable_local_branch_check` (@josevalim, #1985)
1906
- - fall back on the full index when experiencing syck errors (#1419)
1907
- - handle syntax errors in Ruby gemspecs (#1974)
2128
+ - add .txt to LICENSE (@postmodern, [#2001](https://github.com/bundler/bundler/issues/2001))
2129
+ - add `config disable_local_branch_check` (@josevalim, [#1985](https://github.com/bundler/bundler/issues/1985))
2130
+ - fall back on the full index when experiencing syck errors ([#1419](https://github.com/bundler/bundler/issues/1419))
2131
+ - handle syntax errors in Ruby gemspecs ([#1974](https://github.com/bundler/bundler/issues/1974))
1908
2132
 
1909
2133
  Bugfixes:
1910
2134
 
1911
- - fix `pack`/`cache` with `--all` (@josevalim, #1989)
2135
+ - fix `pack`/`cache` with `--all` (@josevalim, [#1989](https://github.com/bundler/bundler/issues/1989))
1912
2136
  - don't display warning message when `cache_all` is set
1913
- - check for `nil` PATH (#2006)
1914
- - Always try to keep original GEM_PATH (@drogus, #1920)
2137
+ - check for `nil` PATH ([#2006](https://github.com/bundler/bundler/issues/2006))
2138
+ - Always try to keep original GEM_PATH (@drogus, [#1920](https://github.com/bundler/bundler/issues/1920))
1915
2139
 
1916
2140
  ## 1.2.0.pre.1 (May 27, 2012)
1917
2141
 
1918
2142
  Features:
1919
2143
 
1920
- - Git gems import submodules of submodules recursively (@nwwatson, #1935)
2144
+ - Git gems import submodules of submodules recursively (@nwwatson, [#1935](https://github.com/bundler/bundler/issues/1935))
1921
2145
 
1922
2146
  Bugfixes:
1923
2147
 
1924
2148
  - Exit from `check` with a non-zero status when frozen with no lock
1925
- - Use `latest_release` in Capistrano and Vlad integration (#1264)
2149
+ - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
1926
2150
  - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1927
2151
 
1928
2152
  Documentation:
1929
2153
 
1930
2154
  - Add instructions for local git repos to the `config` manpage
1931
2155
  - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
1932
- - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
2156
+ - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
1933
2157
  - Unknown exceptions now link to ISSUES for help instead of a new ticket
1934
- - Correct inline help for `clean --force` (@dougbarth, #1911)
2158
+ - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
1935
2159
 
1936
2160
  ## 1.2.0.pre (May 4, 2012)
1937
2161
 
@@ -1942,28 +2166,28 @@ Features:
1942
2166
  - It is possible to override a git repository via configuration.
1943
2167
  For instance, if you have a git dependency on rack, you can force
1944
2168
  it to use a local repo with `bundle config local.rack ~/path/to/rack`
1945
- - Cache gemspec loads for performance (@dekellum, #1635)
1946
- - add --full-index flag to `bundle update` (@fluxx, #1829)
1947
- - add --quiet flag to `bundle update` (@nashby, #1654)
1948
- - Add Bundler::GemHelper.gemspec (@knu, #1637)
1949
- - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
2169
+ - Cache gemspec loads for performance (@dekellum, [#1635](https://github.com/bundler/bundler/issues/1635))
2170
+ - add --full-index flag to `bundle update` (@fluxx, [#1829](https://github.com/bundler/bundler/issues/1829))
2171
+ - add --quiet flag to `bundle update` (@nashby, [#1654](https://github.com/bundler/bundler/issues/1654))
2172
+ - Add Bundler::GemHelper.gemspec (@knu, [#1637](https://github.com/bundler/bundler/issues/1637))
2173
+ - Graceful handling of Gemfile syntax errors (@koraktor, [#1661](https://github.com/bundler/bundler/issues/1661))
1950
2174
  - `bundle platform` command
1951
2175
  - add ruby to DSL, to specify version of ruby
1952
2176
  - error out if the ruby version doesn't match
1953
2177
 
1954
2178
  Performance:
1955
2179
 
1956
- - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
2180
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, [#1598](https://github.com/bundler/bundler/issues/1598))
1957
2181
 
1958
2182
  Bugfixes:
1959
2183
 
1960
- - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
2184
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
1961
2185
  - Use the same ruby to run subprocesses as is running rake (@brixen)
1962
2186
 
1963
2187
  Documentation:
1964
2188
 
1965
- - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
1966
- - Add docs for the --no-cache option (@fluxx, #1796)
2189
+ - Add :github documentation in DSL (@zofrex, [#1848](https://github.com/bundler/bundler/issues/1848), [#1851](https://github.com/bundler/bundler/issues/1851), [#1852](https://github.com/bundler/bundler/issues/1852))
2190
+ - Add docs for the --no-cache option (@fluxx, [#1796](https://github.com/bundler/bundler/issues/1796))
1967
2191
  - Add basic documentation for bin_path and bundle_path (@radar)
1968
2192
  - Add documentation for the run method in Bundler::Installer
1969
2193
 
@@ -1977,23 +2201,23 @@ Features:
1977
2201
 
1978
2202
  Bugfixes:
1979
2203
 
1980
- - Use `latest_release` in Capistrano and Vlad integration (#1264)
2204
+ - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
1981
2205
  - Unknown exceptions now link to ISSUES for help instead of a new ticket
1982
- - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1983
- - Correct inline help for `clean --force` (@dougbarth, #1911)
2206
+ - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
2207
+ - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
1984
2208
  - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1985
2209
 
1986
2210
  ## 1.1.3 (March 23, 2012)
1987
2211
 
1988
2212
  Bugfixes:
1989
2213
 
1990
- - escape the bundler root path (@tenderlove, #1789)
2214
+ - escape the bundler root path (@tenderlove, [#1789](https://github.com/bundler/bundler/issues/1789))
1991
2215
 
1992
2216
  ## 1.1.2 (March 20, 2012)
1993
2217
 
1994
2218
  Bugfixes:
1995
2219
 
1996
- - Fix --deployment for multiple PATH sections of the same source (#1782)
2220
+ - Fix --deployment for multiple PATH sections of the same source ([#1782](https://github.com/bundler/bundler/issues/1782))
1997
2221
 
1998
2222
  ## 1.1.1 (March 14, 2012)
1999
2223
 
@@ -2003,8 +2227,8 @@ Bugfixes:
2003
2227
  - Stop asking users to report gem installation errors
2004
2228
  - Clarify "no sources" message
2005
2229
  - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
2006
- - URI-encode gem names for dependency API (@rohit, #1672)
2007
- - Fix `cache` edge case in rubygems 1.3.7 (#1202)
2230
+ - URI-encode gem names for dependency API (@rohit, [#1672](https://github.com/bundler/bundler/issues/1672))
2231
+ - Fix `cache` edge case in rubygems 1.3.7 ([#1202](https://github.com/bundler/bundler/issues/1202))
2008
2232
 
2009
2233
  Performance:
2010
2234
 
@@ -2026,10 +2250,10 @@ Performance:
2026
2250
 
2027
2251
  Bugfixes:
2028
2252
 
2029
- - Load gemspecs from git even when a released gem has the same version (#1609)
2030
- - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
2031
- - handle gemspec development dependencies correctly (@raggi, #1639)
2032
- - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
2253
+ - Load gemspecs from git even when a released gem has the same version ([#1609](https://github.com/bundler/bundler/issues/1609))
2254
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer ([#1619](https://github.com/bundler/bundler/issues/1619))
2255
+ - handle gemspec development dependencies correctly (@raggi, [#1639](https://github.com/bundler/bundler/issues/1639))
2256
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
2033
2257
 
2034
2258
  ## 1.1.rc.7 (Dec 29, 2011)
2035
2259
 
@@ -2041,7 +2265,7 @@ Bugfixes:
2041
2265
 
2042
2266
  Bugfixes:
2043
2267
 
2044
- - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
2268
+ - Fix performance regression from 1.0 (@spastorino, [#1511](https://github.com/bundler/bundler/issues/1511), [#1591](https://github.com/bundler/bundler/issues/1591), [#1592](https://github.com/bundler/bundler/issues/1592))
2045
2269
  - Load gems correctly when GEM_HOME is blank
2046
2270
  - Refresh gems so Bundler works from inside a bundle
2047
2271
  - Handle empty .bundle/config files without an error
@@ -2056,64 +2280,64 @@ Bugfixes:
2056
2280
 
2057
2281
  Features:
2058
2282
 
2059
- - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
2283
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, [#683](https://github.com/bundler/bundler/issues/683))
2060
2284
 
2061
2285
  Bugfixes:
2062
2286
 
2063
- - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
2064
- - fix `bundle viz` (@hirochachacha, #1586)
2287
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, [#1588](https://github.com/bundler/bundler/issues/1588))
2288
+ - fix `bundle viz` (@hirochachacha, [#1586](https://github.com/bundler/bundler/issues/1586))
2065
2289
 
2066
2290
  ## 1.1.rc.3 (Dec 8, 2011)
2067
2291
 
2068
2292
  Bugfixes:
2069
2293
 
2070
- - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
2071
- - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
2294
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path ([#1582](https://github.com/bundler/bundler/issues/1582))
2295
+ - fix bundle outdated doesn't list all gems (@joelmoss, [#1521](https://github.com/bundler/bundler/issues/1521))
2072
2296
 
2073
2297
  ## 1.1.rc.2 (Dec 6, 2011)
2074
2298
 
2075
2299
  Features:
2076
2300
 
2077
- - Added README.md to `newgem` (@ognevsky, #1574)
2078
- - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
2301
+ - Added README.md to `newgem` (@ognevsky, [#1574](https://github.com/bundler/bundler/issues/1574))
2302
+ - Added LICENSE (MIT) to newgem (@ognevsky, [#1571](https://github.com/bundler/bundler/issues/1571))
2079
2303
 
2080
2304
  Bugfixes:
2081
2305
 
2082
- - only auto-namespace requires for implied requires (#1531)
2083
- - fix bundle clean output for git repos (#1473)
2084
- - use Gem.bindir for bundle clean (#1544, #1532)
2085
- - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
2086
- - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
2087
- - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
2306
+ - only auto-namespace requires for implied requires ([#1531](https://github.com/bundler/bundler/issues/1531))
2307
+ - fix bundle clean output for git repos ([#1473](https://github.com/bundler/bundler/issues/1473))
2308
+ - use Gem.bindir for bundle clean ([#1544](https://github.com/bundler/bundler/issues/1544), [#1532](https://github.com/bundler/bundler/issues/1532))
2309
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2310
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, [#1539](https://github.com/bundler/bundler/issues/1539))
2311
+ - `bundle clean` handles 7 length git hash for bundle clean ([#1490](https://github.com/bundler/bundler/issues/1490), [#1491](https://github.com/bundler/bundler/issues/1491))
2088
2312
  - fix Psych loading issues
2089
- - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
2090
- - 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)
2091
- - `newgem` now uses https://rubygems.org (#1562)
2092
- - `bundle init` now uses https://rubygems.org (@jjb, #1522)
2313
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, [#1573](https://github.com/bundler/bundler/issues/1573))
2314
+ - 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/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2315
+ - `newgem` now uses https://rubygems.org ([#1562](https://github.com/bundler/bundler/issues/1562))
2316
+ - `bundle init` now uses https://rubygems.org (@jjb, [#1522](https://github.com/bundler/bundler/issues/1522))
2093
2317
  - `bundle install/update` does not autoclean when using --path for semver
2094
2318
 
2095
2319
  Documentation:
2096
2320
 
2097
- - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
2321
+ - added documentation for --shebang option for `bundle install` (@lunks, [#1475](https://github.com/bundler/bundler/issues/1475), [#1558](https://github.com/bundler/bundler/issues/1558))
2098
2322
 
2099
2323
  ## 1.1.rc (Oct 3, 2011)
2100
2324
 
2101
2325
  Features:
2102
2326
 
2103
- - add `--shebang` option to bundle install (@bensie, #1467)
2104
- - build passes on ruby 1.9.3rc1 (#1458, #1469)
2105
- - hide basic auth credentials for custom sources (#1440, #1463)
2327
+ - add `--shebang` option to bundle install (@bensie, [#1467](https://github.com/bundler/bundler/issues/1467))
2328
+ - build passes on ruby 1.9.3rc1 ([#1458](https://github.com/bundler/bundler/issues/1458), [#1469](https://github.com/bundler/bundler/issues/1469))
2329
+ - hide basic auth credentials for custom sources ([#1440](https://github.com/bundler/bundler/issues/1440), [#1463](https://github.com/bundler/bundler/issues/1463))
2106
2330
 
2107
2331
  Bugfixes:
2108
2332
 
2109
- - fix index search result caching (#1446, #1466)
2110
- - fix fetcher prints multiple times during install (#1445, #1462)
2333
+ - fix index search result caching ([#1446](https://github.com/bundler/bundler/issues/1446), [#1466](https://github.com/bundler/bundler/issues/1466))
2334
+ - fix fetcher prints multiple times during install ([#1445](https://github.com/bundler/bundler/issues/1445), [#1462](https://github.com/bundler/bundler/issues/1462))
2111
2335
  - don't mention API errors from non-rubygems.org sources
2112
- - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
2336
+ - fix autoclean so it doesn't remove bins that are used ([#1459](https://github.com/bundler/bundler/issues/1459), [#1460](https://github.com/bundler/bundler/issues/1460))
2113
2337
 
2114
2338
  Documentation:
2115
2339
 
2116
- - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
2340
+ - add :require => [...] to the gemfile(5) manpage (@nono, [#1468](https://github.com/bundler/bundler/issues/1468))
2117
2341
 
2118
2342
  ## 1.1.pre.10 (Sep 27, 2011)
2119
2343
 
@@ -2126,75 +2350,75 @@ Features:
2126
2350
  Features:
2127
2351
 
2128
2352
  - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
2129
- - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
2130
- - `clean` now takes a `--force` option (#1247, #1426)
2131
- - `clean` will clean up cached git dirs in bundle clean (#1390)
2132
- - remove deprecations from DSL (#1119)
2133
- - autorequire tries directories for gems with dashed names (#1205)
2134
- - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
2135
- - load rubygems plugins in the bundle binary (@tpope, #1364)
2136
- - make `--standalone` respect `--path` (@cowboyd, #1361)
2137
-
2138
- Bugfixes:
2139
-
2140
- - Fix `clean` to handle nested gems in a git repo (#1329)
2141
- - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
2142
- - Fix fatal error when unable to connect to gem source (#1269)
2143
- - Fix `outdated` to find pre-release gems that are installed. (#1359)
2144
- - Fix color for ui. (#1374)
2353
+ - `clean` will be automatically run after bundle install and update when using `--path` ([#1420](https://github.com/bundler/bundler/issues/1420), [#1425](https://github.com/bundler/bundler/issues/1425))
2354
+ - `clean` now takes a `--force` option ([#1247](https://github.com/bundler/bundler/issues/1247), [#1426](https://github.com/bundler/bundler/issues/1426))
2355
+ - `clean` will clean up cached git dirs in bundle clean ([#1390](https://github.com/bundler/bundler/issues/1390))
2356
+ - remove deprecations from DSL ([#1119](https://github.com/bundler/bundler/issues/1119))
2357
+ - autorequire tries directories for gems with dashed names ([#1205](https://github.com/bundler/bundler/issues/1205))
2358
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, [#1360](https://github.com/bundler/bundler/issues/1360))
2359
+ - load rubygems plugins in the bundle binary (@tpope, [#1364](https://github.com/bundler/bundler/issues/1364))
2360
+ - make `--standalone` respect `--path` (@cowboyd, [#1361](https://github.com/bundler/bundler/issues/1361))
2361
+
2362
+ Bugfixes:
2363
+
2364
+ - Fix `clean` to handle nested gems in a git repo ([#1329](https://github.com/bundler/bundler/issues/1329))
2365
+ - Fix conflict from revert of benchmark tool (@boffbowsh, [#1355](https://github.com/bundler/bundler/issues/1355))
2366
+ - Fix fatal error when unable to connect to gem source ([#1269](https://github.com/bundler/bundler/issues/1269))
2367
+ - Fix `outdated` to find pre-release gems that are installed. ([#1359](https://github.com/bundler/bundler/issues/1359))
2368
+ - Fix color for ui. ([#1374](https://github.com/bundler/bundler/issues/1374))
2145
2369
  - Fix installing to user-owned system gems on OS X
2146
- - Fix caching issue in the resolver (#1353, #1421)
2370
+ - Fix caching issue in the resolver ([#1353](https://github.com/bundler/bundler/issues/1353), [#1421](https://github.com/bundler/bundler/issues/1421))
2147
2371
  - Fix :github DSL option
2148
2372
 
2149
2373
  ## 1.1.pre.8 (Aug 13, 2011)
2150
2374
 
2151
2375
  Bugfixes:
2152
2376
 
2153
- - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
2154
- - Fix require_sudo when Gem.bindir isn't writeable (#1352)
2155
- - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
2156
- - Fix `install --binstubs` when using --path (#1332)
2377
+ - Fix `bundle check` to not print fatal error message (@cldwalker, [#1347](https://github.com/bundler/bundler/issues/1347))
2378
+ - Fix require_sudo when Gem.bindir isn't writeable ([#1352](https://github.com/bundler/bundler/issues/1352))
2379
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment ([#1254](https://github.com/bundler/bundler/issues/1254))
2380
+ - Fix `install --binstubs` when using --path ([#1332](https://github.com/bundler/bundler/issues/1332))
2157
2381
 
2158
2382
  ## 1.1.pre.7 (Aug 8, 2011)
2159
2383
 
2160
2384
  Bugfixes:
2161
2385
 
2162
- - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
2386
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
2163
2387
  - Fixed exception when sudo was needed to install gems (@spastorino)
2164
2388
 
2165
2389
  ## 1.1.pre.6 (Aug 8, 2011)
2166
2390
 
2167
2391
  Bugfixes:
2168
2392
 
2169
- - Fix cross repository dependencies (#1138)
2170
- - Fix git dependency fetching from API endpoint (#1254)
2171
- - Fixes for bundle outdated (@joelmoss, #1238)
2172
- - Fix bundle standalone when using the endpoint (#1240)
2393
+ - Fix cross repository dependencies ([#1138](https://github.com/bundler/bundler/issues/1138))
2394
+ - Fix git dependency fetching from API endpoint ([#1254](https://github.com/bundler/bundler/issues/1254))
2395
+ - Fixes for bundle outdated (@joelmoss, [#1238](https://github.com/bundler/bundler/issues/1238))
2396
+ - Fix bundle standalone when using the endpoint ([#1240](https://github.com/bundler/bundler/issues/1240))
2173
2397
 
2174
2398
  Features:
2175
2399
 
2176
- - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
2177
- - bundle clean removes old .gem files (@cldwalker, #1293)
2400
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, [#1274](https://github.com/bundler/bundler/issues/1274))
2401
+ - bundle clean removes old .gem files (@cldwalker, [#1293](https://github.com/bundler/bundler/issues/1293))
2178
2402
  - Correcly identify missing child dependency in error message
2179
- - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
2180
- - create Gemfile.lock for empty Gemfile (#1218)
2403
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, [#1120](https://github.com/bundler/bundler/issues/1120))
2404
+ - create Gemfile.lock for empty Gemfile ([#1218](https://github.com/bundler/bundler/issues/1218))
2181
2405
 
2182
2406
  ## 1.1.pre.5 (June 11, 2011)
2183
2407
 
2184
2408
  Bugfixes:
2185
2409
 
2186
- - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
2187
- - Fix HTTP proxy support (@leobessa, #878)
2410
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, [#1232](https://github.com/bundler/bundler/issues/1232))
2411
+ - Fix HTTP proxy support (@leobessa, [#878](https://github.com/bundler/bundler/issues/878))
2188
2412
 
2189
2413
  Features:
2190
2414
 
2191
2415
  - Speed up `install --deployment` by using the API endpoint
2192
- - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
2416
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, [#1229](https://github.com/bundler/bundler/issues/1229))
2193
2417
  - Add `install --full-index` to disable the API endpoint, just in case
2194
2418
  - Significantly speed up install by removing unneeded gemspec fetches
2195
- - `outdated` command shows outdated gems (@joelmoss, #1130)
2196
- - Print gem post install messages (@csquared, #1155)
2197
- - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
2419
+ - `outdated` command shows outdated gems (@joelmoss, [#1130](https://github.com/bundler/bundler/issues/1130))
2420
+ - Print gem post install messages (@csquared, [#1155](https://github.com/bundler/bundler/issues/1155))
2421
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, [#1222](https://github.com/bundler/bundler/issues/1222))
2198
2422
  - Allow `check --path`
2199
2423
 
2200
2424
  ## 1.1.pre.4 (May 5, 2011)
@@ -2262,7 +2486,7 @@ Bugfixes:
2262
2486
 
2263
2487
  Features:
2264
2488
 
2265
- - Add platform :maglev (@timfel, #1444)
2489
+ - Add platform :maglev (@timfel, [#1444](https://github.com/bundler/bundler/issues/1444))
2266
2490
 
2267
2491
  Bugfixes:
2268
2492
 
@@ -2273,73 +2497,73 @@ Bugfixes:
2273
2497
 
2274
2498
  Features:
2275
2499
 
2276
- - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
2277
- - Allow clearing without groups by passing `--without ''` (#1259)
2500
+ - Rescue interrupts to `bundle` while loading bundler.rb ([#1395](https://github.com/bundler/bundler/issues/1395))
2501
+ - Allow clearing without groups by passing `--without ''` ([#1259](https://github.com/bundler/bundler/issues/1259))
2278
2502
 
2279
2503
  Bugfixes:
2280
2504
 
2281
- - Manually sort requirements in the lockfile (#1375)
2505
+ - Manually sort requirements in the lockfile ([#1375](https://github.com/bundler/bundler/issues/1375))
2282
2506
  - Remove several warnings generated by ruby -w (@stephencelis)
2283
- - Handle trailing slashes on names passed to `gem` (#1372)
2284
- - Name modules for gems like 'test-foo_bar' correctly (#1303)
2285
- - Don't require Psych if Syck is already loaded (#1239)
2507
+ - Handle trailing slashes on names passed to `gem` ([#1372](https://github.com/bundler/bundler/issues/1372))
2508
+ - Name modules for gems like 'test-foo_bar' correctly ([#1303](https://github.com/bundler/bundler/issues/1303))
2509
+ - Don't require Psych if Syck is already loaded ([#1239](https://github.com/bundler/bundler/issues/1239))
2286
2510
 
2287
2511
  ## 1.0.19.rc (September 13, 2011)
2288
2512
 
2289
2513
  Features:
2290
2514
 
2291
2515
  - Compatibility with Rubygems 1.8.10 installer changes
2292
- - Report gem installation failures clearly (@rwilcox, #1380)
2516
+ - Report gem installation failures clearly (@rwilcox, [#1380](https://github.com/bundler/bundler/issues/1380))
2293
2517
  - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
2294
2518
 
2295
2519
  Bugfixes:
2296
2520
 
2297
2521
  - `exec` now works when the command contains 'exec'
2298
- - Only touch lock after changes on Windows (@robertwahler, #1358)
2299
- - Keep load paths when #setup is called multiple times (@radsaq, #1379)
2522
+ - Only touch lock after changes on Windows (@robertwahler, [#1358](https://github.com/bundler/bundler/issues/1358))
2523
+ - Keep load paths when #setup is called multiple times (@radsaq, [#1379](https://github.com/bundler/bundler/issues/1379))
2300
2524
 
2301
2525
  ## 1.0.18 (August 16, 2011)
2302
2526
 
2303
2527
  Bugfixes:
2304
2528
 
2305
2529
  - Fix typo in DEBUG_RESOLVER (@geemus)
2306
- - Fixes rake 0.9.x warning (@mtylty, #1333)
2530
+ - Fixes rake 0.9.x warning (@mtylty, [#1333](https://github.com/bundler/bundler/issues/1333))
2307
2531
  - Fix `bundle cache` again for rubygems 1.3.x
2308
2532
 
2309
2533
  Features:
2310
2534
 
2311
- - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
2312
- - Support hidden gemspec (@trans, @cldwalker, #827)
2313
- - Make fetch_specs faster (@zeha, #1294)
2314
- - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
2535
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, [#1300](https://github.com/bundler/bundler/issues/1300))
2536
+ - Support hidden gemspec (@trans, @cldwalker, [#827](https://github.com/bundler/bundler/issues/827))
2537
+ - Make fetch_specs faster (@zeha, [#1294](https://github.com/bundler/bundler/issues/1294))
2538
+ - Allow overriding development deps loaded by #gemspec (@lgierth, [#1245](https://github.com/bundler/bundler/issues/1245))
2315
2539
 
2316
2540
  ## 1.0.17 (August 8, 2011)
2317
2541
 
2318
2542
  Bugfixes:
2319
2543
 
2320
- - Fix rake issues with rubygems 1.3.x (#1342)
2321
- - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
2544
+ - Fix rake issues with rubygems 1.3.x ([#1342](https://github.com/bundler/bundler/issues/1342))
2545
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
2322
2546
 
2323
2547
  ## 1.0.16 (August 8, 2011)
2324
2548
 
2325
2549
  Features:
2326
2550
 
2327
- - Performance fix for MRI 1.9 (@efficientcloud, #1288)
2551
+ - Performance fix for MRI 1.9 (@efficientcloud, [#1288](https://github.com/bundler/bundler/issues/1288))
2328
2552
  - Shortcuts (like `bundle i`) for all commands (@amatsuda)
2329
2553
  - Correcly identify missing child dependency in error message
2330
2554
 
2331
2555
  Bugfixes:
2332
2556
 
2333
- - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
2334
- - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
2335
- - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
2336
- - Fix `bundle install --without` on kiji (@tmm1, #1287)
2337
- - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
2557
+ - Allow Windows network share paths with forward slashes (@mtscout6, [#1253](https://github.com/bundler/bundler/issues/1253))
2558
+ - Check for rubygems.org credentials so `rake release` doesn't hang ([#980](https://github.com/bundler/bundler/issues/980))
2559
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, [#1202](https://github.com/bundler/bundler/issues/1202))
2560
+ - Fix `bundle install --without` on kiji (@tmm1, [#1287](https://github.com/bundler/bundler/issues/1287))
2561
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, [#1231](https://github.com/bundler/bundler/issues/1231))
2338
2562
 
2339
2563
  Documentation:
2340
2564
 
2341
- - Documentation for `gem ..., :require => false` (@kmayer, #1292)
2342
- - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
2565
+ - Documentation for `gem ..., :require => false` (@kmayer, [#1292](https://github.com/bundler/bundler/issues/1292))
2566
+ - Gems provide "executables", they are rarely also binaries (@fxn, [#1242](https://github.com/bundler/bundler/issues/1242))
2343
2567
 
2344
2568
  ## 1.0.15 (June 9, 2011)
2345
2569
 
@@ -2467,7 +2691,7 @@ Bugfixes:
2467
2691
  Bugfixes:
2468
2692
 
2469
2693
  - Fix regression in `update` that caused long/wrong results
2470
- - Allow git gems on other platforms while installing (#579)
2694
+ - Allow git gems on other platforms while installing ([#579](https://github.com/bundler/bundler/issues/579))
2471
2695
 
2472
2696
  Features:
2473
2697
 
@@ -2741,7 +2965,7 @@ isolation.
2741
2965
  - Fixes an obscure bug where switching the source of a gem could fail to correctly
2742
2966
  change the source of its dependencies
2743
2967
  - Support multiple version dependencies in the Gemfile
2744
- (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
2968
+ (`gem "rails", ">= 3.0.0.beta1", "<= 3.0.0"`)
2745
2969
  - Raise an exception for ambiguous uses of multiple declarations of the same gem
2746
2970
  (for instance, with different versions or sources).
2747
2971
  - Fix cases where the same dependency appeared several times in the Gemfile.lock
@@ -2799,18 +3023,18 @@ Features:
2799
3023
 
2800
3024
  - cache command now prunes stale .gem files from vendor/cache
2801
3025
  - init --gemspec command now generates development dependencies
2802
- - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
2803
- - remove .gem files generated after installing a gem from a :path (#286)
2804
- - improve install/lock messaging (#284)
3026
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED ([#287](https://github.com/bundler/bundler/issues/287))
3027
+ - remove .gem files generated after installing a gem from a :path ([#286](https://github.com/bundler/bundler/issues/286))
3028
+ - improve install/lock messaging ([#284](https://github.com/bundler/bundler/issues/284))
2805
3029
 
2806
3030
  Bugfixes:
2807
3031
 
2808
- - ignore cached gems that are for another platform (#288)
2809
- - install Windows gems that have no architecture set, like rcov (#277)
2810
- - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
3032
+ - ignore cached gems that are for another platform ([#288](https://github.com/bundler/bundler/issues/288))
3033
+ - install Windows gems that have no architecture set, like rcov ([#277](https://github.com/bundler/bundler/issues/277))
3034
+ - exec command while locked now includes the bundler lib in $LOAD_PATH ([#293](https://github.com/bundler/bundler/issues/293))
2811
3035
  - fix the `rake install` task
2812
- - add GemspecError so it can be raised without (further) error (#292)
2813
- - create a parent directory before cloning for git 1.5 compatibility (#285)
3036
+ - add GemspecError so it can be raised without (further) error ([#292](https://github.com/bundler/bundler/issues/292))
3037
+ - create a parent directory before cloning for git 1.5 compatibility ([#285](https://github.com/bundler/bundler/issues/285))
2814
3038
 
2815
3039
  ## 0.9.21 (April 16, 2010)
2816
3040
 
@@ -2835,14 +3059,14 @@ Bugfixes:
2835
3059
 
2836
3060
  Features:
2837
3061
 
2838
- - suggest `bundle install --relock` when the Gemfile has changed (#272)
2839
- - source support for Rubygems servers without prerelease gem indexes (#262)
3062
+ - suggest `bundle install --relock` when the Gemfile has changed ([#272](https://github.com/bundler/bundler/issues/272))
3063
+ - source support for Rubygems servers without prerelease gem indexes ([#262](https://github.com/bundler/bundler/issues/262))
2840
3064
 
2841
3065
  Bugfixes:
2842
3066
 
2843
- - don't set up all groups every time Bundler.setup is called while locked (#263)
2844
- - fix #full_gem_path for git gems while locked (#268)
2845
- - eval gemspecs at the top level, not inside the Bundler class (#269)
3067
+ - don't set up all groups every time Bundler.setup is called while locked ([#263](https://github.com/bundler/bundler/issues/263))
3068
+ - fix #full_gem_path for git gems while locked ([#268](https://github.com/bundler/bundler/issues/268))
3069
+ - eval gemspecs at the top level, not inside the Bundler class ([#269](https://github.com/bundler/bundler/issues/269))
2846
3070
 
2847
3071
 
2848
3072
  ## 0.9.18 (April 8, 2010)
@@ -2853,7 +3077,7 @@ Features:
2853
3077
 
2854
3078
  Bugfixes:
2855
3079
 
2856
- - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
3080
+ - Bundler.setup now fully disables system gems, even when unlocked ([#266](https://github.com/bundler/bundler/issues/266), [#246](https://github.com/bundler/bundler/issues/246))
2857
3081
  - fixes Yard, which found plugins in Gem.source_index that it could not load
2858
3082
  - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
2859
3083
 
@@ -2875,7 +3099,7 @@ Features:
2875
3099
 
2876
3100
  - exit gracefully on INT signal
2877
3101
  - resolver output now indicates whether remote sources were checked
2878
- - print error instead of backtrace when exec cannot find a binary (#241)
3102
+ - print error instead of backtrace when exec cannot find a binary ([#241](https://github.com/bundler/bundler/issues/241))
2879
3103
 
2880
3104
  Bugfixes:
2881
3105
 
@@ -2884,9 +3108,9 @@ Bugfixes:
2884
3108
  - outputs branch names other than master
2885
3109
  - gets the correct sha from the checkout
2886
3110
  - doesn't print sha twice if :ref is set
2887
- - report errors from bundler/setup.rb without backtraces (#243)
3111
+ - report errors from bundler/setup.rb without backtraces ([#243](https://github.com/bundler/bundler/issues/243))
2888
3112
  - fix Gem::Spec#git_version to not error on unloaded specs
2889
- - improve deprecation, Gemfile, and command error messages (#242)
3113
+ - improve deprecation, Gemfile, and command error messages ([#242](https://github.com/bundler/bundler/issues/242))
2890
3114
 
2891
3115
  ## 0.9.15 (April 1, 2010)
2892
3116
 
@@ -2901,7 +3125,7 @@ Features:
2901
3125
  Bugfixes:
2902
3126
 
2903
3127
  - prep for Rubygems 1.3.7 changes
2904
- - install command now pulls git branches correctly (#211)
3128
+ - install command now pulls git branches correctly ([#211](https://github.com/bundler/bundler/issues/211))
2905
3129
  - raise errors on invalid options in the Gemfile
2906
3130
 
2907
3131
  ## 0.9.14 (March 30, 2010)
@@ -2943,12 +3167,12 @@ Features:
2943
3167
 
2944
3168
  Bugfixes:
2945
3169
 
2946
- - perform a topological sort on resolved gems (#191)
2947
- - gems from git work even when paths or repos have spaces (#196)
2948
- - Specification#loaded_from returns a String, like Gem::Specification (#197)
3170
+ - perform a topological sort on resolved gems ([#191](https://github.com/bundler/bundler/issues/191))
3171
+ - gems from git work even when paths or repos have spaces ([#196](https://github.com/bundler/bundler/issues/196))
3172
+ - Specification#loaded_from returns a String, like Gem::Specification ([#197](https://github.com/bundler/bundler/issues/197))
2949
3173
  - specs eval from inside the gem directory, even when locked
2950
3174
  - virtual gemspecs are now saved in environment.rb for use when loading
2951
- - unify the Installer's local index and the runtime index (#204)
3175
+ - unify the Installer's local index and the runtime index ([#204](https://github.com/bundler/bundler/issues/204))
2952
3176
 
2953
3177
  ## 0.9.11 (March 9, 2010)
2954
3178
 
@@ -2956,23 +3180,23 @@ Bugfixes:
2956
3180
 
2957
3181
  Features:
2958
3182
 
2959
- - install command can take the path to the gemfile with --gemfile (#125)
2960
- - unknown command line options are now rejected (#163)
2961
- - exec command hugely sped up while locked (#177)
2962
- - show command prints the install path if you pass it a gem name (#148)
2963
- - open command edits an installed gem with $EDITOR (#148)
2964
- - Gemfile allows assigning an array of groups to a gem (#114)
3183
+ - install command can take the path to the gemfile with --gemfile ([#125](https://github.com/bundler/bundler/issues/125))
3184
+ - unknown command line options are now rejected ([#163](https://github.com/bundler/bundler/issues/163))
3185
+ - exec command hugely sped up while locked ([#177](https://github.com/bundler/bundler/issues/177))
3186
+ - show command prints the install path if you pass it a gem name ([#148](https://github.com/bundler/bundler/issues/148))
3187
+ - open command edits an installed gem with $EDITOR ([#148](https://github.com/bundler/bundler/issues/148))
3188
+ - Gemfile allows assigning an array of groups to a gem ([#114](https://github.com/bundler/bundler/issues/114))
2965
3189
  - Gemfile allows :tag option on :git sources
2966
3190
  - improve backtraces when a gemspec is invalid
2967
3191
  - improve performance by installing gems from the cache if present
2968
3192
 
2969
3193
  Bugfixes:
2970
3194
 
2971
- - normalize parameters to Bundler.require (#153)
2972
- - check now checks installed gems rather than cached gems (#162)
2973
- - don't update the gem index when installing after locking (#169)
2974
- - bundle parenthesises arguments for 1.8.6 (#179)
2975
- - gems can now be assigned to multiple groups without problems (#135)
3195
+ - normalize parameters to Bundler.require ([#153](https://github.com/bundler/bundler/issues/153))
3196
+ - check now checks installed gems rather than cached gems ([#162](https://github.com/bundler/bundler/issues/162))
3197
+ - don't update the gem index when installing after locking ([#169](https://github.com/bundler/bundler/issues/169))
3198
+ - bundle parenthesises arguments for 1.8.6 ([#179](https://github.com/bundler/bundler/issues/179))
3199
+ - gems can now be assigned to multiple groups without problems ([#135](https://github.com/bundler/bundler/issues/135))
2976
3200
  - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
2977
3201
  - fix a Dependency.to_yaml error due to accidentally including sources and groups
2978
3202
  - don't reinstall packed gems