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

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