rubygems-update 2.6.4 → 2.6.5

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

Potentially problematic release.


This version of rubygems-update might be problematic. Click here for more details.

Files changed (288) hide show
  1. checksums.yaml +4 -4
  2. data/.travis.yml +18 -24
  3. data/CODE_OF_CONDUCT.md +2 -2
  4. data/CONTRIBUTING.rdoc +1 -1
  5. data/History.txt +30 -1
  6. data/Manifest.txt +233 -3
  7. data/Rakefile +30 -1
  8. data/appveyor.yml +0 -2
  9. data/bundler/CHANGELOG.md +2407 -0
  10. data/bundler/CODE_OF_CONDUCT.md +42 -0
  11. data/bundler/CONTRIBUTING.md +36 -0
  12. data/bundler/DEVELOPMENT.md +148 -0
  13. data/bundler/ISSUES.md +100 -0
  14. data/bundler/LICENSE.md +23 -0
  15. data/bundler/README.md +40 -0
  16. data/bundler/exe/bundle +35 -0
  17. data/bundler/exe/bundle_ruby +61 -0
  18. data/bundler/exe/bundler +22 -0
  19. data/bundler/lib/bundler.rb +455 -0
  20. data/bundler/lib/bundler/capistrano.rb +17 -0
  21. data/bundler/lib/bundler/cli.rb +497 -0
  22. data/bundler/lib/bundler/cli/binstubs.rb +40 -0
  23. data/bundler/lib/bundler/cli/cache.rb +35 -0
  24. data/bundler/lib/bundler/cli/check.rb +40 -0
  25. data/bundler/lib/bundler/cli/clean.rb +26 -0
  26. data/bundler/lib/bundler/cli/common.rb +56 -0
  27. data/bundler/lib/bundler/cli/config.rb +100 -0
  28. data/bundler/lib/bundler/cli/console.rb +39 -0
  29. data/bundler/lib/bundler/cli/exec.rb +82 -0
  30. data/bundler/lib/bundler/cli/gem.rb +214 -0
  31. data/bundler/lib/bundler/cli/init.rb +33 -0
  32. data/bundler/lib/bundler/cli/inject.rb +33 -0
  33. data/bundler/lib/bundler/cli/install.rb +225 -0
  34. data/bundler/lib/bundler/cli/lock.rb +48 -0
  35. data/bundler/lib/bundler/cli/open.rb +25 -0
  36. data/bundler/lib/bundler/cli/outdated.rb +151 -0
  37. data/bundler/lib/bundler/cli/package.rb +46 -0
  38. data/bundler/lib/bundler/cli/platform.rb +45 -0
  39. data/bundler/lib/bundler/cli/plugin.rb +23 -0
  40. data/bundler/lib/bundler/cli/show.rb +75 -0
  41. data/bundler/lib/bundler/cli/update.rb +72 -0
  42. data/bundler/lib/bundler/cli/viz.rb +27 -0
  43. data/bundler/lib/bundler/constants.rb +6 -0
  44. data/bundler/lib/bundler/current_ruby.rb +84 -0
  45. data/bundler/lib/bundler/definition.rb +744 -0
  46. data/bundler/lib/bundler/dep_proxy.rb +46 -0
  47. data/bundler/lib/bundler/dependency.rb +127 -0
  48. data/bundler/lib/bundler/deployment.rb +63 -0
  49. data/bundler/lib/bundler/deprecate.rb +16 -0
  50. data/bundler/lib/bundler/dsl.rb +512 -0
  51. data/bundler/lib/bundler/endpoint_specification.rb +129 -0
  52. data/bundler/lib/bundler/env.rb +83 -0
  53. data/bundler/lib/bundler/environment.rb +42 -0
  54. data/bundler/lib/bundler/environment_preserver.rb +38 -0
  55. data/bundler/lib/bundler/errors.rb +124 -0
  56. data/bundler/lib/bundler/fetcher.rb +304 -0
  57. data/bundler/lib/bundler/fetcher/base.rb +41 -0
  58. data/bundler/lib/bundler/fetcher/compact_index.rb +103 -0
  59. data/bundler/lib/bundler/fetcher/dependency.rb +92 -0
  60. data/bundler/lib/bundler/fetcher/downloader.rb +66 -0
  61. data/bundler/lib/bundler/fetcher/index.rb +51 -0
  62. data/bundler/lib/bundler/friendly_errors.rb +103 -0
  63. data/bundler/lib/bundler/gem_helper.rb +188 -0
  64. data/bundler/lib/bundler/gem_helpers.rb +32 -0
  65. data/bundler/lib/bundler/gem_remote_fetcher.rb +42 -0
  66. data/bundler/lib/bundler/gem_tasks.rb +6 -0
  67. data/bundler/lib/bundler/graph.rb +172 -0
  68. data/bundler/lib/bundler/index.rb +191 -0
  69. data/bundler/lib/bundler/injector.rb +63 -0
  70. data/bundler/lib/bundler/inline.rb +74 -0
  71. data/bundler/lib/bundler/installer.rb +217 -0
  72. data/bundler/lib/bundler/installer/gem_installer.rb +77 -0
  73. data/bundler/lib/bundler/installer/parallel_installer.rb +126 -0
  74. data/bundler/lib/bundler/installer/standalone.rb +52 -0
  75. data/bundler/lib/bundler/lazy_specification.rb +85 -0
  76. data/bundler/lib/bundler/lockfile_parser.rb +233 -0
  77. data/bundler/lib/bundler/match_platform.rb +14 -0
  78. data/bundler/lib/bundler/mirror.rb +218 -0
  79. data/bundler/lib/bundler/plugin.rb +156 -0
  80. data/bundler/lib/bundler/plugin/api.rb +56 -0
  81. data/bundler/lib/bundler/plugin/dsl.rb +29 -0
  82. data/bundler/lib/bundler/plugin/index.rb +88 -0
  83. data/bundler/lib/bundler/plugin/installer.rb +99 -0
  84. data/bundler/lib/bundler/plugin/installer/git.rb +38 -0
  85. data/bundler/lib/bundler/plugin/installer/rubygems.rb +27 -0
  86. data/bundler/lib/bundler/plugin/source_list.rb +24 -0
  87. data/bundler/lib/bundler/postit_trampoline.rb +57 -0
  88. data/bundler/lib/bundler/psyched_yaml.rb +27 -0
  89. data/bundler/lib/bundler/remote_specification.rb +85 -0
  90. data/bundler/lib/bundler/resolver.rb +368 -0
  91. data/bundler/lib/bundler/retry.rb +61 -0
  92. data/bundler/lib/bundler/ruby_dsl.rb +17 -0
  93. data/bundler/lib/bundler/ruby_version.rb +140 -0
  94. data/bundler/lib/bundler/rubygems_ext.rb +178 -0
  95. data/bundler/lib/bundler/rubygems_gem_installer.rb +10 -0
  96. data/bundler/lib/bundler/rubygems_integration.rb +710 -0
  97. data/bundler/lib/bundler/runtime.rb +282 -0
  98. data/bundler/lib/bundler/settings.rb +259 -0
  99. data/bundler/lib/bundler/setup.rb +28 -0
  100. data/bundler/lib/bundler/shared_helpers.rb +212 -0
  101. data/bundler/lib/bundler/similarity_detector.rb +62 -0
  102. data/bundler/lib/bundler/source.rb +37 -0
  103. data/bundler/lib/bundler/source/gemspec.rb +13 -0
  104. data/bundler/lib/bundler/source/git.rb +297 -0
  105. data/bundler/lib/bundler/source/git/git_proxy.rb +218 -0
  106. data/bundler/lib/bundler/source/path.rb +245 -0
  107. data/bundler/lib/bundler/source/path/installer.rb +44 -0
  108. data/bundler/lib/bundler/source/rubygems.rb +450 -0
  109. data/bundler/lib/bundler/source/rubygems/remote.rb +59 -0
  110. data/bundler/lib/bundler/source_list.rb +106 -0
  111. data/bundler/lib/bundler/spec_set.rb +157 -0
  112. data/bundler/lib/bundler/ssl_certs/.document +1 -0
  113. data/bundler/lib/bundler/ssl_certs/certificate_manager.rb +65 -0
  114. data/bundler/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  115. data/bundler/lib/bundler/ssl_certs/rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem +23 -0
  116. data/{lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot-2048.pem → bundler/lib/bundler/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem} +0 -0
  117. data/bundler/lib/bundler/stub_specification.rb +24 -0
  118. data/bundler/lib/bundler/templates/Executable +17 -0
  119. data/bundler/lib/bundler/templates/Executable.standalone +12 -0
  120. data/bundler/lib/bundler/templates/Gemfile +5 -0
  121. data/bundler/lib/bundler/templates/newgem/.travis.yml.tt +5 -0
  122. data/bundler/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +74 -0
  123. data/bundler/lib/bundler/templates/newgem/Gemfile.tt +4 -0
  124. data/bundler/lib/bundler/templates/newgem/LICENSE.txt.tt +21 -0
  125. data/bundler/lib/bundler/templates/newgem/README.md.tt +41 -0
  126. data/bundler/lib/bundler/templates/newgem/Rakefile.tt +29 -0
  127. data/bundler/lib/bundler/templates/newgem/bin/console.tt +14 -0
  128. data/bundler/lib/bundler/templates/newgem/bin/setup.tt +8 -0
  129. data/bundler/lib/bundler/templates/newgem/exe/newgem.tt +3 -0
  130. data/bundler/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +3 -0
  131. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +9 -0
  132. data/bundler/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +6 -0
  133. data/bundler/lib/bundler/templates/newgem/gitignore.tt +16 -0
  134. data/bundler/lib/bundler/templates/newgem/lib/newgem.rb.tt +12 -0
  135. data/bundler/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +7 -0
  136. data/bundler/lib/bundler/templates/newgem/newgem.gemspec.tt +46 -0
  137. data/bundler/lib/bundler/templates/newgem/rspec.tt +2 -0
  138. data/bundler/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +11 -0
  139. data/bundler/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  140. data/bundler/lib/bundler/templates/newgem/test/newgem_test.rb.tt +11 -0
  141. data/bundler/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
  142. data/bundler/lib/bundler/ui.rb +8 -0
  143. data/bundler/lib/bundler/ui/rg_proxy.rb +18 -0
  144. data/bundler/lib/bundler/ui/shell.rb +114 -0
  145. data/bundler/lib/bundler/ui/silent.rb +48 -0
  146. data/bundler/lib/bundler/uri_credentials_filter.rb +36 -0
  147. data/bundler/lib/bundler/vendor/compact_index_client/lib/compact_index_client.rb +79 -0
  148. data/bundler/lib/bundler/vendor/compact_index_client/lib/compact_index_client/cache.rb +98 -0
  149. data/bundler/lib/bundler/vendor/compact_index_client/lib/compact_index_client/updater.rb +80 -0
  150. data/bundler/lib/bundler/vendor/compact_index_client/lib/compact_index_client/version.rb +4 -0
  151. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo.rb +10 -0
  152. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +50 -0
  153. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +80 -0
  154. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +203 -0
  155. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +35 -0
  156. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +58 -0
  157. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +61 -0
  158. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +53 -0
  159. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +114 -0
  160. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +45 -0
  161. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +35 -0
  162. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +123 -0
  163. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +75 -0
  164. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +5 -0
  165. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/specification_provider.rb +100 -0
  166. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/modules/ui.rb +65 -0
  167. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +460 -0
  168. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/resolver.rb +45 -0
  169. data/bundler/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +54 -0
  170. data/bundler/lib/bundler/vendor/net/http/faster.rb +26 -0
  171. data/bundler/lib/bundler/vendor/net/http/persistent.rb +1230 -0
  172. data/bundler/lib/bundler/vendor/net/http/persistent/ssl_reuse.rb +128 -0
  173. data/bundler/lib/bundler/vendor/postit/lib/postit.rb +15 -0
  174. data/bundler/lib/bundler/vendor/postit/lib/postit/environment.rb +44 -0
  175. data/bundler/lib/bundler/vendor/postit/lib/postit/installer.rb +28 -0
  176. data/bundler/lib/bundler/vendor/postit/lib/postit/parser.rb +21 -0
  177. data/bundler/lib/bundler/vendor/postit/lib/postit/setup.rb +12 -0
  178. data/bundler/lib/bundler/vendor/postit/lib/postit/version.rb +3 -0
  179. data/bundler/lib/bundler/vendor/thor/lib/thor.rb +484 -0
  180. data/bundler/lib/bundler/vendor/thor/lib/thor/actions.rb +319 -0
  181. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_file.rb +103 -0
  182. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +59 -0
  183. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/directory.rb +118 -0
  184. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/empty_directory.rb +135 -0
  185. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/file_manipulation.rb +316 -0
  186. data/bundler/lib/bundler/vendor/thor/lib/thor/actions/inject_into_file.rb +107 -0
  187. data/bundler/lib/bundler/vendor/thor/lib/thor/base.rb +656 -0
  188. data/bundler/lib/bundler/vendor/thor/lib/thor/command.rb +133 -0
  189. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/hash_with_indifferent_access.rb +77 -0
  190. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +10 -0
  191. data/bundler/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +98 -0
  192. data/bundler/lib/bundler/vendor/thor/lib/thor/error.rb +32 -0
  193. data/bundler/lib/bundler/vendor/thor/lib/thor/group.rb +281 -0
  194. data/bundler/lib/bundler/vendor/thor/lib/thor/invocation.rb +178 -0
  195. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor.rb +17 -0
  196. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/basic.rb +35 -0
  197. data/bundler/lib/bundler/vendor/thor/lib/thor/line_editor/readline.rb +88 -0
  198. data/bundler/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  199. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/argument.rb +73 -0
  200. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/arguments.rb +175 -0
  201. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/option.rb +125 -0
  202. data/bundler/lib/bundler/vendor/thor/lib/thor/parser/options.rb +218 -0
  203. data/bundler/lib/bundler/vendor/thor/lib/thor/rake_compat.rb +71 -0
  204. data/bundler/lib/bundler/vendor/thor/lib/thor/runner.rb +322 -0
  205. data/bundler/lib/bundler/vendor/thor/lib/thor/shell.rb +81 -0
  206. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/basic.rb +421 -0
  207. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/color.rb +149 -0
  208. data/bundler/lib/bundler/vendor/thor/lib/thor/shell/html.rb +126 -0
  209. data/bundler/lib/bundler/vendor/thor/lib/thor/util.rb +267 -0
  210. data/bundler/lib/bundler/vendor/thor/lib/thor/version.rb +3 -0
  211. data/bundler/lib/bundler/vendored_molinillo.rb +3 -0
  212. data/bundler/lib/bundler/vendored_persistent.rb +12 -0
  213. data/bundler/lib/bundler/vendored_thor.rb +4 -0
  214. data/bundler/lib/bundler/version.rb +11 -0
  215. data/bundler/lib/bundler/vlad.rb +12 -0
  216. data/bundler/lib/bundler/worker.rb +82 -0
  217. data/bundler/lib/bundler/yaml_serializer.rb +67 -0
  218. data/bundler/man/bundle-config.ronn +193 -0
  219. data/bundler/man/bundle-exec.ronn +136 -0
  220. data/bundler/man/bundle-gem.ronn +77 -0
  221. data/bundler/man/bundle-install.ronn +404 -0
  222. data/bundler/man/bundle-lock.ronn +47 -0
  223. data/bundler/man/bundle-package.ronn +67 -0
  224. data/bundler/man/bundle-platform.ronn +42 -0
  225. data/bundler/man/bundle-update.ronn +194 -0
  226. data/bundler/man/bundle.ronn +98 -0
  227. data/bundler/man/gemfile.5.ronn +499 -0
  228. data/bundler/man/index.txt +8 -0
  229. data/lib/rubygems.rb +42 -2
  230. data/lib/rubygems/config_file.rb +1 -1
  231. data/lib/rubygems/defaults.rb +18 -0
  232. data/lib/rubygems/installer.rb +1 -0
  233. data/lib/rubygems/package.rb +3 -1
  234. data/lib/rubygems/package/tar_writer.rb +10 -16
  235. data/lib/rubygems/remote_fetcher.rb +1 -15
  236. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/resolution_state.rb +50 -0
  237. data/lib/rubygems/resolver/molinillo/lib/molinillo/delegates/specification_provider.rb +80 -0
  238. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph.rb +57 -145
  239. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/action.rb +35 -0
  240. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +58 -0
  241. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +61 -0
  242. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +53 -0
  243. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/log.rb +114 -0
  244. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/set_payload.rb +45 -0
  245. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/tag.rb +35 -0
  246. data/lib/rubygems/resolver/molinillo/lib/molinillo/dependency_graph/vertex.rb +123 -0
  247. data/lib/rubygems/resolver/molinillo/lib/molinillo/errors.rb +1 -1
  248. data/lib/rubygems/resolver/molinillo/lib/molinillo/gem_metadata.rb +1 -1
  249. data/lib/rubygems/resolver/molinillo/lib/molinillo/resolution.rb +55 -54
  250. data/lib/rubygems/resolver/molinillo/lib/molinillo/state.rb +4 -2
  251. data/lib/rubygems/security/signer.rb +2 -0
  252. data/lib/rubygems/specification.rb +4 -4
  253. data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  254. data/lib/rubygems/ssl_certs/rubygems.org/AddTrustExternalCARoot.pem +25 -0
  255. data/test/rubygems/alternate_cert.pem +10 -9
  256. data/test/rubygems/alternate_cert_32.pem +10 -9
  257. data/test/rubygems/child_cert.pem +11 -9
  258. data/test/rubygems/child_cert_32.pem +11 -9
  259. data/test/rubygems/encrypted_private_key.pem +26 -26
  260. data/test/rubygems/expired_cert.pem +9 -8
  261. data/test/rubygems/future_cert.pem +9 -8
  262. data/test/rubygems/future_cert_32.pem +9 -8
  263. data/test/rubygems/grandchild_cert.pem +11 -9
  264. data/test/rubygems/grandchild_cert_32.pem +11 -9
  265. data/test/rubygems/invalid_issuer_cert.pem +11 -9
  266. data/test/rubygems/invalid_issuer_cert_32.pem +11 -9
  267. data/test/rubygems/invalid_signer_cert.pem +10 -9
  268. data/test/rubygems/invalid_signer_cert_32.pem +10 -9
  269. data/test/rubygems/invalidchild_cert.pem +11 -9
  270. data/test/rubygems/invalidchild_cert_32.pem +11 -9
  271. data/test/rubygems/public_cert.pem +11 -9
  272. data/test/rubygems/public_cert_32.pem +10 -9
  273. data/test/rubygems/test_bundled_ca.rb +1 -1
  274. data/test/rubygems/test_gem.rb +7 -0
  275. data/test/rubygems/test_gem_installer.rb +119 -0
  276. data/test/rubygems/test_gem_package.rb +9 -3
  277. data/test/rubygems/test_gem_package_tar_writer.rb +24 -0
  278. data/test/rubygems/test_gem_remote_fetcher.rb +0 -12
  279. data/test/rubygems/test_gem_security_signer.rb +8 -0
  280. data/test/rubygems/test_gem_specification.rb +1 -1
  281. data/test/rubygems/wrong_key_cert.pem +10 -9
  282. data/test/rubygems/wrong_key_cert_32.pem +10 -9
  283. data/util/ci +73 -0
  284. data/util/create_certs.rb +64 -49
  285. data/util/update_bundled_ca_certificates.rb +23 -2
  286. metadata +257 -19
  287. data/lib/gauntlet_rubygems.rb +0 -51
  288. data/lib/rubygems/ssl_certs/index.rubygems.org/GlobalSignRoot.pem +0 -18
