bundler 1.9.0 → 1.17.3

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

Potentially problematic release.


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

Files changed (328) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGELOG.md +1157 -6
  3. data/README.md +33 -6
  4. data/bundler.gemspec +51 -18
  5. data/exe/bundle +31 -0
  6. data/{bin → exe}/bundle_ruby +10 -6
  7. data/exe/bundler +4 -0
  8. data/lib/bundler.rb +326 -207
  9. data/lib/bundler/build_metadata.rb +53 -0
  10. data/lib/bundler/capistrano.rb +9 -3
  11. data/lib/bundler/cli.rb +522 -141
  12. data/lib/bundler/cli/add.rb +35 -0
  13. data/lib/bundler/cli/binstubs.rb +22 -11
  14. data/lib/bundler/cli/cache.rb +7 -6
  15. data/lib/bundler/cli/check.rb +11 -8
  16. data/lib/bundler/cli/clean.rb +7 -8
  17. data/lib/bundler/cli/common.rb +53 -7
  18. data/lib/bundler/cli/config.rb +84 -49
  19. data/lib/bundler/cli/console.rb +13 -8
  20. data/lib/bundler/cli/doctor.rb +140 -0
  21. data/lib/bundler/cli/exec.rb +77 -16
  22. data/lib/bundler/cli/gem.rb +120 -52
  23. data/lib/bundler/cli/info.rb +50 -0
  24. data/lib/bundler/cli/init.rb +21 -7
  25. data/lib/bundler/cli/inject.rb +37 -10
  26. data/lib/bundler/cli/install.rb +139 -78
  27. data/lib/bundler/cli/issue.rb +40 -0
  28. data/lib/bundler/cli/list.rb +58 -0
  29. data/lib/bundler/cli/lock.rb +63 -0
  30. data/lib/bundler/cli/open.rb +9 -6
  31. data/lib/bundler/cli/outdated.rb +221 -35
  32. data/lib/bundler/cli/package.rb +11 -7
  33. data/lib/bundler/cli/platform.rb +7 -4
  34. data/lib/bundler/cli/plugin.rb +24 -0
  35. data/lib/bundler/cli/pristine.rb +47 -0
  36. data/lib/bundler/cli/remove.rb +18 -0
  37. data/lib/bundler/cli/show.rb +11 -10
  38. data/lib/bundler/cli/update.rb +47 -29
  39. data/lib/bundler/cli/viz.rb +12 -8
  40. data/lib/bundler/compact_index_client.rb +109 -0
  41. data/lib/bundler/compact_index_client/cache.rb +118 -0
  42. data/lib/bundler/compact_index_client/updater.rb +116 -0
  43. data/lib/bundler/compatibility_guard.rb +14 -0
  44. data/lib/bundler/constants.rb +3 -1
  45. data/lib/bundler/current_ruby.rb +47 -137
  46. data/lib/bundler/definition.rb +599 -230
  47. data/lib/bundler/dep_proxy.rb +15 -10
  48. data/lib/bundler/dependency.rb +54 -25
  49. data/lib/bundler/deployment.rb +12 -2
  50. data/lib/bundler/deprecate.rb +33 -4
  51. data/lib/bundler/dsl.rb +383 -99
  52. data/lib/bundler/endpoint_specification.rb +72 -7
  53. data/lib/bundler/env.rb +121 -41
  54. data/lib/bundler/environment_preserver.rb +59 -0
  55. data/lib/bundler/errors.rb +158 -0
  56. data/lib/bundler/feature_flag.rb +74 -0
  57. data/lib/bundler/fetcher.rb +171 -280
  58. data/lib/bundler/fetcher/base.rb +52 -0
  59. data/lib/bundler/fetcher/compact_index.rb +126 -0
  60. data/lib/bundler/fetcher/dependency.rb +82 -0
  61. data/lib/bundler/fetcher/downloader.rb +84 -0
  62. data/lib/bundler/fetcher/index.rb +52 -0
  63. data/lib/bundler/friendly_errors.rb +113 -58
  64. data/lib/bundler/gem_helper.rb +73 -46
  65. data/lib/bundler/gem_helpers.rb +85 -9
  66. data/lib/bundler/gem_remote_fetcher.rb +43 -0
  67. data/lib/bundler/gem_tasks.rb +6 -1
  68. data/lib/bundler/gem_version_promoter.rb +190 -0
  69. data/lib/bundler/gemdeps.rb +29 -0
  70. data/lib/bundler/graph.rb +32 -49
  71. data/lib/bundler/index.rb +79 -67
  72. data/lib/bundler/injector.rb +219 -30
  73. data/lib/bundler/inline.rb +74 -0
  74. data/lib/bundler/installer.rb +191 -206
  75. data/lib/bundler/installer/gem_installer.rb +85 -0
  76. data/lib/bundler/installer/parallel_installer.rb +233 -0
  77. data/lib/bundler/installer/standalone.rb +53 -0
  78. data/lib/bundler/lazy_specification.rb +53 -13
  79. data/lib/bundler/lockfile_generator.rb +95 -0
  80. data/lib/bundler/lockfile_parser.rb +157 -62
  81. data/lib/bundler/match_platform.rb +15 -4
  82. data/lib/bundler/mirror.rb +223 -0
  83. data/lib/bundler/plugin.rb +292 -0
  84. data/lib/bundler/plugin/api.rb +81 -0
  85. data/lib/bundler/plugin/api/source.rb +306 -0
  86. data/lib/bundler/plugin/dsl.rb +53 -0
  87. data/lib/bundler/plugin/events.rb +61 -0
  88. data/lib/bundler/plugin/index.rb +162 -0
  89. data/lib/bundler/plugin/installer.rb +96 -0
  90. data/lib/bundler/plugin/installer/git.rb +38 -0
  91. data/lib/bundler/plugin/installer/rubygems.rb +27 -0
  92. data/lib/bundler/plugin/source_list.rb +27 -0
  93. data/lib/bundler/process_lock.rb +24 -0
  94. data/lib/bundler/psyched_yaml.rb +17 -6
  95. data/lib/bundler/remote_specification.rb +68 -11
  96. data/lib/bundler/resolver.rb +263 -229
  97. data/lib/bundler/resolver/spec_group.rb +106 -0
  98. data/lib/bundler/retry.rb +25 -19
  99. data/lib/bundler/ruby_dsl.rb +9 -2
  100. data/lib/bundler/ruby_version.rb +101 -66
  101. data/lib/bundler/rubygems_ext.rb +77 -37
  102. data/lib/bundler/rubygems_gem_installer.rb +106 -0
  103. data/lib/bundler/rubygems_integration.rb +450 -163
  104. data/lib/bundler/runtime.rb +133 -103
  105. data/lib/bundler/settings.rb +344 -83
  106. data/lib/bundler/settings/validator.rb +102 -0
  107. data/lib/bundler/setup.rb +7 -3
  108. data/lib/bundler/shared_helpers.rb +284 -54
  109. data/lib/bundler/similarity_detector.rb +21 -21
  110. data/lib/bundler/source.rb +68 -15
  111. data/lib/bundler/source/gemspec.rb +18 -0
  112. data/lib/bundler/source/git.rb +90 -55
  113. data/lib/bundler/source/git/git_proxy.rb +135 -35
  114. data/lib/bundler/source/metadata.rb +62 -0
  115. data/lib/bundler/source/path.rb +84 -61
  116. data/lib/bundler/source/path/installer.rb +53 -17
  117. data/lib/bundler/source/rubygems.rb +282 -122
  118. data/lib/bundler/source/rubygems/remote.rb +69 -0
  119. data/lib/bundler/source_list.rb +107 -22
  120. data/lib/bundler/spec_set.rb +83 -45
  121. data/lib/bundler/ssl_certs/certificate_manager.rb +8 -7
  122. data/lib/bundler/ssl_certs/index.rubygems.org/GlobalSignRootCA.pem +21 -0
  123. data/lib/bundler/ssl_certs/{DigiCertHighAssuranceEVRootCA.pem → rubygems.global.ssl.fastly.net/DigiCertHighAssuranceEVRootCA.pem} +0 -0
  124. data/lib/bundler/ssl_certs/{AddTrustExternalCARoot-2048.pem → rubygems.org/AddTrustExternalCARoot.pem} +0 -0
  125. data/lib/bundler/stub_specification.rb +108 -0
  126. data/lib/bundler/templates/.document +1 -0
  127. data/lib/bundler/templates/Executable +19 -6
  128. data/lib/bundler/templates/Executable.bundler +105 -0
  129. data/lib/bundler/templates/Executable.standalone +6 -4
  130. data/lib/bundler/templates/Gemfile +4 -1
  131. data/lib/bundler/templates/gems.rb +8 -0
  132. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +68 -7
  133. data/lib/bundler/templates/newgem/Gemfile.tt +4 -2
  134. data/lib/bundler/templates/newgem/LICENSE.txt.tt +1 -1
  135. data/lib/bundler/templates/newgem/README.md.tt +19 -11
  136. data/lib/bundler/templates/newgem/Rakefile.tt +10 -6
  137. data/lib/bundler/templates/newgem/bin/console.tt +1 -1
  138. data/lib/bundler/templates/newgem/bin/setup.tt +2 -1
  139. data/lib/bundler/templates/newgem/ext/newgem/newgem.c.tt +4 -4
  140. data/lib/bundler/templates/newgem/ext/newgem/newgem.h.tt +3 -3
  141. data/lib/bundler/templates/newgem/gitignore.tt +5 -1
  142. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +7 -6
  143. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +4 -4
  144. data/lib/bundler/templates/newgem/newgem.gemspec.tt +31 -15
  145. data/lib/bundler/templates/newgem/rspec.tt +1 -0
  146. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +3 -5
  147. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +14 -2
  148. data/lib/bundler/templates/newgem/test/{test_newgem.rb.tt → newgem_test.rb.tt} +2 -2
  149. data/lib/bundler/templates/newgem/test/test_helper.rb.tt +4 -0
  150. data/lib/bundler/templates/newgem/travis.yml.tt +7 -0
  151. data/lib/bundler/ui.rb +5 -3
  152. data/lib/bundler/ui/rg_proxy.rb +5 -7
  153. data/lib/bundler/ui/shell.rb +69 -18
  154. data/lib/bundler/ui/silent.rb +26 -1
  155. data/lib/bundler/uri_credentials_filter.rb +37 -0
  156. data/lib/bundler/vendor/fileutils/lib/fileutils.rb +1638 -0
  157. data/lib/bundler/vendor/molinillo/lib/molinillo.rb +12 -0
  158. data/lib/bundler/vendor/molinillo/lib/molinillo/compatibility.rb +26 -0
  159. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/resolution_state.rb +57 -0
  160. data/lib/bundler/vendor/molinillo/lib/molinillo/delegates/specification_provider.rb +81 -0
  161. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph.rb +223 -0
  162. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/action.rb +36 -0
  163. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_edge_no_circular.rb +66 -0
  164. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/add_vertex.rb +62 -0
  165. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/delete_edge.rb +63 -0
  166. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/detach_vertex_named.rb +61 -0
  167. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/log.rb +126 -0
  168. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/set_payload.rb +46 -0
  169. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/tag.rb +36 -0
  170. data/lib/bundler/vendor/molinillo/lib/molinillo/dependency_graph/vertex.rb +136 -0
  171. data/lib/bundler/vendor/molinillo/lib/molinillo/errors.rb +143 -0
  172. data/lib/bundler/vendor/molinillo/lib/molinillo/gem_metadata.rb +6 -0
  173. data/lib/bundler/vendor/{Molinillo-0.2.1 → molinillo}/lib/molinillo/modules/specification_provider.rb +11 -0
  174. data/lib/bundler/vendor/{Molinillo-0.2.1 → molinillo}/lib/molinillo/modules/ui.rb +6 -2
  175. data/lib/bundler/vendor/molinillo/lib/molinillo/resolution.rb +837 -0
  176. data/lib/bundler/vendor/{Molinillo-0.2.1 → molinillo}/lib/molinillo/resolver.rb +6 -3
  177. data/lib/bundler/vendor/molinillo/lib/molinillo/state.rb +58 -0
  178. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/faster.rb +1 -0
  179. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/persistent.rb +27 -24
  180. data/lib/bundler/vendor/{net → net-http-persistent/lib/net}/http/persistent/ssl_reuse.rb +2 -1
  181. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor.rb +47 -22
  182. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions.rb +31 -29
  183. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/create_file.rb +3 -2
  184. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/create_link.rb +3 -2
  185. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/directory.rb +3 -3
  186. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/empty_directory.rb +16 -8
  187. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/file_manipulation.rb +66 -18
  188. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/actions/inject_into_file.rb +18 -16
  189. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/base.rb +67 -44
  190. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/command.rb +13 -11
  191. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/core_ext/hash_with_indifferent_access.rb +21 -1
  192. data/lib/bundler/vendor/thor/lib/thor/core_ext/io_binary_read.rb +12 -0
  193. data/lib/bundler/vendor/thor/lib/thor/core_ext/ordered_hash.rb +129 -0
  194. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/error.rb +3 -3
  195. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/group.rb +14 -14
  196. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/invocation.rb +4 -5
  197. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/line_editor.rb +2 -2
  198. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/line_editor/basic.rb +2 -0
  199. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/line_editor/readline.rb +0 -0
  200. data/lib/bundler/vendor/thor/lib/thor/parser.rb +4 -0
  201. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/parser/argument.rb +4 -7
  202. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/parser/arguments.rb +16 -16
  203. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/parser/option.rb +42 -21
  204. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/parser/options.rb +13 -10
  205. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/rake_compat.rb +1 -1
  206. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/runner.rb +35 -33
  207. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/shell.rb +4 -4
  208. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/shell/basic.rb +49 -33
  209. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/shell/color.rb +2 -2
  210. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/shell/html.rb +5 -5
  211. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/util.rb +8 -7
  212. data/lib/bundler/vendor/{thor-0.19.1 → thor}/lib/thor/version.rb +1 -1
  213. data/lib/bundler/vendored_fileutils.rb +9 -0
  214. data/lib/bundler/vendored_molinillo.rb +4 -5
  215. data/lib/bundler/vendored_persistent.rb +45 -4
  216. data/lib/bundler/vendored_thor.rb +8 -5
  217. data/lib/bundler/version.rb +23 -1
  218. data/lib/bundler/version_ranges.rb +76 -0
  219. data/lib/bundler/vlad.rb +8 -2
  220. data/lib/bundler/worker.rb +39 -6
  221. data/lib/bundler/yaml_serializer.rb +90 -0
  222. data/man/bundle-add.1 +58 -0
  223. data/man/bundle-add.1.txt +52 -0
  224. data/man/bundle-add.ronn +40 -0
  225. data/man/bundle-binstubs.1 +40 -0
  226. data/man/bundle-binstubs.1.txt +48 -0
  227. data/man/bundle-binstubs.ronn +43 -0
  228. data/man/bundle-check.1 +31 -0
  229. data/man/bundle-check.1.txt +33 -0
  230. data/man/bundle-check.ronn +26 -0
  231. data/man/bundle-clean.1 +24 -0
  232. data/man/bundle-clean.1.txt +26 -0
  233. data/man/bundle-clean.ronn +18 -0
  234. data/man/bundle-config.1 +497 -0
  235. data/man/bundle-config.1.txt +529 -0
  236. data/man/bundle-config.ronn +256 -31
  237. data/man/bundle-doctor.1 +44 -0
  238. data/man/bundle-doctor.1.txt +44 -0
  239. data/man/bundle-doctor.ronn +33 -0
  240. data/man/bundle-exec.1 +165 -0
  241. data/man/bundle-exec.1.txt +178 -0
  242. data/man/bundle-exec.ronn +19 -3
  243. data/man/bundle-gem.1 +80 -0
  244. data/man/bundle-gem.1.txt +91 -0
  245. data/man/bundle-gem.ronn +78 -0
  246. data/man/bundle-info.1 +20 -0
  247. data/man/bundle-info.1.txt +21 -0
  248. data/man/bundle-info.ronn +17 -0
  249. data/man/bundle-init.1 +25 -0
  250. data/man/bundle-init.1.txt +34 -0
  251. data/man/bundle-init.ronn +29 -0
  252. data/man/bundle-inject.1 +33 -0
  253. data/man/bundle-inject.1.txt +32 -0
  254. data/man/bundle-inject.ronn +22 -0
  255. data/man/bundle-install.1 +308 -0
  256. data/man/bundle-install.1.txt +396 -0
  257. data/man/bundle-install.ronn +64 -67
  258. data/man/bundle-list.1 +50 -0
  259. data/man/bundle-list.1.txt +43 -0
  260. data/man/bundle-list.ronn +33 -0
  261. data/man/bundle-lock.1 +84 -0
  262. data/man/bundle-lock.1.txt +93 -0
  263. data/man/bundle-lock.ronn +94 -0
  264. data/man/bundle-open.1 +32 -0
  265. data/man/bundle-open.1.txt +29 -0
  266. data/man/bundle-open.ronn +19 -0
  267. data/man/bundle-outdated.1 +155 -0
  268. data/man/bundle-outdated.1.txt +131 -0
  269. data/man/bundle-outdated.ronn +111 -0
  270. data/man/bundle-package.1 +55 -0
  271. data/man/bundle-package.1.txt +79 -0
  272. data/man/bundle-package.ronn +14 -8
  273. data/man/bundle-platform.1 +61 -0
  274. data/man/bundle-platform.1.txt +57 -0
  275. data/man/bundle-platform.ronn +1 -1
  276. data/man/bundle-pristine.1 +34 -0
  277. data/man/bundle-pristine.1.txt +44 -0
  278. data/man/bundle-pristine.ronn +34 -0
  279. data/man/bundle-remove.1 +31 -0
  280. data/man/bundle-remove.1.txt +34 -0
  281. data/man/bundle-remove.ronn +23 -0
  282. data/man/bundle-show.1 +23 -0
  283. data/man/bundle-show.1.txt +27 -0
  284. data/man/bundle-show.ronn +21 -0
  285. data/man/bundle-update.1 +394 -0
  286. data/man/bundle-update.1.txt +391 -0
  287. data/man/bundle-update.ronn +180 -18
  288. data/man/bundle-viz.1 +39 -0
  289. data/man/bundle-viz.1.txt +39 -0
  290. data/man/bundle-viz.ronn +30 -0
  291. data/man/bundle.1 +136 -0
  292. data/man/bundle.1.txt +116 -0
  293. data/man/bundle.ronn +46 -33
  294. data/man/gemfile.5 +689 -0
  295. data/man/gemfile.5.ronn +127 -79
  296. data/man/gemfile.5.txt +653 -0
  297. data/man/index.txt +25 -7
  298. metadata +242 -95
  299. data/.gitignore +0 -16
  300. data/.rspec +0 -3
  301. data/.travis.yml +0 -110
  302. data/CODE_OF_CONDUCT.md +0 -40
  303. data/CONTRIBUTING.md +0 -32
  304. data/DEVELOPMENT.md +0 -119
  305. data/ISSUES.md +0 -96
  306. data/Rakefile +0 -302
  307. data/UPGRADING.md +0 -103
  308. data/bin/bundle +0 -21
  309. data/bin/bundler +0 -21
  310. data/lib/bundler/anonymizable_uri.rb +0 -32
  311. data/lib/bundler/environment.rb +0 -42
  312. data/lib/bundler/gem_installer.rb +0 -9
  313. data/lib/bundler/gem_path_manipulation.rb +0 -8
  314. data/lib/bundler/ssl_certs/AddTrustExternalCARoot.pem +0 -32
  315. data/lib/bundler/ssl_certs/Class3PublicPrimaryCertificationAuthority.pem +0 -14
  316. data/lib/bundler/ssl_certs/EntrustnetSecureServerCertificationAuthority.pem +0 -28
  317. data/lib/bundler/ssl_certs/GeoTrustGlobalCA.pem +0 -20
  318. data/lib/bundler/templates/newgem/.travis.yml.tt +0 -3
  319. data/lib/bundler/templates/newgem/test/minitest_helper.rb.tt +0 -4
  320. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo.rb +0 -5
  321. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo/dependency_graph.rb +0 -266
  322. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo/errors.rb +0 -69
  323. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo/gem_metadata.rb +0 -3
  324. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo/resolution.rb +0 -412
  325. data/lib/bundler/vendor/Molinillo-0.2.1/lib/molinillo/state.rb +0 -43
  326. data/lib/bundler/vendor/thor-0.19.1/lib/thor/core_ext/io_binary_read.rb +0 -10
  327. data/lib/bundler/vendor/thor-0.19.1/lib/thor/core_ext/ordered_hash.rb +0 -98
  328. data/lib/bundler/vendor/thor-0.19.1/lib/thor/parser.rb +0 -4
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
- SHA1:
3
- metadata.gz: 8fb84cf9bb021582ed99f745047f672b3cdbc665
4
- data.tar.gz: 22604b1633c62d5aa0167dfba12b585490c54c76
2
+ SHA256:
3
+ metadata.gz: 57be2a031c802a256fffbddca6f7cac7814f550ba22a5228ca4d69ffc6219ca0
4
+ data.tar.gz: f1928fbdadc8b1e2dbbedfb9361a7afed83b8d51b5fea407c5bef0857f93fd03
5
5
  SHA512:
6
- metadata.gz: aa68a32dabf6211b673273b54c02c16f46da81df452aab7c1443b8f0012c9add0a54308bca5ae50bb62fee28a4eadf97a0a0ea72a1a2d1c8c1bead09aa1a60c0
7
- data.tar.gz: fbec4407a62c7e418362731ff5cb4479afceb56afed0a16891cb870a219bf342ab4fb3a2b9da280210833393a62d70e19529f61544853c033ecbff83bec08cfa
6
+ metadata.gz: '08986fab1b004158cb55a6f0ef41e4a17e4b85561a97b24e85a731056af327f801e1d105915e6760e99b4b006da7f9a3c79b388d3ca998d2d12492e9accf7ad6'
7
+ data.tar.gz: fb07fcd0f42267952e5ce1a929825b7c1d7e42cd489f025a03a3a8846616bcd60bb477d12e437206dbb188f4e7c575fc6d0e6f89ab8adaf1bb6b01e91739fe21
@@ -1,3 +1,1115 @@
1
+ ## 1.17.3 (2018-12-27)
2
+
3
+ Bugfixes:
4
+
5
+ - Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/bundler/bundler/issues/6839), @colby-swandale)
6
+ - Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/bundler/bundler/issues/6829), @colby-swandale)
7
+
8
+ Documentation:
9
+
10
+ - Add entry for the `bundle remove` command to the main Bundler manual page
11
+
12
+ ## 1.17.2 (2018-12-11)
13
+
14
+ - Add compatibility for bundler merge with Ruby 2.6
15
+
16
+ ## 1.17.1 (2018-10-25)
17
+
18
+ - Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/bundler/bundler/pull/6761), @alexggordon)
19
+
20
+ ## 1.17.0 (2018-10-25)
21
+
22
+ No new changes.
23
+
24
+ ## 1.17.0.pre.2 (2018-10-13)
25
+
26
+ Features:
27
+
28
+ - Configure Bundler home, cache, config and plugin directories with `BUNDLE_USER_HOME`, `BUNDLE_USER_CACHE`, `BUNDLE_USER_CONFIG` and `BUNDLE_USER_PLUGIN` env vars ([#4333](https://github.com/bundler/bundler/issues/4333), @gwerbin)
29
+ - Add `--all` option to `bundle binstubs` that will generate an executable file for all gems with commands in the bundle
30
+ - Add `bundle remove` command to remove gems from the Gemfile via the CLI
31
+ - Improve checking file permissions and asking for `sudo` in Bundler when it doesn't need to
32
+ - Add error message to `bundle add` to check adding duplicate gems to the Gemfile
33
+ - When asking for `sudo`, Bundler will show a list of folders/files that require elevated permissions to write to.
34
+
35
+ The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
36
+
37
+ - Improve deprecation warning message for `bundle show` command
38
+ - Improve deprecation warning message for the `--force` option in `bundle install`
39
+
40
+ ## 1.17.0.pre.1 (2018-09-24)
41
+
42
+ Features:
43
+
44
+ - Check folder/file permissions of the Bundle home directory in the `bundle doctor` command ([#5786](https://github.com/bundler/bundler/issues/5786), @ajwann)
45
+ - Remove compiled gem extensions when running `bundle clean` ([#5596](https://github.com/bundler/bundler/issues/5596), @akhramov)
46
+ - Add `--paths` option to `bundle list` command ([#6172](https://github.com/bundler/bundler/issues/6172), @colby-swandale)
47
+ - Add base error class to gems generated from `bundle gem` ([#6260](https://github.com/bundler/bundler/issues/6260), @christhekeele)
48
+ - Correctly re-install gem extensions with a git source when running `bundle pristine` ([#6294](https://github.com/bundler/bundler/issues/6294), @wagenet)
49
+ - Add config option to disable platform warnings ([#6124](https://github.com/bundler/bundler/issues/6124), @agrim123)
50
+ - Add `--skip-install` option to `bundle add` command to add gems to the Gemfile without installation ([#6511](https://github.com/bundler/bundler/issues/6511), @agrim123)
51
+ - Add `--only-explicit` option to `bundle outdated` to list only outdated gems in the Gemfile ([#5366](https://github.com/bundler/bundler/issues/5366), @peret)
52
+ - Support adding multiple gems to the Gemfile with `bundle add` ([#6543](https://github.com/bundler/bundler/issues/6543), @agrim123)
53
+ - Make registered plugin events easier to manage in the Plugin API (@jules2689)
54
+ - Add new gem install hooks to the Plugin API (@jules2689)
55
+ - Add `--optimistic` and `--strict` options to `bundle add` ([#6553](https://github.com/bundler/bundler/issues/6553), @agrim123)
56
+ - Add `--without-group` and `--only-group` options to `bundle list` ([#6564](https://github.com/bundler/bundler/issues/6564), @agrim123)
57
+ - Add `--gemfile` option to the `bundle exec` command ([#5924](https://github.com/bundler/bundler/issues/5924), @ankitkataria)
58
+
59
+ The following new features are available but are not enabled by default. These are intended to be tested by users for the upcoming release of Bundler 2.
60
+
61
+ - Make `install --path` relative to the current working directory ([#2048](https://github.com/bundler/bundler/issues/2048), @igorbozato)
62
+ - Auto-configure job count ([#5808](https://github.com/bundler/bundler/issues/5808), @segiddins)
63
+ - Use the Gem Version Promoter for major gem updates ([#5993](https://github.com/bundler/bundler/issues/5993), @segiddins)
64
+ - Add config option to add the Ruby scope to `bundle config path` when configured globally (@segiddins)
65
+
66
+ ## 1.16.6 (2018-10-05)
67
+
68
+ Changes:
69
+
70
+ - Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/bundler/bundler/issues/6341), @agrim123)
71
+ - Add Homepage, Source Code and Chanagelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
72
+
73
+ Bugfixes:
74
+
75
+ - Fix issue where updating a gem resulted in the gem's version being downgraded when `BUNDLE_ONLY_UPDATE_TO_NEWER_VERSIONS` was set ([#6529](https://github.com/bundler/bundler/issues/6529), @theflow)
76
+ - Fix some rescue calls that don't specifiy error type (@utilum)
77
+ - Fix an issue when the Lockfile would contain platform-specific gems that it didn't need ([#6491](https://github.com/bundler/bundler/issues/6491), @segiddins)
78
+ - Improve handlding of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123)
79
+ - Refactor check for OpenSSL in `bundle env` (@voxik)
80
+ - Remove an unnecessary assignment in Metadata (@voxik)
81
+
82
+ Documentation:
83
+
84
+ - Update docs to reflect revised guidance to check in Gemfile.lock into version control for gems ([#5879](https://github.com/bundler/bundler/issues/5879), @arbonap)
85
+ - Add documentation for the `--all` flag in `bundle update` (@agrim123)
86
+ - Update README to use `bundle add` in usage examples (@hdf1986)
87
+
88
+ ## 1.16.5 (2018-09-18)
89
+
90
+ Changes:
91
+
92
+ - Add support for TruffleRuby (@eregon)
93
+
94
+ Bugfixes:
95
+
96
+ - Avoid printing git errors when checking the version on incorrectly packaged versions of Bundler ([#6453](https://github.com/bundler/bundler/issues/6453), @greysteil)
97
+ - Fix issue where Bundler does not check the given class when comparing equality in DepProxy (@ChrisBr)
98
+ - Handle `RangeNotSatisfiable` error in Compact Index (@MaxLap)
99
+ - Check for initialized `search` variable in `LazySpecification` (@voxik)
100
+ - Fix LoadError occurring in nested bundle exec calls ([#6537](https://github.com/bundler/bundler/issues/6537), @colby-swandale)
101
+ - Check that Bundler::Deprecate is not an autoload constant ([#6163](https://github.com/bundler/bundler/issues/6163), @eregon)
102
+ - Prefer non-pre-release versions when performing a `bundle update --patch` ([#6684](https://github.com/bundler/bundler/issues/6684), @segiddins)
103
+
104
+ ## 1.16.4 (2018-08-17)
105
+
106
+ Changes:
107
+
108
+ - Welcome new members to the Bundler core team (@indirect)
109
+ - Don't mutate original error trees when determining version_conflict_message (@greysteil)
110
+ - Update vendored Molinillo to 0.6.6 (@segiddins)
111
+
112
+ Bugfixes:
113
+
114
+ - Reword bundle update regression message to be more clear to the user when a gem's version is downgraded ([#6584](https://github.com/bundler/bundler/issues/6584), @ralphbolo)
115
+ - Respect --conservative flag when updating a dependency group ([#6560](https://github.com/bundler/bundler/issues/6560), @greysteil)
116
+ - Fix issue where a pre-release version was not being selected when it's specified in the Gemfile ([#6449](https://github.com/bundler/bundler/issues/6449), @akihiro17)
117
+ - Fix issue where `Etc` was not loaded when getting the user's home dir ([#6640](https://github.com/bundler/bundler/issues/6640), @colby-swandale)
118
+ - Use UTF-8 for reading files including Gemfile ([#6660](https://github.com/bundler/bundler/issues/6660), @eregon)
119
+ - Remove unnecessary `while` loop in path resolver helper (@ojab)
120
+
121
+ Documentation:
122
+
123
+ - Document that `bundle show [--paths]` sorts results by name (@kemitchell)
124
+
125
+ ## 1.16.3 (2018-07-17)
126
+
127
+ Features:
128
+
129
+ - Support URI::File of Ruby 2.6 (@hsbt)
130
+
131
+ Bugfixes:
132
+
133
+ - Expand symlinks during setup to allow Bundler to load correctly when using symlinks in $GEM_HOME ([#6465](https://github.com/bundler/bundler/issues/6465), @ojab, @indirect)
134
+ - Dont let Bundler create temporary folders for gem installs which are owned by root ([#6258](https://github.com/bundler/bundler/issues/6258), @colby-swandale)
135
+ - Don't fallback to using temporary directories when needed directories already exist ([#6546](https://github.com/bundler/bundler/issues/6546), @brodock)
136
+ - Use SharedHelpers.filesystem_access when reading a Gemfile so friendly error messages can be given to the user ([#6541](https://github.com/bundler/bundler/issues/6541), @segiddins)
137
+ - Check if source responds to `#remotes` before printing gem install error message ([#6211](https://github.com/bundler/bundler/issues/6211), @colby-swandale)
138
+ - Handle Errno::ENOTSUP in the Bundler Process Lock to prevent exceptions when using NFS mounts ([#6566](https://github.com/bundler/bundler/issues/6566), @colby-swandale)
139
+ - Respect encodings when reading gemspecs ([#6598](https://github.com/bundler/bundler/issues/6598), @deivid-rodriguez)
140
+
141
+ Documentation:
142
+
143
+ - Fix links between manual pages (@BanzaiMan)
144
+ - Add warning to Gemfile documentation for the use of the `source` option when declaring gems ([#6280](https://github.com/bundler/bundler/issues/6280), @forestgagnon)
145
+
146
+ ## 1.16.2 (2018-04-20)
147
+
148
+ Changes:
149
+
150
+ - Include the gem's source in the gem install error message when available (@papanikge)
151
+ - Remove unnecessary executable bit from gem template (@voxik)
152
+ - Dont add the timestamp comment with gems added to the Gemfile via `bundle add` ([#6193](https://github.com/bundler/bundler/issues/6193), @cpgo)
153
+ - Improve yanked gem error message (@alyssais)
154
+ - Use `Bundler.rubygems.inflate` instead of the Gem::Util method directly (@segiddins)
155
+ - Remove unused instance variable (@segiddins)
156
+
157
+ Bugfixes:
158
+
159
+ - Only trap INT signal and have Ruby's signal default handler be invoked (@shayonj)
160
+ - Fix warning about the use of `__FILE__` in RubyGems integration testing (@MSP-Greg)
161
+ - Skip the outdated bundler check when MD5 is not available ([#6032](https://github.com/bundler/bundler/issues/6032), @segiddins)
162
+ - Fallback to the original error if the friendly message raises (@segiddins)
163
+ - Rename Bundler.frozen? to avoid Object method conflict ([#6252](https://github.com/bundler/bundler/issues/6252), @segiddins)
164
+ - Ensure the bindir exists before installing gems (@segiddins)
165
+ - Handle gzip corruption errors in the compact index client ([#6261](https://github.com/bundler/bundler/issues/6261), @colby-swandale)
166
+ - Check if the current directory is writeable when writing files in `bundle gem` ([#6219](https://github.com/bundler/bundler/issues/6219), @nilsding)
167
+ - Fix hang when gemspec has incompatible encoding (@deivid-rodriguez)
168
+ - Gracefully handle when the lockfile is missing spec entries for the current platform ([#6079](https://github.com/bundler/bundler/issues/6079), @segiddins)
169
+ - Use Gem::Util.inflate instead of Gem.inflate (@hsbt)
170
+ - Update binstub generator to use new ERB.new arity in Ruby 2.6 (@koic)
171
+ - Fix `source_location` call in rubygems integration (@MSP-Greg)
172
+ - Use `filesystem_access` when copying files in Compact Index Updater ([#6289](https://github.com/bundler/bundler/issues/6289), @segiddins)
173
+ - Fail gracefully when resetting git gems to the given revision fails ([#6324](https://github.com/bundler/bundler/issues/6324), @segiddins)
174
+ - Handle exceptions that do not have a backtrace ([#6342](https://github.com/bundler/bundler/issues/6342), @nesaulov)
175
+ - Check if stderr was closed before writing to it (@shime)
176
+ - Handle updating a specific gem for a non-local platform ([#6350](https://github.com/bundler/bundler/issues/6350), @greysteil)
177
+ - Bump the `bundle_binstub` check-length to 300 characters (@tduffield)
178
+ - Fix specifying alterntive Lockfile with `bundle lock` when default gemfile is present ([#6460](https://github.com/bundler/bundler/issues/6460), @agrim123)
179
+ - Allow installing dependencies when the path is set to `.` ([#6475](https://github.com/bundler/bundler/issues/6475), @segiddins)
180
+ - Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/bundler/bundler/issues/6461), @grosser)
181
+ - Filter git uri credentials in source description (@segiddins)
182
+
183
+ Documentation:
184
+
185
+ - Correct typos in `bundle binstubs` man page (@erikj, @samueloph)
186
+ - Update links in `bundle gem` command documentation to use https (@KrauseFx)
187
+ - Fix broken links between bundler man pages (@segiddins)
188
+ - Add man page for the `bundle doctor` command ([#6243](https://github.com/bundler/bundler/issues/6243), @nholden)
189
+ - Document `# frozen_string_literal` in `bundle init` Gemfile (@315tky)
190
+ - Explain the gemspec files attribute in `bundle gem` template and print a link to bundler.io guides when running `bundle gem` ([#6246](https://github.com/bundler/bundler/issues/6246), @nesaulov)
191
+ - Small copy tweaks & removed redundant phrasing in the bundler man page (@rubymorillo)
192
+ - Improve the documentation of the settings load order in Bundler (@rubymorillo)
193
+ - Added license info to main README (@rubymorillo)
194
+ - Document parameters and return value of Injector#inject (@tobias-grasse)
195
+
196
+ ## 1.16.1 (2017-12-12)
197
+
198
+ Bugfixes:
199
+
200
+ - avoid hanging on complex resolver errors ([#6114](https://github.com/bundler/bundler/issues/6114), @halfbyte)
201
+ - avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
202
+ - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
203
+ - include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
204
+ - ensure locally installed specs are not overriden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
205
+ - ensure custom gemfiles are respected in generated binstubs (@pftg)
206
+ - fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/bundler/bundler/issues/6149), @hsbt)
207
+ - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)
208
+
209
+ ## 1.16.0 (2017-10-31)
210
+
211
+ Bugfixes:
212
+
213
+ - avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
214
+ - load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
215
+ - avoid unusued variable warnings under ruby 2.5 (@amatsuda)
216
+ - fix printing the same message twice in verbose mode ([#6028](https://github.com/bundler/bundler/issues/6028), @akhramov)
217
+ - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/bundler/bundler/issues/6090), @dekellum)
218
+ - avoid activating stdlib digest under Ruby 2.5 (@segiddins)
219
+ - prioritise explicitly requested gems in dependency resolution sort order (@segiddins)
220
+ - reduce memory usage during dependency resolution ([#6114](https://github.com/bundler/bundler/issues/6114), @greysteil)
221
+ - ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)
222
+
223
+ ## 1.16.0.pre.3 (2017-10-04)
224
+
225
+ Features:
226
+
227
+ - the output from `bundle env` includes more information, particularly both the compiled & loaded versions of OpenSSL (@indirect)
228
+
229
+ Bugfixes:
230
+
231
+ - fix a bug where installing on FreeBSD would accidentally raise an error (#6013, @olleolleolle)
232
+ - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
233
+ - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
234
+ - the outdated bundler version message is disabled by default until the message has been fine-tuned (#6004, @segiddins)
235
+
236
+ ## 1.16.0.pre.2 (2017-09-06)
237
+
238
+ Bugfixes:
239
+
240
+ - handle when a connection is missing a socket when warning about OpenSSL version (@greysteil)
241
+ - the description for the `rake release` task now reflects `$RUBYGEMS_HOST` (@wadetandy)
242
+ - fix a bug where `bundle update` would regress transitive dependencies (@greysteil)
243
+
244
+ ## 1.16.0.pre.1 (2017-09-04)
245
+
246
+ Features:
247
+
248
+ - allow using non-branch symbolic refs in a git source (#4845, @segiddins)
249
+ - allow absolute paths in the `cache path` setting (#5627, @mal)
250
+ - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
251
+ - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match (#5616, @segiddins)
252
+ - allow passing gem names to `bundle pristine` (@segiddins)
253
+ - `bundle version` and `bundle env` include the commit and build date for the bundler gem (#5049, @segiddins)
254
+ - add the `--shebang` option to `bundle binstubs` (#4070, @segiddins, @Zorbash)
255
+ - gemfiles are `eval`ed one fewer time when running `bundle install` (#4952, #3096, #4417, @segiddins)
256
+ - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
257
+ - speed up no-op installations (#5842, @segiddins)
258
+ - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
259
+ - add a special bundler binstub that ensures the correct version of bundler is activated (#5876, @segiddins)
260
+ - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
261
+ - add a `bundle list` command that prints the gems in use (#4754, @colby-swandale)
262
+ - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
263
+ - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
264
+
265
+ Bugfixes:
266
+
267
+ - allow configuring a mirror fallback timeout without a trailing slash (#4830, @segiddins)
268
+ - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
269
+ - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
270
+ - ensure `Bundler.original_env` preserves all env keys that bundler sets (#5700, @segiddins)
271
+ - ensure `bundle pristine` removes files added to a git gem (@segiddins)
272
+ - load plugin files from path gems before gem installation (#5429, @segiddins)
273
+ - ensure gems containing manpages are properly set up (#5730, @segiddins)
274
+ - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
275
+ - allow `BUNDLE_GEMFILE` to be a relative path (#5712, @gxespino)
276
+ - show a more helpful error message when a gem fails to install due to a corrupted lockfile (#5846, @segiddins)
277
+ - add a process lock to allow multiple concurrent `bundle install`s (#5851, @stefansedich)
278
+ - ensure that specifications always return an array for `#extensions` (@greysteil)
279
+ - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
280
+ - ensure that all gemfiles are included in `bundle env` (@segiddins)
281
+ - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
282
+ - avoid global namespace pollution when loading gems (#5958, @shyouhei)
283
+ - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
284
+ - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
285
+ - fix support for bundle paths that include jars or wars on jruby (#5975, @torcido)
286
+
287
+ ## 1.15.4 (2017-08-19)
288
+
289
+ Bugfixes:
290
+
291
+ - handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
292
+ - bundler will fail gracefully when the bundle path contains the system path separator (#5485, ajwann)
293
+ - failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
294
+ - `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
295
+
296
+ ## 1.15.3 (2017-07-21)
297
+
298
+ Bugfixes:
299
+
300
+ - ensure that empty strings passed to `bundle config` are serialized & parsed properly (#5881, @segiddins)
301
+ - avoid printing an outdated version warning when running a parseable command (@segiddins)
302
+
303
+ ## 1.15.2 (2017-07-17)
304
+
305
+ Features:
306
+
307
+ - new gemfiles created by bundler will include an explicit `github` git source that uses `https` (@segiddins)
308
+
309
+ Bugfixes:
310
+
311
+ - inline gemfiles work when `BUNDLE_BIN` is set (#5847, @segiddins)
312
+ - avoid using the old dependency API when there are no changes to the compact index files (#5373, @greysteil)
313
+ - fail gracefully when the full index serves gemspecs with invalid dependencies (#5797, @segiddins)
314
+ - support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
315
+ - `bundle config` will print settings as the type they are interpreted as (@segiddins)
316
+ - respect the `no_proxy` environment variable when making network requests (#5781, @jakauppila)
317
+ - commands invoked with `--verbose` will not have default flags printed (@segiddins)
318
+ - allow `bundle viz` to work when another gem has a requirable `grapviz` file (#5707, @segiddins)
319
+ - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order (#5696, @segiddins)
320
+
321
+ ## 1.15.1 (2017-06-02)
322
+
323
+ Bugfixes:
324
+
325
+ - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile (#5693, @segiddins)
326
+ - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
327
+ - `bundle install --force` works when the gemfile contains git gems (#5678, @segiddins)
328
+ - `bundle env` will print well-formed markdown when there are no settings (#5677, @segiddins)
329
+
330
+ ## 1.15.0 (2017-05-19)
331
+
332
+ This space intentionally left blank.
333
+
334
+ ## 1.15.0.pre.4 (2017-05-10)
335
+
336
+ Bugfixes:
337
+
338
+ - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
339
+ - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it (#5592, @jules2689)
340
+
341
+ ## 1.15.0.pre.3 (2017-04-30)
342
+
343
+ Bugfixes:
344
+
345
+ - avoid redundant blank lines in the readme generated by `bundle gem` (@koic)
346
+ - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
347
+ - print a helpful error message when an activated default gem conflicts with
348
+ a gem in the gemfile (@segiddins)
349
+ - only shorten `ref` option for git gems when it is a SHA (#5620, @segiddins)
350
+
351
+ ## 1.15.0.pre.2 (2017-04-23)
352
+
353
+ Bugfixes:
354
+
355
+ - ensure pre-existing fit caches are updated from remote sources (#5423, @alextaylor000)
356
+ - avoid duplicating specs in the lockfile after updating with the gem uninstalled (#5599, @segiddins)
357
+ - ensure git gems have their extensions available at runtime (#5594, @jules2689, @segiddins)
358
+
359
+ ## 1.15.0.pre.1 (2017-04-16)
360
+
361
+ Features:
362
+
363
+ - print a notification when a newer version of bundler is available (#4683, @segiddins)
364
+ - add man pages for all bundler commands (#4988, @feministy)
365
+ - add the `bundle info` command (@fredrb, @colby-swandale)
366
+ - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
367
+ - if installing a gem fails, print out the reason the gem needed to be installed (#5078, @segiddins)
368
+ - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
369
+ - print gem versions that are regressing during `bundle update` in yellow (#5506, @brchristian)
370
+ - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
371
+ - add the `bundle issue` command that prints instructions for reporting issues (#4871, @jonathanpike)
372
+ - add `--source` and `--group` options to the `bundle inject` command (#5452, @Shekharrajak)
373
+ - add the `bundle add` command to add a gem to the gemfile (@denniss)
374
+ - add the `bundle pristine` command to re-install gems from cached `.gem` files (#4509, @denniss)
375
+ - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
376
+
377
+ Performance:
378
+
379
+ - speed up gemfile initialization by storing locked dependencies as a hash (@jules2689)
380
+ - speed up gemfile initialization by making locked dependency comparison lazy, avoiding object allocation (@jules2689)
381
+ - only validate git gems when they are downloaded, instead of every time `Bundler.setup` is run (@segiddins)
382
+ - avoid regenerating the lockfile when nothing has changed (@segiddins)
383
+ - avoid diffing large arrays when no sources in the gemfile have changed (@segiddins)
384
+ - avoid evaluating full gemspecs when running with RubyGems 2.5+ (@segiddins)
385
+
386
+ Bugfixes:
387
+
388
+ - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems (#5031, #5095, @segiddins)
389
+ - print out a stack trace after an interrupt when running in debug mode (@segiddins)
390
+ - print out when bundler starts fetching a gem from a remote server (@segiddins)
391
+ - fix `bundle gem` failing when `git` is unavailable (#5458, @Shekharrajak, @colby-swandale)
392
+ - suggest the appropriate command to unfreeze a bundle (#5009, @denniss)
393
+ - ensure nested calls to `bundle exec` resolve default gems correctly (#5500, @segiddins)
394
+ - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
395
+ - ensure `socket` is required before being referenced (#5533, @rafaelfranca)
396
+ - allow running `bundle outdated` when gems aren't installed locally (#5553, @segiddins)
397
+ - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle (#5487, @segiddins)
398
+ - print an error message when a non-git gem is given a `branch` option (#5530, @colby-swandale)
399
+ - allow interrupts to exit the process after gems have been installed (@segiddins)
400
+ - print the underlying error when downloading gem metadata fails (#5579, @segiddins)
401
+ - avoid deadlocking when installing with a lockfile that is missing dependencies (#5378, #5480, #5519, #5526, #5529, #5549, #5572, @segiddins)
402
+
403
+ ## 1.14.6 (2017-03-03)
404
+
405
+ Bugfixes:
406
+
407
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception (#5409, @segiddins)
408
+ - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
409
+ - fail gracefully when the compact index does not send an ETag (#5463, @olleolleolle)
410
+ - ensure `bundle outdated --local` shows all outdated gems (#5430, @denniss)
411
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts (#5425, @segiddins)
412
+
413
+ ## 1.14.5 (2017-02-22)
414
+
415
+ Bugfixes:
416
+
417
+ - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
418
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements (#5444, #5457, @segiddins)
419
+ - enable compact index when OpenSSL FIPS mode is enabled but not active (#5433, @wjordan)
420
+ - use github username instead of git name for the github url in `bundle gem` (#5438, @danielpclark)
421
+ - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
422
+ - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
423
+ - handle when a platform-specific gem has more dependencies than the ruby platform version (#5339, #5426, @segiddins)
424
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable (#5371, @segiddins)
425
+ - avoid gem version conflicts on openssl using Ruby 2.5 (#5235, @rhenium)
426
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated (#5264, @segiddins)
427
+
428
+ ## 1.14.4 (2017-02-12)
429
+
430
+ Bugfixes:
431
+
432
+ - fail gracefully when attempting to overwrite an existing directory with `bundle gem` (#5358, @nodo)
433
+ - fix a resolver bug that would cause bundler to report conflicts that it could resolve (#5359, #5362, @segiddins)
434
+ - set native extension build arguments for git gems (#5401, @segiddins)
435
+ - fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
436
+ - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing (#5380, @segiddins)
437
+ - show `bundle inject` usage when too many arguments are passed (#5384, @Shekharrajak)
438
+ - stop `bundle show --outdated` from implicitly running `bundle update` (#5375, @colby-swandale)
439
+ - allow the temporary home directory fallback to work for multiple users (@svoop)
440
+
441
+ ## 1.14.3 (2017-01-24)
442
+
443
+ Bugfixes:
444
+
445
+ - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms (#5349, #5356, @segiddins)
446
+ - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies (#5349, @segiddins)
447
+
448
+ ## 1.14.2 (2017-01-22)
449
+
450
+ Bugfixes:
451
+
452
+ - fix using `force_ruby_platform` on windows (#5344, @segiddins)
453
+ - fix an incorrect version conflict error when using `gemspec` on multiple platforms (#5340, @segiddins)
454
+
455
+ ## 1.14.1 (2017-01-21)
456
+
457
+ Bugfixes:
458
+
459
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation (#5342, @segiddins)
460
+
461
+ ## 1.14.0 (2017-01-20)
462
+
463
+ Bugfixes:
464
+
465
+ - ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
466
+ (#5238, @segiddins)
467
+ - fix `bundler/inline` when `BUNDLE_GEMFILE=""` (#5079, @segiddins)
468
+
469
+ ## 1.14.0.pre.2 (2017-01-11)
470
+
471
+ Bugfixes:
472
+
473
+ - allow not selecting a gem when running `bundle open` (#5301, @segiddins)
474
+ - support installing gems from git branches that contain shell metacharacters (#5295, @segiddins)
475
+ - fix a resolver error that could leave dependencies unresolved (#5294, @segiddins)
476
+ - fix a stack overflow error when invoking commands (#5296, @segiddins)
477
+
478
+ ## 1.14.0.pre.1 (2016-12-29)
479
+
480
+ Features:
481
+
482
+ - `bundle doctor` first runs `bundle check` (@segiddins)
483
+ - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
484
+ - gem checksums returned by rubygems.org are validated when installing gems (#4464, @segiddins)
485
+ - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
486
+ - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
487
+ - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting (#4295, #4896, @segiddins)
488
+ - always prompt the user for a password when using `sudo` (#3006, @segiddins)
489
+ - support running without a home directory (#4778, @segiddins)
490
+ - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
491
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms (#4813, @segiddins)
492
+ - add conservative update options to `bundle lock` (#4912, @chrismo)
493
+ - improve `bundle outdated` output to group gems by group (@ryanfox1985)
494
+ - add conservative update options to `bundle update` (#5065, #5076, @chrismo)
495
+ - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
496
+ - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
497
+ - add support for the `ruby_25` gemfile filter (@amatsuda)
498
+ - when installing with a lockfile that is missing dependencies, allow installation to proceed (but without parallelism) (@segiddins)
499
+
500
+ Performance:
501
+
502
+ - improve `require "bundler"` performance by ~5x (@segiddins)
503
+ - allow install gems in parallel when running on rubygems 2+
504
+
505
+ Bugfixes:
506
+
507
+ - config files with CRLF line endings can be read (#4435, @segiddins)
508
+ - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency (#4896, @segiddins)
509
+ - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
510
+ - fail gracefully when attempting to use a source with an unknown URI scheme (#4953, @segiddins)
511
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` (#4966, @segiddins)
512
+ - `bundle lock` will not update without the `--update` flag (#4957, @segiddins)
513
+ - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
514
+ - print friendly filesystem access errors in the new index (@segiddins)
515
+ - print a helpful error when running out of memory on jruby (#4673, @segiddins)
516
+ - load all rubygems plugins when installing gems (#2824, @segiddins)
517
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set (#5027, @hmistry)
518
+ - local installs no longer print "this gem may have been yanked" (#5022, @hmistry)
519
+ - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
520
+ - print a warning when attempting to `bundle exec` an empty program (#5084, @bronzdoc)
521
+ - ensure `bundle outdated` lists all outdated gems (#4979, @chrismo)
522
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name (#5185, @segiddins)
523
+ - allow `bundler/inline` to work in a directory that contains a gemfile (#5117, @colby-swandale)
524
+ - ensure that the new index is thread-safe, allowing installation on rbx (#5142, @segiddins)
525
+ - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
526
+ - fail gracefully when any system error is encountered when touching the filesystem (#5134, @segiddins)
527
+ - fix compatibility with a machine running with FIPS mode enabled (#4989, @segiddins)
528
+ - fix `bundle lock --add-platform ruby` (#5230, @segiddins)
529
+ - print gem post-install messages when running `bundle update` (@smathy)
530
+ - ensure errors due to a retries are all separated by a newline (@segiddins)
531
+ - print out the bundle path in gem not found errors (#4854, @diegosteiner)
532
+ - fail gracefully when creating threads fails (@segiddins)
533
+ - avoid downloading metadata for gems that are only development dependencies (@Paxa)
534
+
535
+ ## 1.13.7 (2016-12-25)
536
+
537
+ Features:
538
+
539
+ - add support for the `ruby_24` gemfile filter (#5281, @amatsuda)
540
+
541
+ ## 1.13.6 (2016-10-22)
542
+
543
+ Bugfixes:
544
+
545
+ - make the `gem` method public again, fixing a regression in 1.13.4 (#5102, @segiddins)
546
+
547
+ ## 1.13.5 (2016-10-15)
548
+
549
+ Bugfixes:
550
+
551
+ - Ensure a locked pre-release spec can always be re-resolved (#5089, @segiddins)
552
+
553
+ ## 1.13.4 (2016-10-11)
554
+
555
+ Bugfixes:
556
+
557
+ - stop printing warning when compact index versions file is rewritten (#5064, @indirect)
558
+ - fix `parent directory is world writable but not sticky` error on install (#5043, @indirect)
559
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error (#5010, @hsbt, @aycabta)
560
+ - make `update` options for major, minor, and patch updates consistent (#4934, @chrismo)
561
+
562
+ ## 1.13.3 (2016-10-10)
563
+
564
+ Bugfixes:
565
+
566
+ - add support for weak etags to the new index (@segiddins)
567
+
568
+ ## 1.13.2 (2016-09-30)
569
+
570
+ Bugfixes:
571
+
572
+ - allow `Settings` to be initialized without a root directory (@m1k3)
573
+ - allow specifying ruby engines in the gemfile as a symbol (#4919, @JuanitoFatas)
574
+ - avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
575
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby (#4975, @segiddins)
576
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile (#5006, @segiddins)
577
+ - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
578
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) (#4974, @chrismo)
579
+
580
+ Performance:
581
+
582
+ - avoid parsing the lockfile twice when evaluating gemfiles (@segiddins)
583
+
584
+ ## 1.13.1 (2016-09-13)
585
+
586
+ Bugfixes:
587
+
588
+ - ensure that `Gem::Source` is available, fixing several exceptions (#4944, @dekellum)
589
+ - ensure that dependency resolution works when multiple gems have the same dependency (#4961, @segiddins)
590
+
591
+ ## 1.13.0 (2016-09-05)
592
+
593
+ This space deliberately left blank.
594
+
595
+ ## 1.13.0.rc.2 (2016-08-21)
596
+
597
+ Features:
598
+
599
+ - add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
600
+ - add `doctor` command to help with issues like unlinked compiled gems (#4765, @mistydemeo)
601
+ - rework the `update` command, providing fine-grained control via flags (#4676, @chrismo)
602
+ - add URI to http response output in debug mode (#4808, @NickLaMuro)
603
+ - add manpage for `binstubs` command (#4847, @Zorbash)
604
+ - support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
605
+ - print gem installation errors after other install output (#4834, @segiddins)
606
+ - add `lock --remove-platform` flag to remove platforms from the lock (#4877, @segiddins)
607
+ - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
608
+ - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
609
+
610
+ Bugfixes:
611
+
612
+ - retry gem downloads (#4846, @jkeiser)
613
+ - improve the CompactIndex to handle capitalized legacy gems (#4867, @segiddins)
614
+ - re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
615
+ - respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
616
+ - allow `rake release` to sign git tags (#4743, @eagletmt)
617
+ - set process titles when using `#load` during `exec` (@yob)
618
+ - recognize JRuby shebangs for using `#load` during `exec` (@ojab)
619
+ - handle world-writable home directories (#4726, @allenzhao)
620
+ - support multi-platform gems via the `gemspec` Gemfile method (#4798, @segiddins)
621
+ - print dots correctly for CompactIndex fetcher (@NickLaMuro)
622
+ - set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
623
+ - rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
624
+ - show help only when `-h` or `--help` is passed to Bundler, not to `exec` (#4801, @segiddins)
625
+ - handle symlinks to binstubs created by `--standalone` (#4782, @terinjokes)
626
+
627
+ ## 1.13.0.rc.1 (2016-06-27)
628
+
629
+ Features:
630
+
631
+ - when `bundle config major_deprecations` or `BUNDLE_MAJOR_DEPRECATIONS` is set, deprecation warnings for bundler 2 will be printed (@segiddins)
632
+ - when running with `--verbose`, bundler will print the reason it is re-resolving a gemfile (@segiddins)
633
+
634
+ Bugfixes:
635
+
636
+ - fix support for running RubyGems 1.x on Ruby 2.3 (#4698, @segiddins)
637
+ - fix bundle exec'ing to a ruby file when gems are installed into a path (#4592, @chrismo)
638
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem (#4705, @segiddins)
639
+ - stop changing the load path to require the vendored postit when trampolining (@segiddins)
640
+ - ensure relative paths are properly printed after completing an installation (@jenseng)
641
+ - fix re-resolving when there are multiple unchanged path sources (@segiddins)
642
+ - de-init submodules when running git 2.9 and requesting a git gem without submodules (@segiddins)
643
+
644
+ ## 1.13.0.pre.1 (2016-06-20)
645
+
646
+ Performance:
647
+
648
+ - speed up gemfile resolution during `bundle install` by between 4x-100x (#4376, @segiddins)
649
+ - generally reduce object allocations when using bundler (@segiddins)
650
+ - speed up bin generation for path gems with many files (#2846, @segiddins)
651
+ - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
652
+
653
+ Features:
654
+
655
+ - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
656
+ - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
657
+ - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
658
+ - support for RubyGems 2.6.4 (#4368, @segiddins, @RochesterinNYC)
659
+ - colorize updated gem versions (#4334, @bronzdoc)
660
+ - add the `--standalone` flag to `bundle binstubs` (#4594, @b-ggs)
661
+ - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
662
+ - use a custom YAML serializer to make config file consistent (@segiddins)
663
+ - filter credentials from error messages (bundler/bundler-features#111, @RochesterinNYC, @sandlerr)
664
+ - support relative paths used inside a nested invocation of `eval_gemfile` (#4584, @RochesterinNYC)
665
+ - fail gracefully when attempting to install a yanked gem (#4344, @allenzhao)
666
+ - automatically install an inline gemfile when gems are missing locally (@segiddins)
667
+ - allow conflicts for gems resolved via `gemspec` (@segiddins)
668
+ - add `--add-platform` option to `bundle lock` (@segiddins)
669
+ - fail gracefully when a resolved spec's `required_ruby_version` or `required_rubygems_version` is incompatible (@segiddins)
670
+
671
+ Bugfixes:
672
+
673
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version (#4595, #4627, @segiddins)
674
+ - add support for quoted paths in `$PATH` (#4323, @segiddins)
675
+ - check out missing git repos that are not being installed (#3981, @asutoshpalai)
676
+ - write `bundler/setup.rb` to a consistent path (@glennpratt)
677
+ - open editor in `bundle open` with a clean environment (@sj26)
678
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile (#4392, #4430, @RochesterinNYC)
679
+ - fail gracefully when encountering an `Errno::ENOTSUP` (#4394, @segiddins)
680
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` (#4642, @allenzhao)
681
+ - fix loading config files with very long values (#4370, @segiddins)
682
+ - only show potential updates for gemfile platforms in `bundle outdated` (#4450, @RochesterinNYC)
683
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems (#2175, @allenzhao)
684
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs (#4593, @chalkos)
685
+
686
+ ## 1.12.6 (2016-10-10)
687
+
688
+ Bugfixes:
689
+ - add support for weak etags to the new index (@segiddins)
690
+
691
+ ## 1.12.5 (2016-05-25)
692
+
693
+ Bugfixes:
694
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` (#4596, @segiddins)
695
+ - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
696
+ - reduce the number of threads used simultaneously by bundler (#4367, @will-in-wi)
697
+
698
+ ## 1.12.4 (2016-05-16)
699
+
700
+ Bugfixes:
701
+ - ensure concurrent use of the new index can't corrupt the cache (#4519, @domcleal)
702
+ - allow missing rubygems credentials when pushing a gem with a custom host (#4437, @Cohen-Carlisle)
703
+ - fix installing built-in specs with `--standalone` (#4557, @segiddins)
704
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` (#4385, @segiddins)
705
+
706
+ ## 1.12.3 (2016-05-06)
707
+
708
+ Bugfixes:
709
+ - fix uncoditionally writing `.bundle/config` when running `bundle install` (@segiddins)
710
+ - fall back to the dependency API and the full index when the home directory is not writable (@segiddins)
711
+
712
+ ## 1.12.2 (2016-05-04)
713
+
714
+ Bugfixes:
715
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements (#4520, @grzuy)
716
+ - fix `bundle exec foo --help` not showing the invoked command's help (#4480, @b-ggs)
717
+
718
+ ## 1.12.1 (2016-04-30)
719
+
720
+ Bugfixes:
721
+ - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
722
+ - fix computation of new index file local checksums on Windows (#4472, @mwrock)
723
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, #4484)
724
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, #4482)
725
+
726
+ ## 1.12.0 (2016-04-28)
727
+
728
+ This space intentionally left blank.
729
+
730
+ ## 1.12.0.rc.4 (2016-04-21)
731
+
732
+ Bugfixes:
733
+
734
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions (#4438, @RochesterinNYC)
735
+
736
+ ## 1.12.0.rc.3 (2016-04-19)
737
+
738
+ Bugfixes:
739
+
740
+ - don't allow new attributes to dirty a lockfile when running `bundle exec`, `-rbundler/setup`, or `bundle check` (@segiddins)
741
+
742
+ ## 1.12.0.rc.2 (2016-04-15)
743
+
744
+ Features:
745
+
746
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` (#4396, @RochesterinNYC)
747
+
748
+ Bugfixes:
749
+
750
+ - prevent endless recursive copy for `bundle package --all` (#4392, @RochesterinNYC)
751
+ - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
752
+ - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
753
+
754
+ ## 1.12.0.rc (2016-03-13)
755
+
756
+ Performance:
757
+
758
+ - Download gem metadata from globally distributed CDN endpoints (#4358, @segiddins)
759
+
760
+ Bugfixes:
761
+
762
+ - handle Ruby pre-releases built from source (#4324, @RochesterinNYC)
763
+ - support binstubs from RubyGems 2.6 (#4341, @segiddins)
764
+ - handle quotes present in in PATH (#4326, @segiddins)
765
+
766
+ ## 1.12.0.pre.2 (2016-02-26)
767
+
768
+ Performance:
769
+
770
+ - speed up `bundle exec` by `load`ing the executable whenever possible, saving roughly .2 seconds per invocation (@segiddins)
771
+
772
+ Features:
773
+
774
+ - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
775
+ - add `Bundler.clean_env` and `Bundler.original_env` (#4232, @njam)
776
+ - add `--frozen` support to `bundle package` (#3356, @RochesterinNYC)
777
+
778
+ Bugfixes:
779
+
780
+ - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
781
+ - give a better error message when filesystem access raises an `EPROTO` error (#3581, #3932, #4163, @RochesterinNYC)
782
+ - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
783
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` (#4251, @segiddins, @njam)
784
+ - give a better error message when running `bundle outdated` in frozen mode (#4287, @RochesterinNYC)
785
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration (#4294, @segiddins)
786
+ - give a better error message when authentication details aren't properly escaped (#4288, @RochesterinNYC)
787
+ - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
788
+ - fix extra dependencies being resolved unnecessarily (#4276, @segiddins)
789
+ - give a better error message when missing specs due to platform mis-matches (#4259, @RochesterinNYC)
790
+ - skip rebuilding extensions for git gems if they are already built (#4082, @csfrancis, @indirect, @segiddins)
791
+ - fix `bundle install` not installing when the `no_install` setting is set (#3966, @chulkilee, @segiddins)
792
+
793
+ ## 1.12.0.pre.1 (2016-02-09)
794
+
795
+ Performance:
796
+
797
+ - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
798
+ - speed up `bundle exec` by avoiding loading the gemfile twice (#2951, #2952, @segiddins)
799
+
800
+ Features:
801
+
802
+ - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
803
+ - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
804
+ - support probing a mirror with a fallback timeout (#4128, @pcarranza)
805
+ - add `--full-index` option to `bundle lock` (@segiddins)
806
+ - support running with frozen string literals (@deepj, @segiddins)
807
+ - add `--major` and `--minor` options to `bundle outdated` (#3805, @cirdes)
808
+ - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
809
+ - add support for ruby 2.4 (#4266, @segiddins)
810
+ - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
811
+
812
+ Bugfixes:
813
+
814
+ - fix `bundle package --all` recursing endlessly (#4158, @RochesterinNYC)
815
+ - fail fast on more errors when fetching remote resources (#4154, @RochesterinNYC)
816
+ - give a better error message when a given git commit can't be found (#4140, @doy)
817
+ - give a better error message when `bundle clean` doesn't have sufficient permissions (#4170, @RochesterinNYC)
818
+ - give a better error message when reading a bundler config file fails (@segiddins)
819
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, #4150, @smellsblue)
820
+ - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
821
+ - give a better error message when ssl isn't available (#4054, @RochesterinNYC)
822
+ - print the original `require` error when `Bundler.require` fails (#4182, @RochesterinNYC)
823
+ - give a better error message when certain resources are temporarily unavailable (#4183, @RochesterinNYC)
824
+ - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
825
+ - ignore colorized output from `git` when determining the current branch (#4056, @agis-)
826
+ - fix storing the shared gems config option as a boolean (@vassilevsky)
827
+ - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
828
+ - fix `exec`-ing with 0 args in a directory with spaces (#4230, @segiddins)
829
+ - avoid installing extraneous gems when resolving to an older version of a spec (#4101, #4198, @segiddins)
830
+ - ensure paths resolved when parsing a gemfile are relative to that file (#3349, @dtognazzini)
831
+ - give a better error message when encountering an invalid gemspec (#4248, #4275, @RochesterinNYC)
832
+ - preserve the original `PATH` in `Bundler.with_clean_env` (#4251, @segiddins)
833
+ - ensure standalone file paths are relative to the project root (#4144, @glennpratt)
834
+
835
+ ## 1.11.2 (2015-12-15)
836
+
837
+ Bugfixes:
838
+
839
+ - _really_ stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
840
+
841
+ ## 1.11.1 (2015-12-15)
842
+
843
+ Bugfixes:
844
+
845
+ - lazy-load Psych, again (#4149, @indirect)
846
+ - allow gemspec gems on other platforms (#4150, @indirect)
847
+ - fix --no-coc and --no-mit flags on `gem` (#4148, @RochesterinNYC)
848
+ - stop calling `required_ruby_version` on nil @specifications (#4147, @indirect)
849
+
850
+ ## 1.11.0 (2015-12-12)
851
+
852
+ (this space intentionally left blank)
853
+
854
+ ## 1.11.0.pre.2 (2015-12-06)
855
+
856
+ Bugfixes:
857
+
858
+ - fail gracefully when trying to execute a non-executable file (#4081, @fotanus)
859
+ - fix a crash when pushing a gem via `rake release` (@segiddins)
860
+
861
+ ## 1.11.0.pre.1 (2015-11-29)
862
+
863
+ Features:
864
+
865
+ - actual Gemfile and lockfile filenames are used in messages (#3672, @segiddins)
866
+ - the git remote for `rake release` is now customizable (@skateman)
867
+ - file access permissions errors are now much more friendly (#3703, #3735, #3858, #3988, #4009 @repinel, @Elffers, @segiddins, @agis-)
868
+ - add support for showing help for plugin commands (@tf)
869
+ - send `X-Gemfile-Source` header to source mirrors (@agis-)
870
+ - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
871
+ - add support for using bundler setting to add private access credentials for git sources (@frsyuki)
872
+ - take into consideration HTTP proxy settings in `.gemrc` (@PG-kura)
873
+ - allow specifying a gem host to push to in the `GEM_HOST` environment variable (@pmenglund)
874
+ - when gempec `required_ruby_version` is available and the Gemfile specifies a ruby version, resolve for the given ruby version (@segiddins)
875
+ - allow setting a `silence_root_warning` setting to silence the warning when `bundle install` is run as root (@blackxored)
876
+ - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
877
+ - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
878
+ - added support for MRI 2.3 (@amatsuda)
879
+ - show a helpful message when requiring a file in `bundler require` fails (#3960, @agis-)
880
+ - include git revision hash when printing a git source (#3433, @agis-)
881
+ - improve hint when a resolution conflict occurs (@seanlinsley)
882
+ - show a friendly error when a git ref is not found (#3879, @agis-)
883
+ - improve error message when sources are not absolute URIs (#3925, @agis-)
884
+ - add `pkg` to rake's clobber list (#3676, @jasonkarns)
885
+ - retry fetching specs when fetching version metadata fails (@jingweno)
886
+
887
+ Bugfixes:
888
+
889
+ - avoid showing bundler version warning messages twice (@fotanus)
890
+ - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
891
+ - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
892
+ - fail more gracefully when an HTTP remote is unreachable (#3765, @steverob)
893
+ - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
894
+ - fix the `bundle gem` readme when no tests are generated (@roseweixel)
895
+ - the dependencies on test gems in `bundle gem` are now locked to major versions (#3811, @indirect)
896
+ - fix the paths for native extensions generated by `--standalone` (#3813, @AlexanderPavlenko)
897
+ - fix trying to cache a gem that has no source (@EduardoBautista)
898
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking (#3759, #3761, @neoeno)
899
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables (#3678, @agis-)
900
+ - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
901
+ - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
902
+ - fix not retrying on zlib errors (#4047, @andremedeiros)
903
+ - fix a warning being shown for using `URI.encode` (@EduardoBautista)
904
+ - fix handling of fatal HTTP errors (#3830, @indirect)
905
+ - ensure all `sudo` access is done in a thread-safe manner (#3910, @agis-)
906
+ - fix caching gems with a path with the same prefix as the bundled application (@indirect)
907
+ - fix showing gemspec validation errors on `bundle exec` (#3895, @agis-)
908
+ - distinguish Gemfile syntax and evaluation errors (#3783, @agis-)
909
+ - fix nested Gemfile sources not restoring the previous source (#3974, @agis-)
910
+ - fix the `RUBYLIB` environment variable not being cleaned (#3982, @agis-)
911
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock (#4012, @lukaso)
912
+ - also print gemspecs in `bundle env` output (@agis-)
913
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is (#4004, @segiddins)
914
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set (#3656, @agis-)
915
+ - fix handling invalid RubyGems configuration files (#4042, @agis-)
916
+ - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
917
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec (#4102, @smellsblue)
918
+
919
+ Performance:
920
+
921
+ - speed up dependency resolution in pathological cases by 25x (#3803, @segiddins)
922
+ - drop string allocations when searching for gems (@jrafanie)
923
+
924
+ ## 1.10.6 (2015-07-22)
925
+
926
+ Workarounds:
927
+
928
+ - only warn on invalid gemspecs (@indirect)
929
+
930
+ Bugfixes:
931
+
932
+ - fix installing dependencies in the correct order (#3799, @pducks32)
933
+ - fix sorting of mixed DependencyLists (#3762, @tony-spataro-rs)
934
+ - fix `install_if` conditionals when using the block form (@danieltdt)
935
+
936
+ ## 1.10.5 (2015-06-24)
937
+
938
+ Workarounds:
939
+
940
+ - don't add or update BUNDLED WITH during `install` with no changes (@segiddins)
941
+
942
+ Bugfixes:
943
+
944
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 (#3762, @tony-spataro-rs)
945
+ - speed up resolver for path and git gems (@segiddins)
946
+ - fix `install --force` to not reinstall Bundler (#3743, @karlo57)
947
+
948
+ ## 1.10.4 (2015-06-16)
949
+
950
+ Workarounds:
951
+
952
+ - don't add BUNDLED WITH to the lock when Spring runs `check` over and over (@indirect)
953
+
954
+ Bugfixes:
955
+
956
+ - display "with native extensions" log output correctly (@ivantsepp)
957
+ - alias `i` to `install`, `c` to `check`, and `e` to `exec` (@indirect)
958
+
959
+ ## 1.10.3 (2015-06-03)
960
+
961
+ Bugfixes:
962
+
963
+ - allow missing gemspec files when validating path and git gems (#3686, #3698, @segiddins)
964
+ - fix regression in `rake install` (#3701, #3705, @segiddins)
965
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` (#3699, @segiddins)
966
+ - fix `bundler/inline` requiring a newly-installed gem (#3693, @indirect, @segiddins)
967
+
968
+ ## 1.10.2 (2015-05-29)
969
+
970
+ Bugfixes:
971
+
972
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 (#3687, @segiddins)
973
+
974
+ ## 1.10.1 (2015-05-28)
975
+
976
+ Bugfixes:
977
+
978
+ - silence ruby warning when running CLI commands (@segiddins)
979
+ - validate gemspecs in non-packaging mode (#3681, @segiddins)
980
+ - ensure the same chdir mutex as RubyGems is used (#3680, @segiddins)
981
+
982
+ ## 1.10.0 (2015-05-28)
983
+
984
+ (this space intentionally left blank)
985
+
986
+ ## 1.10.0.rc (2015-05-16)
987
+
988
+ Features:
989
+
990
+ - dramatically speed up resolving some slow Gemfiles (#3635, @segiddins)
991
+ - track CI platforms running Bundler (#3646, @fotanus)
992
+
993
+ Bugfixes:
994
+
995
+ - allow `viz` to work with prereleases (#3621, #3217, @aprescott)
996
+ - validate gemspecs used in path and git gems (#3639, @segiddins, @indirect)
997
+ - stop printing config warnings when config is unchanged (#3649, @fotanus, @indirect)
998
+ - Without groups saved via `config` are no longer ignored when the `--without` flag is used
999
+
1000
+ ## 1.10.0.pre.2 (2015-05-07)
1001
+
1002
+ Bugfixes:
1003
+
1004
+ - make BUNDLED WITH backwards compatible (#3623, @segiddins)
1005
+
1006
+ ## 1.10.0.pre.1 (2015-05-05)
1007
+
1008
+ Bugfixes:
1009
+
1010
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
1011
+
1012
+ ## 1.10.0.pre (2015-05-03)
1013
+
1014
+ Features:
1015
+
1016
+ - support gem extensions built into any directory on RubyGems 2.2+ (#3582, @voxik)
1017
+ - add 'bundler/inline' which provides a `gemfile` method (#3440, @segiddins)
1018
+ - improved error reports for Gemfile errors (#3480, @segiddins)
1019
+ - `lock` command (#3437, @segiddins)
1020
+ - add `ignore_messages` config to suppress post-install text (#3510, @pducks32)
1021
+ - improve `gem` minitest template (#3513, #3515, @arthurnn)
1022
+ - add `install --force` to re-install installed gems (#3519, @segiddins)
1023
+ - show more `outdated` information, including groups (@smlance, @indirect)
1024
+ - add optional groups to the Gemfile (#3531, @jhass)
1025
+ - accept glob argument to `gemspec` in Gemfile (#3464, @pjump)
1026
+ - make timeouts and retries configurable via `config` (#3601, @pducks32)
1027
+ - add `install_if` Gemfile method for conditional installs (#3611, @segiddins)
1028
+
1029
+ Bugfixes:
1030
+
1031
+ - standalone mode now uses builtin gems correctly (#3610, @segiddins)
1032
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ (#3487, @marutosi)
1033
+ - remember all y/n answers when generating gems (#3579, @pducks32)
1034
+
1035
+ Performance:
1036
+
1037
+ - use RubyGems stub specifications when possible (#3580, @segiddins)
1038
+
1039
+ Deprecations:
1040
+
1041
+ - deprecated the (never enabled) `bundle_ruby` binary (@smlance)
1042
+
1043
+ ## 1.9.10 (2015-06-22)
1044
+
1045
+ Features:
1046
+
1047
+ - the `BUNDLED WITH` section of lockfiles generated by 1.10+ will be preserved (@segiddins)
1048
+
1049
+ ## 1.9.9 (2015-05-16)
1050
+
1051
+ Bugfixes:
1052
+
1053
+ - read mirror and credential settings from older versions (#3557, @Strech)
1054
+
1055
+ ## 1.9.8 (2015-05-12)
1056
+
1057
+ Bugfixes:
1058
+
1059
+ - fix regression in sudo mode introduced by 1.9.7 (#3642, @segiddins)
1060
+
1061
+ ## 1.9.7 (2015-05-11)
1062
+
1063
+ Bugfixes:
1064
+
1065
+ - always clean up tmp dirs (#3277, @hone, @indirect, @segiddins)
1066
+
1067
+ ## 1.9.6 (2015-05-02)
1068
+
1069
+ Bugfixes:
1070
+
1071
+ - use RubyGems spec stubs if available (@segiddins)
1072
+ - allow creating gems with names containing two dashes (#3483, @janlelis)
1073
+ - allow creating gems with names extending constants (#3603, @amatsuda)
1074
+
1075
+ ## 1.9.5 (2015-04-29)
1076
+
1077
+ Bugfixes:
1078
+
1079
+ - respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1080
+
1081
+ ## 1.9.4 (2015-04-13)
1082
+
1083
+ Bugfixes:
1084
+
1085
+ - fix regression in installing x86 and universal gems (#3565, @jdmundrawala)
1086
+ - improve error when gems are missing (#3564, @sealocal)
1087
+
1088
+ ## 1.9.3 (2015-04-12)
1089
+
1090
+ Bugfixes:
1091
+
1092
+ - handle removal of `specs` from rubygems/rubygems@620910 (#3558, @indirect)
1093
+ - install 'universal' gems on Windows (#3066, @jdmundrawala)
1094
+ - stop passing --local during `rake install` task (#3236, @indirect)
1095
+ - guard against all possible accidental public gem pushes (#3533, @indirect)
1096
+
1097
+ ## 1.9.2 (2015-03-30)
1098
+
1099
+ Bugfixes:
1100
+
1101
+ - ensure gem executables are executable (#3517, #3511, @indirect)
1102
+ - fix warnings in Molinillo (#3516, @segiddins)
1103
+ - ensure duplicate dependencies do not propagate (#3522, @segiddins)
1104
+ - keep gems locked when updating another gem from the same source (#3520, @indirect)
1105
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
1106
+
1107
+ ## 1.9.1 (2015-03-21)
1108
+
1109
+ Bugfixes:
1110
+
1111
+ - avoid exception in 'bundler/gem_tasks' (#3492, @segiddins)
1112
+
1
1113
  ## 1.9.0 (2015-03-20)
2
1114
 
3
1115
  ## 1.9.0.rc (2015-03-13)
@@ -6,6 +1118,7 @@ Bugfixes:
6
1118
 
7
1119
  - make Bundler.which stop finding directories (@nohoho)
8
1120
  - handle Bundler prereleases correctly (#3470, @segiddins)
1121
+ - add before_install to .travis.yml template for new gems (@kodnin)
9
1122
 
10
1123
  ## 1.9.0.pre.1 (2015-03-11)
11
1124
 
@@ -25,6 +1138,31 @@ Features:
25
1138
  - Molinillo resolver, shared with CocoaPods (@segiddins)
26
1139
  - updated Thor to v0.19.1 (@segiddins)
27
1140
 
1141
+ ## 1.8.9 (2015-05-02)
1142
+
1143
+ Bugfixes:
1144
+
1145
+ - Use RubyGems spec stubs if available (@segiddins)
1146
+
1147
+ ## 1.8.8 (2015-04-29)
1148
+
1149
+ Bugfixes:
1150
+
1151
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1152
+
1153
+ ## 1.8.7 (2015-04-07)
1154
+
1155
+ Bugfixes:
1156
+
1157
+ - stop suppressing errors inside gems that get required (#3549, @indirect)
1158
+
1159
+ ## 1.8.6 (2015-03-30)
1160
+
1161
+ Bugfixes:
1162
+
1163
+ - keep gems locked when updating another gem from the same source (#3250, @indirect)
1164
+ - resolve race that could build gems without saved arguments (#3404, @indirect)
1165
+
28
1166
  ## 1.8.5 (2015-03-11)
29
1167
 
30
1168
  Bugfixes:
@@ -124,6 +1262,19 @@ Documentation:
124
1262
 
125
1263
  - add missing Gemfile global `path` explanation (@agenteo)
126
1264
 
1265
+ ## 1.7.15 (2015-04-29)
1266
+
1267
+ Bugfixes:
1268
+
1269
+ - Respect Gemfile sources when installing a gem present in two sources (#3585, @tmoore)
1270
+
1271
+ ## 1.7.14 (2015-03-30)
1272
+
1273
+ Bugfixes:
1274
+
1275
+ - Keep gems locked when updating another gem from the same source (#3250, @indirect)
1276
+ - Don't add extra quotes around long, quoted config values (@aroben, #3338)
1277
+
127
1278
  ## 1.7.13 (2015-02-07)
128
1279
 
129
1280
  Bugfixes:
@@ -656,13 +1807,13 @@ Bugfixes:
656
1807
 
657
1808
  Features:
658
1809
 
659
- - compatibile with Ruby 2.0.0-preview2
660
- - compatibile with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
1810
+ - compatible with Ruby 2.0.0-preview2
1811
+ - compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
661
1812
  - ruby 2.0 added to the `:ruby19` ABI-compatible platform
662
1813
  - lazy load YAML, allowing Psych to be specified in the Gemfile
663
1814
  - significant performance improvements (@cheald, #2181)
664
1815
  - `inject` command for scripted Gemfile additions (Engine Yard)
665
- - :github option uses slashless arguements as repo owner (@rking)
1816
+ - :github option uses slashless arguments as repo owner (@rking)
666
1817
  - `open` suggests gem names for typos (@jdelStrother)
667
1818
  - `update` reports non-existent gems (@jdelStrother)
668
1819
  - `gem` option --test can generate rspec stubs (@MafcoCinco)
@@ -1086,7 +2237,7 @@ Features:
1086
2237
  - Add bundle clean. Removes unused gems from --path directory
1087
2238
  - Initial Gemcutter Endpoint API work, BAI Fetching source index
1088
2239
  - Added bundle install --standalone
1089
- - Ignore Gemfile.lock when buliding new gems
2240
+ - Ignore Gemfile.lock when building new gems
1090
2241
  - Make it possible to override a .gemspec dependency's source in the
1091
2242
  Gemfile
1092
2243
 
@@ -1137,7 +2288,7 @@ Bugfixes:
1137
2288
 
1138
2289
  Features:
1139
2290
 
1140
- - Compatability with Rubygems 1.8.10 installer changes
2291
+ - Compatibility with Rubygems 1.8.10 installer changes
1141
2292
  - Report gem installation failures clearly (@rwilcox, #1380)
1142
2293
  - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
1143
2294
 
@@ -1887,7 +3038,7 @@ Bugfixes:
1887
3038
  - make the tests platform agnostic so we can confirm that they're green on JRuby
1888
3039
  - fixes for Ruby 1.9
1889
3040
 
1890
- ## 0.9.5 (Feburary 12, 2010)
3041
+ ## 0.9.5 (February 12, 2010)
1891
3042
 
1892
3043
  Features:
1893
3044