bundler 2.0.0.pre.3 → 2.1.0.pre.1

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

Potentially problematic release.


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

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