@@ -19,8 +19,6 @@ install:
19
19
  - ps: >-
20
20
  $env:path = 'C:\Ruby' + $env:ruby_version + '\bin;' + $env:path
21
21
 
22
- $env:TRAVIS = $TRUE
23
-
24
22
  if ((gem query -i rake) -eq $False){ gem install rake --no-document }
25
23
 
26
24
  if ((gem query -i hoe) -eq $False){ gem install hoe --no-document }
@@ -0,0 +1,2407 @@
1
+ ## 1.13.0.pre.1 (2016-06-20)
2
+
3
+ Performance:
4
+
5
+ - speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
6
+ - generally reduce object allocations when using bundler (@segiddins)
7
+ - speed up bin generation for path gems with many files (#2846, @segiddins)
8
+ - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
9
+
10
+ Features:
11
+
12
+ - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
13
+ - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
14
+ - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
15
+ - support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
16
+ - colorize updated gem versions (#4334, @bronzdoc)
17
+ - add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
18
+ - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
19
+ - use a custom YAML serializer to make config file consistent (@segiddins)
20
+ - filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
21
+ - support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
22
+ - fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
23
+ - automatically install an inline gemfile when gems are missing locally (@segiddins)
24
+ - allow conflicts for gems resolved via `gemspec` (@segiddins)
25
+ - add `--add-platform` option to `bundle lock` (@segiddins)
26
+ - fail gracefully when a resolved spec's `required_ruby_version` or `required_rubygems_version` is incompatible (@segiddins)
27
+
28
+ Bugfixes:
29
+
30
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
31
+ - add support for quoted paths in `$PATH` (#4323, @segiddins)
32
+ - check out missing git repos that are not being installed (#3981, @asutoshpalai)
33
+ - write `bundler/setup.rb` to a consistent path (@glennpratt)
34
+ - open editor in `bundle open` with a clean environment (@sj26)
35
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
36
+ - fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
37
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
38
+ - fix loading config files with very long values (#4370, @segiddins)
39
+ - only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
40
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
41
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
42
+
43
+ ## 1.12.5 (2016-05-25)
44
+
45
+ Bugfixes:
46
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
47
+ - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
48
+ - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
49
+
50
+ ## 1.12.4 (2016-05-16)
51
+
52
+ Bugfixes:
53
+ - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
54
+ - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
55
+ - fix installing built-in specs with `--standalone` (#4557, @segiddins)
56
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
57
+
58
+ ## 1.12.3 (2016-05-06)
59
+
60
+ Bugfixes:
61
+ - fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
62
+ - fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
63
+
64
+ ## 1.12.2 (2016-05-04)
65
+
66
+ Bugfixes:
67
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
68
+ - fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
69
+
70
+ ## 1.12.1 (2016-04-30)
71
+
72
+ Bugfixes:
73
+ - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
74
+ - fix computation of new index file local checksums on Windows (#4472, @mwrock)
75
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
76
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
77
+
78
+ ## 1.12.0 (2016-04-28)
79
+
80
+ This space intentionally left blank.
81
+
82
+ ## 1.12.0.rc.4 (2016-04-21)
83
+
84
+ Bugfixes:
85
+
86
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
87
+
88
+ ## 1.12.0.rc.3 (2016-04-19)
89
+
90
+ Bugfixes:
91
+
92
+ - don't allow new attributes to dirty a lockfile when running `bundle exec`, `-rbundler/setup`, or `bundle check` (@segiddins)
93
+
94
+ ## 1.12.0.rc.2 (2016-04-15)
95
+
96
+ Features:
97
+
98
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
99
+
100
+ Bugfixes:
101
+
102
+ - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
103
+ - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
104
+ - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
105
+
106
+ ## 1.12.0.rc (2016-03-13)
107
+
108
+ Performance:
109
+
110
+ - Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
111
+
112
+ Bugfixes:
113
+
114
+ - handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
115
+ - support binstubs from RubyGems 2.6 (#4341, @segiddins)
116
+ - handle quotes present in in PATH (#4326, @segiddins)
117
+
118
+ ## 1.12.0.pre.2 (2016-02-26)
119
+
120
+ Performance:
121
+
122
+ - speed up `bundle exec` by `load`ing the executable whenever possible, saving roughly .2 seconds per invocation (@segiddins)
123
+
124
+ Features:
125
+
126
+ - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
127
+ - add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
128
+ - add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
129
+
130
+ Bugfixes:
131
+
132
+ - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
133
+ - give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
134
+ - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
135
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
136
+ - give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
137
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
138
+ - give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
139
+ - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
140
+ - fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
141
+ - give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
142
+ - skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
143
+ - fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
144
+
145
+ ## 1.12.0.pre.1 (2016-02-09)
146
+
147
+ Performance:
148
+
149
+ - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
150
+ - speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
151
+
152
+ Features:
153
+
154
+ - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
155
+ - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
156
+ - support probing a mirror with a fallback timeout (#4128, @pcarranza)
157
+ - add `--full-index` option to `bundle lock` (@segiddins)
158
+ - support running with frozen string literals (@deepj, @segiddins)
159
+ - add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
160
+ - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
161
+ - add support for ruby 2.4 (#4266, @segiddins)
162
+ - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
163
+
164
+ Bugfixes:
165
+
166
+ - fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
167
+ - fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
168
+ - give a better error message when a given git commit can't be found (#4140, @doy)
169
+ - give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
170
+ - give a better error message when reading a bundler config file fails (@segiddins)
171
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
172
+ - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
173
+ - give a better error message when ssl isn't available (#4054, @RochesterinNYC)
174
+ - print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
175
+ - give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
176
+ - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
177
+ - ignore colorized output from `git` when determining the current branch (#4056, @agis-)
178
+ - fix storing the shared gems config option as a boolean (@vassilevsky)
179
+ - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
180
+ - fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
181
+ - avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
182
+ - ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
183
+ - give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
184
+ - preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
185
+ - ensure standalone file paths are relative to the project root (#4144, @glennpratt)
186
+
187
+ ## 1.11.2 (2015-12-15)
188
+
189
+ Bugfixes:
190
+
191
+ - _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
192
+
193
+ ## 1.11.1 (2015-12-15)
194
+
195
+ Bugfixes:
196
+
197
+ - lazy-load Psych, again (#4149, @indirect)
198
+ - allow gemspec gems on other platforms (#4150, @indirect)
199
+ - fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
200
+ - stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
201
+
202
+ ## 1.11.0 (2015-12-12)
203
+
204
+ (this space intentionally left blank)
205
+
206
+ ## 1.11.0.pre.2 (2015-12-06)
207
+
208
+ Bugfixes:
209
+
210
+ - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
211
+ - fix a crash when pushing a gem via `rake release` (@segiddins)
212
+
213
+ ## 1.11.0.pre.1 (2015-11-29)
214
+
215
+ Features:
216
+
217
+ - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
218
+ - the git remote for `rake release` is now customizable (@skateman)
219
+ - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
220
+ - add support for showing help for plugin commands (@tf)
221
+ - send `X-Gemfile-Source` header to source mirrors (@agis-)
222
+ - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
223
+ - add support for using bundler setting to add private access credentials for git sources (@frsyuki)
224
+ - take into consideration HTTP proxy settings in `.gemrc` (@PG-kura)
225
+ - allow specifying a gem host to push to in the `GEM_HOST` environment variable (@pmenglund)
226
+ - when gempec `required_ruby_version` is available and the Gemfile specifies a ruby version, resolve for the given ruby version (@segiddins)
227
+ - allow setting a `silence_root_warning` setting to silence the warning when `bundle install` is run as root (@blackxored)
228
+ - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
229
+ - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
230
+ - added support for MRI 2.3 (@amatsuda)
231
+ - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
232
+ - include git revision hash when printing a git source (#3433, @agis-)
233
+ - improve hint when a resolution conflict occurs (@seanlinsley)
234
+ - show a friendly error when a git ref is not found (#3879, @agis-)
235
+ - improve error message when sources are not absolute URIs (#3925, @agis-)
236
+ - add `pkg` to rake's clobber list (#3676, @jasonkarns)
237
+ - retry fetching specs when fetching version metadata fails (@jingweno)
238
+
239
+ Bugfixes:
240
+
241
+ - avoid showing bundler version warning messages twice (@fotanus)
242
+ - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
243
+ - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
244
+ - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
245
+ - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
246
+ - fix the `bundle gem` readme when no tests are generated (@roseweixel)
247
+ - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
248
+ - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
249
+ - fix trying to cache a gem that has no source (@EduardoBautista)
250
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
251
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
252
+ - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
253
+ - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
254
+ - fix not retrying on zlib errors (#4047, @andremedeiros)
255
+ - fix a warning being shown for using `URI.encode` (@EduardoBautista)
256
+ - fix handling of fatal HTTP errors (#3830, @indirect)
257
+ - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
258
+ - fix caching gems with a path with the same prefix as the bundled application (@indirect)
259
+ - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
260
+ - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
261
+ - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
262
+ - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
263
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
264
+ - also print gemspecs in `bundle env` output (@agis-)
265
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
266
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
267
+ - fix handling invalid RubyGems configuration files (#4042, @agis-)
268
+ - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
269
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
270
+
271
+ Performance:
272
+
273
+ - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
274
+ - drop string allocations when searching for gems (@jrafanie)
275
+
276
+ ## 1.10.6 (2015-07-22)
277
+
278
+ Workarounds:
279
+
280
+ - only warn on invalid gemspecs (@indirect)
281
+
282
+ Bugfixes:
283
+
284
+ - fix installing dependencies in the correct order (#3799, @pducks32)
285
+ - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
286
+ - fix `install_if` conditionals when using the block form (@danieltdt)
287
+
288
+ ## 1.10.5 (2015-06-24)
289
+
290
+ Workarounds:
291
+
292
+ - don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
293
+
294
+ Bugfixes:
295
+
296
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
297
+ - speed up resolver for path and git gems (@segiddins)
298
+ - fix `install --force` to not reinstall Bundler (#3743, @karlo57)
299
+
300
+ ## 1.10.4 (2015-06-16)
301
+
302
+ Workarounds:
303
+
304
+ - don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
305
+
306
+ Bugfixes:
307
+
308
+ - display "with native extensions" log output correctly (@ivantsepp)
309
+ - alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
310
+
311
+ ## 1.10.3 (2015-06-03)
312
+
313
+ Bugfixes:
314
+
315
+ - allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
316
+ - fix regression in `rake install` (#3701, #3705, @segiddins)
317
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
318
+ - fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
319
+
320
+ ## 1.10.2 (2015-05-29)
321
+
322
+ Bugfixes:
323
+
324
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
325
+
326
+ ## 1.10.1 (2015-05-28)
327
+
328
+ Bugfixes:
329
+
330
+ - silence ruby warning when running CLI commands (@segiddins)
331
+ - validate gemspecs in non-packaging mode (#3681, @segiddins)
332
+ - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
333
+
334
+ ## 1.10.0 (2015-05-28)
335
+
336
+ (this space intentionally left blank)
337
+
338
+ ## 1.10.0.rc (2015-05-16)
339
+
340
+ Features:
341
+
342
+ - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
343
+ - track CI platforms running Bundler (#3646, @fotanus)
344
+
345
+ Bugfixes:
346
+
347
+ - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
348
+ - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
349
+ - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
350
+ - Without groups saved via `config` are no longer ignored when the `--without` flag is used
351
+
352
+ ## 1.10.0.pre.2 (2015-05-07)
353
+
354
+ Bugfixes:
355
+
356
+ - make BUNDLED WITH backwards compatible (#3623, @segiddins)
357
+
358
+ ## 1.10.0.pre.1 (2015-05-05)
359
+
360
+ Bugfixes:
361
+
362
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
363
+
364
+ ## 1.10.0.pre (2015-05-03)
365
+
366
+ Features:
367
+
368
+ - support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
369
+ - add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
370
+ - improved error reports for Gemfile errors (#3480, @segiddins)
371
+ - `lock` command (#3437, @segiddins)
372
+ - add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
373
+ - improve `gem` minitest template (#3513, #3515, @arthurnn)
374
+ - add `install --force` to re-install installed gems (#3519, @segiddins)
375
+ - show more `outdated` information, including groups (@smlance, @indirect)
376
+ - add optional groups to the Gemfile (#3531, @jhass)
377
+ - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
378
+ - make timeouts and retries configurable via `config` (#3601, @pducks32)
379
+ - add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
380
+
381
+ Bugfixes:
382
+
383
+ - standalone mode now uses builtin gems correctly (#3610, @segiddins)
384
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
385
+ - remember all y/n answers when generating gems (#3579, @pducks32)
386
+
387
+ Performance:
388
+
389
+ - use RubyGems stub specifications when possible (#3580, @segiddins)
390
+
391
+ Deprecations:
392
+
393
+ - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
394
+
395
+ ## 1.9.10 (2015-06-22)
396
+
397
+ Features:
398
+
399
+ - the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
400
+
401
+ ## 1.9.9 (2015-05-16)
402
+
403
+ Bugfixes:
404
+
405
+ - read mirror and credential settings from older versions (#3557, @Strech)
406
+
407
+ ## 1.9.8 (2015-05-12)
408
+
409
+ Bugfixes:
410
+
411
+ - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
412
+
413
+ ## 1.9.7 (2015-05-11)
414
+
415
+ Bugfixes:
416
+
417
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
418
+
419
+ ## 1.9.6 (2015-05-02)
420
+
421
+ Bugfixes:
422
+
423
+ - use RubyGems spec stubs if available (@segiddins)
424
+ - allow creating gems with names containing two dashes (#3483, @janlelis)
425
+ - allow creating gems with names extending constants (#3603, @amatsuda)
426
+
427
+ ## 1.9.5 (2015-04-29)
428
+
429
+ Bugfixes:
430
+
431
+ - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
432
+
433
+ ## 1.9.4 (2015-04-13)
434
+
435
+ Bugfixes:
436
+
437
+ - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
438
+ - improve error when gems are missing (#3564, @sealocal)
439
+
440
+ ## 1.9.3 (2015-04-12)
441
+
442
+ Bugfixes:
443
+
444
+ - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
445
+ - install 'universal' gems on Windows (#3066, @jdmundrawala)
446
+ - stop passing --local during `rake install` task (#3236, @indirect)
447
+ - guard against all possible accidental public gem pushes (#3533, @indirect)
448
+
449
+ ## 1.9.2 (2015-03-30)
450
+
451
+ Bugfixes:
452
+
453
+ - ensure gem executables are executable (#3517, #3511, @indirect)
454
+ - fix warnings in Molinillo (#3516, @segiddins)
455
+ - ensure duplicate dependencies do not propagate (#3522, @segiddins)
456
+ - keep gems locked when updating another gem from the same source (#3520, @indirect)
457
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
458
+
459
+ ## 1.9.1 (2015-03-21)
460
+
461
+ Bugfixes:
462
+
463
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
464
+
465
+ ## 1.9.0 (2015-03-20)
466
+
467
+ ## 1.9.0.rc (2015-03-13)
468
+
469
+ Bugfixes:
470
+
471
+ - make Bundler.which stop finding directories (@nohoho)
472
+ - handle Bundler prereleases correctly (#3470, @segiddins)
473
+ - add before_install to .travis.yml template for new gems (@kodnin)
474
+
475
+ ## 1.9.0.pre.1 (2015-03-11)
476
+
477
+ Bugfixes:
478
+
479
+ - make `gem` command work again (@arthurnn)
480
+
481
+ ## 1.9.0.pre (2015-03-11)
482
+
483
+ Features:
484
+
485
+ - prefer gemspecs closest to the directory root (#3428, @segiddins)
486
+ - debug log for API request limits (#3452, @neerfri)
487
+
488
+ "Features":
489
+
490
+ - Molinillo resolver, shared with CocoaPods (@segiddins)
491
+ - updated Thor to v0.19.1 (@segiddins)
492
+
493
+ ## 1.8.9 (2015-05-02)
494
+
495
+ Bugfixes:
496
+
497
+ - Use RubyGems spec stubs if available (@segiddins)
498
+
499
+ ## 1.8.8 (2015-04-29)
500
+
501
+ Bugfixes:
502
+
503
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
504
+
505
+ ## 1.8.7 (2015-04-07)
506
+
507
+ Bugfixes:
508
+
509
+ - stop suppressing errors inside gems that get required (#3549, @indirect)
510
+
511
+ ## 1.8.6 (2015-03-30)
512
+
513
+ Bugfixes:
514
+
515
+ - keep gems locked when updating another gem from the same source (#3250, @indirect)
516
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
517
+
518
+ ## 1.8.5 (2015-03-11)
519
+
520
+ Bugfixes:
521
+
522
+ - remove MIT license from gemspec when removing license file (@indirect)
523
+ - respect 'no' immediately as well as saving it in `gem` config (@kirs)
524
+
525
+ ## 1.8.4 (2015-03-05)
526
+
527
+ Bugfixes:
528
+
529
+ - document --all-platforms option (#3449, @moeffju)
530
+ - find gems from all sources on exec after install (#3450, @TimMoore)
531
+
532
+ ## 1.8.3 (2015-02-24)
533
+
534
+ Bugfixes:
535
+
536
+ - handle boolean values for gem settings (@EduardoBautista)
537
+ - stop always looking for updated `path` gems (#3414, #3417, #3429, @TimMoore)
538
+
539
+ ## 1.8.2 (2015-02-14)
540
+
541
+ Bugfixes:
542
+
543
+ - allow config settings for gems with 'http' in the name again (#3398, @TimMoore)
544
+
545
+ ## 1.8.1 (2015-02-13)
546
+
547
+ Bugfixes:
548
+
549
+ - synchronize building git gem native extensions (#3385, @antifuchs & @indirect)
550
+ - set gemspec bindir correctly (#3392, @TimMoore)
551
+ - request lockfile deletion when it is malformed (#3396, @indirect)
552
+ - explain problem when mirror config is missing (#3386, @indirect)
553
+ - explain problem when caching causes permission error (#3390, @indirect)
554
+ - normalize URLs in config keys (#3391, @indirect)
555
+
556
+ ## 1.8.0 (2015-02-10)
557
+
558
+ Bugfixes:
559
+
560
+ - gemfile `github` blocks now work (#3379, @indirect)
561
+
562
+ Bugfixes from v1.7.13:
563
+
564
+ - look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
565
+ - look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
566
+ - request dependencies for no more than 100 gems at a time (#3367, @segiddins)
567
+
568
+ ## 1.8.0.rc (2015-01-26)
569
+
570
+ Features:
571
+
572
+ - add `config disable_multisource` option to ensure sources can't compete (@indirect)
573
+
574
+ Bugfixes:
575
+
576
+ - don't add extra quotes around long, quoted config values (@aroben, #3338)
577
+
578
+ Security:
579
+
580
+ - warn when more than one top-level source is present (@indirect)
581
+
582
+ ## 1.8.0.pre (2015-01-26)
583
+
584
+ Features:
585
+
586
+ - add metadata allowed_push_host to new gem template (#3002, @juanitofatas)
587
+ - adds a `--no-install` flag to `bundle package` (@d-reinhold)
588
+ - add `bundle config auto_install true` to install automatically (@smashwilson)
589
+ - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
590
+ - prevent whitespace in gem declarations with clear messaging (@benlakey)
591
+ - tries to find a `bundler-<command>` executable on your path for non-bundler commands (@andremedeiros)
592
+ - tries to find `gems.rb` and it's new counterpart, `gems.locked` (@andremedeiros)
593
+ - change the initial version of new gems from `0.0.1` to `0.1.0` (@petedmarsh)
594
+ - add `package --all-platforms` to cache gems for each known platform (@ccutrer)
595
+ - speed up `exec` when running commands on the $PATH (@kirs)
596
+ - add gem code of conduct file and option (@kirs)
597
+ - add config settings for gem license and tests (@kirs)
598
+ - add `bin/setup` and `bin/console` to new gems (@indirect)
599
+ - include configured user-agent in network requests (@indirect)
600
+ - support `github`, `gist`, and `bitbucket` options on git gems (@indirect)
601
+ - add `package --cache-path` and `config cache_path` for cache location (@jnraine)
602
+ - allow `config` to work even when a Gemfile is not present (@dholdren)
603
+ - add `config gemfile /path` for other Gemfile locations (@dholdren)
604
+ - add `github` method alonside the `git` method (@BenMorganIO)
605
+
606
+ Bugfixes:
607
+
608
+ - reduce memory usage with threaded parallel workers (@Who828)
609
+ - support read-only git gems (@pmahoney)
610
+ - various resolver performance improvements (@dubek)
611
+ - untaint git gem paths for Rubygems compatibility (@tdtds)
612
+
613
+ Documentation:
614
+
615
+ - add missing Gemfile global `path` explanation (@agenteo)
616
+
617
+ ## 1.7.15 (2015-04-29)
618
+
619
+ Bugfixes:
620
+
621
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
622
+
623
+ ## 1.7.14 (2015-03-30)
624
+
625
+ Bugfixes:
626
+
627
+ - Keep gems locked when updating another gem from the same source (#3250, @indirect)
628
+ - Don't add extra quotes around long, quoted config values (@aroben, #3338)
629
+
630
+ ## 1.7.13 (2015-02-07)
631
+
632
+ Bugfixes:
633
+
634
+ - Look up installed gems in remote sources (#3300, #3368, #3377, #3380, #3381, @indirect)
635
+ - Look up gems across all sources to satisfy dependencies (#3365, @keiths-osc)
636
+ - Request dependencies for no more than 100 gems at a time (#3367, @segiddins)
637
+
638
+ ## 1.7.12 (2015-01-08)
639
+
640
+ Bugfixes:
641
+
642
+ - Always send credentials for sources, fixing private Gemfury gems (#3342, @TimMoore)
643
+
644
+ ## 1.7.11 (2015-01-04)
645
+
646
+ Bugfixes:
647
+
648
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` (#3328, @myabc)
649
+
650
+ ## 1.7.10 (2014-12-29)
651
+
652
+ Bugfixes:
653
+
654
+ - Fix source blocks sometimes causing deployment mode to fail wrongly (#3298, @TimMoore)
655
+
656
+ Features(?):
657
+
658
+ - Support `platform :mri_22` and related version bits (#3309, @thomasfedb)
659
+
660
+ ## 1.7.9 (2014-12-09)
661
+
662
+ Bugfixes:
663
+
664
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock (#3216, @Who828)
665
+ - Ensure bundle update installs the newer version of the gem (#3089, @Who828)
666
+ - Fix an regression which stopped Bundler from resolving some Gemfiles (#3059, #3248, @Who828)
667
+
668
+ ## 1.7.8 (2014-12-06)
669
+
670
+ Bugfixes:
671
+
672
+ - Hide credentials while warning about gems with ambiguous sources (#3256, @TimMoore)
673
+
674
+ ## 1.7.7 (2014-11-19)
675
+
676
+ Bugfixes:
677
+
678
+ - Ensure server credentials stored in config or ENV will be used (#3180, @arronmabrey)
679
+ - Fix race condition causing errors while installing git-based gems (#3174, @Who828)
680
+ - Use single quotes in config so YAML won't add more quotes (#3261, @indirect)
681
+
682
+ ## 1.7.6 (2014-11-11)
683
+
684
+ Bugfixes:
685
+
686
+ - CA certificates that work with all OpenSSLs (@luislavena, @indirect)
687
+
688
+ ## 1.7.5 (2014-11-10)
689
+
690
+ Bugfixes:
691
+
692
+ - Fix --deployment with source blocks and non-alphabetical gems (#3224, @TimMoore)
693
+ - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
694
+
695
+ ## 1.7.4 (2014-10-19)
696
+
697
+ Bugfixes:
698
+
699
+ - Allow --deployment after `pack` while using source blocks (#3167, @TimMoore)
700
+ - Use dependency API even when HTTP credentials are in ENV (#3191, @fvaleur)
701
+ - Silence warnings (including root warning) in --quiet mode (#3186, @indirect)
702
+ - Stop asking gem servers for gems already found locally (#2909, @dubek)
703
+
704
+ ## 1.7.3 (2014-09-14)
705
+
706
+ Bugfixes:
707
+
708
+ - `extconf.rb` is now generated with the right path for `create_makefile` (@andremedeiros)
709
+ - Fix various Ruby warnings (@piotrsanarki, @indirect)
710
+
711
+ ## 1.7.2 (2014-08-23)
712
+
713
+ Bugfixes:
714
+
715
+ - Revert gem source sorting in lock files (@indirect)
716
+
717
+ ## 1.7.1 (2014-08-20)
718
+
719
+ Bugfixes:
720
+
721
+ - Install gems from one source needed by gems in another source (@indirect)
722
+ - Install the same gem versions even after some are installed (@TimMoore)
723
+ - Download specs only when installing from servers (@indirect)
724
+
725
+ ## 1.7.0 (2014-08-13)
726
+
727
+ Security:
728
+
729
+ - Fix for CVE-2013-0334, installing gems from an unexpected source (@TimMoore)
730
+
731
+ Features:
732
+
733
+ - Gemfile `source` calls now take a block containing gems from that source (@TimMoore)
734
+ - Added the `:source` option to `gem` to specify a source (@TimMoore)
735
+
736
+ Bugfixes:
737
+
738
+ - Warn on ambiguous gems available from more than one source (@TimMoore)
739
+
740
+ ## 1.6.7 (2014-10-19)
741
+
742
+ Features:
743
+
744
+ - warn to upgrade when using useless source blocks (@danfinnie)
745
+
746
+ Documentation:
747
+
748
+ - explain how to use gem server credentials via ENV (@hwartig)
749
+
750
+ ## 1.6.6 (2014-08-23)
751
+
752
+ Bugfixes:
753
+
754
+ - restore Gemfile credentials to Gemfile.lock (@indirect)
755
+
756
+ ## 1.6.5 (2014-07-23)
757
+
758
+ Bugfixes:
759
+
760
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, #3107)
761
+
762
+ ## 1.6.4 (2014-07-17)
763
+
764
+ Bugfixes:
765
+
766
+ - fix undefined constant error when can't find gem during binstubs (#3095, @jetaggart)
767
+ - work when installed git gems are not writable (#3092, @pmahoney)
768
+ - don't store configured source credentials in Gemfile.lock (#3045, @lhz)
769
+ - don't include config source credentials in the lockfile (Lars Haugseth)
770
+ - use threads for jobs on Rubinius (@YorickPeterse)
771
+ - skip dependencies from other platforms (@mvz)
772
+ - work when Rubygems was built without SSL (@andremedeiros)
773
+
774
+ ## 1.6.3 (2014-06-16)
775
+
776
+ Bugfixes:
777
+
778
+ - fix regression when resolving many conflicts (#2994, @Who828)
779
+ - use local gemspec for builtin gems during install --local (#3041, @Who828)
780
+ - don't warn about sudo when installing on Windows (#2984, @indirect)
781
+ - shell escape `bundle open` arguments (@indirect)
782
+
783
+ ## 1.6.2 (2014-04-13)
784
+
785
+ Bugfixes:
786
+
787
+ - fix an exception when using builtin gems (#2915, #2963, @gnufied)
788
+ - cache gems that are built in to the running ruby (#2975, @indirect)
789
+ - re-allow deploying cached git gems without git installed (#2968, @aughr)
790
+ - keep standalone working even with builtin gems (@indirect)
791
+ - don't update vendor/cache in deployment mode (#2921, @indirect)
792
+
793
+ Features:
794
+
795
+ - warn informatively when `bundle install` is run as root (#2936, @1337807)
796
+
797
+ ## 1.6.1 (2014-04-02)
798
+
799
+ Bugfixes:
800
+
801
+ - update C extensions when git gem versions change (#2948, @dylanahsmith)
802
+
803
+ Features:
804
+
805
+ - add support for C extensions in sudo mode on Rubygems 2.2
806
+
807
+ ## 1.6.0 (2014-03-28)
808
+
809
+ Bugfixes:
810
+
811
+ - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
812
+ - redirects across hosts now work on rubies without OpenSSL (#2686, @grddev)
813
+ - gemspecs now handle filenames with newlines (#2634, @jasonmp85)
814
+ - support escaped characters in usernames and passwords (@punkie)
815
+ - no more exception on `update GEM` without lock file (@simi)
816
+ - allow long config values (#2823, @kgrz)
817
+ - cache successfully even locked to gems shipped with Ruby (#2869, @aughr)
818
+ - respect NO_PROXY even if a proxy is configured (#2878, @stlay)
819
+ - only retry git commands that hit the network (#2899, @timmoore)
820
+ - fix NameError regression when OpenSSL is not available (#2898, @timmoore)
821
+ - handle exception installing when build_info owned by root (@Who828)
822
+ - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
823
+
824
+ Features:
825
+
826
+ - resolver rewritten to avoid recursion (@Who828)
827
+ - add `git_source` for custom options like :github and :gist (@strzalek)
828
+ - HTTP auth may now be stored in `bundle config` (@smashwilson)
829
+ - some complex Gemfiles are resolved up to 10x faster (@Who828)
830
+ - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
831
+ - highlight installed or updated gems (#2722, #2741, @yaotti, @simi)
832
+ - display the `post_install_message` for gems installed via :git (@phallstrom)
833
+ - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
834
+ - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
835
+ - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
836
+ - Avoid using threequals operator where possible (@as-cii)
837
+ - Add `bundle update --group` to update specific group (#2731 @banyan)
838
+
839
+ Documentation:
840
+
841
+ - Add missing switches for bundle-install(1) and bundle-update(1) (@as-cii)
842
+
843
+ ## 1.5.3 (2014-02-06)
844
+
845
+ Bugfixes:
846
+
847
+ - find "missing" gems that are actually present (#2780, #2818, #2854)
848
+ - use n-1 cores when given n jobs for parallel install (@jdickey)
849
+
850
+ ## 1.5.2 (2014-01-10)
851
+
852
+ Bugfixes:
853
+
854
+ - fix integration with Rubygems 1.8.0-1.8.19
855
+ - handle ENETDOWN exception during network requests
856
+ - gracefully shut down after interrupt during parallel install (@Who828)
857
+ - allow Rails to run Thor without debug mode (@rafaelfranca)
858
+ - set git binstub permissions by umask (@v-yarotsky)
859
+ - remove parallel install debug log
860
+
861
+ ## 1.5.1 (2013-12-28)
862
+
863
+ Bugfixes:
864
+
865
+ - correctly find gems installed with Ruby by default
866
+
867
+ ## 1.5.0 (2013-12-26)
868
+
869
+ Features:
870
+
871
+ - install missing gems if their specs are present (@hone)
872
+
873
+ Bugfixes:
874
+
875
+ - use print for "Installing…" so messages are thread-safe (@TimMoore)
876
+
877
+ ## 1.5.0.rc.2 (2013-12-18)
878
+
879
+ "Features":
880
+
881
+ - Support threaded installation on Rubygems 2.0.7+
882
+ - Debug installation logs in .bundle/install.log
883
+
884
+ "Bugfixes":
885
+
886
+ - Try to catch gem installation race conditions
887
+
888
+ ## 1.5.0.rc.1 (2013-11-09)
889
+
890
+ Features:
891
+
892
+ - bundle update also accepts --jobs (#2692, @mrkn)
893
+ - add fork URL to README for new `bundle gem` (#2665, @zzak)
894
+ - add `bundle outdated --strict` (#2685, @davidblondeau)
895
+ - warn if same gem/version is added twice (#2679, @jendiamond)
896
+ - don't redownload installed specs for `bundle install` (#2680, @cainlevy)
897
+ - override gem sources with mirrors (#2650, @danielsdeleo, @mkristian)
898
+
899
+ Bugfixes:
900
+
901
+ - fix sharing same SSL socket when forking workers for parallel install (#2632)
902
+ - fix msg typo in GitNotAllowedError (#2654, @joyicecloud)
903
+ - fix Bundler.which for directories (#2697, @rhysd)
904
+ - properly require `Capistrano::Version` (#2690, @steveklabnik)
905
+ - search for git.exe and git
906
+ - fix the bug that downloads every spec when API fetcher encouters an error
907
+ - only retry network requests
908
+
909
+ ## 1.4.0.rc.1 (2013-09-29)
910
+
911
+ Features:
912
+
913
+ - add support for the x64-mingw32 platform (#2356, #2590, @larskanis)
914
+ - add :patchlevel option to ruby DSL
915
+ - add `bundler` bin (#2598, @kirs)
916
+ - friendly ambiguous error messages (#2581, #2550, @jlsuttles, @jendiamond, @joyicecloud)
917
+ - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
918
+ - add X.509 client certificates for auth without passwords (@snackbandit)
919
+ - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
920
+ - print a better error when git is not installed (@joyicecloud)
921
+ - exit non-zero when `outdated` is run with an unknown gem (@joyicecloud)
922
+ - add `:ruby_21` platform option (@brandonblack)
923
+ - add `--retry` to retry failed network and git commands (@schneems)
924
+ - include command and versions in User-Agent (@indirect, @joyicecloud)
925
+
926
+ Bugfixes:
927
+
928
+ - allow passwordless Basic Auth (#2606, @rykov)
929
+ - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
930
+ - revert #2569, staying compatible with git: instead of https: for :github gems
931
+ - handle exceptions while installing gems in parallel (@gnufied)
932
+
933
+ ## 1.4.0.pre.1 (2013-08-04)
934
+
935
+ Features:
936
+
937
+ - retry network requests while installing gems (#2561, @ascherger)
938
+ - faster installs using gemspecs from the local system cache (#2497, @mipearson)
939
+ - add `bundle install -jN` for N parallel gem installations (#2481, @eagletmt)
940
+ - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
941
+ - set $MANPATH so `bundle exec man name` works (#1624, @sunaku)
942
+ - use `man` instead of `groff` (#2579, @ixti, @simi)
943
+ - add Gemfile dependency info to bundle outdated output (#2487, @rahearn)
944
+ - allow `require: true` as an alias for `require: <name>` (#2538, @ndbroadbent)
945
+ - rescue and report Thor errors (#2478, @pjvds)
946
+ - detect cyclic dependencies (#2564, @gnufied)
947
+ - support multiple gems in `binstubs` (#2576, @lucasmazza)
948
+ - use https instead of git for :github gems (#2569, @fuadsaud)
949
+ - add quiet option to `bundle package` (#2573, @shtirlic)
950
+ - use RUBYLIB instead of RUBYOPT for better Windows support (#2536, @equinux)
951
+
952
+ Bugfixes:
953
+
954
+ - reduce stack size while resolving to fix JRuby overflow (#2510, @headius)
955
+ - display GitErrors while loading specs in --verbose mode (#2461)
956
+ - allow the same options hash to be passed to multiple gems (#2447)
957
+ - handle missing binaries without an exception (#2019, @luismreis)
958
+
959
+ ## 1.3.6 (8 January 2014)
960
+
961
+ Bugfixes:
962
+
963
+ - make gemspec path option preserve relative paths in lock file (@bwillis)
964
+ - use umask when creating binstubs (#1618, @v-yarotsky)
965
+ - warn if graphviz is not installed (#2435, @Agis-)
966
+ - show git errors while loading gemspecs
967
+ - don't mutate gem method options hash (#2447)
968
+ - print Thor errors (#2478, @pjvds)
969
+ - print Rubygems system exit errors (James Cook)
970
+ - more Pathnames into Strings for MacRuby (@kml)
971
+ - preserve original gemspec path (@bwillis)
972
+ - remove warning about deps with :git (#1651, @ixti)
973
+ - split git files on null (#2634, @jasonmp85)
974
+ - handle cross-host redirects without SSL (#2686, @grddev)
975
+ - handle Rubygems 2 security exception (@zzak)
976
+ - reinstall gems if they are missing with spec present
977
+ - set binstub permissions using umask (#1618, @v-yarotsky)
978
+
979
+ ## 1.3.5 (3 April 2013)
980
+
981
+ Features:
982
+
983
+ - progress indicator while resolver is running (@chief)
984
+
985
+ Bugfixes:
986
+
987
+ - update local overrides with orphaned revisions (@jamesferguson)
988
+ - revert to working quoting of RUBYOPT on Windows (@ogra)
989
+ - use basic auth even when SSL is not available (@jayniz)
990
+ - installing git gems without dependencies in deployment now works
991
+
992
+ ## 1.3.4 (15 March 2013)
993
+
994
+ Bugfixes:
995
+
996
+ - load YAML on Rubygems versions that define module YAML
997
+ - fix regression that broke --without on ruby 1.8.7
998
+
999
+ ## 1.3.3 (13 March 2013)
1000
+
1001
+ Features:
1002
+
1003
+ - compatible with Rubygems 2.0.2 (higher and lower already work)
1004
+ - mention skipped groups in bundle install and bundle update output (@simi)
1005
+ - `gem` creates rake tasks for minitest (@coop) and rspec
1006
+
1007
+ Bugfixes:
1008
+
1009
+ - require rbconfig for standalone mode
1010
+
1011
+ ## 1.3.2 (7 March 2013)
1012
+
1013
+ Features:
1014
+
1015
+ - include rubygems.org CA chain
1016
+
1017
+ Bugfixes:
1018
+
1019
+ - don't store --dry-run as a Bundler setting
1020
+
1021
+ ## 1.3.1 (3 March 2013)
1022
+
1023
+ Bugfixes:
1024
+
1025
+ - include manpages in gem, restoring many help pages
1026
+ - handle more SSL certificate verification failures
1027
+ - check for the full version of SSL, which we need (@alup)
1028
+ - gem rake task 'install' now depends on task 'build' (@sunaku)
1029
+
1030
+ ## 1.3.0 (24 February 2013)
1031
+
1032
+ Features:
1033
+
1034
+ - raise a useful error when the lockfile contains a merge conflict (@zofrex)
1035
+ - ensure `rake release` checks for uncommitted as well as unstaged (@benmoss)
1036
+ - allow environment variables to be negated with 'false' and '0' (@brettporter)
1037
+ - set $MANPATH inside `exec` for gems with man pages (@sunaku)
1038
+ - partial gem names for `open` and `update` now return a list (@takkanm)
1039
+
1040
+ Bugfixes:
1041
+
1042
+ - `update` now (again) finds gems that aren't listed in the Gemfile
1043
+ - `install` now (again) updates cached gems that aren't in the Gemfile
1044
+ - install Gemfiles with HTTP sources even without OpenSSL present
1045
+ - display CerficateFailureError message in full
1046
+
1047
+ ## 1.3.0.pre.8 (12 February 2013)
1048
+
1049
+ Security:
1050
+
1051
+ - validate SSL certificate chain during HTTPS network requests
1052
+ - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
1053
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, #2293)
1054
+
1055
+ Features:
1056
+
1057
+ - optimize resolver when too new of a gem is already activated (@rykov, #2248)
1058
+ - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
1059
+ - explain SSL cert validation failures
1060
+ - generate gemspecs when installing git repos, removing shellouts
1061
+ - add pager selection (@csgui)
1062
+ - add `licenses` command (@bryanwoods, #1898)
1063
+ - sort output from `outdated` (@richardkmichael, #1896)
1064
+ - add a .travis.yml to `gem -t` (@ndbroadbent, #2143)
1065
+ - inform users when the resolver starts
1066
+ - disable reverse DNS to speed up API requests (@raggi)
1067
+
1068
+ Bugfixes:
1069
+
1070
+ - raise errors while requiring dashed gems (#1807)
1071
+ - quote the Bundler path on Windows (@jgeiger, #1862, #1856)
1072
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1073
+ - support any ruby version in --standalone
1074
+ - resolve some ruby -w warnings (@chastell, #2193)
1075
+ - don't scare users with an error message during API fallback
1076
+ - `install --binstubs` is back to overwriting. thanks, SemVer.
1077
+
1078
+ ## 1.3.0.pre.7 (22 January 2013)
1079
+
1080
+ Bugfixes:
1081
+
1082
+ - stubs for gems with dev deps no longer cause exceptions (#2272)
1083
+ - don't suggest binstubs to --binstubs users
1084
+
1085
+ ## 1.3.0.pre.6 (22 January 2013)
1086
+
1087
+ Features:
1088
+
1089
+ - `binstubs` lists child gem bins if a gem has no binstubs
1090
+ - `bundle gem --edit` will open the new gemspec (@ndbroadbent)
1091
+ - `bundle gem --test rspec` now makes working tests (@tricknotes)
1092
+ - `bundle env` prints info about bundler's environment (@peeja)
1093
+ - add `BUNDLE_IGNORE_CONFIG` environment variable support (@richo)
1094
+
1095
+ Bugfixes:
1096
+
1097
+ - don't overwrite custom binstubs during `install --binstubs`
1098
+ - don't throw an exception if `binstubs` gem doesn't exist
1099
+ - `bundle config` now works in directories without a Gemfile
1100
+
1101
+ ## 1.3.0.pre.5 (Jan 9, 2013)
1102
+
1103
+ Features:
1104
+
1105
+ - make `--standalone` require lines ruby engine/version agnostic
1106
+ - add `--dry-run` to `bundle clean` (@wfarr, #2237)
1107
+
1108
+ Bugfixes:
1109
+
1110
+ - don't skip writing binstubs when doing `bundle install`
1111
+ - distinguish between ruby 1.9/2.0 when using :platforms (@spastorino)
1112
+
1113
+ ## 1.3.0.pre.4 (Jan 3, 2013)
1114
+
1115
+ Features:
1116
+
1117
+ - `bundle binstubs <gem>` to setup individual binstubs
1118
+ - `bundle install --binstubs ""` will remove binstubs option
1119
+ - `bundle clean --dry-run` will print out gems instead of removing them
1120
+
1121
+ Bugfixes:
1122
+
1123
+ - Avoid stack traces when Ctrl+C during bundle command (@mitchellh)
1124
+ - fix YAML parsing in in ruby-preview2
1125
+
1126
+ ## 1.3.0.pre.3 (Dec 21, 2012)
1127
+
1128
+ Features:
1129
+
1130
+ - pushing gems during `rake release` can be disabled (@trans)
1131
+ - installing gems with `rake install` is much faster (@utkarshkukreti)
1132
+ - added platforms :ruby_20 and :mri_20, since the ABI has changed
1133
+ - added '--edit' option to open generated gemspec in editor
1134
+
1135
+ Bugfixes:
1136
+
1137
+ - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
1138
+ - revert SemVer breaking change to :github
1139
+ - `outdated` exits non-zero if outdated gems found (@rohit, #2021)
1140
+ - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
1141
+ - namespaced gems no longer generate a superfluous directory (@banyan)
1142
+
1143
+ ## 1.3.0.pre.2 (Dec 9, 2012)
1144
+
1145
+ Features:
1146
+
1147
+ - `config` expands local overrides like `local.rack .` (@gkop, #2205)
1148
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, #2201)
1149
+ - use gems from gists with the :gist option in the Gemfile (@jgaskins)
1150
+
1151
+ Bugfixes:
1152
+
1153
+ - Gemfile sources other than rubygems.org work even when .gemrc contains sources
1154
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, #2039)
1155
+ - `show GEM` now warns if the directory has been deleted (@rohit, #2070)
1156
+ - git output hidden when running in --quiet mode (@rohit)
1157
+
1158
+ ## 1.3.0.pre (Nov 29, 2012)
1159
+
1160
+ Features:
1161
+
1162
+ - compatibile with Ruby 2.0.0-preview2
1163
+ - compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
1164
+ - ruby 2.0 added to the `:ruby19` ABI-compatible platform
1165
+ - lazy load YAML, allowing Psych to be specified in the Gemfile
1166
+ - significant performance improvements (@cheald, #2181)
1167
+ - `inject` command for scripted Gemfile additions (Engine Yard)
1168
+ - :github option uses slashless arguements as repo owner (@rking)
1169
+ - `open` suggests gem names for typos (@jdelStrother)
1170
+ - `update` reports non-existent gems (@jdelStrother)
1171
+ - `gem` option --test can generate rspec stubs (@MafcoCinco)
1172
+ - `gem` option --test can generate minitest stubs (@kcurtin)
1173
+ - `gem` command generates MIT license (@BrentWheeldon)
1174
+ - gem rake task 'release' resuses existing tags (@shtirlic)
1175
+
1176
+ Bugfixes:
1177
+
1178
+ - JRuby new works with HTTPS gem sources (@davidcelis)
1179
+ - `install` installs both rake rake-built gems at once (@crowbot, #2107)
1180
+ - handle Errno::ETIMEDOUT errors (@jmoses)
1181
+ - handle Errno::EAGAIN errors on JRuby
1182
+ - disable ANSI coloring when output is redirected (@tomykaira)
1183
+ - raise LoadErrors correctly during Bundler.require (@Empact)
1184
+ - do not swallow --verbose on `bundle exec` (@sol, #2102)
1185
+ - `gem` generates gemspecs that block double-requires
1186
+ - `gem` generates gemspecs that admit they depend on rake
1187
+
1188
+ ## 1.2.5 (Feb 24, 2013)
1189
+
1190
+ Bugfixes:
1191
+
1192
+ - install Gemfiles with HTTP sources even without OpenSSL present
1193
+ - display CerficateFailureError message in full
1194
+
1195
+ ## 1.2.4 (Feb 12, 2013)
1196
+
1197
+ Features:
1198
+
1199
+ - warn about Ruby 2.0 and Rubygems 2.0
1200
+ - inform users when the resolver starts
1201
+ - disable reverse DNS to speed up API requests (@raggi)
1202
+
1203
+ Bugfixes:
1204
+
1205
+ - don't send user/pass when redirected to another host (@perplexes)
1206
+ - load gemspecs containing unicode (@gaffneyc, #2301)
1207
+ - support any ruby version in --standalone
1208
+ - resolve some ruby -w warnings (@chastell, #2193)
1209
+ - don't scare users with an error message during API fallback
1210
+
1211
+ ## 1.2.3 (Nov 29, 2012)
1212
+
1213
+ Bugfixes:
1214
+
1215
+ - fix exceptions while loading some gemspecs
1216
+
1217
+ ## 1.2.2 (Nov 14, 2012)
1218
+
1219
+ Bugfixes:
1220
+
1221
+ - support new Psych::SyntaxError for Ruby 2.0.0 (@tenderlove, @sol)
1222
+ - `bundle viz` works with git gems again (@hirochachacha)
1223
+ - recognize more cases when OpenSSL is not present
1224
+
1225
+ ## 1.2.1 (Sep 19, 2012)
1226
+
1227
+ Bugfixes:
1228
+
1229
+ - `bundle clean` now works with BUNDLE_WITHOUT groups again
1230
+ - have a net/http read timeout around the Gemcutter API Endpoint
1231
+
1232
+ ## 1.2.0 (Aug 30, 2012)
1233
+
1234
+ Bugfixes:
1235
+
1236
+ - raise original error message from LoadError's
1237
+
1238
+ Documentation:
1239
+
1240
+ - `platform` man pages
1241
+
1242
+ ## 1.2.0.rc.2 (Aug 8, 2012)
1243
+
1244
+ Bugfixes:
1245
+
1246
+ - `clean` doesn't remove gems that are included in the lockfile
1247
+
1248
+ ## 1.2.0.rc (Jul 17, 2012)
1249
+
1250
+ Features:
1251
+
1252
+ - `check` now has a `--dry-run` option (@svenfuchs, #1811)
1253
+ - loosen ruby directive for engines
1254
+ - prune git/path directories inside vendor/cache (@josevalim, #1988)
1255
+ - update vendored thor to 0.15.2 (@sferik)
1256
+ - add .txt to LICENSE (@postmodern, #2001)
1257
+ - add `config disable_local_branch_check` (@josevalim, #1985)
1258
+ - fall back on the full index when experiencing syck errors (#1419)
1259
+ - handle syntax errors in Ruby gemspecs (#1974)
1260
+
1261
+ Bugfixes:
1262
+
1263
+ - fix `pack`/`cache` with `--all` (@josevalim, #1989)
1264
+ - don't display warning message when `cache_all` is set
1265
+ - check for `nil` PATH (#2006)
1266
+ - Always try to keep original GEM_PATH (@drogus, #1920)
1267
+
1268
+ ## 1.2.0.pre.1 (May 27, 2012)
1269
+
1270
+ Features:
1271
+
1272
+ - Git gems import submodules of submodules recursively (@nwwatson, #1935)
1273
+
1274
+ Bugfixes:
1275
+
1276
+ - Exit from `check` with a non-zero status when frozen with no lock
1277
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1278
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1279
+
1280
+ Documentation:
1281
+
1282
+ - Add instructions for local git repos to the `config` manpage
1283
+ - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
1284
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1285
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1286
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1287
+
1288
+ ## 1.2.0.pre (May 4, 2012)
1289
+
1290
+ Features:
1291
+
1292
+ - bundle package now accepts --all to package git and path dependencies
1293
+ - bundle config now accepts --local, --global and --delete options
1294
+ - It is possible to override a git repository via configuration.
1295
+ For instance, if you have a git dependency on rack, you can force
1296
+ it to use a local repo with `bundle config local.rack ~/path/to/rack`
1297
+ - Cache gemspec loads for performance (@dekellum, #1635)
1298
+ - add --full-index flag to `bundle update` (@fluxx, #1829)
1299
+ - add --quiet flag to `bundle update` (@nashby, #1654)
1300
+ - Add Bundler::GemHelper.gemspec (@knu, #1637)
1301
+ - Graceful handling of Gemfile syntax errors (@koraktor, #1661)
1302
+ - `bundle platform` command
1303
+ - add ruby to DSL, to specify version of ruby
1304
+ - error out if the ruby version doesn't match
1305
+
1306
+ Performance:
1307
+
1308
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, #1598)
1309
+
1310
+ Bugfixes:
1311
+
1312
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, #1604)
1313
+ - Use the same ruby to run subprocesses as is running rake (@brixen)
1314
+
1315
+ Documentation:
1316
+
1317
+ - Add :github documentation in DSL (@zofrex, #1848, #1851, #1852)
1318
+ - Add docs for the --no-cache option (@fluxx, #1796)
1319
+ - Add basic documentation for bin_path and bundle_path (@radar)
1320
+ - Add documentation for the run method in Bundler::Installer
1321
+
1322
+ ## 1.1.5 (Jul 17, 2012)
1323
+
1324
+ Features:
1325
+
1326
+ - Special case `ruby` directive from 1.2.0, so you can install Gemfiles that use it
1327
+
1328
+ ## 1.1.4 (May 27, 2012)
1329
+
1330
+ Bugfixes:
1331
+
1332
+ - Use `latest_release` in Capistrano and Vlad integration (#1264)
1333
+ - Unknown exceptions now link to ISSUES for help instead of a new ticket
1334
+ - When OpenSSL is missing, provide instructions for fixing (#1776 etc.)
1335
+ - Correct inline help for `clean --force` (@dougbarth, #1911)
1336
+ - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
1337
+
1338
+ ## 1.1.3 (March 23, 2012)
1339
+
1340
+ Bugfixes:
1341
+
1342
+ - escape the bundler root path (@tenderlove, #1789)
1343
+
1344
+ ## 1.1.2 (March 20, 2012)
1345
+
1346
+ Bugfixes:
1347
+
1348
+ - Fix --deployment for multiple PATH sections of the same source (#1782)
1349
+
1350
+ ## 1.1.1 (March 14, 2012)
1351
+
1352
+ Bugfixes:
1353
+
1354
+ - Rescue EAGAIN so the fetcher works on JRuby on Windows
1355
+ - Stop asking users to report gem installation errors
1356
+ - Clarify "no sources" message
1357
+ - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
1358
+ - URI-encode gem names for dependency API (@rohit, #1672)
1359
+ - Fix `cache` edge case in rubygems 1.3.7 (#1202)
1360
+
1361
+ Performance:
1362
+
1363
+ - Reduce invocation of git ls-files in `bundle gem` gemspecs (@knu)
1364
+
1365
+ ## 1.1.0 (Mar 7, 2012)
1366
+
1367
+ Bugfixes:
1368
+
1369
+ - Clean up corrupted lockfiles on bundle installs
1370
+ - Prevent duplicate GIT sources
1371
+ - Fix post_install_message when uing the endpoint API
1372
+
1373
+ ## 1.1.rc.8 (Mar 3, 2012)
1374
+
1375
+ Performance:
1376
+
1377
+ - don't resolve if the Gemfile.lock and Gemfile haven't changed
1378
+
1379
+ Bugfixes:
1380
+
1381
+ - Load gemspecs from git even when a released gem has the same version (#1609)
1382
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer (#1619)
1383
+ - handle gemspec development dependencies correctly (@raggi, #1639)
1384
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, #1604)
1385
+
1386
+ ## 1.1.rc.7 (Dec 29, 2011)
1387
+
1388
+ Bugfixes:
1389
+
1390
+ - Fix bug where `clean` would break when using :path with no gemspec
1391
+
1392
+ ## 1.1.rc.6 (Dec 22, 2011)
1393
+
1394
+ Bugfixes:
1395
+
1396
+ - Fix performance regression from 1.0 (@spastorino, #1511, #1591, #1592)
1397
+ - Load gems correctly when GEM_HOME is blank
1398
+ - Refresh gems so Bundler works from inside a bundle
1399
+ - Handle empty .bundle/config files without an error
1400
+
1401
+ ## 1.1.rc.5 (Dec 14, 2011)
1402
+
1403
+ Bugfixes:
1404
+
1405
+ - Fix ASCII encoding errors with gem (rerelease with ruby 1.8)
1406
+
1407
+ ## 1.1.rc.4 (Dec 14, 2011)
1408
+
1409
+ Features:
1410
+
1411
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, #683)
1412
+
1413
+ Bugfixes:
1414
+
1415
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, #1588)
1416
+ - fix `bundle viz` (@hirochachacha, #1586)
1417
+
1418
+ ## 1.1.rc.3 (Dec 8, 2011)
1419
+
1420
+ Bugfixes:
1421
+
1422
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path (#1582)
1423
+ - fix bundle outdated doesn't list all gems (@joelmoss, #1521)
1424
+
1425
+ ## 1.1.rc.2 (Dec 6, 2011)
1426
+
1427
+ Features:
1428
+
1429
+ - Added README.md to `newgem` (@ognevsky, #1574)
1430
+ - Added LICENSE (MIT) to newgem (@ognevsky, #1571)
1431
+
1432
+ Bugfixes:
1433
+
1434
+ - only auto-namespace requires for implied requires (#1531)
1435
+ - fix bundle clean output for git repos (#1473)
1436
+ - use Gem.bindir for bundle clean (#1544, #1532)
1437
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` (#1500, #1543)
1438
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, #1539)
1439
+ - `bundle clean` handles 7 length git hash for bundle clean (#1490, #1491)
1440
+ - fix Psych loading issues
1441
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, #1573)
1442
+ - 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)
1443
+ - `newgem` now uses https://rubygems.org (#1562)
1444
+ - `bundle init` now uses https://rubygems.org (@jjb, #1522)
1445
+ - `bundle install/update` does not autoclean when using --path for semver
1446
+
1447
+ Documentation:
1448
+
1449
+ - added documentation for --shebang option for `bundle install` (@lunks, #1475, #1558)
1450
+
1451
+ ## 1.1.rc (Oct 3, 2011)
1452
+
1453
+ Features:
1454
+
1455
+ - add `--shebang` option to bundle install (@bensie, #1467)
1456
+ - build passes on ruby 1.9.3rc1 (#1458, #1469)
1457
+ - hide basic auth credentials for custom sources (#1440, #1463)
1458
+
1459
+ Bugfixes:
1460
+
1461
+ - fix index search result caching (#1446, #1466)
1462
+ - fix fetcher prints multiple times during install (#1445, #1462)
1463
+ - don't mention API errors from non-rubygems.org sources
1464
+ - fix autoclean so it doesn't remove bins that are used (#1459, #1460)
1465
+
1466
+ Documentation:
1467
+
1468
+ - add :require => [...] to the gemfile(5) manpage (@nono, #1468)
1469
+
1470
+ ## 1.1.pre.10 (Sep 27, 2011)
1471
+
1472
+ Features:
1473
+
1474
+ - `config system_bindir foo` added, works like "-n foo" in your .gemrc file
1475
+
1476
+ ## 1.1.pre.9 (Sep 18, 2011)
1477
+
1478
+ Features:
1479
+
1480
+ - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
1481
+ - `clean` will be automatically run after bundle install and update when using `--path` (#1420, #1425)
1482
+ - `clean` now takes a `--force` option (#1247, #1426)
1483
+ - `clean` will clean up cached git dirs in bundle clean (#1390)
1484
+ - remove deprecations from DSL (#1119)
1485
+ - autorequire tries directories for gems with dashed names (#1205)
1486
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, #1360)
1487
+ - load rubygems plugins in the bundle binary (@tpope, #1364)
1488
+ - make `--standalone` respect `--path` (@cowboyd, #1361)
1489
+
1490
+ Bugfixes:
1491
+
1492
+ - Fix `clean` to handle nested gems in a git repo (#1329)
1493
+ - Fix conflict from revert of benchmark tool (@boffbowsh, #1355)
1494
+ - Fix fatal error when unable to connect to gem source (#1269)
1495
+ - Fix `outdated` to find pre-release gems that are installed. (#1359)
1496
+ - Fix color for ui. (#1374)
1497
+ - Fix installing to user-owned system gems on OS X
1498
+ - Fix caching issue in the resolver (#1353, #1421)
1499
+ - Fix :github DSL option
1500
+
1501
+ ## 1.1.pre.8 (Aug 13, 2011)
1502
+
1503
+ Bugfixes:
1504
+
1505
+ - Fix `bundle check` to not print fatal error message (@cldwalker, #1347)
1506
+ - Fix require_sudo when Gem.bindir isn't writeable (#1352)
1507
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment (#1254)
1508
+ - Fix `install --binstubs` when using --path (#1332)
1509
+
1510
+ ## 1.1.pre.7 (Aug 8, 2011)
1511
+
1512
+ Bugfixes:
1513
+
1514
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
1515
+ - Fixed exception when sudo was needed to install gems (@spastorino)
1516
+
1517
+ ## 1.1.pre.6 (Aug 8, 2011)
1518
+
1519
+ Bugfixes:
1520
+
1521
+ - Fix cross repository dependencies (#1138)
1522
+ - Fix git dependency fetching from API endpoint (#1254)
1523
+ - Fixes for bundle outdated (@joelmoss, #1238)
1524
+ - Fix bundle standalone when using the endpoint (#1240)
1525
+
1526
+ Features:
1527
+
1528
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, #1274)
1529
+ - bundle clean removes old .gem files (@cldwalker, #1293)
1530
+ - Correcly identify missing child dependency in error message
1531
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, #1120)
1532
+ - create Gemfile.lock for empty Gemfile (#1218)
1533
+
1534
+ ## 1.1.pre.5 (June 11, 2011)
1535
+
1536
+ Bugfixes:
1537
+
1538
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, #1232)
1539
+ - Fix HTTP proxy support (@leobessa, #878)
1540
+
1541
+ Features:
1542
+
1543
+ - Speed up `install --deployment` by using the API endpoint
1544
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, #1229)
1545
+ - Add `install --full-index` to disable the API endpoint, just in case
1546
+ - Significantly speed up install by removing unneeded gemspec fetches
1547
+ - `outdated` command shows outdated gems (@joelmoss, #1130)
1548
+ - Print gem post install messages (@csquared, #1155)
1549
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, #1222)
1550
+ - Allow `check --path`
1551
+
1552
+ ## 1.1.pre.4 (May 5, 2011)
1553
+
1554
+ Bugfixes:
1555
+
1556
+ - Fix bug that could prevent installing new gems
1557
+
1558
+ ## 1.1.pre.3 (May 4, 2011)
1559
+
1560
+ Features:
1561
+
1562
+ - Add `bundle outdated` to show outdated gems (@joelmoss)
1563
+ - Remove BUNDLE_* from `Bundler.with_clean_env` (@wuputah)
1564
+ - Add Bundler.clean_system, and clean_exec (@wuputah)
1565
+ - Use git config for gem author name and email (@krekoten)
1566
+
1567
+ Bugfixes:
1568
+
1569
+ - Fix error calling Bundler.rubygems.gem_path
1570
+ - Fix error when Gem.path returns Gem::FS instead of String
1571
+
1572
+ ## 1.1.pre.2 (April 28, 2011)
1573
+
1574
+ Features:
1575
+
1576
+ - Add :github option to Gemfile DSL for easy git repos
1577
+ - Merge all fixes from 1.0.12 and 1.0.13
1578
+
1579
+ ## 1.1.pre.1 (February 2, 2011)
1580
+
1581
+ Bugfixes:
1582
+
1583
+ - Compatibility with changes made by Rubygems 1.5
1584
+
1585
+ ## 1.1.pre (January 21, 2011)
1586
+
1587
+ Features:
1588
+
1589
+ - Add bundle clean. Removes unused gems from --path directory
1590
+ - Initial Gemcutter Endpoint API work, BAI Fetching source index
1591
+ - Added bundle install --standalone
1592
+ - Ignore Gemfile.lock when buliding new gems
1593
+ - Make it possible to override a .gemspec dependency's source in the
1594
+ Gemfile
1595
+
1596
+ Removed:
1597
+
1598
+ - Removed bundle lock
1599
+ - Removed bundle install <path>
1600
+ - Removed bundle install --production
1601
+ - Removed bundle install --disable-shared-gems
1602
+
1603
+ ## 1.0.21 (September 30, 2011)
1604
+
1605
+ - No changes from RC
1606
+
1607
+ ## 1.0.21.rc (September 29, 2011)
1608
+
1609
+ Bugfixes:
1610
+
1611
+ - Load Psych unless Syck is defined, because 1.9.2 defines YAML
1612
+
1613
+ ## 1.0.20 (September 27, 2011)
1614
+
1615
+ Features:
1616
+
1617
+ - Add platform :maglev (@timfel, #1444)
1618
+
1619
+ Bugfixes:
1620
+
1621
+ - Ensure YAML is required even if Psych is found
1622
+ - Handle directory names that contain invalid regex characters
1623
+
1624
+ ## 1.0.20.rc (September 18, 2011)
1625
+
1626
+ Features:
1627
+
1628
+ - Rescue interrupts to `bundle` while loading bundler.rb (#1395)
1629
+ - Allow clearing without groups by passing `--without ''` (#1259)
1630
+
1631
+ Bugfixes:
1632
+
1633
+ - Manually sort requirements in the lockfile (#1375)
1634
+ - Remove several warnings generated by ruby -w (@stephencelis)
1635
+ - Handle trailing slashes on names passed to `gem` (#1372)
1636
+ - Name modules for gems like 'test-foo_bar' correctly (#1303)
1637
+ - Don't require Psych if Syck is already loaded (#1239)
1638
+
1639
+ ## 1.0.19.rc (September 13, 2011)
1640
+
1641
+ Features:
1642
+
1643
+ - Compatability with Rubygems 1.8.10 installer changes
1644
+ - Report gem installation failures clearly (@rwilcox, #1380)
1645
+ - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
1646
+
1647
+ Bugfixes:
1648
+
1649
+ - `exec` now works when the command contains 'exec'
1650
+ - Only touch lock after changes on Windows (@robertwahler, #1358)
1651
+ - Keep load paths when #setup is called multiple times (@radsaq, #1379)
1652
+
1653
+ ## 1.0.18 (August 16, 2011)
1654
+
1655
+ Bugfixes:
1656
+
1657
+ - Fix typo in DEBUG_RESOLVER (@geemus)
1658
+ - Fixes rake 0.9.x warning (@mtylty, #1333)
1659
+ - Fix `bundle cache` again for rubygems 1.3.x
1660
+
1661
+ Features:
1662
+
1663
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, #1300)
1664
+ - Support hidden gemspec (@trans, @cldwalker, #827)
1665
+ - Make fetch_specs faster (@zeha, #1294)
1666
+ - Allow overriding development deps loaded by #gemspec (@lgierth, #1245)
1667
+
1668
+ ## 1.0.17 (August 8, 2011)
1669
+
1670
+ Bugfixes:
1671
+
1672
+ - Fix rake issues with rubygems 1.3.x (#1342)
1673
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 (#1341)
1674
+
1675
+ ## 1.0.16 (August 8, 2011)
1676
+
1677
+ Features:
1678
+
1679
+ - Performance fix for MRI 1.9 (@efficientcloud, #1288)
1680
+ - Shortcuts (like `bundle i`) for all commands (@amatsuda)
1681
+ - Correcly identify missing child dependency in error message
1682
+
1683
+ Bugfixes:
1684
+
1685
+ - Allow Windows network share paths with forward slashes (@mtscout6, #1253)
1686
+ - Check for rubygems.org credentials so `rake release` doesn't hang (#980)
1687
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, #1202)
1688
+ - Fix `bundle install --without` on kiji (@tmm1, #1287)
1689
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, #1231)
1690
+
1691
+ Documentation:
1692
+
1693
+ - Documentation for `gem ..., :require => false` (@kmayer, #1292)
1694
+ - Gems provide "executables", they are rarely also binaries (@fxn, #1242)
1695
+
1696
+ ## 1.0.15 (June 9, 2011)
1697
+
1698
+ Features:
1699
+
1700
+ - Improved Rubygems integration, removed many deprecation notices
1701
+
1702
+ Bugfixes:
1703
+
1704
+ - Escape URL arguments to git correctly on Windows (1.0.14 regression)
1705
+
1706
+ ## 1.0.14 (May 27, 2011)
1707
+
1708
+ Features:
1709
+
1710
+ - Rubinius platform :rbx (@rkbodenner)
1711
+ - Include gem rake tasks with "require 'bundler/gem_tasks" (@indirect)
1712
+ - Include user name and email from git config in new gemspec (@ognevsky)
1713
+
1714
+ Bugfixes:
1715
+
1716
+ - Set file permissions after checking out git repos (@tissak)
1717
+ - Remove deprecated call to Gem::SourceIndex#all_gems (@mpj)
1718
+ - Require the version file in new gemspecs (@rubiii)
1719
+ - Allow relative paths from the Gemfile in gems with no gemspec (@mbirk)
1720
+ - Install gems that contain 'bundler', e.g. guard-bundler (@hone)
1721
+ - Display installed path correctly on Windows (@tadman)
1722
+ - Escape quotes in git URIs (@mheffner)
1723
+ - Improve Rake 0.9 support (@quix)
1724
+ - Handle certain directories already existing (@raggi)
1725
+ - Escape filenames containing regex characters (@indirect)
1726
+
1727
+ ## 1.0.13 (May 4, 2011)
1728
+
1729
+ Features:
1730
+
1731
+ - Compatibility with Rubygems master (soon to be v1.8) (@evanphx)
1732
+ - Informative error when --path points to a broken symlink
1733
+ - Support Rake 0.9 and greater (@e2)
1734
+ - Output full errors for non-TTYs e.g. pow (@josh)
1735
+
1736
+ Bugfixes:
1737
+
1738
+ - Allow spaces in gem path names for gem tasks (@rslifka)
1739
+ - Have cap run bundle install from release_path (@martinjagusch)
1740
+ - Quote git refspec so zsh doesn't expand it (@goneflyin)
1741
+
1742
+ ## 1.0.12 (April 8, 2011)
1743
+
1744
+ Features:
1745
+
1746
+ - Add --no-deployment option to `install` for disabling it on dev machines
1747
+ - Better error message when git fails and cache is present (@parndt)
1748
+ - Honor :bundle_cmd in cap `rake` command (@voidlock, @cgriego)
1749
+
1750
+ Bugfixes:
1751
+
1752
+ - Compatibility with Rubygems 1.7 and Rails 2.3 and vendored gems (@evanphx)
1753
+ - Fix changing gem order in lock (@gucki)
1754
+ - Remove color escape sequences when displaying man pages (@bgreenlee)
1755
+ - Fix creating GEM_HOME on both JRuby 1.5 and 1.6 (@nickseiger)
1756
+ - Fix gems without a gemspec and directories in bin/ (@epall)
1757
+ - Fix --no-prune option for `bundle install` (@cmeiklejohn)
1758
+
1759
+ ## 1.0.11 (April 1, 2011)
1760
+
1761
+ Features:
1762
+
1763
+ - Compatibility with Rubygems 1.6 and 1.7
1764
+ - Better error messages when a git command fails
1765
+
1766
+ Bugfixes:
1767
+
1768
+ - Don't always update gemspec gems (@carllerche)
1769
+ - Remove ivar warnings (@jackdempsey)
1770
+ - Fix occasional git failures in zsh (@jonah-carbonfive)
1771
+ - Consistent lock for gems with double deps like Cap (@akahn)
1772
+
1773
+ ## 1.0.10 (February 1, 2011)
1774
+
1775
+ Bugfixes:
1776
+
1777
+ - Fix a regression loading YAML gemspecs from :git and :path gems
1778
+ - Requires, namespaces, etc. to work with changes in Rubygems 1.5
1779
+
1780
+ ## 1.0.9 (January 19, 2011)
1781
+
1782
+ Bugfixes:
1783
+
1784
+ - Fix a bug where Bundler.require could remove gems from the load
1785
+ path. In Rails apps with a default application.rb, this removed
1786
+ all gems in groups other than :default and Rails.env
1787
+
1788
+ ## 1.0.8 (January 18, 2011)
1789
+
1790
+ Features:
1791
+
1792
+ - Allow overriding gemspec() deps with :git deps
1793
+ - Add --local option to `bundle update`
1794
+ - Ignore Gemfile.lock in newly generated gems
1795
+ - Use `less` as help pager instead of `more`
1796
+ - Run `bundle exec rake` instead of `rake` in Capistrano tasks
1797
+
1798
+ Bugfixes:
1799
+
1800
+ - Fix --no-cache option for `bundle install`
1801
+ - Allow Vlad deploys to work without Capistrano gem installed
1802
+ - Fix group arguments to `bundle console`
1803
+ - Allow groups to be loaded even if other groups were loaded
1804
+ - Evaluate gemspec() gemspecs in their directory not the cwd
1805
+ - Count on Rake to chdir to the right place in GemHelper
1806
+ - Change Pathnames to Strings for MacRuby
1807
+ - Check git process exit status correctly
1808
+ - Fix some warnings in 1.9.3-trunk (thanks tenderlove)
1809
+
1810
+ ## 1.0.7 (November 17, 2010)
1811
+
1812
+ Bugfixes:
1813
+
1814
+ - Remove Bundler version from the lockfile because it broke
1815
+ backwards compatibility with 1.0.0-1.0.5. Sorry. :(
1816
+
1817
+ ## 1.0.6 (November 16, 2010)
1818
+
1819
+ Bugfixes:
1820
+
1821
+ - Fix regression in `update` that caused long/wrong results
1822
+ - Allow git gems on other platforms while installing (#579)
1823
+
1824
+ Features:
1825
+
1826
+ - Speed up `install` command using various optimizations
1827
+ - Significantly increase performance of resolver
1828
+ - Use upcoming Rubygems performance improvements (@tmm1)
1829
+ - Warn if the lockfile was generated by a newer version
1830
+ - Set generated gems' homepage to "", so Rubygems will warn
1831
+
1832
+ ## 1.0.5 (November 13, 2010)
1833
+
1834
+ Bugfixes:
1835
+
1836
+ - Fix regression disabling all operations that employ sudo
1837
+
1838
+ ## 1.0.4 (November 12, 2010)
1839
+
1840
+ Bugfixes:
1841
+
1842
+ - Expand relative :paths from Bundler.root (eg ./foogem)
1843
+ - Allow git gems in --without groups while --frozen
1844
+ - Allow gem :ref to be a symbol as well as a string
1845
+ - Fix exception when Gemfile needs a newer Bundler version
1846
+ - Explanation when the current Bundler version conflicts
1847
+ - Explicit error message if Gemfile needs newer Bundler
1848
+ - Ignore an empty string BUNDLE_GEMFILE
1849
+ - Skeleton gemspec now works with older versions of git
1850
+ - Fix shell quoting and ref fetching in GemHelper
1851
+ - Disable colored output in --deployment
1852
+ - Preserve line endings in lock file
1853
+
1854
+ Features:
1855
+
1856
+ - Add support for 'mingw32' platform (aka RubyInstaller)
1857
+ - Large speed increase when Gemfile.lock is already present
1858
+ - Huge speed increase when many (100+) system gems are present
1859
+ - Significant expansion of ISSUES, man pages, and docs site
1860
+ - Remove Open3 from GemHelper (now it works on Windows™®©)
1861
+ - Allow setting roles in built-in cap and vlad tasks
1862
+
1863
+ ## 1.0.3 (October 15, 2010)
1864
+
1865
+ Bugfixes:
1866
+
1867
+ - Use bitwise or in #hash to reduce the chance of overflow
1868
+ - `bundle update` now works with :git + :tag updates
1869
+ - Record relative :path options in the Gemfile.lock
1870
+ - :groups option on gem method in Gemfile now works
1871
+ - Add #platform method and :platform option to Gemfile DSL
1872
+ - --without now accepts a quoted, space-separated list
1873
+ - Installing after --deployment with no lock is now possible
1874
+ - Binstubs can now be symlinked
1875
+ - Print warning if cache for --local install is missing gems
1876
+ - Improve output when installing to a path
1877
+ - The tests all pass! Yay!
1878
+
1879
+ ## 1.0.2 (October 2, 2010)
1880
+
1881
+ Bugfix:
1882
+
1883
+ - Actually include the man pages in the gem, so help works
1884
+
1885
+ ## 1.0.1 (October 1, 2010)
1886
+
1887
+ Features:
1888
+
1889
+ - Vlad deployment recipe, `require 'bundler/vlad'`
1890
+ - Prettier bundle graphs
1891
+ - Improved gem skeleton for `bundle gem`
1892
+ - Prompt on file clashes when generating a gem
1893
+ - Option to generate binary with gem skeleton
1894
+ - Allow subclassing of GemHelper for custom tasks
1895
+ - Chdir to gem directory during `bundle open`
1896
+
1897
+ Bugfixes:
1898
+
1899
+ - Allow gemspec requirements with a list of versions
1900
+ - Accept lockfiles with windows line endings
1901
+ - Respect BUNDLE_WITHOUT env var
1902
+ - Allow `gem "foo", :platform => :jruby`
1903
+ - Specify loaded_from path in fake gemspec
1904
+ - Flesh out gem_helper tasks, raise errors correctly
1905
+ - Respect RBConfig::CONFIG['ruby_install_name'] in binstubs
1906
+
1907
+ ## 1.0.0 (August 29, 2010)
1908
+
1909
+ Features:
1910
+
1911
+ - You can now define `:bundle_cmd` in the capistrano task
1912
+
1913
+ Bugfixes:
1914
+
1915
+ - Various bugfixes to the built-in rake helpers
1916
+ - Fix a bug where shortrefs weren't unique enough and were
1917
+ therfore colliding
1918
+ - Fix a small bug involving checking whether a local git
1919
+ clone is up to date
1920
+ - Correctly handle explicit '=' dependencies with gems
1921
+ pinned to a git source
1922
+ - Fix an issue with Windows-generated lockfiles by reading
1923
+ and writing the lockfile in binary mode
1924
+ - Fix an issue with shelling out to git in Windows by
1925
+ using double quotes around paths
1926
+ - Detect new Rubygems sources in the Gemfile and update
1927
+ the lockfile
1928
+
1929
+ ## 1.0.0.rc.6 (August 23, 2010)
1930
+
1931
+ Features:
1932
+
1933
+ - Much better documentation for most of the commands and Gemfile
1934
+ format
1935
+
1936
+ Bugfixes:
1937
+
1938
+ - Don't attempt to create directories if they already exist
1939
+ - Fix the capistrano task so that it actually runs
1940
+ - Update the Gemfile template to reference rubygems.org instead
1941
+ of :gemcutter
1942
+ - bundle exec should exit with a non zero exit code when the gem
1943
+ binary does not exist or the file is not executable.
1944
+ - Expand paths in Gemfile relative to the Gemfile and not the current
1945
+ working directory.
1946
+
1947
+ ## 1.0.0.rc.5 (August 10, 2010)
1948
+
1949
+ Features:
1950
+
1951
+ - Make the Capistrano task more concise.
1952
+
1953
+ Bugfixes:
1954
+
1955
+ - Fix a regression with determining whether or not to use sudo
1956
+ - Allow using the --gemfile flag with the --deployment flag
1957
+
1958
+ ## 1.0.0.rc.4 (August 9, 2010)
1959
+
1960
+ Features:
1961
+
1962
+ - `bundle gem NAME` command to generate a new gem with Gemfile
1963
+ - Bundle config file location can be specified by BUNDLE_APP_CONFIG
1964
+ - Add --frozen to disable updating the Gemfile.lock at runtime
1965
+ (default with --deployment)
1966
+ - Basic Capistrano task now added as 'bundler/capistrano'
1967
+
1968
+ Bugfixes:
1969
+
1970
+ - Multiple bundler process no longer share a tmp directory
1971
+ - `bundle update GEM` always updates dependencies of GEM as well
1972
+ - Deleting the cache directory no longer causes errors
1973
+ - Moving the bundle after installation no longer causes git errors
1974
+ - Bundle path is now correctly remembered on a read-only filesystem
1975
+ - Gem binaries are installed to Gem.bindir, not #{Gem.dir}/bin
1976
+ - Fetch gems from vendor/cache, even without --local
1977
+ - Sort lockfile by platform as well as spec
1978
+
1979
+ ## 1.0.0.rc.3 (August 3, 2010)
1980
+
1981
+ Features:
1982
+
1983
+ - Deprecate --production flag for --deployment, since the former
1984
+ was causing confusion with the :production group
1985
+ - Add --gemfile option to `bundle check`
1986
+ - Reduce memory usage of `bundle install` by 2-4x
1987
+ - Improve message from `bundle check` under various conditions
1988
+ - Better error when a changed Gemfile conflicts with Gemfile.lock
1989
+
1990
+ Bugfixes:
1991
+
1992
+ - Create bin/ directory if it is missing, then install binstubs
1993
+ - Error nicely on the edge case of a pinned gem with no spec
1994
+ - Do not require gems for other platforms
1995
+ - Update git sources along with the gems they contain
1996
+
1997
+ ## 1.0.0.rc.2 (July 29, 2010)
1998
+
1999
+ - `bundle install path` was causing confusion, so we now print
2000
+ a clarifying warning. The preferred way to install to a path
2001
+ (which will not print the warning) is
2002
+ `bundle install --path path/to/install`.
2003
+ - `bundle install --system` installs to the default system
2004
+ location ($BUNDLE_PATH or $GEM_HOME) even if you previously
2005
+ used `bundle install --path`
2006
+ - completely remove `--disable-shared-gems`. If you install to
2007
+ system, you will not be isolated, while if you install to
2008
+ another path, you will be isolated from gems installed to
2009
+ the system. This was mostly an internal option whose naming
2010
+ and semantics were extremely confusing.
2011
+ - Add a `--production` option to `bundle install`:
2012
+ - by default, installs to `vendor/bundle`. This can be
2013
+ overridden with the `--path` option
2014
+ - uses `--local` if `vendor/cache` is found. This will
2015
+ guarantee that Bundler does not attempt to connect to
2016
+ Rubygems and will use the gems cached in `vendor/cache`
2017
+ instead
2018
+ - Raises an exception if a Gemfile.lock is not found
2019
+ - Raises an exception if you modify your Gemfile in development
2020
+ but do not check in an updated Gemfile.lock
2021
+ - Fixes a bug where switching a source from Rubygems to git
2022
+ would always say "the git source is not checked out" when
2023
+ running `bundle install`
2024
+
2025
+ NOTE: We received several reports of "the git source has not
2026
+ been checked out. Please run bundle install". As far as we
2027
+ can tell, these problems have two possible causes:
2028
+
2029
+ 1. `bundle install ~/.bundle` in one user, but actually running
2030
+ the application as another user. Never install gems to a
2031
+ directory scoped to a user (`~` or `$HOME`) in deployment.
2032
+ 2. A bug that happened when changing a gem to a git source.
2033
+
2034
+ To mitigate several common causes of `(1)`, please use the
2035
+ new `--production` flag. This flag is simply a roll-up of
2036
+ the best practices we have been encouraging people to use
2037
+ for deployment.
2038
+
2039
+ If you want to share gems across deployments, and you use
2040
+ Capistrano, symlink release_path/current/vendor/bundle to
2041
+ release_path/shared/bundle. This will keep deployments
2042
+ snappy while maintaining the benefits of clean, deploy-time
2043
+ isolation.
2044
+
2045
+ ## 1.0.0.rc.1 (July 26, 2010)
2046
+
2047
+ - Fixed a bug with `bundle install` on multiple machines and git
2048
+
2049
+ ## 1.0.0.beta.10 (July 25, 2010)
2050
+
2051
+ - Last release before 1.0.0.rc.1
2052
+ - Added :mri as a valid platform (platforms :mri { gem "ruby-debug" })
2053
+ - Fix `bundle install` immediately after modifying the :submodule option
2054
+ - Don't write to Gemfile.lock if nothing has changed, fixing situations
2055
+ where bundle install was run with a different user than the app
2056
+ itself
2057
+ - Fix a bug where other platforms were being wiped on `bundle update`
2058
+ - Don't ask for root password on `bundle install` if not needed
2059
+ - Avoid setting `$GEM_HOME` where not needed
2060
+ - First solid pass of `bundle config`
2061
+ - Add build options
2062
+ - `bundle config build.mysql --with-mysql-config=/path/to/config`
2063
+
2064
+ ## 1.0.0.beta.9 (July 21, 2010)
2065
+
2066
+ - Fix install failure when switching from a path to git source
2067
+ - Fix `bundle exec bundle *` in a bundle with --disable-shared-gems
2068
+ - Fix `bundle *` from inside a bundle with --disable-shared-gem
2069
+ - Shim Gem.refresh. This is used by Unicorn
2070
+ - Fix install failure when a path's dependencies changed
2071
+
2072
+ ## 1.0.0.beta.8 (July 20, 2010)
2073
+
2074
+ - Fix a Beta 7 bug involving Ruby 1.9
2075
+
2076
+ ## 1.0.0.beta.7 (July 20, 2010, yanked)
2077
+
2078
+ - Running `bundle install` twice in a row with a git source always crashed
2079
+
2080
+ ## 1.0.0.beta.6 (July 20, 2010, yanked)
2081
+
2082
+ - Create executables with bundle install --binstubs
2083
+ - You can customize the location (default is app/bin) with --binstubs other/location
2084
+ - Fix a bug where the Gemfile.lock would be deleted even if the update was exited
2085
+ - Fix a bug where cached gems for other platforms were sometimes deleted
2086
+ - Clean up output when nothing was deleted from cache (it previously said
2087
+ "Removing outdated gems ...")
2088
+ - Improve performance of bundle install if the git gem was already checked out,
2089
+ and the revision being used already exists locally
2090
+ - Fix bundle show bundler in some cases
2091
+ - Fix bugs with bundle update
2092
+ - Don't ever run git commands at runtime (fixes a number of common passenger issues)
2093
+ - Fixes an obscure bug where switching the source of a gem could fail to correctly
2094
+ change the source of its dependencies
2095
+ - Support multiple version dependencies in the Gemfile
2096
+ (gem "rails", ">= 3.0.0.beta1", "<= 3.0.0")
2097
+ - Raise an exception for ambiguous uses of multiple declarations of the same gem
2098
+ (for instance, with different versions or sources).
2099
+ - Fix cases where the same dependency appeared several times in the Gemfile.lock
2100
+ - Fix a bug where require errors were being swallowed during Bundler.require
2101
+
2102
+ ## 1.0.0.beta.1
2103
+
2104
+ - No `bundle lock` command. Locking happens automatically on install or update
2105
+ - No .bundle/environment.rb. Require 'bundler/setup' instead.
2106
+ - $BUNDLE_HOME defaults to $GEM_HOME instead of ~/.bundle
2107
+ - Remove lockfiles generated by 0.9
2108
+
2109
+ ## 0.9.26
2110
+
2111
+ Features:
2112
+
2113
+ - error nicely on incompatible 0.10 lockfiles
2114
+
2115
+ ## 0.9.25 (May 3, 2010)
2116
+
2117
+ Bugfixes:
2118
+
2119
+ - explicitly coerce Pathname objects to Strings for Ruby 1.9
2120
+ - fix some newline weirdness in output from install command
2121
+
2122
+ ## 0.9.24 (April 22, 2010)
2123
+
2124
+ Features:
2125
+
2126
+ - fetch submodules for git sources
2127
+ - limit the bundled version of bundler to the same as the one installing
2128
+ - force relative paths in git gemspecs to avoid raising Gem::NameTooLong
2129
+ - serialize GemCache sources correctly, so locking works
2130
+ - raise Bundler::GemNotFound instead of calling exit! inside library code
2131
+ - Rubygems 1.3.5 compatibility for the adventurous, not supported by me :)
2132
+
2133
+ Bugfixes:
2134
+
2135
+ - don't try to regenerate environment.rb if it is read-only
2136
+ - prune outdated gems with the platform "ruby"
2137
+ - prune cache without errors when there are directories or non-gem files
2138
+ - don't re-write environment.rb if running after it has been loaded
2139
+ - do not monkeypatch Specification#load_paths twice when inside a bundle
2140
+
2141
+ ## 0.9.23 (April 20, 2010)
2142
+
2143
+ Bugfixes:
2144
+
2145
+ - cache command no longer prunes gems created by an older rubygems version
2146
+ - cache command no longer prunes gems that are for other platforms
2147
+
2148
+ ## 0.9.22 (April 20, 2010)
2149
+
2150
+ Features:
2151
+
2152
+ - cache command now prunes stale .gem files from vendor/cache
2153
+ - init --gemspec command now generates development dependencies
2154
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED (#287)
2155
+ - remove .gem files generated after installing a gem from a :path (#286)
2156
+ - improve install/lock messaging (#284)
2157
+
2158
+ Bugfixes:
2159
+
2160
+ - ignore cached gems that are for another platform (#288)
2161
+ - install Windows gems that have no architecture set, like rcov (#277)
2162
+ - exec command while locked now includes the bundler lib in $LOAD_PATH (#293)
2163
+ - fix the `rake install` task
2164
+ - add GemspecError so it can be raised without (further) error (#292)
2165
+ - create a parent directory before cloning for git 1.5 compatibility (#285)
2166
+
2167
+ ## 0.9.21 (April 16, 2010)
2168
+
2169
+ Bugfixes:
2170
+
2171
+ - don't raise 'omg wtf' when lockfile is outdated
2172
+
2173
+ ## 0.9.20 (April 15, 2010)
2174
+
2175
+ Features:
2176
+
2177
+ - load YAML format gemspecs
2178
+ - no backtraces when calling Bundler.setup if gems are missing
2179
+ - no backtraces when trying to exec a file without the executable bit
2180
+
2181
+ Bugfixes:
2182
+
2183
+ - fix infinite recursion in Bundler.setup after loading a bundled Bundler gem
2184
+ - request install instead of lock when env.rb is out of sync with Gemfile.lock
2185
+
2186
+ ## 0.9.19 (April 12, 2010)
2187
+
2188
+ Features:
2189
+
2190
+ - suggest `bundle install --relock` when the Gemfile has changed (#272)
2191
+ - source support for Rubygems servers without prerelease gem indexes (#262)
2192
+
2193
+ Bugfixes:
2194
+
2195
+ - don't set up all groups every time Bundler.setup is called while locked (#263)
2196
+ - fix #full_gem_path for git gems while locked (#268)
2197
+ - eval gemspecs at the top level, not inside the Bundler class (#269)
2198
+
2199
+
2200
+ ## 0.9.18 (April 8, 2010)
2201
+
2202
+ Features:
2203
+
2204
+ - console command that runs irb with bundle (and optional group) already loaded
2205
+
2206
+ Bugfixes:
2207
+
2208
+ - Bundler.setup now fully disables system gems, even when unlocked (#266, #246)
2209
+ - fixes Yard, which found plugins in Gem.source_index that it could not load
2210
+ - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
2211
+
2212
+ ## 0.9.17 (April 7, 2010)
2213
+
2214
+ Features:
2215
+
2216
+ - Bundler.require now calls Bundler.setup automatically
2217
+ - Gem::Specification#add_bundler_dependencies added for gemspecs
2218
+
2219
+ Bugfixes:
2220
+
2221
+ - Gem paths are not longer duplicated while loading bundler
2222
+ - exec no longer duplicates RUBYOPT if it is already set correctly
2223
+
2224
+ ## 0.9.16 (April 3, 2010)
2225
+
2226
+ Features:
2227
+
2228
+ - exit gracefully on INT signal
2229
+ - resolver output now indicates whether remote sources were checked
2230
+ - print error instead of backtrace when exec cannot find a binary (#241)
2231
+
2232
+ Bugfixes:
2233
+
2234
+ - show, check, and open commands work again while locked (oops)
2235
+ - show command for git gems
2236
+ - outputs branch names other than master
2237
+ - gets the correct sha from the checkout
2238
+ - doesn't print sha twice if :ref is set
2239
+ - report errors from bundler/setup.rb without backtraces (#243)
2240
+ - fix Gem::Spec#git_version to not error on unloaded specs
2241
+ - improve deprecation, Gemfile, and command error messages (#242)
2242
+
2243
+ ## 0.9.15 (April 1, 2010)
2244
+
2245
+ Features:
2246
+
2247
+ - use the env_file if possible instead of doing a runtime resolve
2248
+ - huge speedup when calling Bundler.setup while locked
2249
+ - ensures bundle exec is fast while locked
2250
+ - regenerates env_file if it was generated by an older version
2251
+ - update cached/packed gems when you update gems via bundle install
2252
+
2253
+ Bugfixes:
2254
+
2255
+ - prep for Rubygems 1.3.7 changes
2256
+ - install command now pulls git branches correctly (#211)
2257
+ - raise errors on invalid options in the Gemfile
2258
+
2259
+ ## 0.9.14 (March 30, 2010)
2260
+
2261
+ Features:
2262
+
2263
+ - install command output vastly improved
2264
+ - installation message now accurate, with 'using' and 'installing'
2265
+ - bundler gems no longer listed as 'system gems'
2266
+ - show command output now includes sha and branch name for git gems
2267
+ - init command now takes --gemspec option for bootstrapping gem Gemfiles
2268
+ - Bundler.with_clean_env for shelling out to ruby scripts
2269
+ - show command now aliased as 'list'
2270
+ - VISUAL env var respected for GUI editors
2271
+
2272
+ Bugfixes:
2273
+
2274
+ - exec command now finds binaries from gems with no gemspec
2275
+ - note source of Gemfile resolver errors
2276
+ - don't blow up if git urls are changed
2277
+
2278
+ ## 0.9.13 (March 23, 2010)
2279
+
2280
+ Bugfixes:
2281
+
2282
+ - exec command now finds binaries from gems installed via :path
2283
+ - gem dependencies are pulled in even if their type is nil
2284
+ - paths with spaces have double-quotes to work on Windows
2285
+ - set GEM_PATH in environment.rb so generators work with Rails 2
2286
+
2287
+ ## 0.9.12 (March 17, 2010)
2288
+
2289
+ - refactoring, internal cleanup, more solid specs
2290
+
2291
+ Features:
2292
+
2293
+ - check command takes a --without option
2294
+ - check command exits 1 if the check fails
2295
+
2296
+ Bugfixes:
2297
+
2298
+ - perform a topological sort on resolved gems (#191)
2299
+ - gems from git work even when paths or repos have spaces (#196)
2300
+ - Specification#loaded_from returns a String, like Gem::Specification (#197)
2301
+ - specs eval from inside the gem directory, even when locked
2302
+ - virtual gemspecs are now saved in environment.rb for use when loading
2303
+ - unify the Installer's local index and the runtime index (#204)
2304
+
2305
+ ## 0.9.11 (March 9, 2010)
2306
+
2307
+ - added roadmap with future development plans
2308
+
2309
+ Features:
2310
+
2311
+ - install command can take the path to the gemfile with --gemfile (#125)
2312
+ - unknown command line options are now rejected (#163)
2313
+ - exec command hugely sped up while locked (#177)
2314
+ - show command prints the install path if you pass it a gem name (#148)
2315
+ - open command edits an installed gem with $EDITOR (#148)
2316
+ - Gemfile allows assigning an array of groups to a gem (#114)
2317
+ - Gemfile allows :tag option on :git sources
2318
+ - improve backtraces when a gemspec is invalid
2319
+ - improve performance by installing gems from the cache if present
2320
+
2321
+ Bugfixes:
2322
+
2323
+ - normalize parameters to Bundler.require (#153)
2324
+ - check now checks installed gems rather than cached gems (#162)
2325
+ - don't update the gem index when installing after locking (#169)
2326
+ - bundle parenthesises arguments for 1.8.6 (#179)
2327
+ - gems can now be assigned to multiple groups without problems (#135)
2328
+ - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
2329
+ - fix a Dependency.to_yaml error due to accidentally including sources and groups
2330
+ - don't reinstall packed gems
2331
+ - fix gems with git sources that are private repositories
2332
+
2333
+ ## 0.9.10 (March 1, 2010)
2334
+
2335
+ - depends on Rubygems 1.3.6
2336
+
2337
+ Bugfixes:
2338
+
2339
+ - support locking after install --without
2340
+ - don't reinstall gems from the cache if they're already in the bundle
2341
+ - fixes for Ruby 1.8.7 and 1.9
2342
+
2343
+ ## 0.9.9 (February 25, 2010)
2344
+
2345
+ Bugfixes:
2346
+
2347
+ - don't die if GEM_HOME is an empty string
2348
+ - fixes for Ruby 1.8.6 and 1.9
2349
+
2350
+ ## 0.9.8 (February 23, 2010)
2351
+
2352
+ Features:
2353
+
2354
+ - pack command which both caches and locks
2355
+ - descriptive error if a cached gem is missing
2356
+ - remember the --without option after installing
2357
+ - expand paths given in the Gemfile via the :path option
2358
+ - add block syntax to the git and group options in the Gemfile
2359
+ - support gems with extensions that don't admit they depend on rake
2360
+ - generate gems using gem build gemspec so git gems can have native extensions
2361
+ - print a useful warning if building a gem fails
2362
+ - allow manual configuration via BUNDLE_PATH
2363
+
2364
+ Bugfixes:
2365
+
2366
+ - eval gemspecs in the gem directory so relative paths work
2367
+ - make default spec for git sources valid
2368
+ - don't reinstall gems that are already packed
2369
+
2370
+ ## 0.9.7 (February 17, 2010)
2371
+
2372
+ Bugfixes:
2373
+
2374
+ - don't say that a gem from an excluded group is "installing"
2375
+ - improve crippling rubygems in locked scenarios
2376
+
2377
+ ## 0.9.6 (February 16, 2010)
2378
+
2379
+ Features:
2380
+
2381
+ - allow String group names
2382
+ - a number of improvements in the documentation and error messages
2383
+
2384
+ Bugfixes:
2385
+
2386
+ - set SourceIndex#spec_dirs to solve a problem involving Rails 2.3 in unlocked mode
2387
+ - ensure Rubygems is fully loaded in Ruby 1.9 before patching it
2388
+ - fix `bundle install` for a locked app without a .bundle directory
2389
+ - require gems in the order that the resolver determines
2390
+ - make the tests platform agnostic so we can confirm that they're green on JRuby
2391
+ - fixes for Ruby 1.9
2392
+
2393
+ ## 0.9.5 (Feburary 12, 2010)
2394
+
2395
+ Features:
2396
+
2397
+ - added support for :path => "relative/path"
2398
+ - added support for older versions of git
2399
+ - added `bundle install --disable-shared-gems`
2400
+ - Bundler.require fails silently if a library does not have a file on the load path with its name
2401
+ - Basic support for multiple rubies by namespacing the default bundle path using the version and engine
2402
+
2403
+ Bugfixes:
2404
+
2405
+ - if the bundle is locked and .bundle/environment.rb is not present when Bundler.setup is called, generate it
2406
+ - same if it's not present with `bundle check`
2407
+ - same if it's not present with `bundle install`