bundler 2.0.0 → 2.1.2

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

Potentially problematic release.


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

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