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