bundler 2.1.0 → 2.2.0.rc.1

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

Potentially problematic release.


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

Files changed (132) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +832 -738
  3. data/README.md +6 -8
  4. data/bundler.gemspec +3 -3
  5. data/exe/bundle +3 -0
  6. data/lib/bundler.rb +15 -4
  7. data/lib/bundler/build_metadata.rb +2 -2
  8. data/lib/bundler/cli.rb +32 -11
  9. data/lib/bundler/cli/console.rb +1 -1
  10. data/lib/bundler/cli/exec.rb +3 -12
  11. data/lib/bundler/cli/gem.rb +83 -10
  12. data/lib/bundler/cli/info.rb +13 -3
  13. data/lib/bundler/cli/init.rb +1 -1
  14. data/lib/bundler/cli/install.rb +8 -16
  15. data/lib/bundler/cli/issue.rb +2 -2
  16. data/lib/bundler/cli/list.rb +11 -9
  17. data/lib/bundler/cli/outdated.rb +88 -65
  18. data/lib/bundler/cli/plugin.rb +10 -0
  19. data/lib/bundler/cli/pristine.rb +5 -0
  20. data/lib/bundler/definition.rb +32 -32
  21. data/lib/bundler/dependency.rb +0 -9
  22. data/lib/bundler/dsl.rb +1 -5
  23. data/lib/bundler/environment_preserver.rb +26 -2
  24. data/lib/bundler/errors.rb +1 -0
  25. data/lib/bundler/feature_flag.rb +0 -2
  26. data/lib/bundler/fetcher.rb +1 -0
  27. data/lib/bundler/friendly_errors.rb +4 -10
  28. data/lib/bundler/gem_helper.rb +18 -12
  29. data/lib/bundler/gem_version_promoter.rb +1 -1
  30. data/lib/bundler/injector.rb +14 -3
  31. data/lib/bundler/inline.rb +2 -2
  32. data/lib/bundler/installer.rb +29 -28
  33. data/lib/bundler/installer/gem_installer.rb +2 -2
  34. data/lib/bundler/installer/parallel_installer.rb +9 -9
  35. data/lib/bundler/lazy_specification.rb +16 -3
  36. data/lib/bundler/plugin.rb +26 -0
  37. data/lib/bundler/plugin/index.rb +9 -0
  38. data/lib/bundler/psyched_yaml.rb +0 -15
  39. data/lib/bundler/remote_specification.rb +4 -1
  40. data/lib/bundler/resolver.rb +31 -8
  41. data/lib/bundler/resolver/spec_group.rb +26 -5
  42. data/lib/bundler/rubygems_ext.rb +7 -8
  43. data/lib/bundler/rubygems_gem_installer.rb +1 -7
  44. data/lib/bundler/rubygems_integration.rb +13 -48
  45. data/lib/bundler/runtime.rb +2 -12
  46. data/lib/bundler/settings.rb +0 -3
  47. data/lib/bundler/setup.rb +5 -0
  48. data/lib/bundler/shared_helpers.rb +1 -1
  49. data/lib/bundler/source/git.rb +4 -4
  50. data/lib/bundler/source/git/git_proxy.rb +53 -58
  51. data/lib/bundler/source/path.rb +5 -1
  52. data/lib/bundler/source/path/installer.rb +7 -9
  53. data/lib/bundler/source/rubygems.rb +11 -14
  54. data/lib/bundler/stub_specification.rb +16 -4
  55. data/lib/bundler/templates/newgem/CODE_OF_CONDUCT.md.tt +57 -47
  56. data/lib/bundler/templates/newgem/Gemfile.tt +9 -1
  57. data/lib/bundler/templates/newgem/Rakefile.tt +19 -5
  58. data/lib/bundler/templates/newgem/bin/console.tt +2 -0
  59. data/lib/bundler/templates/newgem/circleci/config.yml.tt +13 -0
  60. data/lib/bundler/templates/newgem/ext/newgem/extconf.rb.tt +2 -0
  61. data/lib/bundler/templates/newgem/github/workflows/main.yml.tt +18 -0
  62. data/lib/bundler/templates/newgem/gitlab-ci.yml.tt +9 -0
  63. data/lib/bundler/templates/newgem/lib/newgem.rb.tt +2 -0
  64. data/lib/bundler/templates/newgem/lib/newgem/version.rb.tt +2 -0
  65. data/lib/bundler/templates/newgem/newgem.gemspec.tt +6 -4
  66. data/lib/bundler/templates/newgem/rubocop.yml.tt +10 -0
  67. data/lib/bundler/templates/newgem/spec/newgem_spec.rb.tt +2 -0
  68. data/lib/bundler/templates/newgem/spec/spec_helper.rb.tt +2 -0
  69. data/lib/bundler/templates/newgem/test/{newgem_test.rb.tt → minitest/newgem_test.rb.tt} +2 -0
  70. data/lib/bundler/templates/newgem/test/{test_helper.rb.tt → minitest/test_helper.rb.tt} +2 -0
  71. data/lib/bundler/templates/newgem/test/test-unit/newgem_test.rb.tt +15 -0
  72. data/lib/bundler/templates/newgem/test/test-unit/test_helper.rb.tt +6 -0
  73. data/lib/bundler/vendor/net-http-persistent/lib/net/http/persistent.rb +72 -208
  74. data/lib/bundler/vendor/thor/lib/thor.rb +0 -7
  75. data/lib/bundler/vendor/thor/lib/thor/actions/create_link.rb +2 -1
  76. data/lib/bundler/vendor/thor/lib/thor/base.rb +9 -0
  77. data/lib/bundler/vendor/thor/lib/thor/version.rb +1 -1
  78. data/lib/bundler/version.rb +1 -1
  79. data/man/bundle-add.1 +1 -1
  80. data/man/bundle-add.1.txt +15 -15
  81. data/man/bundle-binstubs.1 +1 -1
  82. data/man/bundle-binstubs.1.txt +10 -10
  83. data/man/bundle-cache.1 +1 -1
  84. data/man/bundle-cache.1.txt +15 -15
  85. data/man/bundle-check.1 +1 -1
  86. data/man/bundle-check.1.txt +8 -8
  87. data/man/bundle-clean.1 +1 -1
  88. data/man/bundle-clean.1.txt +6 -6
  89. data/man/bundle-config.1 +3 -9
  90. data/man/bundle-config.1.txt +271 -272
  91. data/man/bundle-config.ronn +5 -9
  92. data/man/bundle-doctor.1 +1 -1
  93. data/man/bundle-doctor.1.txt +9 -9
  94. data/man/bundle-exec.1 +1 -1
  95. data/man/bundle-exec.1.txt +84 -81
  96. data/man/bundle-gem.1 +25 -3
  97. data/man/bundle-gem.1.txt +65 -39
  98. data/man/bundle-gem.ronn +30 -7
  99. data/man/bundle-info.1 +1 -1
  100. data/man/bundle-info.1.txt +2 -2
  101. data/man/bundle-init.1 +1 -1
  102. data/man/bundle-init.1.txt +9 -9
  103. data/man/bundle-inject.1 +1 -1
  104. data/man/bundle-inject.1.txt +4 -4
  105. data/man/bundle-install.1 +1 -1
  106. data/man/bundle-install.1.txt +169 -169
  107. data/man/bundle-list.1 +7 -7
  108. data/man/bundle-list.1.txt +12 -11
  109. data/man/bundle-list.ronn +6 -6
  110. data/man/bundle-lock.1 +1 -1
  111. data/man/bundle-lock.1.txt +28 -28
  112. data/man/bundle-open.1 +1 -1
  113. data/man/bundle-open.1.txt +3 -3
  114. data/man/bundle-outdated.1 +1 -1
  115. data/man/bundle-outdated.1.txt +34 -34
  116. data/man/bundle-platform.1 +1 -1
  117. data/man/bundle-platform.1.txt +16 -16
  118. data/man/bundle-pristine.1 +1 -1
  119. data/man/bundle-pristine.1.txt +8 -8
  120. data/man/bundle-remove.1 +1 -1
  121. data/man/bundle-remove.1.txt +9 -9
  122. data/man/bundle-show.1 +1 -1
  123. data/man/bundle-show.1.txt +8 -8
  124. data/man/bundle-update.1 +1 -1
  125. data/man/bundle-update.1.txt +149 -148
  126. data/man/bundle-viz.1 +1 -1
  127. data/man/bundle-viz.1.txt +11 -11
  128. data/man/bundle.1 +1 -1
  129. data/man/bundle.1.txt +31 -31
  130. data/man/gemfile.5 +1 -1
  131. data/man/gemfile.5.txt +218 -216
  132. metadata +14 -8
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d1b0f254fde45e5334d616c37efb448b0c3213d5681d141a3652fe6aa59e3f4a
4
- data.tar.gz: 3c6f21c091483b75be54095df2449cc31f12dce5800473b57fabe7efa1536368
3
+ metadata.gz: 615cf1204330afcb6e73af22e6535a66ebac3eaa03b2a7c672752063b8963e51
4
+ data.tar.gz: 86c318c2e938e94aaaace6efbf0e84dc37a5e9841c49a7d57b006240e902eedd
5
5
  SHA512:
6
- metadata.gz: d55cf58680c59ed903fa27d6b90e73d9609b9373ccf51041bbfdd31b56449ee40eb1d927c0ef1278aa977d85a912e06f90accaa958a36376abee465c11ad846b
7
- data.tar.gz: 67860aa75e4883107d5c8c3afd76a388bea176a6b39382e1258ceafec35afa993aed49b82d2cce92da64e41739dafbbc65fba01ce9ca80470490d44474fabf7e
6
+ metadata.gz: 7c3c4d4c0b7125fe39ea8c88de1b8563a51193388c2eab222cbdf5489ea9d031797166ddfef121ce442c1c8cfa0ef90712a3d163eb36f9c6ef4eb2f46001fb1b
7
+ data.tar.gz: b23682d9b6568527e398c862b694e23d98decb36c7db24a3598161d5ca6e1463bfdc3634cd91cfe42a1fa5796b5db32eb9e630c5bca352eec4c11902e4dee15f
@@ -1,50 +1,144 @@
1
+ ## 2.2.0.rc.1 (Jul 02, 2020)
2
+
3
+ Highlights:
4
+
5
+ - Windows support. There's still gotchas and unimplemented features, but a Windows CI is now enforced.
6
+ - Full multiplatform support. Bundler should now seamlessly handle multiplatform `Gemfile` or `gems.rb` files.
7
+
8
+ Features:
9
+
10
+ - `bundle info` now includes gem metadata [#7376](https://github.com/rubygems/bundler/pull/7376)
11
+ - `bundle list --without-group` and `bundle list --only-group` now support space separated list of groups in addition to single groups [#7404](https://github.com/rubygems/bundler/pull/7404)
12
+ - `bundle gem` now supports a `--rubocop` flag that adds the `rubocop` gem to the new gem layout [#6455](https://github.com/rubygems/bundler/pull/6455)
13
+ - `bundle gem` now supports `--test-unit` in addition to `rspec` and `minitest` as a value for its `--test` option [#5521](https://github.com/rubygems/bundler/pull/5521)
14
+ - `bundle install` now uses the available number of processors automatically for concurrent gem install, except for Windows where it still uses a single thread by default [#3393](https://github.com/rubygems/rubygems/pull/3393) and [#3718](https://github.com/rubygems/rubygems/pull/3718)
15
+ - Report Gitlab CI within bundler user-agent string [#3432](https://github.com/rubygems/rubygems/pull/3432)
16
+ - Add `bundle plugin uninstall` [#3482](https://github.com/rubygems/rubygems/pull/3482)
17
+ - `bundle gem` now supports a `--ci` flag and a `gem.ci` configuration that adds CI config files for the main CI providers to the generated gem skeleton [#3667](https://github.com/rubygems/rubygems/pull/3667)
18
+ - Allow setting a tag prefix to be used by release tasks [#3766](https://github.com/rubygems/rubygems/pull/3766)
19
+
20
+ Improvements:
21
+
22
+ - `bundle outdated` now prints output in columns for better readability [#4474](https://github.com/rubygems/bundler/pull/4474)
23
+ - bundler's `release` rake task now prints a better message when not being logged in and trying to push a gem [#7513](https://github.com/rubygems/bundler/pull/7513)
24
+ - `BUNDLE_APP_CONFIG` environment variable is now documented [#7563](https://github.com/rubygems/bundler/pull/7563)
25
+ - Original exception is now reported when bundler fails to load OpenSSL [#7527](https://github.com/rubygems/bundler/pull/7527)
26
+ - RVM specific instructions for recompiling ruby is no longer recommended when bundler fails to load OpenSSL [#7597](https://github.com/rubygems/bundler/pull/7597)
27
+ - Improve resolver debugging out from resolver [#7589](https://github.com/rubygems/bundler/pull/7589) and [#7590](https://github.com/rubygems/bundler/pull/7590)
28
+ - Clarify `bundle config --local` docs [#3408](https://github.com/rubygems/rubygems/pull/3408)
29
+ - Make sure to not "leak" to a different bundler install under any circumstances [#3595](https://github.com/rubygems/rubygems/pull/3595)
30
+ - Make sure users messing with `$;` doesn't affect us [#3602](https://github.com/rubygems/rubygems/pull/3602)
31
+ - Remove explicit psych activation which could potentially lead to packaging-specific issues [#3638](https://github.com/rubygems/rubygems/pull/3638)
32
+ - Deprecate `--no-deployment` flag and never recommend it [#3657](https://github.com/rubygems/rubygems/pull/3657)
33
+ - `bundle gem` test framework defaults to the `gem.test` setting and asks for a value without overwriting configuration if `-t` without a value is passed explicitly [#3544](https://github.com/rubygems/rubygems/pull/3544)
34
+ - `bundle gem` now ships with a default `.rubocop.yml` file and an offense free initial gem skeleton [#3731](https://github.com/rubygems/rubygems/pull/3731), [#3740](https://github.com/rubygems/rubygems/pull/3740), [#3765](https://github.com/rubygems/rubygems/pull/3765)
35
+ - Remove some requires that might workaround some autoloading issues on jruby [#3771](https://github.com/rubygems/rubygems/pull/3771)
36
+ - Unswallow an error that should make some random crashes on jruby easier to troubleshoot [#3774](https://github.com/rubygems/rubygems/pull/3774)
37
+
38
+ Bugfixes:
39
+
40
+ - Fix `bundle pristine` removing gems with local overrides. Be conservative by printing a warning and skipping the removal [#7423](https://github.com/rubygems/bundler/pull/7423)
41
+ - Fix multiplaform resolution edge cases [#7522](https://github.com/rubygems/bundler/pull/7522) and [#7578](https://github.com/rubygems/bundler/pull/7578)
42
+ - Fix ruby version conflicts not displaying the current ruby version [7559](https://github.com/rubygems/bundler/pull/7559)
43
+ - Fix `Gemfile` or `gems.rb` files containing `:path` gems using relative paths not working when the app is packaged as a `jar` with `warbler` [#7614](https://github.com/rubygems/bundler/pull/7614)
44
+ - Fix config location edge case where if `BUNDLE_APP_CONFIG` is set to an absolute path like in official ruby docker images, and there's no Gemfile up in the directory hierarchy, bundler would end up using the default config location instead of the customized one [#7622](https://github.com/rubygems/bundler/pull/7622)
45
+ - Fix error message about missing permissions recommending a deprecated command [#7633](https://github.com/rubygems/bundler/pull/7633)
46
+ - Fix `init_gems_rb` setting being ignored by `bundle gem` [#7629](https://github.com/rubygems/bundler/pull/7629)
47
+ - Fix "unresolvable warning" being printed on `bundle install` of multipliplatform `Gemfile` or `gems.rb` files without lockfiles, multiplatform is now managed automatically [#7580](https://github.com/rubygems/bundler/pull/7580)
48
+ - Fix setting the number of `--jobs` to be one unit less than specified to the CLI [#3393](https://github.com/rubygems/rubygems/pull/3393)
49
+ - Fix extension building when the same git source specifies several gems with extensions [#3475](https://github.com/rubygems/rubygems/pull/3475)
50
+ - Fix uninitialized instance variable warning under ruby-head (2.8-dev) [#3477](https://github.com/rubygems/rubygems/pull/3477)
51
+ - Fix double chdir warning while installing a git gem with extensions [#3479](https://github.com/rubygems/rubygems/pull/3479)
52
+ - Fix some deprecations not showing up when CLI flags passed as `--flag=value` [#3561](https://github.com/rubygems/rubygems/pull/3561)
53
+ - Fix man pages display when bundler installed as a default gem [#3562](https://github.com/rubygems/rubygems/pull/3562)
54
+ - Fix bundler gem tasks not handling relative paths [#3586](https://github.com/rubygems/rubygems/pull/3586)
55
+ - Fix deprecation warnings when options the dashed names are used, such as `--no-prune` [#3623](https://github.com/rubygems/rubygems/pull/3623)
56
+ - Fix crash related to bundler gem activation under old rubygems version (2.6.1 or older) [#3626](https://github.com/rubygems/rubygems/pull/3626)
57
+ - Avoid stack overflow inside `StubSpecification` on some edge cases [#3635](https://github.com/rubygems/rubygems/pull/3635)
58
+ - Fix `bundle remove` with multiline gem specifications [#3400](https://github.com/rubygems/rubygems/pull/3400)
59
+ - Fix `bundle info` not informing about deleted gems as opposed to old `bundle show` [#3509](https://github.com/rubygems/rubygems/pull/3509)
60
+ - The `--no-deployment` flag to `bundle install` was deprecated just like the other flags that rely on their value being remembered [#3657](https://github.com/rubygems/rubygems/pull/3657)
61
+ - Fix `bundle install` unintentionally copying `with` and `without` global config to local configuration [#3666](https://github.com/rubygems/rubygems/pull/3666). This PR also address the `BUNDLE_WITH` environment variable unintentionally being persisted to configuration in a similar way ([#3708](https://github.com/rubygems/rubygems/issues/3708))
62
+ - Fix race condition in `bundle install` that could "empty" exceptions to be raised [#3669](https://github.com/rubygems/rubygems/pull/3669)
63
+ - Fix `--no-cache` to `bundle install` being unintentionally deprecated [#3688](https://github.com/rubygems/rubygems/pull/3688)
64
+ - Avoid calling `LoadError#message` to fix performance regression in future ruby 2.8 [#3762](https://github.com/rubygems/rubygems/pull/3762)
65
+
66
+ ## 2.1.4 (January 5, 2020)
67
+
68
+ Bugfixes:
69
+
70
+ - Fix `net-http-pipeline` no longer being allowed in Gemfiles if already installed in the system due to our vendored version of `net-http-persistent` optionally requiring it [#7529](https://github.com/bundler/bundler/pull/7529)
71
+ - Fix inline gems no longer being requirable if no Gemfile is present in the directory hierarchy [#7537](https://github.com/bundler/bundler/pull/7537)
72
+
73
+ ## 2.1.3 (January 2, 2020)
74
+
75
+ Bugfixes:
76
+
77
+ - Fix `rake build` when path has spaces on it [#7514](https://github.com/bundler/bundler/pull/7514)
78
+ - Fix `rake release` git push tasks when the running shell has `git` as an alias of another command (like `hub`) [#7510](https://github.com/bundler/bundler/pull/7510)
79
+ - Fix some circular require warnings [#7520](https://github.com/bundler/bundler/pull/7520)
80
+ - Fix `bundle config set deployment true` recommended alternative to `bundle config --deployment` to behave in the same way as the `--deployment` flag [#7519](https://github.com/bundler/bundler/pull/7519)
81
+
82
+ ## 2.1.2 (December 20, 2019)
83
+
84
+ Bugfixes:
85
+
86
+ - Restore an explicit `require "rubygems"` on top `rubygems_integration.rb` to avoid some missing constant errors under some convoluted setups [#7505](https://github.com/rubygems/bundler/pull/7505)
87
+
88
+ ## 2.1.1 (December 17, 2019)
89
+
90
+ Bugfixes:
91
+
92
+ - Fix some cases of shelling out to `rubygems` still being silent [#7493](https://github.com/rubygems/bundler/pull/7493)
93
+ - Restore compatibility with `rubygems-bundler` so that binstubs work under `RVM` [#7498](https://github.com/rubygems/bundler/pull/7498)
94
+
1
95
  ## 2.1.0 (December 15, 2019)
2
96
 
3
97
  Features:
4
98
 
5
99
  - Add support for new default gems. In particular,
6
100
 
7
- * `open3` [#7455](https://github.com/bundler/bundler/pull/7455)
8
- * `cgi`: [#7456](https://github.com/bundler/bundler/pull/7456)
9
- * `uri` [#7460](https://github.com/bundler/bundler/pull/7460)
101
+ * `open3` [#7455](https://github.com/rubygems/bundler/pull/7455)
102
+ * `cgi`: [#7456](https://github.com/rubygems/bundler/pull/7456)
103
+ * `uri` [#7460](https://github.com/rubygems/bundler/pull/7460)
10
104
 
11
- plus other PRs removing or lazily loading usages of these gems from other places to not interfere with user's choice, such as [#7471](https://github.com/bundler/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
105
+ plus other PRs removing or lazily loading usages of these gems from other places to not interfere with user's choice, such as [#7471](https://github.com/rubygems/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
12
106
 
13
107
  Bugfixes:
14
108
 
15
- - Fix `bundle exec rake install` failing [#7474](https://github.com/bundler/bundler/pull/7474)
16
- - Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/bundler/bundler/pull/7442)
17
- - Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/bundler/bundler/pull/7418)
18
- - Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/bundler/bundler/pull/7419)
109
+ - Fix `bundle exec rake install` failing [#7474](https://github.com/rubygems/bundler/pull/7474)
110
+ - Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/rubygems/bundler/pull/7442)
111
+ - Restore previous `BUNDLE_GEMFILE` in `bundler/inline` [#7418](https://github.com/rubygems/bundler/pull/7418)
112
+ - Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/rubygems/bundler/pull/7419)
19
113
 
20
114
  Changes:
21
115
 
22
- - `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
23
- - `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
116
+ - `bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/rubygems/bundler/pull/7475)
117
+ - `bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/rubygems/bundler/pull/7475)
24
118
 
25
119
  ## 2.1.0.pre.3 (November 12, 2019)
26
120
 
27
121
  Features:
28
122
 
29
- - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/bundler/bundler/pull/7361)
30
- - Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias [#7389](https://github.com/bundler/bundler/pull/7389)
31
- - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/bundler/bundler/pull/7394)
123
+ - Add caller information to some deprecation messages to make them easier to fix [#7361](https://github.com/rubygems/bundler/pull/7361)
124
+ - Reconcile `bundle cache` vs `bundle package` everywhere. Now in docs, CLI help and everywhere else `bundle cache` is the preferred version and `bundle package` remains as an alias [#7389](https://github.com/rubygems/bundler/pull/7389)
125
+ - Display some basic `bundler` documentation together with ruby's RDoc based documentation [#7394](https://github.com/rubygems/bundler/pull/7394)
32
126
 
33
127
  Bugfixes:
34
128
 
35
- - Fix typos deprecation message and upgrading docs [#7374](https://github.com/bundler/bundler/pull/7374)
36
- - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/bundler/bundler/pull/7385)
37
- - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/bundler/bundler/pull/7388)
38
- - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/bundler/bundler/pull/7393)
39
- - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/bundler/bundler/pull/7416)
40
- - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/bundler/bundler/pull/7417)
129
+ - Fix typos deprecation message and upgrading docs [#7374](https://github.com/rubygems/bundler/pull/7374)
130
+ - Deprecation warnings about `taint` usage on ruby 2.7 [#7385](https://github.com/rubygems/bundler/pull/7385)
131
+ - Fix `--help` flag not correctly delegating to `man` when used with command aliases [#7388](https://github.com/rubygems/bundler/pull/7388)
132
+ - `bundle add` should cache newly added gems if an application cache exists [#7393](https://github.com/rubygems/bundler/pull/7393)
133
+ - Stop using an insecure folder as a "fallback home" when user home is not defined [#7416](https://github.com/rubygems/bundler/pull/7416)
134
+ - Fix `bundler/inline` warning about `Bundler.root` redefinition [#7417](https://github.com/rubygems/bundler/pull/7417)
41
135
 
42
136
  ## 2.1.0.pre.2 (September 15, 2019)
43
137
 
44
138
  Bugfixes:
45
139
 
46
- - Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/bundler/bundler/pull/7340))
47
- - Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))
140
+ - Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/rubygems/bundler/pull/7340))
141
+ - Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/rubygems/bundler/pull/7337))
48
142
 
49
143
  ## 2.1.0.pre.1 (August 28, 2019)
50
144
 
@@ -52,7 +146,7 @@ One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
52
146
  breaking changes in bundler 3 will be turned on by default. We do this to grab
53
147
  feedback and communicate early to our users the kind of changes we're intending
54
148
  to ship with bundler 3. See
55
- [#6965](https://github.com/bundler/bundler/pull/6965).
149
+ [#6965](https://github.com/rubygems/bundler/pull/6965).
56
150
 
57
151
  Another important improvement is a better coexistence between bundler
58
152
  installations and the default copy of bundler that comes with ruby installed as
@@ -61,14 +155,14 @@ users have been affected by issues where bundler ends up failing due to version
61
155
  mismatches, because at some point of the execution, bundler switches to run the
62
156
  default copy instead of the expected version. A number of PRs have been focused
63
157
  on minimizing (hopefully eliminating) this, such as
64
- [#7100](https://github.com/bundler/bundler/pull/7100),
65
- [#7137](https://github.com/bundler/bundler/pull/7137),
66
- [#6996](https://github.com/bundler/bundler/pull/6996),
67
- [#7056](https://github.com/bundler/bundler/pull/7056),
68
- [#7062](https://github.com/bundler/bundler/pull/7062),
69
- [#7193](https://github.com/bundler/bundler/pull/7193),
70
- [#7216](https://github.com/bundler/bundler/pull/7216),
71
- [#7274](https://github.com/bundler/bundler/pull/7274)
158
+ [#7100](https://github.com/rubygems/bundler/pull/7100),
159
+ [#7137](https://github.com/rubygems/bundler/pull/7137),
160
+ [#6996](https://github.com/rubygems/bundler/pull/6996),
161
+ [#7056](https://github.com/rubygems/bundler/pull/7056),
162
+ [#7062](https://github.com/rubygems/bundler/pull/7062),
163
+ [#7193](https://github.com/rubygems/bundler/pull/7193),
164
+ [#7216](https://github.com/rubygems/bundler/pull/7216),
165
+ [#7274](https://github.com/rubygems/bundler/pull/7274)
72
166
 
73
167
  Deprecations:
74
168
 
@@ -78,67 +172,67 @@ Deprecations:
78
172
 
79
173
  Features:
80
174
 
81
- - Reimplement `config` command using subcommands ([#5981](https://github.com/bundler/bundler/pull/5981))
82
- - Add `bundle plugin list` command ([#6120](https://github.com/bundler/bundler/pull/6120))
83
- - Introduce a `bundle lock --gemfile` flag ([#6748](https://github.com/bundler/bundler/pull/6748))
84
- - Add local git repository source option (`--local_git`) to plugin installation ([#6749](https://github.com/bundler/bundler/pull/6749))
85
- - Add `quiet` flag to inline bundler ([#6828](https://github.com/bundler/bundler/pull/6828))
86
- - Introduce a `prefer_patch` configuration that makes `bundle update` behave like `bundle update --patch` ([#6931](https://github.com/bundler/bundler/pull/6931))
87
- - Introduce `Bundler.original_system` and `Bundler.original_exec` to shell out or exec to external programs using the original environment before bundler was loaded ([#7052](https://github.com/bundler/bundler/pull/7052))
88
- - Add feature parity to `bundle info GEM` with respect to the old deprecated command `bundle show GEM` [#7026](https://github.com/bundler/bundler/pull/7026)
89
- - Introduce `bundle list` to list groups of gems in your Gemfile. This command was actually documented, but was working as an alias to `bundle show` so this could also be considered a bug fix :) [#7072](https://github.com/bundler/bundler/pull/7072)
90
- - Introduce `bundle outdated --filter-strict` as an alias to `bundle outdated --strict` [#6030](https://github.com/bundler/bundler/pull/6030)
91
- - Add `:git` and `:branch` options to `bundle add` ([#7127](https://github.com/bundler/bundler/pull/7127))
92
- - Add `:ruby_26` as a valid value to the `:platform(s)` dsl ([#7155](https://github.com/bundler/bundler/pull/7155))
93
- - Let the `bundle cache` command include all features currently provided by `bundle package` ([#7249](https://github.com/bundler/bundler/pull/7249))
94
- - Several improvements on new gem templates ([#6924](https://github.com/bundler/bundler/pull/6924), [#6968](https://github.com/bundler/bundler/pull/6968), [#7209](https://github.com/bundler/bundler/pull/7209), [#7222](https://github.com/bundler/bundler/pull/7222), [#7238](https://github.com/bundler/bundler/pull/7238))
95
- - Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/bundler/bundler/pull/7263))
96
-
97
- Bugfixes:
98
-
99
- - Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/bundler/bundler/pull/5985))
100
- - Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/bundler/bundler/pull/5954))
101
- - Remove downloaded `.gem` file from the cache if it's corrupted ([#6010](https://github.com/bundler/bundler/pull/6010))
102
- - Fix generated README in new gems to explicitly suggest running `bundle install`, so that the outcome is independent from the major version of bundler being run ([#6068](https://github.com/bundler/bundler/pull/6068))
103
- - Fix `bundle outdated --group NAME` when the group is listed second in the Gemfile ([#6116](https://github.com/bundler/bundler/pull/6116))
104
- - Improve conflict resolution messages by not calling "ruby" a gem when conflict happens in the `required_ruby_version`, and by filtering out requirements that didn't contribute to the conflict ([#6647](https://github.com/bundler/bundler/pull/6647))
105
- - Avoid fetching and rebuilding git gems whenever any gem is changed in the Gemfile ([#6711](https://github.com/bundler/bundler/pull/6711))
106
- - Include the exact bundler version in the lock file in the suggested command when bundler warns about version mismatches of itself [#6971](https://github.com/bundler/bundler/pull/6971)
107
- - Fix plugins being installed every time a command is run #[#6978](https://github.com/bundler/bundler/pull/6978)
108
- - Fallback to sequentially fetching specs on 429s [#6728](https://github.com/bundler/bundler/pull/6728)
109
- - Make `bundle clean` also clean native extensions for gems with a git source [#7058](https://github.com/bundler/bundler/pull/7058)
110
- - Fix `bundle info bundler` to show the correct path to the bundler gem [#7026](https://github.com/bundler/bundler/pull/7026)
111
- - Fix `bundle config build.<gem>` not sending multiple parameters to `extconf.rb` correctly [#7023](https://github.com/bundler/bundler/pull/7023)
112
- - Fix bad error message on Gemfile errors under ruby 2.7 (still unreleased, but it's a bugfix for beta testers after all) [#7038](https://github.com/bundler/bundler/pull/7038)
113
- - Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/bundler/bundler/pull/7075))
114
- - Ignore `frozen` setting in inline mode ([#7125](https://github.com/bundler/bundler/pull/7125))
115
- - Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/bundler/bundler/pull/6325))
116
- - Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
117
- - Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/bundler/bundler/pull/6928))
118
- - Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/bundler/bundler/pull/7063))
119
- - Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/bundler/bundler/pull/7143))
120
- - Fix `bundle exec` not respecting custom process titles inside scripts ([#7140](https://github.com/bundler/bundler/pull/7140))
121
- - Fix `bundle update` message about exclude groups saying "installed" instead of "updated" ([#7150](https://github.com/bundler/bundler/pull/7150))
122
- - Fix `bundle licenses` not showing correct information about bundler itself ([#7147](https://github.com/bundler/bundler/pull/7147))
123
- - Fix installation path not including ruby scope when `BUNDLE_PATH` was set ([#7163](https://github.com/bundler/bundler/pull/7163))
124
- - Fix `bundle clean` incorrectly removing git depedencies present in the Gemfile when rubygems 3.0+ was used and path involved a symlink ([#7211](https://github.com/bundler/bundler/pull/7211))
125
- - Fix platform specific gems always being re-resolved when bundler was not running under that platform ([#7212](https://github.com/bundler/bundler/pull/7212))
126
- - Fix `bundle package --all-platforms` causing `bundle install` to ignore `--with` and `--without` ([#6113](https://github.com/bundler/bundler/pull/6113))
127
- - Fix `MissingRevision` git errors to include the specific `git` command that failed under the hood ([#7225](https://github.com/bundler/bundler/pull/7225))
128
- - Fix using gemspec & `force_ruby_platform` on Windows ([#6809](https://github.com/bundler/bundler/pull/6809))
129
- - Make bundler's binstub checks on bundler version consistent with rubygems `BundlerVersionFinder` ([#7259](https://github.com/bundler/bundler/pull/7259))
130
- - Fix `bundle install` and `bundle update` generating different lockfiles when `path:` gems with relative paths starting with "./" were used ([#7264](https://github.com/bundler/bundler/pull/7264))
131
- - Give a proper error when user tries to `bundle open` a default gem ([#7288](https://github.com/bundler/bundler/pull/7288))
132
- - Fix `bundle doctor` command ([#7309](https://github.com/bundler/bundler/pull/7309))
133
- - Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/bundler/bundler/pull/7302))
175
+ - Reimplement `config` command using subcommands ([#5981](https://github.com/rubygems/bundler/pull/5981))
176
+ - Add `bundle plugin list` command ([#6120](https://github.com/rubygems/bundler/pull/6120))
177
+ - Introduce a `bundle lock --gemfile` flag ([#6748](https://github.com/rubygems/bundler/pull/6748))
178
+ - Add local git repository source option (`--local_git`) to plugin installation ([#6749](https://github.com/rubygems/bundler/pull/6749))
179
+ - Add `quiet` flag to inline bundler ([#6828](https://github.com/rubygems/bundler/pull/6828))
180
+ - Introduce a `prefer_patch` configuration that makes `bundle update` behave like `bundle update --patch` ([#6931](https://github.com/rubygems/bundler/pull/6931))
181
+ - Introduce `Bundler.original_system` and `Bundler.original_exec` to shell out or exec to external programs using the original environment before bundler was loaded ([#7052](https://github.com/rubygems/bundler/pull/7052))
182
+ - Add feature parity to `bundle info GEM` with respect to the old deprecated command `bundle show GEM` [#7026](https://github.com/rubygems/bundler/pull/7026)
183
+ - Introduce `bundle list` to list groups of gems in your Gemfile. This command was actually documented, but was working as an alias to `bundle show` so this could also be considered a bug fix :) [#7072](https://github.com/rubygems/bundler/pull/7072)
184
+ - Introduce `bundle outdated --filter-strict` as an alias to `bundle outdated --strict` [#6030](https://github.com/rubygems/bundler/pull/6030)
185
+ - Add `:git` and `:branch` options to `bundle add` ([#7127](https://github.com/rubygems/bundler/pull/7127))
186
+ - Add `:ruby_26` as a valid value to the `:platform(s)` dsl ([#7155](https://github.com/rubygems/bundler/pull/7155))
187
+ - Let the `bundle cache` command include all features currently provided by `bundle package` ([#7249](https://github.com/rubygems/bundler/pull/7249))
188
+ - Several improvements on new gem templates ([#6924](https://github.com/rubygems/bundler/pull/6924), [#6968](https://github.com/bundler/bundler/pull/6968), [#7209](https://github.com/bundler/bundler/pull/7209), [#7222](https://github.com/bundler/bundler/pull/7222), [#7238](https://github.com/bundler/bundler/pull/7238))
189
+ - Add `--[no-]git` option to `bundle gem` to generate non source control gems. Useful for monorepos, for example ([#7263](https://github.com/rubygems/bundler/pull/7263))
190
+
191
+ Bugfixes:
192
+
193
+ - Raise when the same gem is available in multiple sources, and show a suggestion to solve it ([#5985](https://github.com/rubygems/bundler/pull/5985))
194
+ - Validate that bundler has permissions to write to the tmp directory, and raise with a meaningful error otherwise ([#5954](https://github.com/rubygems/bundler/pull/5954))
195
+ - Remove downloaded `.gem` file from the cache if it's corrupted ([#6010](https://github.com/rubygems/bundler/pull/6010))
196
+ - Fix generated README in new gems to explicitly suggest running `bundle install`, so that the outcome is independent from the major version of bundler being run ([#6068](https://github.com/rubygems/bundler/pull/6068))
197
+ - Fix `bundle outdated --group NAME` when the group is listed second in the Gemfile ([#6116](https://github.com/rubygems/bundler/pull/6116))
198
+ - Improve conflict resolution messages by not calling "ruby" a gem when conflict happens in the `required_ruby_version`, and by filtering out requirements that didn't contribute to the conflict ([#6647](https://github.com/rubygems/bundler/pull/6647))
199
+ - Avoid fetching and rebuilding git gems whenever any gem is changed in the Gemfile ([#6711](https://github.com/rubygems/bundler/pull/6711))
200
+ - Include the exact bundler version in the lock file in the suggested command when bundler warns about version mismatches of itself [#6971](https://github.com/rubygems/bundler/pull/6971)
201
+ - Fix plugins being installed every time a command is run #[#6978](https://github.com/rubygems/bundler/pull/6978)
202
+ - Fallback to sequentially fetching specs on 429s [#6728](https://github.com/rubygems/bundler/pull/6728)
203
+ - Make `bundle clean` also clean native extensions for gems with a git source [#7058](https://github.com/rubygems/bundler/pull/7058)
204
+ - Fix `bundle info bundler` to show the correct path to the bundler gem [#7026](https://github.com/rubygems/bundler/pull/7026)
205
+ - Fix `bundle config build.<gem>` not sending multiple parameters to `extconf.rb` correctly [#7023](https://github.com/rubygems/bundler/pull/7023)
206
+ - Fix bad error message on Gemfile errors under ruby 2.7 (still unreleased, but it's a bugfix for beta testers after all) [#7038](https://github.com/rubygems/bundler/pull/7038)
207
+ - Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/rubygems/bundler/pull/7075))
208
+ - Ignore `frozen` setting in inline mode ([#7125](https://github.com/rubygems/bundler/pull/7125))
209
+ - Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/rubygems/bundler/pull/6325))
210
+ - Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/rubygems/bundler/pull/6885))
211
+ - Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/rubygems/bundler/pull/6928))
212
+ - Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/rubygems/bundler/pull/7063))
213
+ - Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/rubygems/bundler/pull/7143))
214
+ - Fix `bundle exec` not respecting custom process titles inside scripts ([#7140](https://github.com/rubygems/bundler/pull/7140))
215
+ - Fix `bundle update` message about exclude groups saying "installed" instead of "updated" ([#7150](https://github.com/rubygems/bundler/pull/7150))
216
+ - Fix `bundle licenses` not showing correct information about bundler itself ([#7147](https://github.com/rubygems/bundler/pull/7147))
217
+ - Fix installation path not including ruby scope when `BUNDLE_PATH` was set ([#7163](https://github.com/rubygems/bundler/pull/7163))
218
+ - Fix `bundle clean` incorrectly removing git depedencies present in the Gemfile when rubygems 3.0+ was used and path involved a symlink ([#7211](https://github.com/rubygems/bundler/pull/7211))
219
+ - Fix platform specific gems always being re-resolved when bundler was not running under that platform ([#7212](https://github.com/rubygems/bundler/pull/7212))
220
+ - Fix `bundle package --all-platforms` causing `bundle install` to ignore `--with` and `--without` ([#6113](https://github.com/rubygems/bundler/pull/6113))
221
+ - Fix `MissingRevision` git errors to include the specific `git` command that failed under the hood ([#7225](https://github.com/rubygems/bundler/pull/7225))
222
+ - Fix using gemspec & `force_ruby_platform` on Windows ([#6809](https://github.com/rubygems/bundler/pull/6809))
223
+ - Make bundler's binstub checks on bundler version consistent with rubygems `BundlerVersionFinder` ([#7259](https://github.com/rubygems/bundler/pull/7259))
224
+ - Fix `bundle install` and `bundle update` generating different lockfiles when `path:` gems with relative paths starting with "./" were used ([#7264](https://github.com/rubygems/bundler/pull/7264))
225
+ - Give a proper error when user tries to `bundle open` a default gem ([#7288](https://github.com/rubygems/bundler/pull/7288))
226
+ - Fix `bundle doctor` command ([#7309](https://github.com/rubygems/bundler/pull/7309))
227
+ - Fix bundler giving an unclear recommendation when duplicated gems are found in the Gemfile ([#7302](https://github.com/rubygems/bundler/pull/7302))
134
228
 
135
229
  Documentation:
136
230
 
137
- - Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/bundler/bundler/pull/7146)
138
- - Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/bundler/bundler/pull/7229))
139
- - Binstubs documentation has been improved ([#5889](https://github.com/bundler/bundler/pull/5889))
140
- - Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/bundler/bundler/pull/7265))
141
- - Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/bundler/bundler/pull/7242))
231
+ - Fix typo on a file extension in `bundle.ronn` [#7146](https://github.com/rubygems/bundler/pull/7146)
232
+ - Fix incorrect default value for `cache_path` configuration ([#7229](https://github.com/rubygems/bundler/pull/7229))
233
+ - Binstubs documentation has been improved ([#5889](https://github.com/rubygems/bundler/pull/5889))
234
+ - Fix incorrect sections when explaining `:git`, `:branch`, and `:ref` options ([#7265](https://github.com/rubygems/bundler/pull/7265))
235
+ - Fix mentions to remembered options in docs to explain the current state ([#7242](https://github.com/rubygems/bundler/pull/7242))
142
236
 
143
237
  Internally, there's also been a bunch of improvements in our development
144
238
  environment, test suite, policies, contributing docs, and a bunch of cleanups of
@@ -148,33 +242,33 @@ old compatibility code.
148
242
 
149
243
  Changes:
150
244
 
151
- - Fixes for Bundler integration with ruby-src ([#6941](https://github.com/bundler/bundler/pull/6941), [#6973](https://github.com/bundler/bundler/pull/6973), [#6977](https://github.com/bundler/bundler/pull/6977), [#6315](https://github.com/bundler/bundler/pull/6315), [#7061](https://github.com/bundler/bundler/pull/7061))
152
- - Use `__dir__` instead of `__FILE__` when generating a gem with `bundle gem` ([#6503](https://github.com/bundler/bundler/pull/6503))
153
- - Use `https` on externals links in the Bundler gemspec ([#6721](https://github.com/bundler/bundler/pull/6721))
154
- - Removed duplicate gem names from the suggested `did you mean` list for gem typos ([#6739](https://github.com/bundler/bundler/pull/6739))
155
- - Removed Ruby 1.x compatibility code ([#6764](https://github.com/bundler/bundler/pull/6764), [#6806](https://github.com/bundler/bundler/pull/6806))
156
- - Fixed an issue where `bundle remove` would crash with certain Gemfiles ([#6768](https://github.com/bundler/bundler/pull/6769))
157
- - Fixed indentation in the Bundler executable template ([#6773](https://github.com/bundler/bundler/pull/6773))
158
- - Fixed an issue where plugins could register for the same Bundler hook multiple times ([#6775](https://github.com/bundler/bundler/pull/6775))
159
- - Changed the "multiple sources" message in `bundle install` to be a warning instead of an error ([#6790](https://github.com/bundler/bundler/pull/6790))
160
- - Fixed a bug where path gems would break when using `only_update_to_newer_versions` ([#6774](https://github.com/bundler/bundler/pull/6774))
161
- - Fixed a bug where installing plugins with the `--deployment` setting would fail ([#6805](https://github.com/bundler/bundler/pull/6805))
162
- - Fixed an issue where `bundle update` couldn't update & install a gem when `no_install` was set (a `bundle package` config) ([#7078](https://github.com/bundler/bundler/pull/7078))
163
- - Fixed an issue where users could not run `bundle exec` on default gems ([#6963](https://github.com/bundler/bundler/pull/6963))
164
- - Updated vendor libraries to their latest version ([#7076](https://github.com/bundler/bundler/pull/7067), [#7068](https://github.com/bundler/bundler/pull/7068))
165
- - Fixed an issue where the `github` source was not using `https` by default that we mentioned in the 2.0 release ([#7182](https://github.com/bundler/bundler/pull/7182))
166
- - Fixed an issue where `rake release` was not outputting the message to users asking for a 2fa token ([#7199](https://github.com/bundler/bundler/pull/7199))
245
+ - Fixes for Bundler integration with ruby-src ([#6941](https://github.com/rubygems/bundler/pull/6941), [#6973](https://github.com/bundler/bundler/pull/6973), [#6977](https://github.com/bundler/bundler/pull/6977), [#6315](https://github.com/bundler/bundler/pull/6315), [#7061](https://github.com/bundler/bundler/pull/7061))
246
+ - Use `__dir__` instead of `__FILE__` when generating a gem with `bundle gem` ([#6503](https://github.com/rubygems/bundler/pull/6503))
247
+ - Use `https` on externals links in the Bundler gemspec ([#6721](https://github.com/rubygems/bundler/pull/6721))
248
+ - Removed duplicate gem names from the suggested `did you mean` list for gem typos ([#6739](https://github.com/rubygems/bundler/pull/6739))
249
+ - Removed Ruby 1.x compatibility code ([#6764](https://github.com/rubygems/bundler/pull/6764), [#6806](https://github.com/bundler/bundler/pull/6806))
250
+ - Fixed an issue where `bundle remove` would crash with certain Gemfiles ([#6768](https://github.com/rubygems/bundler/pull/6769))
251
+ - Fixed indentation in the Bundler executable template ([#6773](https://github.com/rubygems/bundler/pull/6773))
252
+ - Fixed an issue where plugins could register for the same Bundler hook multiple times ([#6775](https://github.com/rubygems/bundler/pull/6775))
253
+ - Changed the "multiple sources" message in `bundle install` to be a warning instead of an error ([#6790](https://github.com/rubygems/bundler/pull/6790))
254
+ - Fixed a bug where path gems would break when using `only_update_to_newer_versions` ([#6774](https://github.com/rubygems/bundler/pull/6774))
255
+ - Fixed a bug where installing plugins with the `--deployment` setting would fail ([#6805](https://github.com/rubygems/bundler/pull/6805))
256
+ - Fixed an issue where `bundle update` couldn't update & install a gem when `no_install` was set (a `bundle package` config) ([#7078](https://github.com/rubygems/bundler/pull/7078))
257
+ - Fixed an issue where users could not run `bundle exec` on default gems ([#6963](https://github.com/rubygems/bundler/pull/6963))
258
+ - Updated vendor libraries to their latest version ([#7076](https://github.com/rubygems/bundler/pull/7067), [#7068](https://github.com/bundler/bundler/pull/7068))
259
+ - Fixed an issue where the `github` source was not using `https` by default that we mentioned in the 2.0 release ([#7182](https://github.com/rubygems/bundler/pull/7182))
260
+ - Fixed an issue where `rake release` was not outputting the message to users asking for a 2fa token ([#7199](https://github.com/rubygems/bundler/pull/7199))
167
261
 
168
262
  Documentation:
169
263
 
170
- - Fix incorrect documented `BUNDLE_PATH_RELATIVE_TO_CWD` env var ([#6751](https://github.com/bundler/bundler/pull/6751))
171
- - Update URLs in Bundler's documentation to use `https` ([#6935](https://github.com/bundler/bundler/pull/6935))
264
+ - Fix incorrect documented `BUNDLE_PATH_RELATIVE_TO_CWD` env var ([#6751](https://github.com/rubygems/bundler/pull/6751))
265
+ - Update URLs in Bundler's documentation to use `https` ([#6935](https://github.com/rubygems/bundler/pull/6935))
172
266
 
173
267
  ## 2.0.1 (2019-01-04)
174
268
 
175
269
  Changes:
176
270
 
177
- - Relaxed RubyGems requirement to `>= 2.5.0` ([#6867](https://github.com/bundler/bundler/pull/6867))
271
+ - Relaxed RubyGems requirement to `>= 2.5.0` ([#6867](https://github.com/rubygems/bundler/pull/6867))
178
272
 
179
273
  ## 2.0.0 (2019-01-03)
180
274
 
@@ -219,8 +313,8 @@ Note: To upgrade your Gemfile to Bundler 2 you will need to run `bundle update -
219
313
 
220
314
  Bugfixes:
221
315
 
222
- - Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/bundler/bundler/issues/6839), @colby-swandale)
223
- - Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/bundler/bundler/issues/6829), @colby-swandale)
316
+ - Fix a Bundler error when installing gems on old versions of RubyGems ([#6839](https://github.com/rubygems/bundler/issues/6839), @colby-swandale)
317
+ - Fix a rare issue where Bundler was removing itself after a `bundle clean` ([#6829](https://github.com/rubygems/bundler/issues/6829), @colby-swandale)
224
318
 
225
319
  Documentation:
226
320
 
@@ -232,7 +326,7 @@ Documentation:
232
326
 
233
327
  ## 1.17.1 (2018-10-25)
234
328
 
235
- - Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/bundler/bundler/pull/6761), @alexggordon)
329
+ - Convert `Pathname`s to `String`s before sorting them, fixing #6760 and #6758 ([#6761](https://github.com/rubygems/bundler/pull/6761), @alexggordon)
236
330
 
237
331
  ## 1.17.0 (2018-10-25)
238
332
 
@@ -242,7 +336,7 @@ No new changes.
242
336
 
243
337
  Features:
244
338
 
245
- - 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)
339
+ - 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/rubygems/bundler/issues/4333), @gwerbin)
246
340
  - Add `--all` option to `bundle binstubs` that will generate an executable file for all gems with commands in the bundle
247
341
  - Add `bundle remove` command to remove gems from the Gemfile via the CLI
248
342
  - Improve checking file permissions and asking for `sudo` in Bundler when it doesn't need to
@@ -258,47 +352,47 @@ The following new features are available but are not enabled by default. These a
258
352
 
259
353
  Features:
260
354
 
261
- - Check folder/file permissions of the Bundle home directory in the `bundle doctor` command ([#5786](https://github.com/bundler/bundler/issues/5786), @ajwann)
262
- - Remove compiled gem extensions when running `bundle clean` ([#5596](https://github.com/bundler/bundler/issues/5596), @akhramov)
263
- - Add `--paths` option to `bundle list` command ([#6172](https://github.com/bundler/bundler/issues/6172), @colby-swandale)
264
- - Add base error class to gems generated from `bundle gem` ([#6260](https://github.com/bundler/bundler/issues/6260), @christhekeele)
265
- - Correctly re-install gem extensions with a git source when running `bundle pristine` ([#6294](https://github.com/bundler/bundler/issues/6294), @wagenet)
266
- - Add config option to disable platform warnings ([#6124](https://github.com/bundler/bundler/issues/6124), @agrim123)
267
- - 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)
268
- - Add `--only-explicit` option to `bundle outdated` to list only outdated gems in the Gemfile ([#5366](https://github.com/bundler/bundler/issues/5366), @peret)
269
- - Support adding multiple gems to the Gemfile with `bundle add` ([#6543](https://github.com/bundler/bundler/issues/6543), @agrim123)
355
+ - Check folder/file permissions of the Bundle home directory in the `bundle doctor` command ([#5786](https://github.com/rubygems/bundler/issues/5786), @ajwann)
356
+ - Remove compiled gem extensions when running `bundle clean` ([#5596](https://github.com/rubygems/bundler/issues/5596), @akhramov)
357
+ - Add `--paths` option to `bundle list` command ([#6172](https://github.com/rubygems/bundler/issues/6172), @colby-swandale)
358
+ - Add base error class to gems generated from `bundle gem` ([#6260](https://github.com/rubygems/bundler/issues/6260), @christhekeele)
359
+ - Correctly re-install gem extensions with a git source when running `bundle pristine` ([#6294](https://github.com/rubygems/bundler/issues/6294), @wagenet)
360
+ - Add config option to disable platform warnings ([#6124](https://github.com/rubygems/bundler/issues/6124), @agrim123)
361
+ - Add `--skip-install` option to `bundle add` command to add gems to the Gemfile without installation ([#6511](https://github.com/rubygems/bundler/issues/6511), @agrim123)
362
+ - Add `--only-explicit` option to `bundle outdated` to list only outdated gems in the Gemfile ([#5366](https://github.com/rubygems/bundler/issues/5366), @peret)
363
+ - Support adding multiple gems to the Gemfile with `bundle add` ([#6543](https://github.com/rubygems/bundler/issues/6543), @agrim123)
270
364
  - Make registered plugin events easier to manage in the Plugin API (@jules2689)
271
365
  - Add new gem install hooks to the Plugin API (@jules2689)
272
- - Add `--optimistic` and `--strict` options to `bundle add` ([#6553](https://github.com/bundler/bundler/issues/6553), @agrim123)
273
- - Add `--without-group` and `--only-group` options to `bundle list` ([#6564](https://github.com/bundler/bundler/issues/6564), @agrim123)
274
- - Add `--gemfile` option to the `bundle exec` command ([#5924](https://github.com/bundler/bundler/issues/5924), @ankitkataria)
366
+ - Add `--optimistic` and `--strict` options to `bundle add` ([#6553](https://github.com/rubygems/bundler/issues/6553), @agrim123)
367
+ - Add `--without-group` and `--only-group` options to `bundle list` ([#6564](https://github.com/rubygems/bundler/issues/6564), @agrim123)
368
+ - Add `--gemfile` option to the `bundle exec` command ([#5924](https://github.com/rubygems/bundler/issues/5924), @ankitkataria)
275
369
 
276
370
  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.
277
371
 
278
- - Make `install --path` relative to the current working directory ([#2048](https://github.com/bundler/bundler/issues/2048), @igorbozato)
279
- - Auto-configure job count ([#5808](https://github.com/bundler/bundler/issues/5808), @segiddins)
280
- - Use the Gem Version Promoter for major gem updates ([#5993](https://github.com/bundler/bundler/issues/5993), @segiddins)
372
+ - Make `install --path` relative to the current working directory ([#2048](https://github.com/rubygems/bundler/issues/2048), @igorbozato)
373
+ - Auto-configure job count ([#5808](https://github.com/rubygems/bundler/issues/5808), @segiddins)
374
+ - Use the Gem Version Promoter for major gem updates ([#5993](https://github.com/rubygems/bundler/issues/5993), @segiddins)
281
375
  - Add config option to add the Ruby scope to `bundle config path` when configured globally (@segiddins)
282
376
 
283
377
  ## 1.16.6 (2018-10-05)
284
378
 
285
379
  Changes:
286
380
 
287
- - 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)
381
+ - Add an error message when adding a gem with `bundle add` that's already in the bundle ([#6341](https://github.com/rubygems/bundler/issues/6341), @agrim123)
288
382
  - Add Homepage, Source Code and Changelog URI metadata fields to the `bundle gem` gemspec template (@walf443)
289
383
 
290
384
  Bugfixes:
291
385
 
292
- - 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)
386
+ - 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/rubygems/bundler/issues/6529), @theflow)
293
387
  - Fix some rescue calls that don't specifiy error type (@utilum)
294
- - 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)
388
+ - Fix an issue when the Lockfile would contain platform-specific gems that it didn't need ([#6491](https://github.com/rubygems/bundler/issues/6491), @segiddins)
295
389
  - Improve handling of adding new gems with only a single group to the Gemfile in `bundle add` (@agrim123)
296
390
  - Refactor check for OpenSSL in `bundle env` (@voxik)
297
391
  - Remove an unnecessary assignment in Metadata (@voxik)
298
392
 
299
393
  Documentation:
300
394
 
301
- - 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)
395
+ - Update docs to reflect revised guidance to check in Gemfile.lock into version control for gems ([#5879](https://github.com/rubygems/bundler/issues/5879), @arbonap)
302
396
  - Add documentation for the `--all` flag in `bundle update` (@agrim123)
303
397
  - Update README to use `bundle add` in usage examples (@hdf1986)
304
398
 
@@ -310,13 +404,13 @@ Changes:
310
404
 
311
405
  Bugfixes:
312
406
 
313
- - Avoid printing git errors when checking the version on incorrectly packaged versions of Bundler ([#6453](https://github.com/bundler/bundler/issues/6453), @greysteil)
407
+ - Avoid printing git errors when checking the version on incorrectly packaged versions of Bundler ([#6453](https://github.com/rubygems/bundler/issues/6453), @greysteil)
314
408
  - Fix issue where Bundler does not check the given class when comparing equality in DepProxy (@ChrisBr)
315
409
  - Handle `RangeNotSatisfiable` error in Compact Index (@MaxLap)
316
410
  - Check for initialized `search` variable in `LazySpecification` (@voxik)
317
- - Fix LoadError occurring in nested bundle exec calls ([#6537](https://github.com/bundler/bundler/issues/6537), @colby-swandale)
318
- - Check that Bundler::Deprecate is not an autoload constant ([#6163](https://github.com/bundler/bundler/issues/6163), @eregon)
319
- - Prefer non-pre-release versions when performing a `bundle update --patch` ([#6684](https://github.com/bundler/bundler/issues/6684), @segiddins)
411
+ - Fix LoadError occurring in nested bundle exec calls ([#6537](https://github.com/rubygems/bundler/issues/6537), @colby-swandale)
412
+ - Check that Bundler::Deprecate is not an autoload constant ([#6163](https://github.com/rubygems/bundler/issues/6163), @eregon)
413
+ - Prefer non-pre-release versions when performing a `bundle update --patch` ([#6684](https://github.com/rubygems/bundler/issues/6684), @segiddins)
320
414
 
321
415
  ## 1.16.4 (2018-08-17)
322
416
 
@@ -328,11 +422,11 @@ Changes:
328
422
 
329
423
  Bugfixes:
330
424
 
331
- - 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)
332
- - Respect --conservative flag when updating a dependency group ([#6560](https://github.com/bundler/bundler/issues/6560), @greysteil)
333
- - 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)
334
- - Fix issue where `Etc` was not loaded when getting the user's home dir ([#6640](https://github.com/bundler/bundler/issues/6640), @colby-swandale)
335
- - Use UTF-8 for reading files including Gemfile ([#6660](https://github.com/bundler/bundler/issues/6660), @eregon)
425
+ - Reword bundle update regression message to be more clear to the user when a gem's version is downgraded ([#6584](https://github.com/rubygems/bundler/issues/6584), @ralphbolo)
426
+ - Respect --conservative flag when updating a dependency group ([#6560](https://github.com/rubygems/bundler/issues/6560), @greysteil)
427
+ - Fix issue where a pre-release version was not being selected when it's specified in the Gemfile ([#6449](https://github.com/rubygems/bundler/issues/6449), @akihiro17)
428
+ - Fix issue where `Etc` was not loaded when getting the user's home dir ([#6640](https://github.com/rubygems/bundler/issues/6640), @colby-swandale)
429
+ - Use UTF-8 for reading files including Gemfile ([#6660](https://github.com/rubygems/bundler/issues/6660), @eregon)
336
430
  - Remove unnecessary `while` loop in path resolver helper (@ojab)
337
431
 
338
432
  Documentation:
@@ -347,18 +441,18 @@ Features:
347
441
 
348
442
  Bugfixes:
349
443
 
350
- - 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)
351
- - Dont let Bundler create temporary folders for gem installs which are owned by root ([#6258](https://github.com/bundler/bundler/issues/6258), @colby-swandale)
352
- - Don't fallback to using temporary directories when needed directories already exist ([#6546](https://github.com/bundler/bundler/issues/6546), @brodock)
353
- - 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)
354
- - Check if source responds to `#remotes` before printing gem install error message ([#6211](https://github.com/bundler/bundler/issues/6211), @colby-swandale)
355
- - 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)
356
- - Respect encodings when reading gemspecs ([#6598](https://github.com/bundler/bundler/issues/6598), @deivid-rodriguez)
444
+ - Expand symlinks during setup to allow Bundler to load correctly when using symlinks in $GEM_HOME ([#6465](https://github.com/rubygems/bundler/issues/6465), @ojab, @indirect)
445
+ - Dont let Bundler create temporary folders for gem installs which are owned by root ([#6258](https://github.com/rubygems/bundler/issues/6258), @colby-swandale)
446
+ - Don't fallback to using temporary directories when needed directories already exist ([#6546](https://github.com/rubygems/bundler/issues/6546), @brodock)
447
+ - Use SharedHelpers.filesystem_access when reading a Gemfile so friendly error messages can be given to the user ([#6541](https://github.com/rubygems/bundler/issues/6541), @segiddins)
448
+ - Check if source responds to `#remotes` before printing gem install error message ([#6211](https://github.com/rubygems/bundler/issues/6211), @colby-swandale)
449
+ - Handle Errno::ENOTSUP in the Bundler Process Lock to prevent exceptions when using NFS mounts ([#6566](https://github.com/rubygems/bundler/issues/6566), @colby-swandale)
450
+ - Respect encodings when reading gemspecs ([#6598](https://github.com/rubygems/bundler/issues/6598), @deivid-rodriguez)
357
451
 
358
452
  Documentation:
359
453
 
360
454
  - Fix links between manual pages (@BanzaiMan)
361
- - Add warning to Gemfile documentation for the use of the `source` option when declaring gems ([#6280](https://github.com/bundler/bundler/issues/6280), @forestgagnon)
455
+ - Add warning to Gemfile documentation for the use of the `source` option when declaring gems ([#6280](https://github.com/rubygems/bundler/issues/6280), @forestgagnon)
362
456
 
363
457
  ## 1.16.2 (2018-04-20)
364
458
 
@@ -366,7 +460,7 @@ Changes:
366
460
 
367
461
  - Include the gem's source in the gem install error message when available (@papanikge)
368
462
  - Remove unnecessary executable bit from gem template (@voxik)
369
- - Dont add the timestamp comment with gems added to the Gemfile via `bundle add` ([#6193](https://github.com/bundler/bundler/issues/6193), @cpgo)
463
+ - Dont add the timestamp comment with gems added to the Gemfile via `bundle add` ([#6193](https://github.com/rubygems/bundler/issues/6193), @cpgo)
370
464
  - Improve yanked gem error message (@alyssais)
371
465
  - Use `Bundler.rubygems.inflate` instead of the Gem::Util method directly (@segiddins)
372
466
  - Remove unused instance variable (@segiddins)
@@ -375,26 +469,26 @@ Bugfixes:
375
469
 
376
470
  - Only trap INT signal and have Ruby's signal default handler be invoked (@shayonj)
377
471
  - Fix warning about the use of `__FILE__` in RubyGems integration testing (@MSP-Greg)
378
- - Skip the outdated bundler check when MD5 is not available ([#6032](https://github.com/bundler/bundler/issues/6032), @segiddins)
472
+ - Skip the outdated bundler check when MD5 is not available ([#6032](https://github.com/rubygems/bundler/issues/6032), @segiddins)
379
473
  - Fallback to the original error if the friendly message raises (@segiddins)
380
- - Rename Bundler.frozen? to avoid Object method conflict ([#6252](https://github.com/bundler/bundler/issues/6252), @segiddins)
474
+ - Rename Bundler.frozen? to avoid Object method conflict ([#6252](https://github.com/rubygems/bundler/issues/6252), @segiddins)
381
475
  - Ensure the bindir exists before installing gems (@segiddins)
382
- - Handle gzip corruption errors in the compact index client ([#6261](https://github.com/bundler/bundler/issues/6261), @colby-swandale)
383
- - Check if the current directory is writeable when writing files in `bundle gem` ([#6219](https://github.com/bundler/bundler/issues/6219), @nilsding)
476
+ - Handle gzip corruption errors in the compact index client ([#6261](https://github.com/rubygems/bundler/issues/6261), @colby-swandale)
477
+ - Check if the current directory is writeable when writing files in `bundle gem` ([#6219](https://github.com/rubygems/bundler/issues/6219), @nilsding)
384
478
  - Fix hang when gemspec has incompatible encoding (@deivid-rodriguez)
385
- - Gracefully handle when the lockfile is missing spec entries for the current platform ([#6079](https://github.com/bundler/bundler/issues/6079), @segiddins)
479
+ - Gracefully handle when the lockfile is missing spec entries for the current platform ([#6079](https://github.com/rubygems/bundler/issues/6079), @segiddins)
386
480
  - Use Gem::Util.inflate instead of Gem.inflate (@hsbt)
387
481
  - Update binstub generator to use new ERB.new arity in Ruby 2.6 (@koic)
388
482
  - Fix `source_location` call in rubygems integration (@MSP-Greg)
389
- - Use `filesystem_access` when copying files in Compact Index Updater ([#6289](https://github.com/bundler/bundler/issues/6289), @segiddins)
390
- - Fail gracefully when resetting git gems to the given revision fails ([#6324](https://github.com/bundler/bundler/issues/6324), @segiddins)
391
- - Handle exceptions that do not have a backtrace ([#6342](https://github.com/bundler/bundler/issues/6342), @nesaulov)
483
+ - Use `filesystem_access` when copying files in Compact Index Updater ([#6289](https://github.com/rubygems/bundler/issues/6289), @segiddins)
484
+ - Fail gracefully when resetting git gems to the given revision fails ([#6324](https://github.com/rubygems/bundler/issues/6324), @segiddins)
485
+ - Handle exceptions that do not have a backtrace ([#6342](https://github.com/rubygems/bundler/issues/6342), @nesaulov)
392
486
  - Check if stderr was closed before writing to it (@shime)
393
- - Handle updating a specific gem for a non-local platform ([#6350](https://github.com/bundler/bundler/issues/6350), @greysteil)
487
+ - Handle updating a specific gem for a non-local platform ([#6350](https://github.com/rubygems/bundler/issues/6350), @greysteil)
394
488
  - Bump the `bundle_binstub` check-length to 300 characters (@tduffield)
395
- - Fix specifying alterntive Lockfile with `bundle lock` when default gemfile is present ([#6460](https://github.com/bundler/bundler/issues/6460), @agrim123)
396
- - Allow installing dependencies when the path is set to `.` ([#6475](https://github.com/bundler/bundler/issues/6475), @segiddins)
397
- - Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/bundler/bundler/issues/6461), @grosser)
489
+ - Fix specifying alterntive Lockfile with `bundle lock` when default gemfile is present ([#6460](https://github.com/rubygems/bundler/issues/6460), @agrim123)
490
+ - Allow installing dependencies when the path is set to `.` ([#6475](https://github.com/rubygems/bundler/issues/6475), @segiddins)
491
+ - Support Bundler installing on a readonly filesystem without a home directory ([#6461](https://github.com/rubygems/bundler/issues/6461), @grosser)
398
492
  - Filter git uri credentials in source description (@segiddins)
399
493
 
400
494
  Documentation:
@@ -402,9 +496,9 @@ Documentation:
402
496
  - Correct typos in `bundle binstubs` man page (@erikj, @samueloph)
403
497
  - Update links in `bundle gem` command documentation to use https (@KrauseFx)
404
498
  - Fix broken links between bundler man pages (@segiddins)
405
- - Add man page for the `bundle doctor` command ([#6243](https://github.com/bundler/bundler/issues/6243), @nholden)
499
+ - Add man page for the `bundle doctor` command ([#6243](https://github.com/rubygems/bundler/issues/6243), @nholden)
406
500
  - Document `# frozen_string_literal` in `bundle init` Gemfile (@315tky)
407
- - 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)
501
+ - 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/rubygems/bundler/issues/6246), @nesaulov)
408
502
  - Small copy tweaks & removed redundant phrasing in the bundler man page (@rubymorillo)
409
503
  - Improve the documentation of the settings load order in Bundler (@rubymorillo)
410
504
  - Added license info to main README (@rubymorillo)
@@ -414,14 +508,14 @@ Documentation:
414
508
 
415
509
  Bugfixes:
416
510
 
417
- - avoid hanging on complex resolver errors ([#6114](https://github.com/bundler/bundler/issues/6114), @halfbyte)
418
- - avoid an error when running `bundle update --group` ([#6156](https://github.com/bundler/bundler/issues/6156), @mattbrictson)
419
- - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/bundler/bundler/issues/6181), @greysteil)
420
- - include bundler's gemspec in the built gem ([#6165](https://github.com/bundler/bundler/issues/6165), @dr-itz)
421
- - ensure locally installed specs are not overridden by those in remote sources during dependency resolution ([#6072](https://github.com/bundler/bundler/issues/6072), @indirect)
511
+ - avoid hanging on complex resolver errors ([#6114](https://github.com/rubygems/bundler/issues/6114), @halfbyte)
512
+ - avoid an error when running `bundle update --group` ([#6156](https://github.com/rubygems/bundler/issues/6156), @mattbrictson)
513
+ - ensure the resolver prefers non-pre-release gems when possible ([#6181](https://github.com/rubygems/bundler/issues/6181), @greysteil)
514
+ - include bundler's gemspec in the built gem ([#6165](https://github.com/rubygems/bundler/issues/6165), @dr-itz)
515
+ - ensure locally installed specs are not overridden by those in remote sources during dependency resolution ([#6072](https://github.com/rubygems/bundler/issues/6072), @indirect)
422
516
  - ensure custom gemfiles are respected in generated binstubs (@pftg)
423
- - 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)
424
- - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/bundler/bundler/issues/6205), @colby-swandale)
517
+ - fail gracefully when loading a bundler-generated binstub when `bin/bundle` was not generated by bundler ([#6149](https://github.com/rubygems/bundler/issues/6149), @hsbt)
518
+ - allow `bundle init` to be run even when a parent directory contains a gemfile ([#6205](https://github.com/rubygems/bundler/issues/6205), @colby-swandale)
425
519
 
426
520
  ## 1.16.0 (2017-10-31)
427
521
 
@@ -430,11 +524,11 @@ Bugfixes:
430
524
  - avoid new RubyGems warning about unsafe YAML loading (to keep output consistent) (@segiddins)
431
525
  - load digest subclasses in a thread-safe manner (@segiddins, @colby-swandale)
432
526
  - avoid unusued variable warnings under ruby 2.5 (@amatsuda)
433
- - fix printing the same message twice in verbose mode ([#6028](https://github.com/bundler/bundler/issues/6028), @akhramov)
434
- - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/bundler/bundler/issues/6090), @dekellum)
527
+ - fix printing the same message twice in verbose mode ([#6028](https://github.com/rubygems/bundler/issues/6028), @akhramov)
528
+ - allow `SignalException`s to bubble up to the interpreter during `bundle exec` ([#6090](https://github.com/rubygems/bundler/issues/6090), @dekellum)
435
529
  - avoid activating stdlib digest under Ruby 2.5 (@segiddins)
436
530
  - prioritise explicitly requested gems in dependency resolution sort order (@segiddins)
437
- - reduce memory usage during dependency resolution ([#6114](https://github.com/bundler/bundler/issues/6114), @greysteil)
531
+ - reduce memory usage during dependency resolution ([#6114](https://github.com/rubygems/bundler/issues/6114), @greysteil)
438
532
  - ensure that the default bundler gem is not accidentally activated on ruby 2.5 when using local git overrides (@segiddins)
439
533
 
440
534
  ## 1.16.0.pre.3 (2017-10-04)
@@ -445,10 +539,10 @@ Features:
445
539
 
446
540
  Bugfixes:
447
541
 
448
- - fix a bug where installing on FreeBSD would accidentally raise an error ([#6013](https://github.com/bundler/bundler/issues/6013), @olleolleolle)
542
+ - fix a bug where installing on FreeBSD would accidentally raise an error ([#6013](https://github.com/rubygems/bundler/issues/6013), @olleolleolle)
449
543
  - fix a regression in 1.16 where pre-release gems could accidentally be resolved even when the gemfile contained no pre-release requirements (@greysteil)
450
544
  - bundler will avoid making unnecessary network requests to fetch dependency data, fixing a regression introduced in 1.16 (@segiddins)
451
- - the outdated bundler version message is disabled by default until the message has been fine-tuned ([#6004](https://github.com/bundler/bundler/issues/6004), @segiddins)
545
+ - the outdated bundler version message is disabled by default until the message has been fine-tuned ([#6004](https://github.com/rubygems/bundler/issues/6004), @segiddins)
452
546
 
453
547
  ## 1.16.0.pre.2 (2017-09-06)
454
548
 
@@ -462,51 +556,51 @@ Bugfixes:
462
556
 
463
557
  Features:
464
558
 
465
- - allow using non-branch symbolic refs in a git source ([#4845](https://github.com/bundler/bundler/issues/4845), @segiddins)
466
- - allow absolute paths in the `cache path` setting ([#5627](https://github.com/bundler/bundler/issues/5627), @mal)
559
+ - allow using non-branch symbolic refs in a git source ([#4845](https://github.com/rubygems/bundler/issues/4845), @segiddins)
560
+ - allow absolute paths in the `cache path` setting ([#5627](https://github.com/rubygems/bundler/issues/5627), @mal)
467
561
  - gems created via `bundle gem` with rspec have `--require spec_helper` in their `.rspec` file (@koic)
468
- - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match ([#5616](https://github.com/bundler/bundler/issues/5616), @segiddins)
562
+ - `bundle env` includes `Gem.ruby` and the `bundle` binstub shebang when they don't match ([#5616](https://github.com/rubygems/bundler/issues/5616), @segiddins)
469
563
  - allow passing gem names to `bundle pristine` (@segiddins)
470
- - `bundle version` and `bundle env` include the commit and build date for the bundler gem ([#5049](https://github.com/bundler/bundler/issues/5049), @segiddins)
471
- - add the `--shebang` option to `bundle binstubs` ([#4070](https://github.com/bundler/bundler/issues/4070), @segiddins, @Zorbash)
472
- - gemfiles are `eval`ed one fewer time when running `bundle install` ([#4952](https://github.com/bundler/bundler/issues/4952), [#3096](https://github.com/bundler/bundler/issues/3096), [#4417](https://github.com/bundler/bundler/issues/4417), @segiddins)
564
+ - `bundle version` and `bundle env` include the commit and build date for the bundler gem ([#5049](https://github.com/rubygems/bundler/issues/5049), @segiddins)
565
+ - add the `--shebang` option to `bundle binstubs` ([#4070](https://github.com/rubygems/bundler/issues/4070), @segiddins, @Zorbash)
566
+ - gemfiles are `eval`ed one fewer time when running `bundle install` ([#4952](https://github.com/rubygems/bundler/issues/4952), [#3096](https://github.com/bundler/bundler/issues/3096), [#4417](https://github.com/bundler/bundler/issues/4417), @segiddins)
473
567
  - the `fileutils` gem is now vendored so different versions of the gem can be activated (@segiddins)
474
- - speed up no-op installations ([#5842](https://github.com/bundler/bundler/issues/5842), @segiddins)
568
+ - speed up no-op installations ([#5842](https://github.com/rubygems/bundler/issues/5842), @segiddins)
475
569
  - default to keeping the lockfile in the default gem template (@deivid-rodriguez)
476
- - add a special bundler binstub that ensures the correct version of bundler is activated ([#5876](https://github.com/bundler/bundler/issues/5876), @segiddins)
570
+ - add a special bundler binstub that ensures the correct version of bundler is activated ([#5876](https://github.com/rubygems/bundler/issues/5876), @segiddins)
477
571
  - speed up dependency resolution and ensure that all resolvable gemfiles can be installed (@segiddins, @greysteil)
478
- - add a `bundle list` command that prints the gems in use ([#4754](https://github.com/bundler/bundler/issues/4754), @colby-swandale)
572
+ - add a `bundle list` command that prints the gems in use ([#4754](https://github.com/rubygems/bundler/issues/4754), @colby-swandale)
479
573
  - allow adding credentials to a gem source during deployment when `allow_deployment_source_credential_changes` is set (@adrian-gomez)
480
574
  - making an outdated (and insecure) TLS connection to rubygems.org will print a warning (@segiddins)
481
575
 
482
576
  Bugfixes:
483
577
 
484
- - allow configuring a mirror fallback timeout without a trailing slash ([#4830](https://github.com/bundler/bundler/issues/4830), @segiddins)
578
+ - allow configuring a mirror fallback timeout without a trailing slash ([#4830](https://github.com/rubygems/bundler/issues/4830), @segiddins)
485
579
  - fix handling of mirrors for file: urls that contain upper-case characters (@segiddins)
486
580
  - list the correct gem host for `rake release` when `allowed_push_host` has been set (@mdeering)
487
- - ensure `Bundler.original_env` preserves all env keys that bundler sets ([#5700](https://github.com/bundler/bundler/issues/5700), @segiddins)
581
+ - ensure `Bundler.original_env` preserves all env keys that bundler sets ([#5700](https://github.com/rubygems/bundler/issues/5700), @segiddins)
488
582
  - ensure `bundle pristine` removes files added to a git gem (@segiddins)
489
- - load plugin files from path gems before gem installation ([#5429](https://github.com/bundler/bundler/issues/5429), @segiddins)
490
- - ensure gems containing manpages are properly set up ([#5730](https://github.com/bundler/bundler/issues/5730), @segiddins)
583
+ - load plugin files from path gems before gem installation ([#5429](https://github.com/rubygems/bundler/issues/5429), @segiddins)
584
+ - ensure gems containing manpages are properly set up ([#5730](https://github.com/rubygems/bundler/issues/5730), @segiddins)
491
585
  - avoid fetching remote specs when all effected gems are in groups that are not being installed (@segiddins)
492
- - allow `BUNDLE_GEMFILE` to be a relative path ([#5712](https://github.com/bundler/bundler/issues/5712), @gxespino)
493
- - show a more helpful error message when a gem fails to install due to a corrupted lockfile ([#5846](https://github.com/bundler/bundler/issues/5846), @segiddins)
494
- - add a process lock to allow multiple concurrent `bundle install`s ([#5851](https://github.com/bundler/bundler/issues/5851), @stefansedich)
586
+ - allow `BUNDLE_GEMFILE` to be a relative path ([#5712](https://github.com/rubygems/bundler/issues/5712), @gxespino)
587
+ - show a more helpful error message when a gem fails to install due to a corrupted lockfile ([#5846](https://github.com/rubygems/bundler/issues/5846), @segiddins)
588
+ - add a process lock to allow multiple concurrent `bundle install`s ([#5851](https://github.com/rubygems/bundler/issues/5851), @stefansedich)
495
589
  - ensure that specifications always return an array for `#extensions` (@greysteil)
496
590
  - print a helpful error message when using a gem in the Gemfile with an empty name (@colby-swandale)
497
591
  - ensure that all gemfiles are included in `bundle env` (@segiddins)
498
592
  - use ssl client cert and ca cert settings from gem configuration as fallbacks (@stan3)
499
- - avoid global namespace pollution when loading gems ([#5958](https://github.com/bundler/bundler/issues/5958), @shyouhei)
593
+ - avoid global namespace pollution when loading gems ([#5958](https://github.com/rubygems/bundler/issues/5958), @shyouhei)
500
594
  - avoid running a complete re-resolve on `bundle update --bundler` (@segiddins)
501
595
  - allow `bundle binstubs --standalone` to work without `path` being set (@colby-swandale)
502
- - fix support for bundle paths that include jars or wars on jruby ([#5975](https://github.com/bundler/bundler/issues/5975), @torcido)
596
+ - fix support for bundle paths that include jars or wars on jruby ([#5975](https://github.com/rubygems/bundler/issues/5975), @torcido)
503
597
 
504
598
  ## 1.15.4 (2017-08-19)
505
599
 
506
600
  Bugfixes:
507
601
 
508
602
  - handle file conflicts gracefully in `bundle gem` (@rafaelfranca, @segiddins)
509
- - bundler will fail gracefully when the bundle path contains the system path separator ([#5485](https://github.com/bundler/bundler/issues/5485), ajwann)
603
+ - bundler will fail gracefully when the bundle path contains the system path separator ([#5485](https://github.com/rubygems/bundler/issues/5485), ajwann)
510
604
  - failed gem downloads will be retried consistently across different RubyGems versions (@shayonj)
511
605
  - `bundle pristine` will respect build options while re-building native extensions (@NickLaMuro)
512
606
 
@@ -514,7 +608,7 @@ Bugfixes:
514
608
 
515
609
  Bugfixes:
516
610
 
517
- - ensure that empty strings passed to `bundle config` are serialized & parsed properly ([#5881](https://github.com/bundler/bundler/issues/5881), @segiddins)
611
+ - ensure that empty strings passed to `bundle config` are serialized & parsed properly ([#5881](https://github.com/rubygems/bundler/issues/5881), @segiddins)
518
612
  - avoid printing an outdated version warning when running a parseable command (@segiddins)
519
613
 
520
614
  ## 1.15.2 (2017-07-17)
@@ -525,24 +619,24 @@ Features:
525
619
 
526
620
  Bugfixes:
527
621
 
528
- - inline gemfiles work when `BUNDLE_BIN` is set ([#5847](https://github.com/bundler/bundler/issues/5847), @segiddins)
529
- - avoid using the old dependency API when there are no changes to the compact index files ([#5373](https://github.com/bundler/bundler/issues/5373), @greysteil)
530
- - fail gracefully when the full index serves gemspecs with invalid dependencies ([#5797](https://github.com/bundler/bundler/issues/5797), @segiddins)
622
+ - inline gemfiles work when `BUNDLE_BIN` is set ([#5847](https://github.com/rubygems/bundler/issues/5847), @segiddins)
623
+ - avoid using the old dependency API when there are no changes to the compact index files ([#5373](https://github.com/rubygems/bundler/issues/5373), @greysteil)
624
+ - fail gracefully when the full index serves gemspecs with invalid dependencies ([#5797](https://github.com/rubygems/bundler/issues/5797), @segiddins)
531
625
  - support installing gemfiles that use `eval_gemfile`, `:path` gems with relative paths, and `--deployment` simultaneously (@NickLaMuro)
532
626
  - `bundle config` will print settings as the type they are interpreted as (@segiddins)
533
- - respect the `no_proxy` environment variable when making network requests ([#5781](https://github.com/bundler/bundler/issues/5781), @jakauppila)
627
+ - respect the `no_proxy` environment variable when making network requests ([#5781](https://github.com/rubygems/bundler/issues/5781), @jakauppila)
534
628
  - commands invoked with `--verbose` will not have default flags printed (@segiddins)
535
- - allow `bundle viz` to work when another gem has a requirable `grapviz` file ([#5707](https://github.com/bundler/bundler/issues/5707), @segiddins)
536
- - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order ([#5696](https://github.com/bundler/bundler/issues/5696), @segiddins)
629
+ - allow `bundle viz` to work when another gem has a requirable `grapviz` file ([#5707](https://github.com/rubygems/bundler/issues/5707), @segiddins)
630
+ - ensure bundler puts activated gems on the `$LOAD_PATH` in a consistent order ([#5696](https://github.com/rubygems/bundler/issues/5696), @segiddins)
537
631
 
538
632
  ## 1.15.1 (2017-06-02)
539
633
 
540
634
  Bugfixes:
541
635
 
542
- - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile ([#5693](https://github.com/bundler/bundler/issues/5693), @segiddins)
636
+ - `bundle lock --update GEM` will fail gracefully when the gem is not in the lockfile ([#5693](https://github.com/rubygems/bundler/issues/5693), @segiddins)
543
637
  - `bundle init --gemspec` will fail gracefully when the gemspec is invalid (@colby-swandale)
544
- - `bundle install --force` works when the gemfile contains git gems ([#5678](https://github.com/bundler/bundler/issues/5678), @segiddins)
545
- - `bundle env` will print well-formed markdown when there are no settings ([#5677](https://github.com/bundler/bundler/issues/5677), @segiddins)
638
+ - `bundle install --force` works when the gemfile contains git gems ([#5678](https://github.com/rubygems/bundler/issues/5678), @segiddins)
639
+ - `bundle env` will print well-formed markdown when there are no settings ([#5677](https://github.com/rubygems/bundler/issues/5677), @segiddins)
546
640
 
547
641
  ## 1.15.0 (2017-05-19)
548
642
 
@@ -553,7 +647,7 @@ This space intentionally left blank.
553
647
  Bugfixes:
554
648
 
555
649
  - avoid conflicts when `Gem.finish_resolve` is called after the bundle has been set up (@segiddins)
556
- - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it ([#5592](https://github.com/bundler/bundler/issues/5592), @jules2689)
650
+ - ensure that `Gem::Specification.find_by_name` always returns an object that can have `#to_spec` called on it ([#5592](https://github.com/rubygems/bundler/issues/5592), @jules2689)
557
651
 
558
652
  ## 1.15.0.pre.3 (2017-04-30)
559
653
 
@@ -563,32 +657,32 @@ Bugfixes:
563
657
  - ensure that `open-uri` is not loaded after `bundle exec` (@segiddins)
564
658
  - print a helpful error message when an activated default gem conflicts with
565
659
  a gem in the gemfile (@segiddins)
566
- - only shorten `ref` option for git gems when it is a SHA ([#5620](https://github.com/bundler/bundler/issues/5620), @segiddins)
660
+ - only shorten `ref` option for git gems when it is a SHA ([#5620](https://github.com/rubygems/bundler/issues/5620), @segiddins)
567
661
 
568
662
  ## 1.15.0.pre.2 (2017-04-23)
569
663
 
570
664
  Bugfixes:
571
665
 
572
- - ensure pre-existing fit caches are updated from remote sources ([#5423](https://github.com/bundler/bundler/issues/5423), @alextaylor000)
573
- - avoid duplicating specs in the lockfile after updating with the gem uninstalled ([#5599](https://github.com/bundler/bundler/issues/5599), @segiddins)
574
- - ensure git gems have their extensions available at runtime ([#5594](https://github.com/bundler/bundler/issues/5594), @jules2689, @segiddins)
666
+ - ensure pre-existing fit caches are updated from remote sources ([#5423](https://github.com/rubygems/bundler/issues/5423), @alextaylor000)
667
+ - avoid duplicating specs in the lockfile after updating with the gem uninstalled ([#5599](https://github.com/rubygems/bundler/issues/5599), @segiddins)
668
+ - ensure git gems have their extensions available at runtime ([#5594](https://github.com/rubygems/bundler/issues/5594), @jules2689, @segiddins)
575
669
 
576
670
  ## 1.15.0.pre.1 (2017-04-16)
577
671
 
578
672
  Features:
579
673
 
580
- - print a notification when a newer version of bundler is available ([#4683](https://github.com/bundler/bundler/issues/4683), @segiddins)
581
- - add man pages for all bundler commands ([#4988](https://github.com/bundler/bundler/issues/4988), @feministy)
674
+ - print a notification when a newer version of bundler is available ([#4683](https://github.com/rubygems/bundler/issues/4683), @segiddins)
675
+ - add man pages for all bundler commands ([#4988](https://github.com/rubygems/bundler/issues/4988), @feministy)
582
676
  - add the `bundle info` command (@fredrb, @colby-swandale)
583
677
  - all files created with `bundle gem` comply with the bundler style guide (@zachahn)
584
- - if installing a gem fails, print out the reason the gem needed to be installed ([#5078](https://github.com/bundler/bundler/issues/5078), @segiddins)
678
+ - if installing a gem fails, print out the reason the gem needed to be installed ([#5078](https://github.com/rubygems/bundler/issues/5078), @segiddins)
585
679
  - allow setting `gem.push_key` to set the key used when running `rake release` (@DTrierweiler)
586
- - print gem versions that are regressing during `bundle update` in yellow ([#5506](https://github.com/bundler/bundler/issues/5506), @brchristian)
680
+ - print gem versions that are regressing during `bundle update` in yellow ([#5506](https://github.com/rubygems/bundler/issues/5506), @brchristian)
587
681
  - avoid printing extraneous dependencies when the resolver encounters a conflict (@segiddins)
588
- - add the `bundle issue` command that prints instructions for reporting issues ([#4871](https://github.com/bundler/bundler/issues/4871), @jonathanpike)
589
- - add `--source` and `--group` options to the `bundle inject` command ([#5452](https://github.com/bundler/bundler/issues/5452), @Shekharrajak)
682
+ - add the `bundle issue` command that prints instructions for reporting issues ([#4871](https://github.com/rubygems/bundler/issues/4871), @jonathanpike)
683
+ - add `--source` and `--group` options to the `bundle inject` command ([#5452](https://github.com/rubygems/bundler/issues/5452), @Shekharrajak)
590
684
  - add the `bundle add` command to add a gem to the gemfile (@denniss)
591
- - add the `bundle pristine` command to re-install gems from cached `.gem` files ([#4509](https://github.com/bundler/bundler/issues/4509), @denniss)
685
+ - add the `bundle pristine` command to re-install gems from cached `.gem` files ([#4509](https://github.com/rubygems/bundler/issues/4509), @denniss)
592
686
  - add a `--parseable` option for `bundle config` (@JuanitoFatas, @colby-swandale)
593
687
 
594
688
  Performance:
@@ -602,95 +696,95 @@ Performance:
602
696
 
603
697
  Bugfixes:
604
698
 
605
- - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems ([#5031](https://github.com/bundler/bundler/issues/5031), [#5095](https://github.com/bundler/bundler/issues/5095), @segiddins)
699
+ - fix cases where `bundle update` would print a resolver conflict instead of updating the selected gems ([#5031](https://github.com/rubygems/bundler/issues/5031), [#5095](https://github.com/bundler/bundler/issues/5095), @segiddins)
606
700
  - print out a stack trace after an interrupt when running in debug mode (@segiddins)
607
701
  - print out when bundler starts fetching a gem from a remote server (@segiddins)
608
- - fix `bundle gem` failing when `git` is unavailable ([#5458](https://github.com/bundler/bundler/issues/5458), @Shekharrajak, @colby-swandale)
609
- - suggest the appropriate command to unfreeze a bundle ([#5009](https://github.com/bundler/bundler/issues/5009), @denniss)
610
- - ensure nested calls to `bundle exec` resolve default gems correctly ([#5500](https://github.com/bundler/bundler/issues/5500), @segiddins)
702
+ - fix `bundle gem` failing when `git` is unavailable ([#5458](https://github.com/rubygems/bundler/issues/5458), @Shekharrajak, @colby-swandale)
703
+ - suggest the appropriate command to unfreeze a bundle ([#5009](https://github.com/rubygems/bundler/issues/5009), @denniss)
704
+ - ensure nested calls to `bundle exec` resolve default gems correctly ([#5500](https://github.com/rubygems/bundler/issues/5500), @segiddins)
611
705
  - ensure that a plugin failing to install doesn't uninstall other plugins (@kerrizor, @roseaboveit)
612
- - ensure `socket` is required before being referenced ([#5533](https://github.com/bundler/bundler/issues/5533), @rafaelfranca)
613
- - allow running `bundle outdated` when gems aren't installed locally ([#5553](https://github.com/bundler/bundler/issues/5553), @segiddins)
614
- - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle ([#5487](https://github.com/bundler/bundler/issues/5487), @segiddins)
615
- - print an error message when a non-git gem is given a `branch` option ([#5530](https://github.com/bundler/bundler/issues/5530), @colby-swandale)
706
+ - ensure `socket` is required before being referenced ([#5533](https://github.com/rubygems/bundler/issues/5533), @rafaelfranca)
707
+ - allow running `bundle outdated` when gems aren't installed locally ([#5553](https://github.com/rubygems/bundler/issues/5553), @segiddins)
708
+ - print a helpful error when `bundle exec`ing to a gem that isn't included in the bundle ([#5487](https://github.com/rubygems/bundler/issues/5487), @segiddins)
709
+ - print an error message when a non-git gem is given a `branch` option ([#5530](https://github.com/rubygems/bundler/issues/5530), @colby-swandale)
616
710
  - allow interrupts to exit the process after gems have been installed (@segiddins)
617
- - print the underlying error when downloading gem metadata fails ([#5579](https://github.com/bundler/bundler/issues/5579), @segiddins)
618
- - avoid deadlocking when installing with a lockfile that is missing dependencies ([#5378](https://github.com/bundler/bundler/issues/5378), [#5480](https://github.com/bundler/bundler/issues/5480), [#5519](https://github.com/bundler/bundler/issues/5519), [#5526](https://github.com/bundler/bundler/issues/5526), [#5529](https://github.com/bundler/bundler/issues/5529), [#5549](https://github.com/bundler/bundler/issues/5549), [#5572](https://github.com/bundler/bundler/issues/5572), @segiddins)
711
+ - print the underlying error when downloading gem metadata fails ([#5579](https://github.com/rubygems/bundler/issues/5579), @segiddins)
712
+ - avoid deadlocking when installing with a lockfile that is missing dependencies ([#5378](https://github.com/rubygems/bundler/issues/5378), [#5480](https://github.com/bundler/bundler/issues/5480), [#5519](https://github.com/bundler/bundler/issues/5519), [#5526](https://github.com/bundler/bundler/issues/5526), [#5529](https://github.com/bundler/bundler/issues/5529), [#5549](https://github.com/bundler/bundler/issues/5549), [#5572](https://github.com/bundler/bundler/issues/5572), @segiddins)
619
713
 
620
714
  ## 1.14.6 (2017-03-03)
621
715
 
622
716
  Bugfixes:
623
717
 
624
- - avoid undefined constant `Bundler::Plugin::API::Source` exception ([#5409](https://github.com/bundler/bundler/issues/5409), @segiddins)
718
+ - avoid undefined constant `Bundler::Plugin::API::Source` exception ([#5409](https://github.com/rubygems/bundler/issues/5409), @segiddins)
625
719
  - avoid incorrect warnings about needing to enable `specific_platform` (@segiddins)
626
- - fail gracefully when the compact index does not send an ETag ([#5463](https://github.com/bundler/bundler/issues/5463), @olleolleolle)
627
- - ensure `bundle outdated --local` shows all outdated gems ([#5430](https://github.com/bundler/bundler/issues/5430), @denniss)
628
- - fix a case where ruby version requirements could lead to incorrect resolver conflicts ([#5425](https://github.com/bundler/bundler/issues/5425), @segiddins)
720
+ - fail gracefully when the compact index does not send an ETag ([#5463](https://github.com/rubygems/bundler/issues/5463), @olleolleolle)
721
+ - ensure `bundle outdated --local` shows all outdated gems ([#5430](https://github.com/rubygems/bundler/issues/5430), @denniss)
722
+ - fix a case where ruby version requirements could lead to incorrect resolver conflicts ([#5425](https://github.com/rubygems/bundler/issues/5425), @segiddins)
629
723
 
630
724
  ## 1.14.5 (2017-02-22)
631
725
 
632
726
  Bugfixes:
633
727
 
634
728
  - avoid loading all unused gemspecs during `bundle exec` on RubyGems 2.3+ (@segiddins)
635
- - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements ([#5444](https://github.com/bundler/bundler/issues/5444), [#5457](https://github.com/bundler/bundler/issues/5457), @segiddins)
636
- - enable compact index when OpenSSL FIPS mode is enabled but not active ([#5433](https://github.com/bundler/bundler/issues/5433), @wjordan)
637
- - use github username instead of git name for the github url in `bundle gem` ([#5438](https://github.com/bundler/bundler/issues/5438), @danielpclark)
729
+ - improve resolver performance when dependencies have zero or one total possibilities ignoring requirements ([#5444](https://github.com/rubygems/bundler/issues/5444), [#5457](https://github.com/bundler/bundler/issues/5457), @segiddins)
730
+ - enable compact index when OpenSSL FIPS mode is enabled but not active ([#5433](https://github.com/rubygems/bundler/issues/5433), @wjordan)
731
+ - use github username instead of git name for the github url in `bundle gem` ([#5438](https://github.com/rubygems/bundler/issues/5438), @danielpclark)
638
732
  - avoid a TypeError on RubyGems 2.6.8 when no build settings are set for native extensions (@okkez)
639
733
  - fail gracefully when the dependency api is missing runtime dependencies for a gem (@segiddins)
640
- - handle when a platform-specific gem has more dependencies than the ruby platform version ([#5339](https://github.com/bundler/bundler/issues/5339), [#5426](https://github.com/bundler/bundler/issues/5426), @segiddins)
641
- - allow running bundler on a machine with no home directory where the temporary directory is not writable ([#5371](https://github.com/bundler/bundler/issues/5371), @segiddins)
642
- - avoid gem version conflicts on openssl using Ruby 2.5 ([#5235](https://github.com/bundler/bundler/issues/5235), @rhenium)
643
- - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated ([#5264](https://github.com/bundler/bundler/issues/5264), @segiddins)
734
+ - handle when a platform-specific gem has more dependencies than the ruby platform version ([#5339](https://github.com/rubygems/bundler/issues/5339), [#5426](https://github.com/bundler/bundler/issues/5426), @segiddins)
735
+ - allow running bundler on a machine with no home directory where the temporary directory is not writable ([#5371](https://github.com/rubygems/bundler/issues/5371), @segiddins)
736
+ - avoid gem version conflicts on openssl using Ruby 2.5 ([#5235](https://github.com/rubygems/bundler/issues/5235), @rhenium)
737
+ - fail when installing in frozen mode and the dependencies for `gemspec` gems have changed without the lockfile being updated ([#5264](https://github.com/rubygems/bundler/issues/5264), @segiddins)
644
738
 
645
739
  ## 1.14.4 (2017-02-12)
646
740
 
647
741
  Bugfixes:
648
742
 
649
- - fail gracefully when attempting to overwrite an existing directory with `bundle gem` ([#5358](https://github.com/bundler/bundler/issues/5358), @nodo)
650
- - fix a resolver bug that would cause bundler to report conflicts that it could resolve ([#5359](https://github.com/bundler/bundler/issues/5359), [#5362](https://github.com/bundler/bundler/issues/5362), @segiddins)
651
- - set native extension build arguments for git gems ([#5401](https://github.com/bundler/bundler/issues/5401), @segiddins)
743
+ - fail gracefully when attempting to overwrite an existing directory with `bundle gem` ([#5358](https://github.com/rubygems/bundler/issues/5358), @nodo)
744
+ - fix a resolver bug that would cause bundler to report conflicts that it could resolve ([#5359](https://github.com/rubygems/bundler/issues/5359), [#5362](https://github.com/bundler/bundler/issues/5362), @segiddins)
745
+ - set native extension build arguments for git gems ([#5401](https://github.com/rubygems/bundler/issues/5401), @segiddins)
652
746
  - fix the suggested `bundle lock` command printed when a dependency is unused on any platform (@5t111111)
653
- - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing ([#5380](https://github.com/bundler/bundler/issues/5380), @segiddins)
654
- - show `bundle inject` usage when too many arguments are passed ([#5384](https://github.com/bundler/bundler/issues/5384), @Shekharrajak)
655
- - stop `bundle show --outdated` from implicitly running `bundle update` ([#5375](https://github.com/bundler/bundler/issues/5375), @colby-swandale)
747
+ - ensure the version passed to `ruby` in the Gemfile is valid during Gemfile parsing ([#5380](https://github.com/rubygems/bundler/issues/5380), @segiddins)
748
+ - show `bundle inject` usage when too many arguments are passed ([#5384](https://github.com/rubygems/bundler/issues/5384), @Shekharrajak)
749
+ - stop `bundle show --outdated` from implicitly running `bundle update` ([#5375](https://github.com/rubygems/bundler/issues/5375), @colby-swandale)
656
750
  - allow the temporary home directory fallback to work for multiple users (@svoop)
657
751
 
658
752
  ## 1.14.3 (2017-01-24)
659
753
 
660
754
  Bugfixes:
661
755
 
662
- - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms ([#5349](https://github.com/bundler/bundler/issues/5349), [#5356](https://github.com/bundler/bundler/issues/5356), @segiddins)
663
- - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies ([#5349](https://github.com/bundler/bundler/issues/5349), @segiddins)
756
+ - fix the resolver attempting to activate ruby-platform gems when the bundle is only for other platforms ([#5349](https://github.com/rubygems/bundler/issues/5349), [#5356](https://github.com/bundler/bundler/issues/5356), @segiddins)
757
+ - avoid re-resolving a locked gemfile that uses `gemspec` and includes development dependencies ([#5349](https://github.com/rubygems/bundler/issues/5349), @segiddins)
664
758
 
665
759
  ## 1.14.2 (2017-01-22)
666
760
 
667
761
  Bugfixes:
668
762
 
669
- - fix using `force_ruby_platform` on windows ([#5344](https://github.com/bundler/bundler/issues/5344), @segiddins)
670
- - fix an incorrect version conflict error when using `gemspec` on multiple platforms ([#5340](https://github.com/bundler/bundler/issues/5340), @segiddins)
763
+ - fix using `force_ruby_platform` on windows ([#5344](https://github.com/rubygems/bundler/issues/5344), @segiddins)
764
+ - fix an incorrect version conflict error when using `gemspec` on multiple platforms ([#5340](https://github.com/rubygems/bundler/issues/5340), @segiddins)
671
765
 
672
766
  ## 1.14.1 (2017-01-21)
673
767
 
674
768
  Bugfixes:
675
769
 
676
- - work around a ruby 2.2.2 bug that caused a stack consistency error during installation ([#5342](https://github.com/bundler/bundler/issues/5342), @segiddins)
770
+ - work around a ruby 2.2.2 bug that caused a stack consistency error during installation ([#5342](https://github.com/rubygems/bundler/issues/5342), @segiddins)
677
771
 
678
772
  ## 1.14.0 (2017-01-20)
679
773
 
680
774
  Bugfixes:
681
775
 
682
776
  - ensure `Settings::Mirror` is autoloaded under the `Settings` namespace
683
- ([#5238](https://github.com/bundler/bundler/issues/5238), @segiddins)
684
- - fix `bundler/inline` when `BUNDLE_GEMFILE=""` ([#5079](https://github.com/bundler/bundler/issues/5079), @segiddins)
777
+ ([#5238](https://github.com/rubygems/bundler/issues/5238), @segiddins)
778
+ - fix `bundler/inline` when `BUNDLE_GEMFILE=""` ([#5079](https://github.com/rubygems/bundler/issues/5079), @segiddins)
685
779
 
686
780
  ## 1.14.0.pre.2 (2017-01-11)
687
781
 
688
782
  Bugfixes:
689
783
 
690
- - allow not selecting a gem when running `bundle open` ([#5301](https://github.com/bundler/bundler/issues/5301), @segiddins)
691
- - support installing gems from git branches that contain shell metacharacters ([#5295](https://github.com/bundler/bundler/issues/5295), @segiddins)
692
- - fix a resolver error that could leave dependencies unresolved ([#5294](https://github.com/bundler/bundler/issues/5294), @segiddins)
693
- - fix a stack overflow error when invoking commands ([#5296](https://github.com/bundler/bundler/issues/5296), @segiddins)
784
+ - allow not selecting a gem when running `bundle open` ([#5301](https://github.com/rubygems/bundler/issues/5301), @segiddins)
785
+ - support installing gems from git branches that contain shell metacharacters ([#5295](https://github.com/rubygems/bundler/issues/5295), @segiddins)
786
+ - fix a resolver error that could leave dependencies unresolved ([#5294](https://github.com/rubygems/bundler/issues/5294), @segiddins)
787
+ - fix a stack overflow error when invoking commands ([#5296](https://github.com/rubygems/bundler/issues/5296), @segiddins)
694
788
 
695
789
  ## 1.14.0.pre.1 (2016-12-29)
696
790
 
@@ -698,17 +792,17 @@ Features:
698
792
 
699
793
  - `bundle doctor` first runs `bundle check` (@segiddins)
700
794
  - the bundler trampoline is automatically enabled when the target version is greater than bundler 2 (@segiddins)
701
- - gem checksums returned by rubygems.org are validated when installing gems ([#4464](https://github.com/bundler/bundler/issues/4464), @segiddins)
795
+ - gem checksums returned by rubygems.org are validated when installing gems ([#4464](https://github.com/rubygems/bundler/issues/4464), @segiddins)
702
796
  - use the git username as a github username when running `bundle gem` (@JuanitoFatas)
703
797
  - show more context when the resolver conflicts on required ruby and rubygems versions (@segiddins)
704
- - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting ([#4295](https://github.com/bundler/bundler/issues/4295), [#4896](https://github.com/bundler/bundler/issues/4896), @segiddins)
705
- - always prompt the user for a password when using `sudo` ([#3006](https://github.com/bundler/bundler/issues/3006), @segiddins)
706
- - support running without a home directory ([#4778](https://github.com/bundler/bundler/issues/4778), @segiddins)
798
+ - improve platform support by allowing bundler to pick the best platform match during dependency resolution, enabled with the `specific_platform` setting ([#4295](https://github.com/rubygems/bundler/issues/4295), [#4896](https://github.com/bundler/bundler/issues/4896), @segiddins)
799
+ - always prompt the user for a password when using `sudo` ([#3006](https://github.com/rubygems/bundler/issues/3006), @segiddins)
800
+ - support running without a home directory ([#4778](https://github.com/rubygems/bundler/issues/4778), @segiddins)
707
801
  - print a warning when the gemfile uses a platform conditional that will exclude the gem from all lockfile platforms (@segiddins)
708
- - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms ([#4813](https://github.com/bundler/bundler/issues/4813), @segiddins)
709
- - add conservative update options to `bundle lock` ([#4912](https://github.com/bundler/bundler/issues/4912), @chrismo)
802
+ - add the `force_ruby_platform` setting to force bundler to install ruby-platform gems, even on other platforms ([#4813](https://github.com/rubygems/bundler/issues/4813), @segiddins)
803
+ - add conservative update options to `bundle lock` ([#4912](https://github.com/rubygems/bundler/issues/4912), @chrismo)
710
804
  - improve `bundle outdated` output to group gems by group (@ryanfox1985)
711
- - add conservative update options to `bundle update` ([#5065](https://github.com/bundler/bundler/issues/5065), [#5076](https://github.com/bundler/bundler/issues/5076), @chrismo)
805
+ - add conservative update options to `bundle update` ([#5065](https://github.com/rubygems/bundler/issues/5065), [#5076](https://github.com/bundler/bundler/issues/5076), @chrismo)
712
806
  - print the output of `bundle env` as github-flavored markdown, making it easier to preserve formatting when copy-pasting into a new issue (@segiddins)
713
807
  - configure the persistence file when using `bundle gem` with `rspec` (@segiddins)
714
808
  - add support for the `ruby_25` gemfile filter (@amatsuda)
@@ -721,31 +815,31 @@ Performance:
721
815
 
722
816
  Bugfixes:
723
817
 
724
- - config files with CRLF line endings can be read ([#4435](https://github.com/bundler/bundler/issues/4435), @segiddins)
725
- - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency ([#4896](https://github.com/bundler/bundler/issues/4896), @segiddins)
818
+ - config files with CRLF line endings can be read ([#4435](https://github.com/rubygems/bundler/issues/4435), @segiddins)
819
+ - `bundle lock` activates gems for the current platform even if they were activated under a different platform for a separate dependency ([#4896](https://github.com/rubygems/bundler/issues/4896), @segiddins)
726
820
  - running `bundle env` in a directory without a gemfile no longer crashes (@segiddins)
727
- - fail gracefully when attempting to use a source with an unknown URI scheme ([#4953](https://github.com/bundler/bundler/issues/4953), @segiddins)
728
- - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` ([#4966](https://github.com/bundler/bundler/issues/4966), @segiddins)
729
- - `bundle lock` will not update without the `--update` flag ([#4957](https://github.com/bundler/bundler/issues/4957), @segiddins)
821
+ - fail gracefully when attempting to use a source with an unknown URI scheme ([#4953](https://github.com/rubygems/bundler/issues/4953), @segiddins)
822
+ - store paths in the lockfile relative to the root gemfile directory when using `eval_gemfile` ([#4966](https://github.com/rubygems/bundler/issues/4966), @segiddins)
823
+ - `bundle lock` will not update without the `--update` flag ([#4957](https://github.com/rubygems/bundler/issues/4957), @segiddins)
730
824
  - the `console` binstub generated by `bundle gem` will load `.irbrc` files (@mattbrictson)
731
825
  - print friendly filesystem access errors in the new index (@segiddins)
732
- - print a helpful error when running out of memory on jruby ([#4673](https://github.com/bundler/bundler/issues/4673), @segiddins)
733
- - load all rubygems plugins when installing gems ([#2824](https://github.com/bundler/bundler/issues/2824), @segiddins)
734
- - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set ([#5027](https://github.com/bundler/bundler/issues/5027), @hmistry)
735
- - local installs no longer print "this gem may have been yanked" ([#5022](https://github.com/bundler/bundler/issues/5022), @hmistry)
826
+ - print a helpful error when running out of memory on jruby ([#4673](https://github.com/rubygems/bundler/issues/4673), @segiddins)
827
+ - load all rubygems plugins when installing gems ([#2824](https://github.com/rubygems/bundler/issues/2824), @segiddins)
828
+ - `bundle clean --dry-run` prints the list of gems without the `--force` option when no path is set ([#5027](https://github.com/rubygems/bundler/issues/5027), @hmistry)
829
+ - local installs no longer print "this gem may have been yanked" ([#5022](https://github.com/rubygems/bundler/issues/5022), @hmistry)
736
830
  - avoid leaking `which` output when running `bundle doctor` (@colby-swandale)
737
- - print a warning when attempting to `bundle exec` an empty program ([#5084](https://github.com/bundler/bundler/issues/5084), @bronzdoc)
738
- - ensure `bundle outdated` lists all outdated gems ([#4979](https://github.com/bundler/bundler/issues/4979), @chrismo)
739
- - fail gracefully when attempting to `bundle gem` with an invalid constant name ([#5185](https://github.com/bundler/bundler/issues/5185), @segiddins)
740
- - allow `bundler/inline` to work in a directory that contains a gemfile ([#5117](https://github.com/bundler/bundler/issues/5117), @colby-swandale)
741
- - ensure that the new index is thread-safe, allowing installation on rbx ([#5142](https://github.com/bundler/bundler/issues/5142), @segiddins)
831
+ - print a warning when attempting to `bundle exec` an empty program ([#5084](https://github.com/rubygems/bundler/issues/5084), @bronzdoc)
832
+ - ensure `bundle outdated` lists all outdated gems ([#4979](https://github.com/rubygems/bundler/issues/4979), @chrismo)
833
+ - fail gracefully when attempting to `bundle gem` with an invalid constant name ([#5185](https://github.com/rubygems/bundler/issues/5185), @segiddins)
834
+ - allow `bundler/inline` to work in a directory that contains a gemfile ([#5117](https://github.com/rubygems/bundler/issues/5117), @colby-swandale)
835
+ - ensure that the new index is thread-safe, allowing installation on rbx ([#5142](https://github.com/rubygems/bundler/issues/5142), @segiddins)
742
836
  - remove deprecated `rspec` syntax in `bundle gem` output (@gearnode)
743
- - fail gracefully when any system error is encountered when touching the filesystem ([#5134](https://github.com/bundler/bundler/issues/5134), @segiddins)
744
- - fix compatibility with a machine running with FIPS mode enabled ([#4989](https://github.com/bundler/bundler/issues/4989), @segiddins)
745
- - fix `bundle lock --add-platform ruby` ([#5230](https://github.com/bundler/bundler/issues/5230), @segiddins)
837
+ - fail gracefully when any system error is encountered when touching the filesystem ([#5134](https://github.com/rubygems/bundler/issues/5134), @segiddins)
838
+ - fix compatibility with a machine running with FIPS mode enabled ([#4989](https://github.com/rubygems/bundler/issues/4989), @segiddins)
839
+ - fix `bundle lock --add-platform ruby` ([#5230](https://github.com/rubygems/bundler/issues/5230), @segiddins)
746
840
  - print gem post-install messages when running `bundle update` (@smathy)
747
841
  - ensure errors due to a retries are all separated by a newline (@segiddins)
748
- - print out the bundle path in gem not found errors ([#4854](https://github.com/bundler/bundler/issues/4854), @diegosteiner)
842
+ - print out the bundle path in gem not found errors ([#4854](https://github.com/rubygems/bundler/issues/4854), @diegosteiner)
749
843
  - fail gracefully when creating threads fails (@segiddins)
750
844
  - avoid downloading metadata for gems that are only development dependencies (@Paxa)
751
845
 
@@ -753,28 +847,28 @@ Bugfixes:
753
847
 
754
848
  Features:
755
849
 
756
- - add support for the `ruby_24` gemfile filter ([#5281](https://github.com/bundler/bundler/issues/5281), @amatsuda)
850
+ - add support for the `ruby_24` gemfile filter ([#5281](https://github.com/rubygems/bundler/issues/5281), @amatsuda)
757
851
 
758
852
  ## 1.13.6 (2016-10-22)
759
853
 
760
854
  Bugfixes:
761
855
 
762
- - make the `gem` method public again, fixing a regression in 1.13.4 ([#5102](https://github.com/bundler/bundler/issues/5102), @segiddins)
856
+ - make the `gem` method public again, fixing a regression in 1.13.4 ([#5102](https://github.com/rubygems/bundler/issues/5102), @segiddins)
763
857
 
764
858
  ## 1.13.5 (2016-10-15)
765
859
 
766
860
  Bugfixes:
767
861
 
768
- - Ensure a locked pre-release spec can always be re-resolved ([#5089](https://github.com/bundler/bundler/issues/5089), @segiddins)
862
+ - Ensure a locked pre-release spec can always be re-resolved ([#5089](https://github.com/rubygems/bundler/issues/5089), @segiddins)
769
863
 
770
864
  ## 1.13.4 (2016-10-11)
771
865
 
772
866
  Bugfixes:
773
867
 
774
- - stop printing warning when compact index versions file is rewritten ([#5064](https://github.com/bundler/bundler/issues/5064), @indirect)
775
- - fix `parent directory is world writable but not sticky` error on install ([#5043](https://github.com/bundler/bundler/issues/5043), @indirect)
776
- - fix for `uninitialized constant Bundler::Plugin::API::Source` error ([#5010](https://github.com/bundler/bundler/issues/5010), @hsbt, @aycabta)
777
- - make `update` options for major, minor, and patch updates consistent ([#4934](https://github.com/bundler/bundler/issues/4934), @chrismo)
868
+ - stop printing warning when compact index versions file is rewritten ([#5064](https://github.com/rubygems/bundler/issues/5064), @indirect)
869
+ - fix `parent directory is world writable but not sticky` error on install ([#5043](https://github.com/rubygems/bundler/issues/5043), @indirect)
870
+ - fix for `uninitialized constant Bundler::Plugin::API::Source` error ([#5010](https://github.com/rubygems/bundler/issues/5010), @hsbt, @aycabta)
871
+ - make `update` options for major, minor, and patch updates consistent ([#4934](https://github.com/rubygems/bundler/issues/4934), @chrismo)
778
872
 
779
873
  ## 1.13.3 (2016-10-10)
780
874
 
@@ -787,12 +881,12 @@ Bugfixes:
787
881
  Bugfixes:
788
882
 
789
883
  - allow `Settings` to be initialized without a root directory (@m1k3)
790
- - allow specifying ruby engines in the gemfile as a symbol ([#4919](https://github.com/bundler/bundler/issues/4919), @JuanitoFatas)
884
+ - allow specifying ruby engines in the gemfile as a symbol ([#4919](https://github.com/rubygems/bundler/issues/4919), @JuanitoFatas)
791
885
  - avoid an exception when using `bundler/deployment` with Vlad (@srbaker)
792
- - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby ([#4975](https://github.com/bundler/bundler/issues/4975), @segiddins)
793
- - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile ([#5006](https://github.com/bundler/bundler/issues/5006), @segiddins)
886
+ - ensure redefined methods have the same visibility as the one they're replacing, fixing `Kernel.require` failing on JRuby ([#4975](https://github.com/rubygems/bundler/issues/4975), @segiddins)
887
+ - ensure that Bundler won't complain about a corrupt lockfile when no lockfile exists when using `gemspec` in the Gemfile ([#5006](https://github.com/rubygems/bundler/issues/5006), @segiddins)
794
888
  - fail gracefully when parsing the metadata for a gemspec from the compact index fails (@segiddins)
795
- - fix system gems not being copied to --path on bundle install (e.g. --deployment) ([#4974](https://github.com/bundler/bundler/issues/4974), @chrismo)
889
+ - fix system gems not being copied to --path on bundle install (e.g. --deployment) ([#4974](https://github.com/rubygems/bundler/issues/4974), @chrismo)
796
890
 
797
891
  Performance:
798
892
 
@@ -802,8 +896,8 @@ Performance:
802
896
 
803
897
  Bugfixes:
804
898
 
805
- - ensure that `Gem::Source` is available, fixing several exceptions ([#4944](https://github.com/bundler/bundler/issues/4944), @dekellum)
806
- - ensure that dependency resolution works when multiple gems have the same dependency ([#4961](https://github.com/bundler/bundler/issues/4961), @segiddins)
899
+ - ensure that `Gem::Source` is available, fixing several exceptions ([#4944](https://github.com/rubygems/bundler/issues/4944), @dekellum)
900
+ - ensure that dependency resolution works when multiple gems have the same dependency ([#4961](https://github.com/rubygems/bundler/issues/4961), @segiddins)
807
901
 
808
902
  ## 1.13.0 (2016-09-05)
809
903
 
@@ -814,32 +908,32 @@ This space deliberately left blank.
814
908
  Features:
815
909
 
816
910
  - add setting `exec_disable_load` to force `exec` to spawn a new Ruby process (@segiddins)
817
- - add `doctor` command to help with issues like unlinked compiled gems ([#4765](https://github.com/bundler/bundler/issues/4765), @mistydemeo)
818
- - rework the `update` command, providing fine-grained control via flags ([#4676](https://github.com/bundler/bundler/issues/4676), @chrismo)
819
- - add URI to http response output in debug mode ([#4808](https://github.com/bundler/bundler/issues/4808), @NickLaMuro)
820
- - add manpage for `binstubs` command ([#4847](https://github.com/bundler/bundler/issues/4847), @Zorbash)
911
+ - add `doctor` command to help with issues like unlinked compiled gems ([#4765](https://github.com/rubygems/bundler/issues/4765), @mistydemeo)
912
+ - rework the `update` command, providing fine-grained control via flags ([#4676](https://github.com/rubygems/bundler/issues/4676), @chrismo)
913
+ - add URI to http response output in debug mode ([#4808](https://github.com/rubygems/bundler/issues/4808), @NickLaMuro)
914
+ - add manpage for `binstubs` command ([#4847](https://github.com/rubygems/bundler/issues/4847), @Zorbash)
821
915
  - support `mirror` settings for sources by hostname, not only full URL (@opiethehokie)
822
- - print gem installation errors after other install output ([#4834](https://github.com/bundler/bundler/issues/4834), @segiddins)
823
- - add `lock --remove-platform` flag to remove platforms from the lock ([#4877](https://github.com/bundler/bundler/issues/4877), @segiddins)
916
+ - print gem installation errors after other install output ([#4834](https://github.com/rubygems/bundler/issues/4834), @segiddins)
917
+ - add `lock --remove-platform` flag to remove platforms from the lock ([#4877](https://github.com/rubygems/bundler/issues/4877), @segiddins)
824
918
  - add `only_update_to_newer_versions` setting to prevent downgrades during `update` (@segiddins)
825
919
  - expanded experimental plugin support to include hooks and sources (@asutoshpalai)
826
920
 
827
921
  Bugfixes:
828
922
 
829
- - retry gem downloads ([#4846](https://github.com/bundler/bundler/issues/4846), @jkeiser)
830
- - improve the CompactIndex to handle capitalized legacy gems ([#4867](https://github.com/bundler/bundler/issues/4867), @segiddins)
923
+ - retry gem downloads ([#4846](https://github.com/rubygems/bundler/issues/4846), @jkeiser)
924
+ - improve the CompactIndex to handle capitalized legacy gems ([#4867](https://github.com/rubygems/bundler/issues/4867), @segiddins)
831
925
  - re-use persistent HTTP connections for CompactIndex (@NickLaMuro)
832
926
  - respect `required_ruby_version` when Gemfile contains `ruby` version (@indirect)
833
- - allow `rake release` to sign git tags ([#4743](https://github.com/bundler/bundler/issues/4743), @eagletmt)
927
+ - allow `rake release` to sign git tags ([#4743](https://github.com/rubygems/bundler/issues/4743), @eagletmt)
834
928
  - set process titles when using `#load` during `exec` (@yob)
835
929
  - recognize JRuby shebangs for using `#load` during `exec` (@ojab)
836
- - handle world-writable home directories ([#4726](https://github.com/bundler/bundler/issues/4726), @allenzhao)
837
- - support multi-platform gems via the `gemspec` Gemfile method ([#4798](https://github.com/bundler/bundler/issues/4798), @segiddins)
930
+ - handle world-writable home directories ([#4726](https://github.com/rubygems/bundler/issues/4726), @allenzhao)
931
+ - support multi-platform gems via the `gemspec` Gemfile method ([#4798](https://github.com/rubygems/bundler/issues/4798), @segiddins)
838
932
  - print dots correctly for CompactIndex fetcher (@NickLaMuro)
839
933
  - set an `open_timeout` when requesting gem data via HTTP (@NickLaMuro)
840
934
  - rename the BUNDLE\_ORIG\_ENV variable so it no longer shows up in `config` (@indirect)
841
- - show help only when `-h` or `--help` is passed to Bundler, not to `exec` ([#4801](https://github.com/bundler/bundler/issues/4801), @segiddins)
842
- - handle symlinks to binstubs created by `--standalone` ([#4782](https://github.com/bundler/bundler/issues/4782), @terinjokes)
935
+ - show help only when `-h` or `--help` is passed to Bundler, not to `exec` ([#4801](https://github.com/rubygems/bundler/issues/4801), @segiddins)
936
+ - handle symlinks to binstubs created by `--standalone` ([#4782](https://github.com/rubygems/bundler/issues/4782), @terinjokes)
843
937
 
844
938
  ## 1.13.0.rc.1 (2016-06-27)
845
939
 
@@ -850,9 +944,9 @@ Features:
850
944
 
851
945
  Bugfixes:
852
946
 
853
- - fix support for running RubyGems 1.x on Ruby 2.3 ([#4698](https://github.com/bundler/bundler/issues/4698), @segiddins)
854
- - fix bundle exec'ing to a ruby file when gems are installed into a path ([#4592](https://github.com/bundler/bundler/issues/4592), @chrismo)
855
- - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem ([#4705](https://github.com/bundler/bundler/issues/4705), @segiddins)
947
+ - fix support for running RubyGems 1.x on Ruby 2.3 ([#4698](https://github.com/rubygems/bundler/issues/4698), @segiddins)
948
+ - fix bundle exec'ing to a ruby file when gems are installed into a path ([#4592](https://github.com/rubygems/bundler/issues/4592), @chrismo)
949
+ - when multiple specs in a bundle have the same executable, prefer activating the one from the requested gem ([#4705](https://github.com/rubygems/bundler/issues/4705), @segiddins)
856
950
  - stop changing the load path to require the vendored postit when trampolining (@segiddins)
857
951
  - ensure relative paths are properly printed after completing an installation (@jenseng)
858
952
  - fix re-resolving when there are multiple unchanged path sources (@segiddins)
@@ -862,9 +956,9 @@ Bugfixes:
862
956
 
863
957
  Performance:
864
958
 
865
- - speed up gemfile resolution during `bundle install` by between 4x-100x ([#4376](https://github.com/bundler/bundler/issues/4376), @segiddins)
959
+ - speed up gemfile resolution during `bundle install` by between 4x-100x ([#4376](https://github.com/rubygems/bundler/issues/4376), @segiddins)
866
960
  - generally reduce object allocations when using bundler (@segiddins)
867
- - speed up bin generation for path gems with many files ([#2846](https://github.com/bundler/bundler/issues/2846), @segiddins)
961
+ - speed up bin generation for path gems with many files ([#2846](https://github.com/rubygems/bundler/issues/2846), @segiddins)
868
962
  - fix detecting path spec changes to avoid re-resolving unnecessarily (@jrafanie)
869
963
 
870
964
  Features:
@@ -872,14 +966,14 @@ Features:
872
966
  - automatically trampoline to the bundler version locked in the lockfile, only updating to the running version on `bundle update --bundler` (@segiddins)
873
967
  - laying the groundwork for plugin support, which is currently unsuppported, undocumented, disabled by default, and liable to change without notice (@asutoshpalai)
874
968
  - allow `bundle viz --without` to accept multiple `:`-delimited groups (@mobilutz)
875
- - support for RubyGems 2.6.4 ([#4368](https://github.com/bundler/bundler/issues/4368), @segiddins, @RochesterinNYC)
876
- - colorize updated gem versions ([#4334](https://github.com/bundler/bundler/issues/4334), @bronzdoc)
877
- - add the `--standalone` flag to `bundle binstubs` ([#4594](https://github.com/bundler/bundler/issues/4594), @b-ggs)
969
+ - support for RubyGems 2.6.4 ([#4368](https://github.com/rubygems/bundler/issues/4368), @segiddins, @RochesterinNYC)
970
+ - colorize updated gem versions ([#4334](https://github.com/rubygems/bundler/issues/4334), @bronzdoc)
971
+ - add the `--standalone` flag to `bundle binstubs` ([#4594](https://github.com/rubygems/bundler/issues/4594), @b-ggs)
878
972
  - update the `bundle gem` CoC to contributor covenant v1.4 (@cllns)
879
973
  - use a custom YAML serializer to make config file consistent (@segiddins)
880
- - filter credentials from error messages (bundler/bundler-features[#111](https://github.com/bundler/bundler/issues/111), @RochesterinNYC, @sandlerr)
881
- - support relative paths used inside a nested invocation of `eval_gemfile` ([#4584](https://github.com/bundler/bundler/issues/4584), @RochesterinNYC)
882
- - fail gracefully when attempting to install a yanked gem ([#4344](https://github.com/bundler/bundler/issues/4344), @allenzhao)
974
+ - filter credentials from error messages (bundler/bundler-features[#111](https://github.com/rubygems/bundler/issues/111), @RochesterinNYC, @sandlerr)
975
+ - support relative paths used inside a nested invocation of `eval_gemfile` ([#4584](https://github.com/rubygems/bundler/issues/4584), @RochesterinNYC)
976
+ - fail gracefully when attempting to install a yanked gem ([#4344](https://github.com/rubygems/bundler/issues/4344), @allenzhao)
883
977
  - automatically install an inline gemfile when gems are missing locally (@segiddins)
884
978
  - allow conflicts for gems resolved via `gemspec` (@segiddins)
885
979
  - add `--add-platform` option to `bundle lock` (@segiddins)
@@ -887,18 +981,18 @@ Features:
887
981
 
888
982
  Bugfixes:
889
983
 
890
- - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version ([#4595](https://github.com/bundler/bundler/issues/4595), [#4627](https://github.com/bundler/bundler/issues/4627), @segiddins)
891
- - add support for quoted paths in `$PATH` ([#4323](https://github.com/bundler/bundler/issues/4323), @segiddins)
892
- - check out missing git repos that are not being installed ([#3981](https://github.com/bundler/bundler/issues/3981), @asutoshpalai)
984
+ - implicitly unlock the resolved ruby version when the declared requirements in the gemfile are incompatible with the locked version ([#4595](https://github.com/rubygems/bundler/issues/4595), [#4627](https://github.com/bundler/bundler/issues/4627), @segiddins)
985
+ - add support for quoted paths in `$PATH` ([#4323](https://github.com/rubygems/bundler/issues/4323), @segiddins)
986
+ - check out missing git repos that are not being installed ([#3981](https://github.com/rubygems/bundler/issues/3981), @asutoshpalai)
893
987
  - write `bundler/setup.rb` to a consistent path (@glennpratt)
894
988
  - open editor in `bundle open` with a clean environment (@sj26)
895
- - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile ([#4392](https://github.com/bundler/bundler/issues/4392), [#4430](https://github.com/bundler/bundler/issues/4430), @RochesterinNYC)
896
- - fail gracefully when encountering an `Errno::ENOTSUP` ([#4394](https://github.com/bundler/bundler/issues/4394), @segiddins)
897
- - fail gracefully when encountering an `Errno::EHOSTUNREACH` ([#4642](https://github.com/bundler/bundler/issues/4642), @allenzhao)
898
- - fix loading config files with very long values ([#4370](https://github.com/bundler/bundler/issues/4370), @segiddins)
899
- - only show potential updates for gemfile platforms in `bundle outdated` ([#4450](https://github.com/bundler/bundler/issues/4450), @RochesterinNYC)
900
- - allow running `bundle install --deployment` after `bundle package --all` with path gems ([#2175](https://github.com/bundler/bundler/issues/2175), @allenzhao)
901
- - add support for patchlevels in ruby versions in the gemfile and gemspecs ([#4593](https://github.com/bundler/bundler/issues/4593), @chalkos)
989
+ - resolve infinitely recursive copy when running `bundle package --all` with a `gemspec` in the gemfile ([#4392](https://github.com/rubygems/bundler/issues/4392), [#4430](https://github.com/bundler/bundler/issues/4430), @RochesterinNYC)
990
+ - fail gracefully when encountering an `Errno::ENOTSUP` ([#4394](https://github.com/rubygems/bundler/issues/4394), @segiddins)
991
+ - fail gracefully when encountering an `Errno::EHOSTUNREACH` ([#4642](https://github.com/rubygems/bundler/issues/4642), @allenzhao)
992
+ - fix loading config files with very long values ([#4370](https://github.com/rubygems/bundler/issues/4370), @segiddins)
993
+ - only show potential updates for gemfile platforms in `bundle outdated` ([#4450](https://github.com/rubygems/bundler/issues/4450), @RochesterinNYC)
994
+ - allow running `bundle install --deployment` after `bundle package --all` with path gems ([#2175](https://github.com/rubygems/bundler/issues/2175), @allenzhao)
995
+ - add support for patchlevels in ruby versions in the gemfile and gemspecs ([#4593](https://github.com/rubygems/bundler/issues/4593), @chalkos)
902
996
 
903
997
  ## 1.12.6 (2016-10-10)
904
998
 
@@ -908,17 +1002,17 @@ Bugfixes:
908
1002
  ## 1.12.5 (2016-05-25)
909
1003
 
910
1004
  Bugfixes:
911
- - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` ([#4596](https://github.com/bundler/bundler/issues/4596), @segiddins)
1005
+ - only take over `--help` on `bundle exec` when the first two arguments are `exec` and `--help` ([#4596](https://github.com/rubygems/bundler/issues/4596), @segiddins)
912
1006
  - don't require `require: true` dependencies that are excluded via `env` or `install_if` (@BrianHawley)
913
- - reduce the number of threads used simultaneously by bundler ([#4367](https://github.com/bundler/bundler/issues/4367), @will-in-wi)
1007
+ - reduce the number of threads used simultaneously by bundler ([#4367](https://github.com/rubygems/bundler/issues/4367), @will-in-wi)
914
1008
 
915
1009
  ## 1.12.4 (2016-05-16)
916
1010
 
917
1011
  Bugfixes:
918
- - ensure concurrent use of the new index can't corrupt the cache ([#4519](https://github.com/bundler/bundler/issues/4519), @domcleal)
919
- - allow missing rubygems credentials when pushing a gem with a custom host ([#4437](https://github.com/bundler/bundler/issues/4437), @Cohen-Carlisle)
920
- - fix installing built-in specs with `--standalone` ([#4557](https://github.com/bundler/bundler/issues/4557), @segiddins)
921
- - fix `bundle show` when a gem has a prerelease version that includes a `-` ([#4385](https://github.com/bundler/bundler/issues/4385), @segiddins)
1012
+ - ensure concurrent use of the new index can't corrupt the cache ([#4519](https://github.com/rubygems/bundler/issues/4519), @domcleal)
1013
+ - allow missing rubygems credentials when pushing a gem with a custom host ([#4437](https://github.com/rubygems/bundler/issues/4437), @Cohen-Carlisle)
1014
+ - fix installing built-in specs with `--standalone` ([#4557](https://github.com/rubygems/bundler/issues/4557), @segiddins)
1015
+ - fix `bundle show` when a gem has a prerelease version that includes a `-` ([#4385](https://github.com/rubygems/bundler/issues/4385), @segiddins)
922
1016
 
923
1017
  ## 1.12.3 (2016-05-06)
924
1018
 
@@ -929,16 +1023,16 @@ Bugfixes:
929
1023
  ## 1.12.2 (2016-05-04)
930
1024
 
931
1025
  Bugfixes:
932
- - fix modifying a frozen string when the resolver conflicts on dependencies with requirements ([#4520](https://github.com/bundler/bundler/issues/4520), @grzuy)
933
- - fix `bundle exec foo --help` not showing the invoked command's help ([#4480](https://github.com/bundler/bundler/issues/4480), @b-ggs)
1026
+ - fix modifying a frozen string when the resolver conflicts on dependencies with requirements ([#4520](https://github.com/rubygems/bundler/issues/4520), @grzuy)
1027
+ - fix `bundle exec foo --help` not showing the invoked command's help ([#4480](https://github.com/rubygems/bundler/issues/4480), @b-ggs)
934
1028
 
935
1029
  ## 1.12.1 (2016-04-30)
936
1030
 
937
1031
  Bugfixes:
938
1032
  - automatically fallback when the new index has a checksum mismatch instead of erroring (@segiddins)
939
- - fix computation of new index file local checksums on Windows ([#4472](https://github.com/bundler/bundler/issues/4472), @mwrock)
940
- - properly handle certain resolver backtracking cases without erroring (@segiddins, [#4484](https://github.com/bundler/bundler/issues/4484))
941
- - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, [#4482](https://github.com/bundler/bundler/issues/4482))
1033
+ - fix computation of new index file local checksums on Windows ([#4472](https://github.com/rubygems/bundler/issues/4472), @mwrock)
1034
+ - properly handle certain resolver backtracking cases without erroring (@segiddins, [#4484](https://github.com/rubygems/bundler/issues/4484))
1035
+ - ensure the `$LOAD_PATH` contains specs' load paths in the correct order (@segiddins, [#4482](https://github.com/rubygems/bundler/issues/4482))
942
1036
 
943
1037
  ## 1.12.0 (2016-04-28)
944
1038
 
@@ -948,7 +1042,7 @@ This space intentionally left blank.
948
1042
 
949
1043
  Bugfixes:
950
1044
 
951
- - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions ([#4438](https://github.com/bundler/bundler/issues/4438), @RochesterinNYC)
1045
+ - don't fail when `bundle outdated` is run with flags and the lockfile contains non-semver versions ([#4438](https://github.com/rubygems/bundler/issues/4438), @RochesterinNYC)
952
1046
 
953
1047
  ## 1.12.0.rc.3 (2016-04-19)
954
1048
 
@@ -960,11 +1054,11 @@ Bugfixes:
960
1054
 
961
1055
  Features:
962
1056
 
963
- - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` ([#4396](https://github.com/bundler/bundler/issues/4396), @RochesterinNYC)
1057
+ - `bundle outdated` handles all combinations of `--major`, `--minor`, and `--patch` ([#4396](https://github.com/rubygems/bundler/issues/4396), @RochesterinNYC)
964
1058
 
965
1059
  Bugfixes:
966
1060
 
967
- - prevent endless recursive copy for `bundle package --all` ([#4392](https://github.com/bundler/bundler/issues/4392), @RochesterinNYC)
1061
+ - prevent endless recursive copy for `bundle package --all` ([#4392](https://github.com/rubygems/bundler/issues/4392), @RochesterinNYC)
968
1062
  - allow executables that are `load`ed to exit non-0 via an `at_exit` hook when invoked by `bundle exec` (@segiddins)
969
1063
  - nested invocations of `bundle exec` properly preserve the `$PATH` and `$GEM_PATH` environment variables (@segiddins)
970
1064
 
@@ -972,13 +1066,13 @@ Bugfixes:
972
1066
 
973
1067
  Performance:
974
1068
 
975
- - Download gem metadata from globally distributed CDN endpoints ([#4358](https://github.com/bundler/bundler/issues/4358), @segiddins)
1069
+ - Download gem metadata from globally distributed CDN endpoints ([#4358](https://github.com/rubygems/bundler/issues/4358), @segiddins)
976
1070
 
977
1071
  Bugfixes:
978
1072
 
979
- - handle Ruby pre-releases built from source ([#4324](https://github.com/bundler/bundler/issues/4324), @RochesterinNYC)
980
- - support binstubs from RubyGems 2.6 ([#4341](https://github.com/bundler/bundler/issues/4341), @segiddins)
981
- - handle quotes present in in PATH ([#4326](https://github.com/bundler/bundler/issues/4326), @segiddins)
1073
+ - handle Ruby pre-releases built from source ([#4324](https://github.com/rubygems/bundler/issues/4324), @RochesterinNYC)
1074
+ - support binstubs from RubyGems 2.6 ([#4341](https://github.com/rubygems/bundler/issues/4341), @segiddins)
1075
+ - handle quotes present in in PATH ([#4326](https://github.com/rubygems/bundler/issues/4326), @segiddins)
982
1076
 
983
1077
  ## 1.12.0.pre.2 (2016-02-26)
984
1078
 
@@ -989,80 +1083,80 @@ Performance:
989
1083
  Features:
990
1084
 
991
1085
  - add a `--patch` flag for `bundle outdated` (@RochesterinNYC)
992
- - add `Bundler.clean_env` and `Bundler.original_env` ([#4232](https://github.com/bundler/bundler/issues/4232), @njam)
993
- - add `--frozen` support to `bundle package` ([#3356](https://github.com/bundler/bundler/issues/3356), @RochesterinNYC)
1086
+ - add `Bundler.clean_env` and `Bundler.original_env` ([#4232](https://github.com/rubygems/bundler/issues/4232), @njam)
1087
+ - add `--frozen` support to `bundle package` ([#3356](https://github.com/rubygems/bundler/issues/3356), @RochesterinNYC)
994
1088
 
995
1089
  Bugfixes:
996
1090
 
997
1091
  - place bundler loaded gems after `-I` and `RUBYLIB` (@Elffers)
998
- - give a better error message when filesystem access raises an `EPROTO` error ([#3581](https://github.com/bundler/bundler/issues/3581), [#3932](https://github.com/bundler/bundler/issues/3932), [#4163](https://github.com/bundler/bundler/issues/4163), @RochesterinNYC)
1092
+ - give a better error message when filesystem access raises an `EPROTO` error ([#3581](https://github.com/rubygems/bundler/issues/3581), [#3932](https://github.com/bundler/bundler/issues/3932), [#4163](https://github.com/bundler/bundler/issues/4163), @RochesterinNYC)
999
1093
  - give a better error message when both `--deployment` and `--system` are used together (@RochesterinNYC)
1000
- - fix `$PATH` being preserved for use in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins, @njam)
1001
- - give a better error message when running `bundle outdated` in frozen mode ([#4287](https://github.com/bundler/bundler/issues/4287), @RochesterinNYC)
1002
- - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration ([#4294](https://github.com/bundler/bundler/issues/4294), @segiddins)
1003
- - give a better error message when authentication details aren't properly escaped ([#4288](https://github.com/bundler/bundler/issues/4288), @RochesterinNYC)
1094
+ - fix `$PATH` being preserved for use in `Bundler.with_clean_env` ([#4251](https://github.com/rubygems/bundler/issues/4251), @segiddins, @njam)
1095
+ - give a better error message when running `bundle outdated` in frozen mode ([#4287](https://github.com/rubygems/bundler/issues/4287), @RochesterinNYC)
1096
+ - handle when `http_proxy` is set to `:no_proxy` in the rubygems configuration ([#4294](https://github.com/rubygems/bundler/issues/4294), @segiddins)
1097
+ - give a better error message when authentication details aren't properly escaped ([#4288](https://github.com/rubygems/bundler/issues/4288), @RochesterinNYC)
1004
1098
  - fix `bundle outdated --minor` to only report updates that match the current minor version (@RochesterinNYC)
1005
- - fix extra dependencies being resolved unnecessarily ([#4276](https://github.com/bundler/bundler/issues/4276), @segiddins)
1006
- - give a better error message when missing specs due to platform mis-matches ([#4259](https://github.com/bundler/bundler/issues/4259), @RochesterinNYC)
1007
- - skip rebuilding extensions for git gems if they are already built ([#4082](https://github.com/bundler/bundler/issues/4082), @csfrancis, @indirect, @segiddins)
1008
- - fix `bundle install` not installing when the `no_install` setting is set ([#3966](https://github.com/bundler/bundler/issues/3966), @chulkilee, @segiddins)
1099
+ - fix extra dependencies being resolved unnecessarily ([#4276](https://github.com/rubygems/bundler/issues/4276), @segiddins)
1100
+ - give a better error message when missing specs due to platform mis-matches ([#4259](https://github.com/rubygems/bundler/issues/4259), @RochesterinNYC)
1101
+ - skip rebuilding extensions for git gems if they are already built ([#4082](https://github.com/rubygems/bundler/issues/4082), @csfrancis, @indirect, @segiddins)
1102
+ - fix `bundle install` not installing when the `no_install` setting is set ([#3966](https://github.com/rubygems/bundler/issues/3966), @chulkilee, @segiddins)
1009
1103
 
1010
1104
  ## 1.12.0.pre.1 (2016-02-09)
1011
1105
 
1012
1106
  Performance:
1013
1107
 
1014
1108
  - speed up `bundle install` and `bundle update` by using the new compact gem index (@segiddins, @fotanus, @indirect)
1015
- - speed up `bundle exec` by avoiding loading the gemfile twice ([#2951](https://github.com/bundler/bundler/issues/2951), [#2952](https://github.com/bundler/bundler/issues/2952), @segiddins)
1109
+ - speed up `bundle exec` by avoiding loading the gemfile twice ([#2951](https://github.com/rubygems/bundler/issues/2951), [#2952](https://github.com/bundler/bundler/issues/2952), @segiddins)
1016
1110
 
1017
1111
  Features:
1018
1112
 
1019
1113
  - add support for using version operators to specify ruby versions in the Gemfile (@jtarchie)
1020
1114
  - redirect `--help` flag for plugins to that plugin's man page (@RochesterinNYC)
1021
- - support probing a mirror with a fallback timeout ([#4128](https://github.com/bundler/bundler/issues/4128), @pcarranza)
1115
+ - support probing a mirror with a fallback timeout ([#4128](https://github.com/rubygems/bundler/issues/4128), @pcarranza)
1022
1116
  - add `--full-index` option to `bundle lock` (@segiddins)
1023
1117
  - support running with frozen string literals (@deepj, @segiddins)
1024
- - add `--major` and `--minor` options to `bundle outdated` ([#3805](https://github.com/bundler/bundler/issues/3805), @cirdes)
1118
+ - add `--major` and `--minor` options to `bundle outdated` ([#3805](https://github.com/rubygems/bundler/issues/3805), @cirdes)
1025
1119
  - allow passing a custom `ui` to `bundler/inline` (@lamont-granquist)
1026
- - add support for ruby 2.4 ([#4266](https://github.com/bundler/bundler/issues/4266), @segiddins)
1120
+ - add support for ruby 2.4 ([#4266](https://github.com/rubygems/bundler/issues/4266), @segiddins)
1027
1121
  - add `bundle outdated --parseable` for machine-readable output (@RochesterinNYC)
1028
1122
 
1029
1123
  Bugfixes:
1030
1124
 
1031
- - fix `bundle package --all` recursing endlessly ([#4158](https://github.com/bundler/bundler/issues/4158), @RochesterinNYC)
1032
- - fail fast on more errors when fetching remote resources ([#4154](https://github.com/bundler/bundler/issues/4154), @RochesterinNYC)
1033
- - give a better error message when a given git commit can't be found ([#4140](https://github.com/bundler/bundler/issues/4140), @doy)
1034
- - give a better error message when `bundle clean` doesn't have sufficient permissions ([#4170](https://github.com/bundler/bundler/issues/4170), @RochesterinNYC)
1125
+ - fix `bundle package --all` recursing endlessly ([#4158](https://github.com/rubygems/bundler/issues/4158), @RochesterinNYC)
1126
+ - fail fast on more errors when fetching remote resources ([#4154](https://github.com/rubygems/bundler/issues/4154), @RochesterinNYC)
1127
+ - give a better error message when a given git commit can't be found ([#4140](https://github.com/rubygems/bundler/issues/4140), @doy)
1128
+ - give a better error message when `bundle clean` doesn't have sufficient permissions ([#4170](https://github.com/rubygems/bundler/issues/4170), @RochesterinNYC)
1035
1129
  - give a better error message when reading a bundler config file fails (@segiddins)
1036
- - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), [#4150](https://github.com/bundler/bundler/issues/4150), @smellsblue)
1130
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/rubygems/bundler/issues/4102), [#4150](https://github.com/bundler/bundler/issues/4150), @smellsblue)
1037
1131
  - fix `bundle gem` with minitest to use the correct rake task (@kotoshenya)
1038
- - give a better error message when ssl isn't available ([#4054](https://github.com/bundler/bundler/issues/4054), @RochesterinNYC)
1039
- - print the original `require` error when `Bundler.require` fails ([#4182](https://github.com/bundler/bundler/issues/4182), @RochesterinNYC)
1040
- - give a better error message when certain resources are temporarily unavailable ([#4183](https://github.com/bundler/bundler/issues/4183), @RochesterinNYC)
1132
+ - give a better error message when ssl isn't available ([#4054](https://github.com/rubygems/bundler/issues/4054), @RochesterinNYC)
1133
+ - print the original `require` error when `Bundler.require` fails ([#4182](https://github.com/rubygems/bundler/issues/4182), @RochesterinNYC)
1134
+ - give a better error message when certain resources are temporarily unavailable ([#4183](https://github.com/rubygems/bundler/issues/4183), @RochesterinNYC)
1041
1135
  - fix returning case-sensitive gem mirror URIs on ruby 2.3 (@segiddins)
1042
- - ignore colorized output from `git` when determining the current branch ([#4056](https://github.com/bundler/bundler/issues/4056), @agis-)
1136
+ - ignore colorized output from `git` when determining the current branch ([#4056](https://github.com/rubygems/bundler/issues/4056), @agis-)
1043
1137
  - fix storing the shared gems config option as a boolean (@vassilevsky)
1044
1138
  - add support for running `bundle gem --exe` instead of using the `--bin` option (@christhekeele)
1045
- - fix `exec`-ing with 0 args in a directory with spaces ([#4230](https://github.com/bundler/bundler/issues/4230), @segiddins)
1046
- - avoid installing extraneous gems when resolving to an older version of a spec ([#4101](https://github.com/bundler/bundler/issues/4101), [#4198](https://github.com/bundler/bundler/issues/4198), @segiddins)
1047
- - ensure paths resolved when parsing a gemfile are relative to that file ([#3349](https://github.com/bundler/bundler/issues/3349), @dtognazzini)
1048
- - give a better error message when encountering an invalid gemspec ([#4248](https://github.com/bundler/bundler/issues/4248), [#4275](https://github.com/bundler/bundler/issues/4275), @RochesterinNYC)
1049
- - preserve the original `PATH` in `Bundler.with_clean_env` ([#4251](https://github.com/bundler/bundler/issues/4251), @segiddins)
1050
- - ensure standalone file paths are relative to the project root ([#4144](https://github.com/bundler/bundler/issues/4144), @glennpratt)
1139
+ - fix `exec`-ing with 0 args in a directory with spaces ([#4230](https://github.com/rubygems/bundler/issues/4230), @segiddins)
1140
+ - avoid installing extraneous gems when resolving to an older version of a spec ([#4101](https://github.com/rubygems/bundler/issues/4101), [#4198](https://github.com/bundler/bundler/issues/4198), @segiddins)
1141
+ - ensure paths resolved when parsing a gemfile are relative to that file ([#3349](https://github.com/rubygems/bundler/issues/3349), @dtognazzini)
1142
+ - give a better error message when encountering an invalid gemspec ([#4248](https://github.com/rubygems/bundler/issues/4248), [#4275](https://github.com/bundler/bundler/issues/4275), @RochesterinNYC)
1143
+ - preserve the original `PATH` in `Bundler.with_clean_env` ([#4251](https://github.com/rubygems/bundler/issues/4251), @segiddins)
1144
+ - ensure standalone file paths are relative to the project root ([#4144](https://github.com/rubygems/bundler/issues/4144), @glennpratt)
1051
1145
 
1052
1146
  ## 1.11.2 (2015-12-15)
1053
1147
 
1054
1148
  Bugfixes:
1055
1149
 
1056
- - _really_ stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
1150
+ - _really_ stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/rubygems/bundler/issues/4147), @indirect)
1057
1151
 
1058
1152
  ## 1.11.1 (2015-12-15)
1059
1153
 
1060
1154
  Bugfixes:
1061
1155
 
1062
- - lazy-load Psych, again ([#4149](https://github.com/bundler/bundler/issues/4149), @indirect)
1063
- - allow gemspec gems on other platforms ([#4150](https://github.com/bundler/bundler/issues/4150), @indirect)
1064
- - fix --no-coc and --no-mit flags on `gem` ([#4148](https://github.com/bundler/bundler/issues/4148), @RochesterinNYC)
1065
- - stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/bundler/bundler/issues/4147), @indirect)
1156
+ - lazy-load Psych, again ([#4149](https://github.com/rubygems/bundler/issues/4149), @indirect)
1157
+ - allow gemspec gems on other platforms ([#4150](https://github.com/rubygems/bundler/issues/4150), @indirect)
1158
+ - fix --no-coc and --no-mit flags on `gem` ([#4148](https://github.com/rubygems/bundler/issues/4148), @RochesterinNYC)
1159
+ - stop calling `required_ruby_version` on nil @specifications ([#4147](https://github.com/rubygems/bundler/issues/4147), @indirect)
1066
1160
 
1067
1161
  ## 1.11.0 (2015-12-12)
1068
1162
 
@@ -1072,16 +1166,16 @@ Bugfixes:
1072
1166
 
1073
1167
  Bugfixes:
1074
1168
 
1075
- - fail gracefully when trying to execute a non-executable file ([#4081](https://github.com/bundler/bundler/issues/4081), @fotanus)
1169
+ - fail gracefully when trying to execute a non-executable file ([#4081](https://github.com/rubygems/bundler/issues/4081), @fotanus)
1076
1170
  - fix a crash when pushing a gem via `rake release` (@segiddins)
1077
1171
 
1078
1172
  ## 1.11.0.pre.1 (2015-11-29)
1079
1173
 
1080
1174
  Features:
1081
1175
 
1082
- - actual Gemfile and lockfile filenames are used in messages ([#3672](https://github.com/bundler/bundler/issues/3672), @segiddins)
1176
+ - actual Gemfile and lockfile filenames are used in messages ([#3672](https://github.com/rubygems/bundler/issues/3672), @segiddins)
1083
1177
  - the git remote for `rake release` is now customizable (@skateman)
1084
- - file access permissions errors are now much more friendly ([#3703](https://github.com/bundler/bundler/issues/3703), [#3735](https://github.com/bundler/bundler/issues/3735), [#3858](https://github.com/bundler/bundler/issues/3858), [#3988](https://github.com/bundler/bundler/issues/3988), [#4009](https://github.com/bundler/bundler/issues/4009) @repinel, @Elffers, @segiddins, @agis-)
1178
+ - file access permissions errors are now much more friendly ([#3703](https://github.com/rubygems/bundler/issues/3703), [#3735](https://github.com/bundler/bundler/issues/3735), [#3858](https://github.com/bundler/bundler/issues/3858), [#3988](https://github.com/bundler/bundler/issues/3988), [#4009](https://github.com/bundler/bundler/issues/4009) @repinel, @Elffers, @segiddins, @agis-)
1085
1179
  - add support for showing help for plugin commands (@tf)
1086
1180
  - send `X-Gemfile-Source` header to source mirrors (@agis-)
1087
1181
  - show what version upstream dependencies were resolved to in conflict messages (@segiddins)
@@ -1093,12 +1187,12 @@ Features:
1093
1187
  - update the `bundle gem` code of conduct template to Contributor Covenant v1.3.0 (@CoralineAda)
1094
1188
  - add support for specifying gems to update when running `bundle lock` via `--update gem1 gem2` (@JuanitoFatas)
1095
1189
  - added support for MRI 2.3 (@amatsuda)
1096
- - show a helpful message when requiring a file in `bundler require` fails ([#3960](https://github.com/bundler/bundler/issues/3960), @agis-)
1097
- - include git revision hash when printing a git source ([#3433](https://github.com/bundler/bundler/issues/3433), @agis-)
1190
+ - show a helpful message when requiring a file in `bundler require` fails ([#3960](https://github.com/rubygems/bundler/issues/3960), @agis-)
1191
+ - include git revision hash when printing a git source ([#3433](https://github.com/rubygems/bundler/issues/3433), @agis-)
1098
1192
  - improve hint when a resolution conflict occurs (@seanlinsley)
1099
- - show a friendly error when a git ref is not found ([#3879](https://github.com/bundler/bundler/issues/3879), @agis-)
1100
- - improve error message when sources are not absolute URIs ([#3925](https://github.com/bundler/bundler/issues/3925), @agis-)
1101
- - add `pkg` to rake's clobber list ([#3676](https://github.com/bundler/bundler/issues/3676), @jasonkarns)
1193
+ - show a friendly error when a git ref is not found ([#3879](https://github.com/rubygems/bundler/issues/3879), @agis-)
1194
+ - improve error message when sources are not absolute URIs ([#3925](https://github.com/rubygems/bundler/issues/3925), @agis-)
1195
+ - add `pkg` to rake's clobber list ([#3676](https://github.com/rubygems/bundler/issues/3676), @jasonkarns)
1102
1196
  - retry fetching specs when fetching version metadata fails (@jingweno)
1103
1197
 
1104
1198
  Bugfixes:
@@ -1106,36 +1200,36 @@ Bugfixes:
1106
1200
  - avoid showing bundler version warning messages twice (@fotanus)
1107
1201
  - fix running `bundle check` with `--path` when the gems are only installed globally (@akihiro17)
1108
1202
  - fix `bin/setup` from `bundle gem` assuming `bash` is in `/bin`
1109
- - fail more gracefully when an HTTP remote is unreachable ([#3765](https://github.com/bundler/bundler/issues/3765), @steverob)
1203
+ - fail more gracefully when an HTTP remote is unreachable ([#3765](https://github.com/rubygems/bundler/issues/3765), @steverob)
1110
1204
  - fix a warning running `bundle exec` on jruby 9.0.0.0 (@deivid-rodriguez, @mastfish)
1111
1205
  - fix the `bundle gem` readme when no tests are generated (@roseweixel)
1112
- - the dependencies on test gems in `bundle gem` are now locked to major versions ([#3811](https://github.com/bundler/bundler/issues/3811), @indirect)
1113
- - fix the paths for native extensions generated by `--standalone` ([#3813](https://github.com/bundler/bundler/issues/3813), @AlexanderPavlenko)
1206
+ - the dependencies on test gems in `bundle gem` are now locked to major versions ([#3811](https://github.com/rubygems/bundler/issues/3811), @indirect)
1207
+ - fix the paths for native extensions generated by `--standalone` ([#3813](https://github.com/rubygems/bundler/issues/3813), @AlexanderPavlenko)
1114
1208
  - fix trying to cache a gem that has no source (@EduardoBautista)
1115
- - fix `--source` option to `bundle update` causing incorrect gem unlocking ([#3759](https://github.com/bundler/bundler/issues/3759), [#3761](https://github.com/bundler/bundler/issues/3761), @neoeno)
1116
- - fix handling an empty `BUNDLE_GEMFILE` environment variables ([#3678](https://github.com/bundler/bundler/issues/3678), @agis-)
1209
+ - fix `--source` option to `bundle update` causing incorrect gem unlocking ([#3759](https://github.com/rubygems/bundler/issues/3759), [#3761](https://github.com/bundler/bundler/issues/3761), @neoeno)
1210
+ - fix handling an empty `BUNDLE_GEMFILE` environment variables ([#3678](https://github.com/rubygems/bundler/issues/3678), @agis-)
1117
1211
  - avoid cleaning up gem extension directory in `bundle clean` (@Sirupsen)
1118
1212
  - fix the `ssl_verify_mode` setting not being treated as a number (@goughy000)
1119
- - fix not retrying on zlib errors ([#4047](https://github.com/bundler/bundler/issues/4047), @andremedeiros)
1213
+ - fix not retrying on zlib errors ([#4047](https://github.com/rubygems/bundler/issues/4047), @andremedeiros)
1120
1214
  - fix a warning being shown for using `URI.encode` (@EduardoBautista)
1121
- - fix handling of fatal HTTP errors ([#3830](https://github.com/bundler/bundler/issues/3830), @indirect)
1122
- - ensure all `sudo` access is done in a thread-safe manner ([#3910](https://github.com/bundler/bundler/issues/3910), @agis-)
1215
+ - fix handling of fatal HTTP errors ([#3830](https://github.com/rubygems/bundler/issues/3830), @indirect)
1216
+ - ensure all `sudo` access is done in a thread-safe manner ([#3910](https://github.com/rubygems/bundler/issues/3910), @agis-)
1123
1217
  - fix caching gems with a path with the same prefix as the bundled application (@indirect)
1124
- - fix showing gemspec validation errors on `bundle exec` ([#3895](https://github.com/bundler/bundler/issues/3895), @agis-)
1125
- - distinguish Gemfile syntax and evaluation errors ([#3783](https://github.com/bundler/bundler/issues/3783), @agis-)
1126
- - fix nested Gemfile sources not restoring the previous source ([#3974](https://github.com/bundler/bundler/issues/3974), @agis-)
1127
- - fix the `RUBYLIB` environment variable not being cleaned ([#3982](https://github.com/bundler/bundler/issues/3982), @agis-)
1128
- - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock ([#4012](https://github.com/bundler/bundler/issues/4012), @lukaso)
1218
+ - fix showing gemspec validation errors on `bundle exec` ([#3895](https://github.com/rubygems/bundler/issues/3895), @agis-)
1219
+ - distinguish Gemfile syntax and evaluation errors ([#3783](https://github.com/rubygems/bundler/issues/3783), @agis-)
1220
+ - fix nested Gemfile sources not restoring the previous source ([#3974](https://github.com/rubygems/bundler/issues/3974), @agis-)
1221
+ - fix the `RUBYLIB` environment variable not being cleaned ([#3982](https://github.com/rubygems/bundler/issues/3982), @agis-)
1222
+ - fix handling a dependency missing from `Gemfile.lock` so parallel installation does not deadlock ([#4012](https://github.com/rubygems/bundler/issues/4012), @lukaso)
1129
1223
  - also print gemspecs in `bundle env` output (@agis-)
1130
- - fix handling when a `path` source does not have a gemspec but a lockfile says there is ([#4004](https://github.com/bundler/bundler/issues/4004), @segiddins)
1131
- - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set ([#3656](https://github.com/bundler/bundler/issues/3656), @agis-)
1132
- - fix handling invalid RubyGems configuration files ([#4042](https://github.com/bundler/bundler/issues/4042), @agis-)
1224
+ - fix handling when a `path` source does not have a gemspec but a lockfile says there is ([#4004](https://github.com/rubygems/bundler/issues/4004), @segiddins)
1225
+ - show a warning when the `RUBYGEMS_GEMDEPS` environment variable is set ([#3656](https://github.com/rubygems/bundler/issues/3656), @agis-)
1226
+ - fix handling invalid RubyGems configuration files ([#4042](https://github.com/rubygems/bundler/issues/4042), @agis-)
1133
1227
  - fix `bundle console` falling back to `irb` when the preferred console is unavailable (@felixbuenemann)
1134
- - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/bundler/bundler/issues/4102), @smellsblue)
1228
+ - restrict platforms when referencing a `gemspec` in the `Gemfile` to those defined in the gemspec ([#4102](https://github.com/rubygems/bundler/issues/4102), @smellsblue)
1135
1229
 
1136
1230
  Performance:
1137
1231
 
1138
- - speed up dependency resolution in pathological cases by 25x ([#3803](https://github.com/bundler/bundler/issues/3803), @segiddins)
1232
+ - speed up dependency resolution in pathological cases by 25x ([#3803](https://github.com/rubygems/bundler/issues/3803), @segiddins)
1139
1233
  - drop string allocations when searching for gems (@jrafanie)
1140
1234
 
1141
1235
  ## 1.10.6 (2015-07-22)
@@ -1146,8 +1240,8 @@ Workarounds:
1146
1240
 
1147
1241
  Bugfixes:
1148
1242
 
1149
- - fix installing dependencies in the correct order ([#3799](https://github.com/bundler/bundler/issues/3799), @pducks32)
1150
- - fix sorting of mixed DependencyLists ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
1243
+ - fix installing dependencies in the correct order ([#3799](https://github.com/rubygems/bundler/issues/3799), @pducks32)
1244
+ - fix sorting of mixed DependencyLists ([#3762](https://github.com/rubygems/bundler/issues/3762), @tony-spataro-rs)
1151
1245
  - fix `install_if` conditionals when using the block form (@danieltdt)
1152
1246
 
1153
1247
  ## 1.10.5 (2015-06-24)
@@ -1158,9 +1252,9 @@ Workarounds:
1158
1252
 
1159
1253
  Bugfixes:
1160
1254
 
1161
- - fix sorting of mixed DependencyLists with RubyGems >= 2.23 ([#3762](https://github.com/bundler/bundler/issues/3762), @tony-spataro-rs)
1255
+ - fix sorting of mixed DependencyLists with RubyGems >= 2.23 ([#3762](https://github.com/rubygems/bundler/issues/3762), @tony-spataro-rs)
1162
1256
  - speed up resolver for path and git gems (@segiddins)
1163
- - fix `install --force` to not reinstall Bundler ([#3743](https://github.com/bundler/bundler/issues/3743), @karlo57)
1257
+ - fix `install --force` to not reinstall Bundler ([#3743](https://github.com/rubygems/bundler/issues/3743), @karlo57)
1164
1258
 
1165
1259
  ## 1.10.4 (2015-06-16)
1166
1260
 
@@ -1177,24 +1271,24 @@ Bugfixes:
1177
1271
 
1178
1272
  Bugfixes:
1179
1273
 
1180
- - allow missing gemspec files when validating path and git gems ([#3686](https://github.com/bundler/bundler/issues/3686), [#3698](https://github.com/bundler/bundler/issues/3698), @segiddins)
1181
- - fix regression in `rake install` ([#3701](https://github.com/bundler/bundler/issues/3701), [#3705](https://github.com/bundler/bundler/issues/3705), @segiddins)
1182
- - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` ([#3699](https://github.com/bundler/bundler/issues/3699), @segiddins)
1183
- - fix `bundler/inline` requiring a newly-installed gem ([#3693](https://github.com/bundler/bundler/issues/3693), @indirect, @segiddins)
1274
+ - allow missing gemspec files when validating path and git gems ([#3686](https://github.com/rubygems/bundler/issues/3686), [#3698](https://github.com/bundler/bundler/issues/3698), @segiddins)
1275
+ - fix regression in `rake install` ([#3701](https://github.com/rubygems/bundler/issues/3701), [#3705](https://github.com/bundler/bundler/issues/3705), @segiddins)
1276
+ - fix regression when calling `gem` with `bundle exec` or `-rbundler/setup` ([#3699](https://github.com/rubygems/bundler/issues/3699), @segiddins)
1277
+ - fix `bundler/inline` requiring a newly-installed gem ([#3693](https://github.com/rubygems/bundler/issues/3693), @indirect, @segiddins)
1184
1278
 
1185
1279
  ## 1.10.2 (2015-05-29)
1186
1280
 
1187
1281
  Bugfixes:
1188
1282
 
1189
- - fix regression in `bundle update GEM` performance introduced in 1.10.0 ([#3687](https://github.com/bundler/bundler/issues/3687), @segiddins)
1283
+ - fix regression in `bundle update GEM` performance introduced in 1.10.0 ([#3687](https://github.com/rubygems/bundler/issues/3687), @segiddins)
1190
1284
 
1191
1285
  ## 1.10.1 (2015-05-28)
1192
1286
 
1193
1287
  Bugfixes:
1194
1288
 
1195
1289
  - silence ruby warning when running CLI commands (@segiddins)
1196
- - validate gemspecs in non-packaging mode ([#3681](https://github.com/bundler/bundler/issues/3681), @segiddins)
1197
- - ensure the same chdir mutex as RubyGems is used ([#3680](https://github.com/bundler/bundler/issues/3680), @segiddins)
1290
+ - validate gemspecs in non-packaging mode ([#3681](https://github.com/rubygems/bundler/issues/3681), @segiddins)
1291
+ - ensure the same chdir mutex as RubyGems is used ([#3680](https://github.com/rubygems/bundler/issues/3680), @segiddins)
1198
1292
 
1199
1293
  ## 1.10.0 (2015-05-28)
1200
1294
 
@@ -1204,54 +1298,54 @@ Bugfixes:
1204
1298
 
1205
1299
  Features:
1206
1300
 
1207
- - dramatically speed up resolving some slow Gemfiles ([#3635](https://github.com/bundler/bundler/issues/3635), @segiddins)
1208
- - track CI platforms running Bundler ([#3646](https://github.com/bundler/bundler/issues/3646), @fotanus)
1301
+ - dramatically speed up resolving some slow Gemfiles ([#3635](https://github.com/rubygems/bundler/issues/3635), @segiddins)
1302
+ - track CI platforms running Bundler ([#3646](https://github.com/rubygems/bundler/issues/3646), @fotanus)
1209
1303
 
1210
1304
  Bugfixes:
1211
1305
 
1212
- - allow `viz` to work with prereleases ([#3621](https://github.com/bundler/bundler/issues/3621), [#3217](https://github.com/bundler/bundler/issues/3217), @aprescott)
1213
- - validate gemspecs used in path and git gems ([#3639](https://github.com/bundler/bundler/issues/3639), @segiddins, @indirect)
1214
- - stop printing config warnings when config is unchanged ([#3649](https://github.com/bundler/bundler/issues/3649), @fotanus, @indirect)
1306
+ - allow `viz` to work with prereleases ([#3621](https://github.com/rubygems/bundler/issues/3621), [#3217](https://github.com/bundler/bundler/issues/3217), @aprescott)
1307
+ - validate gemspecs used in path and git gems ([#3639](https://github.com/rubygems/bundler/issues/3639), @segiddins, @indirect)
1308
+ - stop printing config warnings when config is unchanged ([#3649](https://github.com/rubygems/bundler/issues/3649), @fotanus, @indirect)
1215
1309
  - Without groups saved via `config` are no longer ignored when the `--without` flag is used
1216
1310
 
1217
1311
  ## 1.10.0.pre.2 (2015-05-07)
1218
1312
 
1219
1313
  Bugfixes:
1220
1314
 
1221
- - make BUNDLED WITH backwards compatible ([#3623](https://github.com/bundler/bundler/issues/3623), @segiddins)
1315
+ - make BUNDLED WITH backwards compatible ([#3623](https://github.com/rubygems/bundler/issues/3623), @segiddins)
1222
1316
 
1223
1317
  ## 1.10.0.pre.1 (2015-05-05)
1224
1318
 
1225
1319
  Bugfixes:
1226
1320
 
1227
- - always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
1321
+ - always clean up tmp dirs ([#3277](https://github.com/rubygems/bundler/issues/3277), @hone, @indirect, @segiddins)
1228
1322
 
1229
1323
  ## 1.10.0.pre (2015-05-03)
1230
1324
 
1231
1325
  Features:
1232
1326
 
1233
- - support gem extensions built into any directory on RubyGems 2.2+ ([#3582](https://github.com/bundler/bundler/issues/3582), @voxik)
1234
- - add 'bundler/inline' which provides a `gemfile` method ([#3440](https://github.com/bundler/bundler/issues/3440), @segiddins)
1235
- - improved error reports for Gemfile errors ([#3480](https://github.com/bundler/bundler/issues/3480), @segiddins)
1236
- - `lock` command ([#3437](https://github.com/bundler/bundler/issues/3437), @segiddins)
1237
- - add `ignore_messages` config to suppress post-install text ([#3510](https://github.com/bundler/bundler/issues/3510), @pducks32)
1238
- - improve `gem` minitest template ([#3513](https://github.com/bundler/bundler/issues/3513), [#3515](https://github.com/bundler/bundler/issues/3515), @arthurnn)
1239
- - add `install --force` to re-install installed gems ([#3519](https://github.com/bundler/bundler/issues/3519), @segiddins)
1327
+ - support gem extensions built into any directory on RubyGems 2.2+ ([#3582](https://github.com/rubygems/bundler/issues/3582), @voxik)
1328
+ - add 'bundler/inline' which provides a `gemfile` method ([#3440](https://github.com/rubygems/bundler/issues/3440), @segiddins)
1329
+ - improved error reports for Gemfile errors ([#3480](https://github.com/rubygems/bundler/issues/3480), @segiddins)
1330
+ - `lock` command ([#3437](https://github.com/rubygems/bundler/issues/3437), @segiddins)
1331
+ - add `ignore_messages` config to suppress post-install text ([#3510](https://github.com/rubygems/bundler/issues/3510), @pducks32)
1332
+ - improve `gem` minitest template ([#3513](https://github.com/rubygems/bundler/issues/3513), [#3515](https://github.com/bundler/bundler/issues/3515), @arthurnn)
1333
+ - add `install --force` to re-install installed gems ([#3519](https://github.com/rubygems/bundler/issues/3519), @segiddins)
1240
1334
  - show more `outdated` information, including groups (@smlance, @indirect)
1241
- - add optional groups to the Gemfile ([#3531](https://github.com/bundler/bundler/issues/3531), @jhass)
1242
- - accept glob argument to `gemspec` in Gemfile ([#3464](https://github.com/bundler/bundler/issues/3464), @pjump)
1243
- - make timeouts and retries configurable via `config` ([#3601](https://github.com/bundler/bundler/issues/3601), @pducks32)
1244
- - add `install_if` Gemfile method for conditional installs ([#3611](https://github.com/bundler/bundler/issues/3611), @segiddins)
1335
+ - add optional groups to the Gemfile ([#3531](https://github.com/rubygems/bundler/issues/3531), @jhass)
1336
+ - accept glob argument to `gemspec` in Gemfile ([#3464](https://github.com/rubygems/bundler/issues/3464), @pjump)
1337
+ - make timeouts and retries configurable via `config` ([#3601](https://github.com/rubygems/bundler/issues/3601), @pducks32)
1338
+ - add `install_if` Gemfile method for conditional installs ([#3611](https://github.com/rubygems/bundler/issues/3611), @segiddins)
1245
1339
 
1246
1340
  Bugfixes:
1247
1341
 
1248
- - standalone mode now uses builtin gems correctly ([#3610](https://github.com/bundler/bundler/issues/3610), @segiddins)
1249
- - fix `rake spec:deps` on MinGW Ruby 2.0+ ([#3487](https://github.com/bundler/bundler/issues/3487), @marutosi)
1250
- - remember all y/n answers when generating gems ([#3579](https://github.com/bundler/bundler/issues/3579), @pducks32)
1342
+ - standalone mode now uses builtin gems correctly ([#3610](https://github.com/rubygems/bundler/issues/3610), @segiddins)
1343
+ - fix `rake spec:deps` on MinGW Ruby 2.0+ ([#3487](https://github.com/rubygems/bundler/issues/3487), @marutosi)
1344
+ - remember all y/n answers when generating gems ([#3579](https://github.com/rubygems/bundler/issues/3579), @pducks32)
1251
1345
 
1252
1346
  Performance:
1253
1347
 
1254
- - use RubyGems stub specifications when possible ([#3580](https://github.com/bundler/bundler/issues/3580), @segiddins)
1348
+ - use RubyGems stub specifications when possible ([#3580](https://github.com/rubygems/bundler/issues/3580), @segiddins)
1255
1349
 
1256
1350
  Deprecations:
1257
1351
 
@@ -1267,65 +1361,65 @@ Features:
1267
1361
 
1268
1362
  Bugfixes:
1269
1363
 
1270
- - read mirror and credential settings from older versions ([#3557](https://github.com/bundler/bundler/issues/3557), @Strech)
1364
+ - read mirror and credential settings from older versions ([#3557](https://github.com/rubygems/bundler/issues/3557), @Strech)
1271
1365
 
1272
1366
  ## 1.9.8 (2015-05-12)
1273
1367
 
1274
1368
  Bugfixes:
1275
1369
 
1276
- - fix regression in sudo mode introduced by 1.9.7 ([#3642](https://github.com/bundler/bundler/issues/3642), @segiddins)
1370
+ - fix regression in sudo mode introduced by 1.9.7 ([#3642](https://github.com/rubygems/bundler/issues/3642), @segiddins)
1277
1371
 
1278
1372
  ## 1.9.7 (2015-05-11)
1279
1373
 
1280
1374
  Bugfixes:
1281
1375
 
1282
- - always clean up tmp dirs ([#3277](https://github.com/bundler/bundler/issues/3277), @hone, @indirect, @segiddins)
1376
+ - always clean up tmp dirs ([#3277](https://github.com/rubygems/bundler/issues/3277), @hone, @indirect, @segiddins)
1283
1377
 
1284
1378
  ## 1.9.6 (2015-05-02)
1285
1379
 
1286
1380
  Bugfixes:
1287
1381
 
1288
1382
  - use RubyGems spec stubs if available (@segiddins)
1289
- - allow creating gems with names containing two dashes ([#3483](https://github.com/bundler/bundler/issues/3483), @janlelis)
1290
- - allow creating gems with names extending constants ([#3603](https://github.com/bundler/bundler/issues/3603), @amatsuda)
1383
+ - allow creating gems with names containing two dashes ([#3483](https://github.com/rubygems/bundler/issues/3483), @janlelis)
1384
+ - allow creating gems with names extending constants ([#3603](https://github.com/rubygems/bundler/issues/3603), @amatsuda)
1291
1385
 
1292
1386
  ## 1.9.5 (2015-04-29)
1293
1387
 
1294
1388
  Bugfixes:
1295
1389
 
1296
- - respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1390
+ - respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
1297
1391
 
1298
1392
  ## 1.9.4 (2015-04-13)
1299
1393
 
1300
1394
  Bugfixes:
1301
1395
 
1302
- - fix regression in installing x86 and universal gems ([#3565](https://github.com/bundler/bundler/issues/3565), @jdmundrawala)
1303
- - improve error when gems are missing ([#3564](https://github.com/bundler/bundler/issues/3564), @sealocal)
1396
+ - fix regression in installing x86 and universal gems ([#3565](https://github.com/rubygems/bundler/issues/3565), @jdmundrawala)
1397
+ - improve error when gems are missing ([#3564](https://github.com/rubygems/bundler/issues/3564), @sealocal)
1304
1398
 
1305
1399
  ## 1.9.3 (2015-04-12)
1306
1400
 
1307
1401
  Bugfixes:
1308
1402
 
1309
- - handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/bundler/bundler/issues/3558), @indirect)
1310
- - install 'universal' gems on Windows ([#3066](https://github.com/bundler/bundler/issues/3066), @jdmundrawala)
1311
- - stop passing --local during `rake install` task ([#3236](https://github.com/bundler/bundler/issues/3236), @indirect)
1312
- - guard against all possible accidental public gem pushes ([#3533](https://github.com/bundler/bundler/issues/3533), @indirect)
1403
+ - handle removal of `specs` from rubygems/rubygems@620910 ([#3558](https://github.com/rubygems/bundler/issues/3558), @indirect)
1404
+ - install 'universal' gems on Windows ([#3066](https://github.com/rubygems/bundler/issues/3066), @jdmundrawala)
1405
+ - stop passing --local during `rake install` task ([#3236](https://github.com/rubygems/bundler/issues/3236), @indirect)
1406
+ - guard against all possible accidental public gem pushes ([#3533](https://github.com/rubygems/bundler/issues/3533), @indirect)
1313
1407
 
1314
1408
  ## 1.9.2 (2015-03-30)
1315
1409
 
1316
1410
  Bugfixes:
1317
1411
 
1318
- - ensure gem executables are executable ([#3517](https://github.com/bundler/bundler/issues/3517), [#3511](https://github.com/bundler/bundler/issues/3511), @indirect)
1319
- - fix warnings in Molinillo ([#3516](https://github.com/bundler/bundler/issues/3516), @segiddins)
1320
- - ensure duplicate dependencies do not propagate ([#3522](https://github.com/bundler/bundler/issues/3522), @segiddins)
1321
- - keep gems locked when updating another gem from the same source ([#3520](https://github.com/bundler/bundler/issues/3520), @indirect)
1322
- - resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
1412
+ - ensure gem executables are executable ([#3517](https://github.com/rubygems/bundler/issues/3517), [#3511](https://github.com/bundler/bundler/issues/3511), @indirect)
1413
+ - fix warnings in Molinillo ([#3516](https://github.com/rubygems/bundler/issues/3516), @segiddins)
1414
+ - ensure duplicate dependencies do not propagate ([#3522](https://github.com/rubygems/bundler/issues/3522), @segiddins)
1415
+ - keep gems locked when updating another gem from the same source ([#3520](https://github.com/rubygems/bundler/issues/3520), @indirect)
1416
+ - resolve race that could build gems without saved arguments ([#3404](https://github.com/rubygems/bundler/issues/3404), @indirect)
1323
1417
 
1324
1418
  ## 1.9.1 (2015-03-21)
1325
1419
 
1326
1420
  Bugfixes:
1327
1421
 
1328
- - avoid exception in 'bundler/gem_tasks' ([#3492](https://github.com/bundler/bundler/issues/3492), @segiddins)
1422
+ - avoid exception in 'bundler/gem_tasks' ([#3492](https://github.com/rubygems/bundler/issues/3492), @segiddins)
1329
1423
 
1330
1424
  ## 1.9.0 (2015-03-20)
1331
1425
 
@@ -1334,7 +1428,7 @@ Bugfixes:
1334
1428
  Bugfixes:
1335
1429
 
1336
1430
  - make Bundler.which stop finding directories (@nohoho)
1337
- - handle Bundler prereleases correctly ([#3470](https://github.com/bundler/bundler/issues/3470), @segiddins)
1431
+ - handle Bundler prereleases correctly ([#3470](https://github.com/rubygems/bundler/issues/3470), @segiddins)
1338
1432
  - add before_install to .travis.yml template for new gems (@kodnin)
1339
1433
 
1340
1434
  ## 1.9.0.pre.1 (2015-03-11)
@@ -1347,8 +1441,8 @@ Bugfixes:
1347
1441
 
1348
1442
  Features:
1349
1443
 
1350
- - prefer gemspecs closest to the directory root ([#3428](https://github.com/bundler/bundler/issues/3428), @segiddins)
1351
- - debug log for API request limits ([#3452](https://github.com/bundler/bundler/issues/3452), @neerfri)
1444
+ - prefer gemspecs closest to the directory root ([#3428](https://github.com/rubygems/bundler/issues/3428), @segiddins)
1445
+ - debug log for API request limits ([#3452](https://github.com/rubygems/bundler/issues/3452), @neerfri)
1352
1446
 
1353
1447
  "Features":
1354
1448
 
@@ -1365,20 +1459,20 @@ Bugfixes:
1365
1459
 
1366
1460
  Bugfixes:
1367
1461
 
1368
- - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1462
+ - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
1369
1463
 
1370
1464
  ## 1.8.7 (2015-04-07)
1371
1465
 
1372
1466
  Bugfixes:
1373
1467
 
1374
- - stop suppressing errors inside gems that get required ([#3549](https://github.com/bundler/bundler/issues/3549), @indirect)
1468
+ - stop suppressing errors inside gems that get required ([#3549](https://github.com/rubygems/bundler/issues/3549), @indirect)
1375
1469
 
1376
1470
  ## 1.8.6 (2015-03-30)
1377
1471
 
1378
1472
  Bugfixes:
1379
1473
 
1380
- - keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
1381
- - resolve race that could build gems without saved arguments ([#3404](https://github.com/bundler/bundler/issues/3404), @indirect)
1474
+ - keep gems locked when updating another gem from the same source ([#3250](https://github.com/rubygems/bundler/issues/3250), @indirect)
1475
+ - resolve race that could build gems without saved arguments ([#3404](https://github.com/rubygems/bundler/issues/3404), @indirect)
1382
1476
 
1383
1477
  ## 1.8.5 (2015-03-11)
1384
1478
 
@@ -1391,44 +1485,44 @@ Bugfixes:
1391
1485
 
1392
1486
  Bugfixes:
1393
1487
 
1394
- - document --all-platforms option ([#3449](https://github.com/bundler/bundler/issues/3449), @moeffju)
1395
- - find gems from all sources on exec after install ([#3450](https://github.com/bundler/bundler/issues/3450), @TimMoore)
1488
+ - document --all-platforms option ([#3449](https://github.com/rubygems/bundler/issues/3449), @moeffju)
1489
+ - find gems from all sources on exec after install ([#3450](https://github.com/rubygems/bundler/issues/3450), @TimMoore)
1396
1490
 
1397
1491
  ## 1.8.3 (2015-02-24)
1398
1492
 
1399
1493
  Bugfixes:
1400
1494
 
1401
1495
  - handle boolean values for gem settings (@EduardoBautista)
1402
- - stop always looking for updated `path` gems ([#3414](https://github.com/bundler/bundler/issues/3414), [#3417](https://github.com/bundler/bundler/issues/3417), [#3429](https://github.com/bundler/bundler/issues/3429), @TimMoore)
1496
+ - stop always looking for updated `path` gems ([#3414](https://github.com/rubygems/bundler/issues/3414), [#3417](https://github.com/bundler/bundler/issues/3417), [#3429](https://github.com/bundler/bundler/issues/3429), @TimMoore)
1403
1497
 
1404
1498
  ## 1.8.2 (2015-02-14)
1405
1499
 
1406
1500
  Bugfixes:
1407
1501
 
1408
- - allow config settings for gems with 'http' in the name again ([#3398](https://github.com/bundler/bundler/issues/3398), @TimMoore)
1502
+ - allow config settings for gems with 'http' in the name again ([#3398](https://github.com/rubygems/bundler/issues/3398), @TimMoore)
1409
1503
 
1410
1504
  ## 1.8.1 (2015-02-13)
1411
1505
 
1412
1506
  Bugfixes:
1413
1507
 
1414
- - synchronize building git gem native extensions ([#3385](https://github.com/bundler/bundler/issues/3385), @antifuchs & @indirect)
1415
- - set gemspec bindir correctly ([#3392](https://github.com/bundler/bundler/issues/3392), @TimMoore)
1416
- - request lockfile deletion when it is malformed ([#3396](https://github.com/bundler/bundler/issues/3396), @indirect)
1417
- - explain problem when mirror config is missing ([#3386](https://github.com/bundler/bundler/issues/3386), @indirect)
1418
- - explain problem when caching causes permission error ([#3390](https://github.com/bundler/bundler/issues/3390), @indirect)
1419
- - normalize URLs in config keys ([#3391](https://github.com/bundler/bundler/issues/3391), @indirect)
1508
+ - synchronize building git gem native extensions ([#3385](https://github.com/rubygems/bundler/issues/3385), @antifuchs & @indirect)
1509
+ - set gemspec bindir correctly ([#3392](https://github.com/rubygems/bundler/issues/3392), @TimMoore)
1510
+ - request lockfile deletion when it is malformed ([#3396](https://github.com/rubygems/bundler/issues/3396), @indirect)
1511
+ - explain problem when mirror config is missing ([#3386](https://github.com/rubygems/bundler/issues/3386), @indirect)
1512
+ - explain problem when caching causes permission error ([#3390](https://github.com/rubygems/bundler/issues/3390), @indirect)
1513
+ - normalize URLs in config keys ([#3391](https://github.com/rubygems/bundler/issues/3391), @indirect)
1420
1514
 
1421
1515
  ## 1.8.0 (2015-02-10)
1422
1516
 
1423
1517
  Bugfixes:
1424
1518
 
1425
- - gemfile `github` blocks now work ([#3379](https://github.com/bundler/bundler/issues/3379), @indirect)
1519
+ - gemfile `github` blocks now work ([#3379](https://github.com/rubygems/bundler/issues/3379), @indirect)
1426
1520
 
1427
1521
  Bugfixes from v1.7.13:
1428
1522
 
1429
- - look up installed gems in remote sources ([#3300](https://github.com/bundler/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
1430
- - look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
1431
- - request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
1523
+ - look up installed gems in remote sources ([#3300](https://github.com/rubygems/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
1524
+ - look up gems across all sources to satisfy dependencies ([#3365](https://github.com/rubygems/bundler/issues/3365), @keiths-osc)
1525
+ - request dependencies for no more than 100 gems at a time ([#3367](https://github.com/rubygems/bundler/issues/3367), @segiddins)
1432
1526
 
1433
1527
  ## 1.8.0.rc (2015-01-26)
1434
1528
 
@@ -1438,7 +1532,7 @@ Features:
1438
1532
 
1439
1533
  Bugfixes:
1440
1534
 
1441
- - don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
1535
+ - don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/rubygems/bundler/issues/3338))
1442
1536
 
1443
1537
  Security:
1444
1538
 
@@ -1448,7 +1542,7 @@ Security:
1448
1542
 
1449
1543
  Features:
1450
1544
 
1451
- - add metadata allowed_push_host to new gem template ([#3002](https://github.com/bundler/bundler/issues/3002), @juanitofatas)
1545
+ - add metadata allowed_push_host to new gem template ([#3002](https://github.com/rubygems/bundler/issues/3002), @juanitofatas)
1452
1546
  - adds a `--no-install` flag to `bundle package` (@d-reinhold)
1453
1547
  - add `bundle config auto_install true` to install automatically (@smashwilson)
1454
1548
  - add `bundle viz --without` to exclude gem groups from resulting graph (@fnichol)
@@ -1483,66 +1577,66 @@ Documentation:
1483
1577
 
1484
1578
  Bugfixes:
1485
1579
 
1486
- - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/bundler/bundler/issues/3585), @tmoore)
1580
+ - Respect Gemfile sources when installing a gem present in two sources ([#3585](https://github.com/rubygems/bundler/issues/3585), @tmoore)
1487
1581
 
1488
1582
  ## 1.7.14 (2015-03-30)
1489
1583
 
1490
1584
  Bugfixes:
1491
1585
 
1492
- - Keep gems locked when updating another gem from the same source ([#3250](https://github.com/bundler/bundler/issues/3250), @indirect)
1493
- - Don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/bundler/bundler/issues/3338))
1586
+ - Keep gems locked when updating another gem from the same source ([#3250](https://github.com/rubygems/bundler/issues/3250), @indirect)
1587
+ - Don't add extra quotes around long, quoted config values (@aroben, [#3338](https://github.com/rubygems/bundler/issues/3338))
1494
1588
 
1495
1589
  ## 1.7.13 (2015-02-07)
1496
1590
 
1497
1591
  Bugfixes:
1498
1592
 
1499
- - Look up installed gems in remote sources ([#3300](https://github.com/bundler/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
1500
- - Look up gems across all sources to satisfy dependencies ([#3365](https://github.com/bundler/bundler/issues/3365), @keiths-osc)
1501
- - Request dependencies for no more than 100 gems at a time ([#3367](https://github.com/bundler/bundler/issues/3367), @segiddins)
1593
+ - Look up installed gems in remote sources ([#3300](https://github.com/rubygems/bundler/issues/3300), [#3368](https://github.com/bundler/bundler/issues/3368), [#3377](https://github.com/bundler/bundler/issues/3377), [#3380](https://github.com/bundler/bundler/issues/3380), [#3381](https://github.com/bundler/bundler/issues/3381), @indirect)
1594
+ - Look up gems across all sources to satisfy dependencies ([#3365](https://github.com/rubygems/bundler/issues/3365), @keiths-osc)
1595
+ - Request dependencies for no more than 100 gems at a time ([#3367](https://github.com/rubygems/bundler/issues/3367), @segiddins)
1502
1596
 
1503
1597
  ## 1.7.12 (2015-01-08)
1504
1598
 
1505
1599
  Bugfixes:
1506
1600
 
1507
- - Always send credentials for sources, fixing private Gemfury gems ([#3342](https://github.com/bundler/bundler/issues/3342), @TimMoore)
1601
+ - Always send credentials for sources, fixing private Gemfury gems ([#3342](https://github.com/rubygems/bundler/issues/3342), @TimMoore)
1508
1602
 
1509
1603
  ## 1.7.11 (2015-01-04)
1510
1604
 
1511
1605
  Bugfixes:
1512
1606
 
1513
- - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` ([#3328](https://github.com/bundler/bundler/issues/3328), @myabc)
1607
+ - Recognize `:mri_22` and `:mingw_22`, rather than just `:ruby_22` ([#3328](https://github.com/rubygems/bundler/issues/3328), @myabc)
1514
1608
 
1515
1609
  ## 1.7.10 (2014-12-29)
1516
1610
 
1517
1611
  Bugfixes:
1518
1612
 
1519
- - Fix source blocks sometimes causing deployment mode to fail wrongly ([#3298](https://github.com/bundler/bundler/issues/3298), @TimMoore)
1613
+ - Fix source blocks sometimes causing deployment mode to fail wrongly ([#3298](https://github.com/rubygems/bundler/issues/3298), @TimMoore)
1520
1614
 
1521
1615
  Features(?):
1522
1616
 
1523
- - Support `platform :mri_22` and related version bits ([#3309](https://github.com/bundler/bundler/issues/3309), @thomasfedb)
1617
+ - Support `platform :mri_22` and related version bits ([#3309](https://github.com/rubygems/bundler/issues/3309), @thomasfedb)
1524
1618
 
1525
1619
  ## 1.7.9 (2014-12-09)
1526
1620
 
1527
1621
  Bugfixes:
1528
1622
 
1529
- - Fix an issue where bundler sometime spams one gem in Gemfile.lock ([#3216](https://github.com/bundler/bundler/issues/3216), @Who828)
1530
- - Ensure bundle update installs the newer version of the gem ([#3089](https://github.com/bundler/bundler/issues/3089), @Who828)
1531
- - Fix an regression which stopped Bundler from resolving some Gemfiles ([#3059](https://github.com/bundler/bundler/issues/3059), [#3248](https://github.com/bundler/bundler/issues/3248), @Who828)
1623
+ - Fix an issue where bundler sometime spams one gem in Gemfile.lock ([#3216](https://github.com/rubygems/bundler/issues/3216), @Who828)
1624
+ - Ensure bundle update installs the newer version of the gem ([#3089](https://github.com/rubygems/bundler/issues/3089), @Who828)
1625
+ - Fix an regression which stopped Bundler from resolving some Gemfiles ([#3059](https://github.com/rubygems/bundler/issues/3059), [#3248](https://github.com/bundler/bundler/issues/3248), @Who828)
1532
1626
 
1533
1627
  ## 1.7.8 (2014-12-06)
1534
1628
 
1535
1629
  Bugfixes:
1536
1630
 
1537
- - Hide credentials while warning about gems with ambiguous sources ([#3256](https://github.com/bundler/bundler/issues/3256), @TimMoore)
1631
+ - Hide credentials while warning about gems with ambiguous sources ([#3256](https://github.com/rubygems/bundler/issues/3256), @TimMoore)
1538
1632
 
1539
1633
  ## 1.7.7 (2014-11-19)
1540
1634
 
1541
1635
  Bugfixes:
1542
1636
 
1543
- - Ensure server credentials stored in config or ENV will be used ([#3180](https://github.com/bundler/bundler/issues/3180), @arronmabrey)
1544
- - Fix race condition causing errors while installing git-based gems ([#3174](https://github.com/bundler/bundler/issues/3174), @Who828)
1545
- - Use single quotes in config so YAML won't add more quotes ([#3261](https://github.com/bundler/bundler/issues/3261), @indirect)
1637
+ - Ensure server credentials stored in config or ENV will be used ([#3180](https://github.com/rubygems/bundler/issues/3180), @arronmabrey)
1638
+ - Fix race condition causing errors while installing git-based gems ([#3174](https://github.com/rubygems/bundler/issues/3174), @Who828)
1639
+ - Use single quotes in config so YAML won't add more quotes ([#3261](https://github.com/rubygems/bundler/issues/3261), @indirect)
1546
1640
 
1547
1641
  ## 1.7.6 (2014-11-11)
1548
1642
 
@@ -1554,17 +1648,17 @@ Bugfixes:
1554
1648
 
1555
1649
  Bugfixes:
1556
1650
 
1557
- - Fix --deployment with source blocks and non-alphabetical gems ([#3224](https://github.com/bundler/bundler/issues/3224), @TimMoore)
1651
+ - Fix --deployment with source blocks and non-alphabetical gems ([#3224](https://github.com/rubygems/bundler/issues/3224), @TimMoore)
1558
1652
  - Vendor CA chain to validate new rubygems.org HTTPS certificate (@indirect)
1559
1653
 
1560
1654
  ## 1.7.4 (2014-10-19)
1561
1655
 
1562
1656
  Bugfixes:
1563
1657
 
1564
- - Allow --deployment after `pack` while using source blocks ([#3167](https://github.com/bundler/bundler/issues/3167), @TimMoore)
1565
- - Use dependency API even when HTTP credentials are in ENV ([#3191](https://github.com/bundler/bundler/issues/3191), @fvaleur)
1566
- - Silence warnings (including root warning) in --quiet mode ([#3186](https://github.com/bundler/bundler/issues/3186), @indirect)
1567
- - Stop asking gem servers for gems already found locally ([#2909](https://github.com/bundler/bundler/issues/2909), @dubek)
1658
+ - Allow --deployment after `pack` while using source blocks ([#3167](https://github.com/rubygems/bundler/issues/3167), @TimMoore)
1659
+ - Use dependency API even when HTTP credentials are in ENV ([#3191](https://github.com/rubygems/bundler/issues/3191), @fvaleur)
1660
+ - Silence warnings (including root warning) in --quiet mode ([#3186](https://github.com/rubygems/bundler/issues/3186), @indirect)
1661
+ - Stop asking gem servers for gems already found locally ([#2909](https://github.com/rubygems/bundler/issues/2909), @dubek)
1568
1662
 
1569
1663
  ## 1.7.3 (2014-09-14)
1570
1664
 
@@ -1622,15 +1716,15 @@ Bugfixes:
1622
1716
 
1623
1717
  Bugfixes:
1624
1718
 
1625
- - require openssl explicitly to fix rare HTTPS request failures (@indirect, [#3107](https://github.com/bundler/bundler/issues/3107))
1719
+ - require openssl explicitly to fix rare HTTPS request failures (@indirect, [#3107](https://github.com/rubygems/bundler/issues/3107))
1626
1720
 
1627
1721
  ## 1.6.4 (2014-07-17)
1628
1722
 
1629
1723
  Bugfixes:
1630
1724
 
1631
- - fix undefined constant error when can't find gem during binstubs ([#3095](https://github.com/bundler/bundler/issues/3095), @jetaggart)
1632
- - work when installed git gems are not writable ([#3092](https://github.com/bundler/bundler/issues/3092), @pmahoney)
1633
- - don't store configured source credentials in Gemfile.lock ([#3045](https://github.com/bundler/bundler/issues/3045), @lhz)
1725
+ - fix undefined constant error when can't find gem during binstubs ([#3095](https://github.com/rubygems/bundler/issues/3095), @jetaggart)
1726
+ - work when installed git gems are not writable ([#3092](https://github.com/rubygems/bundler/issues/3092), @pmahoney)
1727
+ - don't store configured source credentials in Gemfile.lock ([#3045](https://github.com/rubygems/bundler/issues/3045), @lhz)
1634
1728
  - don't include config source credentials in the lockfile (Lars Haugseth)
1635
1729
  - use threads for jobs on Rubinius (@YorickPeterse)
1636
1730
  - skip dependencies from other platforms (@mvz)
@@ -1640,30 +1734,30 @@ Bugfixes:
1640
1734
 
1641
1735
  Bugfixes:
1642
1736
 
1643
- - fix regression when resolving many conflicts ([#2994](https://github.com/bundler/bundler/issues/2994), @Who828)
1644
- - use local gemspec for builtin gems during install --local ([#3041](https://github.com/bundler/bundler/issues/3041), @Who828)
1645
- - don't warn about sudo when installing on Windows ([#2984](https://github.com/bundler/bundler/issues/2984), @indirect)
1737
+ - fix regression when resolving many conflicts ([#2994](https://github.com/rubygems/bundler/issues/2994), @Who828)
1738
+ - use local gemspec for builtin gems during install --local ([#3041](https://github.com/rubygems/bundler/issues/3041), @Who828)
1739
+ - don't warn about sudo when installing on Windows ([#2984](https://github.com/rubygems/bundler/issues/2984), @indirect)
1646
1740
  - shell escape `bundle open` arguments (@indirect)
1647
1741
 
1648
1742
  ## 1.6.2 (2014-04-13)
1649
1743
 
1650
1744
  Bugfixes:
1651
1745
 
1652
- - fix an exception when using builtin gems ([#2915](https://github.com/bundler/bundler/issues/2915), [#2963](https://github.com/bundler/bundler/issues/2963), @gnufied)
1653
- - cache gems that are built in to the running ruby ([#2975](https://github.com/bundler/bundler/issues/2975), @indirect)
1654
- - re-allow deploying cached git gems without git installed ([#2968](https://github.com/bundler/bundler/issues/2968), @aughr)
1746
+ - fix an exception when using builtin gems ([#2915](https://github.com/rubygems/bundler/issues/2915), [#2963](https://github.com/bundler/bundler/issues/2963), @gnufied)
1747
+ - cache gems that are built in to the running ruby ([#2975](https://github.com/rubygems/bundler/issues/2975), @indirect)
1748
+ - re-allow deploying cached git gems without git installed ([#2968](https://github.com/rubygems/bundler/issues/2968), @aughr)
1655
1749
  - keep standalone working even with builtin gems (@indirect)
1656
- - don't update vendor/cache in deployment mode ([#2921](https://github.com/bundler/bundler/issues/2921), @indirect)
1750
+ - don't update vendor/cache in deployment mode ([#2921](https://github.com/rubygems/bundler/issues/2921), @indirect)
1657
1751
 
1658
1752
  Features:
1659
1753
 
1660
- - warn informatively when `bundle install` is run as root ([#2936](https://github.com/bundler/bundler/issues/2936), @1337807)
1754
+ - warn informatively when `bundle install` is run as root ([#2936](https://github.com/rubygems/bundler/issues/2936), @1337807)
1661
1755
 
1662
1756
  ## 1.6.1 (2014-04-02)
1663
1757
 
1664
1758
  Bugfixes:
1665
1759
 
1666
- - update C extensions when git gem versions change ([#2948](https://github.com/bundler/bundler/issues/2948), @dylanahsmith)
1760
+ - update C extensions when git gem versions change ([#2948](https://github.com/rubygems/bundler/issues/2948), @dylanahsmith)
1667
1761
 
1668
1762
  Features:
1669
1763
 
@@ -1674,15 +1768,15 @@ Features:
1674
1768
  Bugfixes:
1675
1769
 
1676
1770
  - many Gemfiles that caused incorrect errors now resolve correctly (@Who828)
1677
- - redirects across hosts now work on rubies without OpenSSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
1678
- - gemspecs now handle filenames with newlines ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
1771
+ - redirects across hosts now work on rubies without OpenSSL ([#2686](https://github.com/rubygems/bundler/issues/2686), @grddev)
1772
+ - gemspecs now handle filenames with newlines ([#2634](https://github.com/rubygems/bundler/issues/2634), @jasonmp85)
1679
1773
  - support escaped characters in usernames and passwords (@punkie)
1680
1774
  - no more exception on `update GEM` without lock file (@simi)
1681
- - allow long config values ([#2823](https://github.com/bundler/bundler/issues/2823), @kgrz)
1682
- - cache successfully even locked to gems shipped with Ruby ([#2869](https://github.com/bundler/bundler/issues/2869), @aughr)
1683
- - respect NO_PROXY even if a proxy is configured ([#2878](https://github.com/bundler/bundler/issues/2878), @stlay)
1684
- - only retry git commands that hit the network ([#2899](https://github.com/bundler/bundler/issues/2899), @timmoore)
1685
- - fix NameError regression when OpenSSL is not available ([#2898](https://github.com/bundler/bundler/issues/2898), @timmoore)
1775
+ - allow long config values ([#2823](https://github.com/rubygems/bundler/issues/2823), @kgrz)
1776
+ - cache successfully even locked to gems shipped with Ruby ([#2869](https://github.com/rubygems/bundler/issues/2869), @aughr)
1777
+ - respect NO_PROXY even if a proxy is configured ([#2878](https://github.com/rubygems/bundler/issues/2878), @stlay)
1778
+ - only retry git commands that hit the network ([#2899](https://github.com/rubygems/bundler/issues/2899), @timmoore)
1779
+ - fix NameError regression when OpenSSL is not available ([#2898](https://github.com/rubygems/bundler/issues/2898), @timmoore)
1686
1780
  - handle exception installing when build_info owned by root (@Who828)
1687
1781
  - skip HTTP redirects from rubygems.org, huge speed boost (@Who828)
1688
1782
 
@@ -1693,13 +1787,13 @@ Features:
1693
1787
  - HTTP auth may now be stored in `bundle config` (@smashwilson)
1694
1788
  - some complex Gemfiles are resolved up to 10x faster (@Who828)
1695
1789
  - add support for IRB alternatives such as Pry and Ripl (@joallard, @postmodern)
1696
- - highlight installed or updated gems ([#2722](https://github.com/bundler/bundler/issues/2722), [#2741](https://github.com/bundler/bundler/issues/2741), @yaotti, @simi)
1790
+ - highlight installed or updated gems ([#2722](https://github.com/rubygems/bundler/issues/2722), [#2741](https://github.com/bundler/bundler/issues/2741), @yaotti, @simi)
1697
1791
  - display the `post_install_message` for gems installed via :git (@phallstrom)
1698
1792
  - `bundle outdated --strict` now only reports allowed updates (@davidblondeau)
1699
1793
  - `bundle show --verbose` Add gem summary to the output (@lardcanoe)
1700
1794
  - `bundle gem GEM --ext` now generates a skeleton for a C extension (@superdealloc)
1701
1795
  - Avoid using threequals operator where possible (@as-cii)
1702
- - Add `bundle update --group` to update specific group ([#2731](https://github.com/bundler/bundler/issues/2731) @banyan)
1796
+ - Add `bundle update --group` to update specific group ([#2731](https://github.com/rubygems/bundler/issues/2731) @banyan)
1703
1797
 
1704
1798
  Documentation:
1705
1799
 
@@ -1709,7 +1803,7 @@ Documentation:
1709
1803
 
1710
1804
  Bugfixes:
1711
1805
 
1712
- - find "missing" gems that are actually present ([#2780](https://github.com/bundler/bundler/issues/2780), [#2818](https://github.com/bundler/bundler/issues/2818), [#2854](https://github.com/bundler/bundler/issues/2854))
1806
+ - find "missing" gems that are actually present ([#2780](https://github.com/rubygems/bundler/issues/2780), [#2818](https://github.com/bundler/bundler/issues/2818), [#2854](https://github.com/bundler/bundler/issues/2854))
1713
1807
  - use n-1 cores when given n jobs for parallel install (@jdickey)
1714
1808
 
1715
1809
  ## 1.5.2 (2014-01-10)
@@ -1754,19 +1848,19 @@ Bugfixes:
1754
1848
 
1755
1849
  Features:
1756
1850
 
1757
- - bundle update also accepts --jobs ([#2692](https://github.com/bundler/bundler/issues/2692), @mrkn)
1758
- - add fork URL to README for new `bundle gem` ([#2665](https://github.com/bundler/bundler/issues/2665), @zzak)
1759
- - add `bundle outdated --strict` ([#2685](https://github.com/bundler/bundler/issues/2685), @davidblondeau)
1760
- - warn if same gem/version is added twice ([#2679](https://github.com/bundler/bundler/issues/2679), @jendiamond)
1761
- - don't redownload installed specs for `bundle install` ([#2680](https://github.com/bundler/bundler/issues/2680), @cainlevy)
1762
- - override gem sources with mirrors ([#2650](https://github.com/bundler/bundler/issues/2650), @danielsdeleo, @mkristian)
1851
+ - bundle update also accepts --jobs ([#2692](https://github.com/rubygems/bundler/issues/2692), @mrkn)
1852
+ - add fork URL to README for new `bundle gem` ([#2665](https://github.com/rubygems/bundler/issues/2665), @zzak)
1853
+ - add `bundle outdated --strict` ([#2685](https://github.com/rubygems/bundler/issues/2685), @davidblondeau)
1854
+ - warn if same gem/version is added twice ([#2679](https://github.com/rubygems/bundler/issues/2679), @jendiamond)
1855
+ - don't redownload installed specs for `bundle install` ([#2680](https://github.com/rubygems/bundler/issues/2680), @cainlevy)
1856
+ - override gem sources with mirrors ([#2650](https://github.com/rubygems/bundler/issues/2650), @danielsdeleo, @mkristian)
1763
1857
 
1764
1858
  Bugfixes:
1765
1859
 
1766
- - fix sharing same SSL socket when forking workers for parallel install ([#2632](https://github.com/bundler/bundler/issues/2632))
1767
- - fix msg typo in GitNotAllowedError ([#2654](https://github.com/bundler/bundler/issues/2654), @joyicecloud)
1768
- - fix Bundler.which for directories ([#2697](https://github.com/bundler/bundler/issues/2697), @rhysd)
1769
- - properly require `Capistrano::Version` ([#2690](https://github.com/bundler/bundler/issues/2690), @steveklabnik)
1860
+ - fix sharing same SSL socket when forking workers for parallel install ([#2632](https://github.com/rubygems/bundler/issues/2632))
1861
+ - fix msg typo in GitNotAllowedError ([#2654](https://github.com/rubygems/bundler/issues/2654), @joyicecloud)
1862
+ - fix Bundler.which for directories ([#2697](https://github.com/rubygems/bundler/issues/2697), @rhysd)
1863
+ - properly require `Capistrano::Version` ([#2690](https://github.com/rubygems/bundler/issues/2690), @steveklabnik)
1770
1864
  - search for git.exe and git
1771
1865
  - fix the bug that downloads every spec when API fetcher encouters an error
1772
1866
  - only retry network requests
@@ -1775,10 +1869,10 @@ Bugfixes:
1775
1869
 
1776
1870
  Features:
1777
1871
 
1778
- - add support for the x64-mingw32 platform ([#2356](https://github.com/bundler/bundler/issues/2356), [#2590](https://github.com/bundler/bundler/issues/2590), @larskanis)
1872
+ - add support for the x64-mingw32 platform ([#2356](https://github.com/rubygems/bundler/issues/2356), [#2590](https://github.com/bundler/bundler/issues/2590), @larskanis)
1779
1873
  - add :patchlevel option to ruby DSL
1780
- - add `bundler` bin ([#2598](https://github.com/bundler/bundler/issues/2598), @kirs)
1781
- - friendly ambiguous error messages ([#2581](https://github.com/bundler/bundler/issues/2581), [#2550](https://github.com/bundler/bundler/issues/2550), @jlsuttles, @jendiamond, @joyicecloud)
1874
+ - add `bundler` bin ([#2598](https://github.com/rubygems/bundler/issues/2598), @kirs)
1875
+ - friendly ambiguous error messages ([#2581](https://github.com/rubygems/bundler/issues/2581), [#2550](https://github.com/bundler/bundler/issues/2550), @jlsuttles, @jendiamond, @joyicecloud)
1782
1876
  - add `:jruby_18` and `:jruby_19` platform options (@mcfiredrill)
1783
1877
  - add X.509 client certificates for auth without passwords (@snackbandit)
1784
1878
  - add `exec --keep-file-descriptors` for Ruby 1.9-like behavior on 2.0 (@steved555)
@@ -1790,56 +1884,56 @@ Features:
1790
1884
 
1791
1885
  Bugfixes:
1792
1886
 
1793
- - allow passwordless Basic Auth ([#2606](https://github.com/bundler/bundler/issues/2606), @rykov)
1887
+ - allow passwordless Basic Auth ([#2606](https://github.com/rubygems/bundler/issues/2606), @rykov)
1794
1888
  - don't suggest `gem install foo` when `foo` is a git gem that fails (@kirs)
1795
- - revert [#2569](https://github.com/bundler/bundler/issues/2569), staying compatible with git: instead of https: for :github gems
1889
+ - revert [#2569](https://github.com/rubygems/bundler/issues/2569), staying compatible with git: instead of https: for :github gems
1796
1890
  - handle exceptions while installing gems in parallel (@gnufied)
1797
1891
 
1798
1892
  ## 1.4.0.pre.1 (2013-08-04)
1799
1893
 
1800
1894
  Features:
1801
1895
 
1802
- - retry network requests while installing gems ([#2561](https://github.com/bundler/bundler/issues/2561), @ascherger)
1803
- - faster installs using gemspecs from the local system cache ([#2497](https://github.com/bundler/bundler/issues/2497), @mipearson)
1804
- - add `bundle install -jN` for N parallel gem installations ([#2481](https://github.com/bundler/bundler/issues/2481), @eagletmt)
1896
+ - retry network requests while installing gems ([#2561](https://github.com/rubygems/bundler/issues/2561), @ascherger)
1897
+ - faster installs using gemspecs from the local system cache ([#2497](https://github.com/rubygems/bundler/issues/2497), @mipearson)
1898
+ - add `bundle install -jN` for N parallel gem installations ([#2481](https://github.com/rubygems/bundler/issues/2481), @eagletmt)
1805
1899
  - add `ENV['DEBUG_RESOLVER_TREE']` outputs resolver tree (@dblock)
1806
- - set $MANPATH so `bundle exec man name` works ([#1624](https://github.com/bundler/bundler/issues/1624), @sunaku)
1807
- - use `man` instead of `groff` ([#2579](https://github.com/bundler/bundler/issues/2579), @ixti, @simi)
1808
- - add Gemfile dependency info to bundle outdated output ([#2487](https://github.com/bundler/bundler/issues/2487), @rahearn)
1809
- - allow `require: true` as an alias for `require: <name>` ([#2538](https://github.com/bundler/bundler/issues/2538), @ndbroadbent)
1810
- - rescue and report Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
1811
- - detect cyclic dependencies ([#2564](https://github.com/bundler/bundler/issues/2564), @gnufied)
1812
- - support multiple gems in `binstubs` ([#2576](https://github.com/bundler/bundler/issues/2576), @lucasmazza)
1813
- - use https instead of git for :github gems ([#2569](https://github.com/bundler/bundler/issues/2569), @fuadsaud)
1814
- - add quiet option to `bundle package` ([#2573](https://github.com/bundler/bundler/issues/2573), @shtirlic)
1815
- - use RUBYLIB instead of RUBYOPT for better Windows support ([#2536](https://github.com/bundler/bundler/issues/2536), @equinux)
1900
+ - set $MANPATH so `bundle exec man name` works ([#1624](https://github.com/rubygems/bundler/issues/1624), @sunaku)
1901
+ - use `man` instead of `groff` ([#2579](https://github.com/rubygems/bundler/issues/2579), @ixti, @simi)
1902
+ - add Gemfile dependency info to bundle outdated output ([#2487](https://github.com/rubygems/bundler/issues/2487), @rahearn)
1903
+ - allow `require: true` as an alias for `require: <name>` ([#2538](https://github.com/rubygems/bundler/issues/2538), @ndbroadbent)
1904
+ - rescue and report Thor errors ([#2478](https://github.com/rubygems/bundler/issues/2478), @pjvds)
1905
+ - detect cyclic dependencies ([#2564](https://github.com/rubygems/bundler/issues/2564), @gnufied)
1906
+ - support multiple gems in `binstubs` ([#2576](https://github.com/rubygems/bundler/issues/2576), @lucasmazza)
1907
+ - use https instead of git for :github gems ([#2569](https://github.com/rubygems/bundler/issues/2569), @fuadsaud)
1908
+ - add quiet option to `bundle package` ([#2573](https://github.com/rubygems/bundler/issues/2573), @shtirlic)
1909
+ - use RUBYLIB instead of RUBYOPT for better Windows support ([#2536](https://github.com/rubygems/bundler/issues/2536), @equinux)
1816
1910
 
1817
1911
  Bugfixes:
1818
1912
 
1819
- - reduce stack size while resolving to fix JRuby overflow ([#2510](https://github.com/bundler/bundler/issues/2510), @headius)
1820
- - display GitErrors while loading specs in --verbose mode ([#2461](https://github.com/bundler/bundler/issues/2461))
1821
- - allow the same options hash to be passed to multiple gems ([#2447](https://github.com/bundler/bundler/issues/2447))
1822
- - handle missing binaries without an exception ([#2019](https://github.com/bundler/bundler/issues/2019), @luismreis)
1913
+ - reduce stack size while resolving to fix JRuby overflow ([#2510](https://github.com/rubygems/bundler/issues/2510), @headius)
1914
+ - display GitErrors while loading specs in --verbose mode ([#2461](https://github.com/rubygems/bundler/issues/2461))
1915
+ - allow the same options hash to be passed to multiple gems ([#2447](https://github.com/rubygems/bundler/issues/2447))
1916
+ - handle missing binaries without an exception ([#2019](https://github.com/rubygems/bundler/issues/2019), @luismreis)
1823
1917
 
1824
1918
  ## 1.3.6 (8 January 2014)
1825
1919
 
1826
1920
  Bugfixes:
1827
1921
 
1828
1922
  - make gemspec path option preserve relative paths in lock file (@bwillis)
1829
- - use umask when creating binstubs ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
1830
- - warn if graphviz is not installed ([#2435](https://github.com/bundler/bundler/issues/2435), @Agis-)
1923
+ - use umask when creating binstubs ([#1618](https://github.com/rubygems/bundler/issues/1618), @v-yarotsky)
1924
+ - warn if graphviz is not installed ([#2435](https://github.com/rubygems/bundler/issues/2435), @Agis-)
1831
1925
  - show git errors while loading gemspecs
1832
- - don't mutate gem method options hash ([#2447](https://github.com/bundler/bundler/issues/2447))
1833
- - print Thor errors ([#2478](https://github.com/bundler/bundler/issues/2478), @pjvds)
1926
+ - don't mutate gem method options hash ([#2447](https://github.com/rubygems/bundler/issues/2447))
1927
+ - print Thor errors ([#2478](https://github.com/rubygems/bundler/issues/2478), @pjvds)
1834
1928
  - print Rubygems system exit errors (James Cook)
1835
1929
  - more Pathnames into Strings for MacRuby (@kml)
1836
1930
  - preserve original gemspec path (@bwillis)
1837
- - remove warning about deps with :git ([#1651](https://github.com/bundler/bundler/issues/1651), @ixti)
1838
- - split git files on null ([#2634](https://github.com/bundler/bundler/issues/2634), @jasonmp85)
1839
- - handle cross-host redirects without SSL ([#2686](https://github.com/bundler/bundler/issues/2686), @grddev)
1931
+ - remove warning about deps with :git ([#1651](https://github.com/rubygems/bundler/issues/1651), @ixti)
1932
+ - split git files on null ([#2634](https://github.com/rubygems/bundler/issues/2634), @jasonmp85)
1933
+ - handle cross-host redirects without SSL ([#2686](https://github.com/rubygems/bundler/issues/2686), @grddev)
1840
1934
  - handle Rubygems 2 security exception (@zzak)
1841
1935
  - reinstall gems if they are missing with spec present
1842
- - set binstub permissions using umask ([#1618](https://github.com/bundler/bundler/issues/1618), @v-yarotsky)
1936
+ - set binstub permissions using umask ([#1618](https://github.com/rubygems/bundler/issues/1618), @v-yarotsky)
1843
1937
 
1844
1938
  ## 1.3.5 (3 April 2013)
1845
1939
 
@@ -1915,28 +2009,28 @@ Security:
1915
2009
 
1916
2010
  - validate SSL certificate chain during HTTPS network requests
1917
2011
  - don't send HTTP Basic Auth creds when redirected to other hosts (@perplexes)
1918
- - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, [#2293](https://github.com/bundler/bundler/issues/2293))
2012
+ - add `--trust-policy` to `install`, like `gem install -P` (@CosmicCat, [#2293](https://github.com/rubygems/bundler/issues/2293))
1919
2013
 
1920
2014
  Features:
1921
2015
 
1922
- - optimize resolver when too new of a gem is already activated (@rykov, [#2248](https://github.com/bundler/bundler/issues/2248))
2016
+ - optimize resolver when too new of a gem is already activated (@rykov, [#2248](https://github.com/rubygems/bundler/issues/2248))
1923
2017
  - update Net::HTTP::Persistent for SSL cert validation and no_proxy ENV
1924
2018
  - explain SSL cert validation failures
1925
2019
  - generate gemspecs when installing git repos, removing shellouts
1926
2020
  - add pager selection (@csgui)
1927
- - add `licenses` command (@bryanwoods, [#1898](https://github.com/bundler/bundler/issues/1898))
1928
- - sort output from `outdated` (@richardkmichael, [#1896](https://github.com/bundler/bundler/issues/1896))
1929
- - add a .travis.yml to `gem -t` (@ndbroadbent, [#2143](https://github.com/bundler/bundler/issues/2143))
2021
+ - add `licenses` command (@bryanwoods, [#1898](https://github.com/rubygems/bundler/issues/1898))
2022
+ - sort output from `outdated` (@richardkmichael, [#1896](https://github.com/rubygems/bundler/issues/1896))
2023
+ - add a .travis.yml to `gem -t` (@ndbroadbent, [#2143](https://github.com/rubygems/bundler/issues/2143))
1930
2024
  - inform users when the resolver starts
1931
2025
  - disable reverse DNS to speed up API requests (@raggi)
1932
2026
 
1933
2027
  Bugfixes:
1934
2028
 
1935
- - raise errors while requiring dashed gems ([#1807](https://github.com/bundler/bundler/issues/1807))
1936
- - quote the Bundler path on Windows (@jgeiger, [#1862](https://github.com/bundler/bundler/issues/1862), [#1856](https://github.com/bundler/bundler/issues/1856))
1937
- - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
2029
+ - raise errors while requiring dashed gems ([#1807](https://github.com/rubygems/bundler/issues/1807))
2030
+ - quote the Bundler path on Windows (@jgeiger, [#1862](https://github.com/rubygems/bundler/issues/1862), [#1856](https://github.com/bundler/bundler/issues/1856))
2031
+ - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/rubygems/bundler/issues/2301))
1938
2032
  - support any ruby version in --standalone
1939
- - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
2033
+ - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/rubygems/bundler/issues/2193))
1940
2034
  - don't scare users with an error message during API fallback
1941
2035
  - `install --binstubs` is back to overwriting. thanks, SemVer.
1942
2036
 
@@ -1944,7 +2038,7 @@ Bugfixes:
1944
2038
 
1945
2039
  Bugfixes:
1946
2040
 
1947
- - stubs for gems with dev deps no longer cause exceptions ([#2272](https://github.com/bundler/bundler/issues/2272))
2041
+ - stubs for gems with dev deps no longer cause exceptions ([#2272](https://github.com/rubygems/bundler/issues/2272))
1948
2042
  - don't suggest binstubs to --binstubs users
1949
2043
 
1950
2044
  ## 1.3.0.pre.6 (22 January 2013)
@@ -1968,7 +2062,7 @@ Bugfixes:
1968
2062
  Features:
1969
2063
 
1970
2064
  - make `--standalone` require lines ruby engine/version agnostic
1971
- - add `--dry-run` to `bundle clean` (@wfarr, [#2237](https://github.com/bundler/bundler/issues/2237))
2065
+ - add `--dry-run` to `bundle clean` (@wfarr, [#2237](https://github.com/rubygems/bundler/issues/2237))
1972
2066
 
1973
2067
  Bugfixes:
1974
2068
 
@@ -2001,7 +2095,7 @@ Bugfixes:
2001
2095
 
2002
2096
  - :git gems with extensions now work with Rubygems >= 2.0 (@jeremy)
2003
2097
  - revert SemVer breaking change to :github
2004
- - `outdated` exits non-zero if outdated gems found (@rohit, [#2021](https://github.com/bundler/bundler/issues/2021))
2098
+ - `outdated` exits non-zero if outdated gems found (@rohit, [#2021](https://github.com/rubygems/bundler/issues/2021))
2005
2099
  - https Gist URLs for compatibility with Gist 2.0 (@NARKOZ)
2006
2100
  - namespaced gems no longer generate a superfluous directory (@banyan)
2007
2101
 
@@ -2009,15 +2103,15 @@ Bugfixes:
2009
2103
 
2010
2104
  Features:
2011
2105
 
2012
- - `config` expands local overrides like `local.rack .` (@gkop, [#2205](https://github.com/bundler/bundler/issues/2205))
2013
- - `gem` generates files correctly for names like `jquery-rails` (@banyan, [#2201](https://github.com/bundler/bundler/issues/2201))
2106
+ - `config` expands local overrides like `local.rack .` (@gkop, [#2205](https://github.com/rubygems/bundler/issues/2205))
2107
+ - `gem` generates files correctly for names like `jquery-rails` (@banyan, [#2201](https://github.com/rubygems/bundler/issues/2201))
2014
2108
  - use gems from gists with the :gist option in the Gemfile (@jgaskins)
2015
2109
 
2016
2110
  Bugfixes:
2017
2111
 
2018
2112
  - Gemfile sources other than rubygems.org work even when .gemrc contains sources
2019
- - caching git gems now caches specs, fixing e.g. git ls-files (@bison, [#2039](https://github.com/bundler/bundler/issues/2039))
2020
- - `show GEM` now warns if the directory has been deleted (@rohit, [#2070](https://github.com/bundler/bundler/issues/2070))
2113
+ - caching git gems now caches specs, fixing e.g. git ls-files (@bison, [#2039](https://github.com/rubygems/bundler/issues/2039))
2114
+ - `show GEM` now warns if the directory has been deleted (@rohit, [#2070](https://github.com/rubygems/bundler/issues/2070))
2021
2115
  - git output hidden when running in --quiet mode (@rohit)
2022
2116
 
2023
2117
  ## 1.3.0.pre (Nov 29, 2012)
@@ -2028,7 +2122,7 @@ Features:
2028
2122
  - compatible with Rubygems 2.0.0.preview2 (@drbrain, @evanphx)
2029
2123
  - ruby 2.0 added to the `:ruby19` ABI-compatible platform
2030
2124
  - lazy load YAML, allowing Psych to be specified in the Gemfile
2031
- - significant performance improvements (@cheald, [#2181](https://github.com/bundler/bundler/issues/2181))
2125
+ - significant performance improvements (@cheald, [#2181](https://github.com/rubygems/bundler/issues/2181))
2032
2126
  - `inject` command for scripted Gemfile additions (Engine Yard)
2033
2127
  - :github option uses slashless arguments as repo owner (@rking)
2034
2128
  - `open` suggests gem names for typos (@jdelStrother)
@@ -2041,12 +2135,12 @@ Features:
2041
2135
  Bugfixes:
2042
2136
 
2043
2137
  - JRuby new works with HTTPS gem sources (@davidcelis)
2044
- - `install` installs both rake rake-built gems at once (@crowbot, [#2107](https://github.com/bundler/bundler/issues/2107))
2138
+ - `install` installs both rake rake-built gems at once (@crowbot, [#2107](https://github.com/rubygems/bundler/issues/2107))
2045
2139
  - handle Errno::ETIMEDOUT errors (@jmoses)
2046
2140
  - handle Errno::EAGAIN errors on JRuby
2047
2141
  - disable ANSI coloring when output is redirected (@tomykaira)
2048
2142
  - raise LoadErrors correctly during Bundler.require (@Empact)
2049
- - do not swallow --verbose on `bundle exec` (@sol, [#2102](https://github.com/bundler/bundler/issues/2102))
2143
+ - do not swallow --verbose on `bundle exec` (@sol, [#2102](https://github.com/rubygems/bundler/issues/2102))
2050
2144
  - `gem` generates gemspecs that block double-requires
2051
2145
  - `gem` generates gemspecs that admit they depend on rake
2052
2146
 
@@ -2068,9 +2162,9 @@ Features:
2068
2162
  Bugfixes:
2069
2163
 
2070
2164
  - don't send user/pass when redirected to another host (@perplexes)
2071
- - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/bundler/bundler/issues/2301))
2165
+ - load gemspecs containing unicode (@gaffneyc, [#2301](https://github.com/rubygems/bundler/issues/2301))
2072
2166
  - support any ruby version in --standalone
2073
- - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/bundler/bundler/issues/2193))
2167
+ - resolve some ruby -w warnings (@chastell, [#2193](https://github.com/rubygems/bundler/issues/2193))
2074
2168
  - don't scare users with an error message during API fallback
2075
2169
 
2076
2170
  ## 1.2.3 (Nov 29, 2012)
@@ -2114,41 +2208,41 @@ Bugfixes:
2114
2208
 
2115
2209
  Features:
2116
2210
 
2117
- - `check` now has a `--dry-run` option (@svenfuchs, [#1811](https://github.com/bundler/bundler/issues/1811))
2211
+ - `check` now has a `--dry-run` option (@svenfuchs, [#1811](https://github.com/rubygems/bundler/issues/1811))
2118
2212
  - loosen ruby directive for engines
2119
- - prune git/path directories inside vendor/cache (@josevalim, [#1988](https://github.com/bundler/bundler/issues/1988))
2213
+ - prune git/path directories inside vendor/cache (@josevalim, [#1988](https://github.com/rubygems/bundler/issues/1988))
2120
2214
  - update vendored thor to 0.15.2 (@sferik)
2121
- - add .txt to LICENSE (@postmodern, [#2001](https://github.com/bundler/bundler/issues/2001))
2122
- - add `config disable_local_branch_check` (@josevalim, [#1985](https://github.com/bundler/bundler/issues/1985))
2123
- - fall back on the full index when experiencing syck errors ([#1419](https://github.com/bundler/bundler/issues/1419))
2124
- - handle syntax errors in Ruby gemspecs ([#1974](https://github.com/bundler/bundler/issues/1974))
2215
+ - add .txt to LICENSE (@postmodern, [#2001](https://github.com/rubygems/bundler/issues/2001))
2216
+ - add `config disable_local_branch_check` (@josevalim, [#1985](https://github.com/rubygems/bundler/issues/1985))
2217
+ - fall back on the full index when experiencing syck errors ([#1419](https://github.com/rubygems/bundler/issues/1419))
2218
+ - handle syntax errors in Ruby gemspecs ([#1974](https://github.com/rubygems/bundler/issues/1974))
2125
2219
 
2126
2220
  Bugfixes:
2127
2221
 
2128
- - fix `pack`/`cache` with `--all` (@josevalim, [#1989](https://github.com/bundler/bundler/issues/1989))
2222
+ - fix `pack`/`cache` with `--all` (@josevalim, [#1989](https://github.com/rubygems/bundler/issues/1989))
2129
2223
  - don't display warning message when `cache_all` is set
2130
- - check for `nil` PATH ([#2006](https://github.com/bundler/bundler/issues/2006))
2131
- - Always try to keep original GEM_PATH (@drogus, [#1920](https://github.com/bundler/bundler/issues/1920))
2224
+ - check for `nil` PATH ([#2006](https://github.com/rubygems/bundler/issues/2006))
2225
+ - Always try to keep original GEM_PATH (@drogus, [#1920](https://github.com/rubygems/bundler/issues/1920))
2132
2226
 
2133
2227
  ## 1.2.0.pre.1 (May 27, 2012)
2134
2228
 
2135
2229
  Features:
2136
2230
 
2137
- - Git gems import submodules of submodules recursively (@nwwatson, [#1935](https://github.com/bundler/bundler/issues/1935))
2231
+ - Git gems import submodules of submodules recursively (@nwwatson, [#1935](https://github.com/rubygems/bundler/issues/1935))
2138
2232
 
2139
2233
  Bugfixes:
2140
2234
 
2141
2235
  - Exit from `check` with a non-zero status when frozen with no lock
2142
- - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
2236
+ - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/rubygems/bundler/issues/1264))
2143
2237
  - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
2144
2238
 
2145
2239
  Documentation:
2146
2240
 
2147
2241
  - Add instructions for local git repos to the `config` manpage
2148
2242
  - Update the `Gemfile` manpage to include ruby versions (@stevenh512)
2149
- - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
2243
+ - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/rubygems/bundler/issues/1776) etc.)
2150
2244
  - Unknown exceptions now link to ISSUES for help instead of a new ticket
2151
- - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
2245
+ - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/rubygems/bundler/issues/1911))
2152
2246
 
2153
2247
  ## 1.2.0.pre (May 4, 2012)
2154
2248
 
@@ -2159,28 +2253,28 @@ Features:
2159
2253
  - It is possible to override a git repository via configuration.
2160
2254
  For instance, if you have a git dependency on rack, you can force
2161
2255
  it to use a local repo with `bundle config local.rack ~/path/to/rack`
2162
- - Cache gemspec loads for performance (@dekellum, [#1635](https://github.com/bundler/bundler/issues/1635))
2163
- - add --full-index flag to `bundle update` (@fluxx, [#1829](https://github.com/bundler/bundler/issues/1829))
2164
- - add --quiet flag to `bundle update` (@nashby, [#1654](https://github.com/bundler/bundler/issues/1654))
2165
- - Add Bundler::GemHelper.gemspec (@knu, [#1637](https://github.com/bundler/bundler/issues/1637))
2166
- - Graceful handling of Gemfile syntax errors (@koraktor, [#1661](https://github.com/bundler/bundler/issues/1661))
2256
+ - Cache gemspec loads for performance (@dekellum, [#1635](https://github.com/rubygems/bundler/issues/1635))
2257
+ - add --full-index flag to `bundle update` (@fluxx, [#1829](https://github.com/rubygems/bundler/issues/1829))
2258
+ - add --quiet flag to `bundle update` (@nashby, [#1654](https://github.com/rubygems/bundler/issues/1654))
2259
+ - Add Bundler::GemHelper.gemspec (@knu, [#1637](https://github.com/rubygems/bundler/issues/1637))
2260
+ - Graceful handling of Gemfile syntax errors (@koraktor, [#1661](https://github.com/rubygems/bundler/issues/1661))
2167
2261
  - `bundle platform` command
2168
2262
  - add ruby to DSL, to specify version of ruby
2169
2263
  - error out if the ruby version doesn't match
2170
2264
 
2171
2265
  Performance:
2172
2266
 
2173
- - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, [#1598](https://github.com/bundler/bundler/issues/1598))
2267
+ - bundle exec shouldn't run Bundler.setup just setting the right rubyopts options is enough (@spastorino, [#1598](https://github.com/rubygems/bundler/issues/1598))
2174
2268
 
2175
2269
  Bugfixes:
2176
2270
 
2177
- - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
2271
+ - Avoid passing RUBYOPT changes in with_clean_env block (@eric1234, [#1604](https://github.com/rubygems/bundler/issues/1604))
2178
2272
  - Use the same ruby to run subprocesses as is running rake (@brixen)
2179
2273
 
2180
2274
  Documentation:
2181
2275
 
2182
- - Add :github documentation in DSL (@zofrex, [#1848](https://github.com/bundler/bundler/issues/1848), [#1851](https://github.com/bundler/bundler/issues/1851), [#1852](https://github.com/bundler/bundler/issues/1852))
2183
- - Add docs for the --no-cache option (@fluxx, [#1796](https://github.com/bundler/bundler/issues/1796))
2276
+ - Add :github documentation in DSL (@zofrex, [#1848](https://github.com/rubygems/bundler/issues/1848), [#1851](https://github.com/bundler/bundler/issues/1851), [#1852](https://github.com/bundler/bundler/issues/1852))
2277
+ - Add docs for the --no-cache option (@fluxx, [#1796](https://github.com/rubygems/bundler/issues/1796))
2184
2278
  - Add basic documentation for bin_path and bundle_path (@radar)
2185
2279
  - Add documentation for the run method in Bundler::Installer
2186
2280
 
@@ -2194,23 +2288,23 @@ Features:
2194
2288
 
2195
2289
  Bugfixes:
2196
2290
 
2197
- - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/bundler/bundler/issues/1264))
2291
+ - Use `latest_release` in Capistrano and Vlad integration ([#1264](https://github.com/rubygems/bundler/issues/1264))
2198
2292
  - Unknown exceptions now link to ISSUES for help instead of a new ticket
2199
- - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/bundler/bundler/issues/1776) etc.)
2200
- - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/bundler/bundler/issues/1911))
2293
+ - When OpenSSL is missing, provide instructions for fixing ([#1776](https://github.com/rubygems/bundler/issues/1776) etc.)
2294
+ - Correct inline help for `clean --force` (@dougbarth, [#1911](https://github.com/rubygems/bundler/issues/1911))
2201
2295
  - Work around a Ruby 1.9.3p194 bug in Psych when config files are empty
2202
2296
 
2203
2297
  ## 1.1.3 (March 23, 2012)
2204
2298
 
2205
2299
  Bugfixes:
2206
2300
 
2207
- - escape the bundler root path (@tenderlove, [#1789](https://github.com/bundler/bundler/issues/1789))
2301
+ - escape the bundler root path (@tenderlove, [#1789](https://github.com/rubygems/bundler/issues/1789))
2208
2302
 
2209
2303
  ## 1.1.2 (March 20, 2012)
2210
2304
 
2211
2305
  Bugfixes:
2212
2306
 
2213
- - Fix --deployment for multiple PATH sections of the same source ([#1782](https://github.com/bundler/bundler/issues/1782))
2307
+ - Fix --deployment for multiple PATH sections of the same source ([#1782](https://github.com/rubygems/bundler/issues/1782))
2214
2308
 
2215
2309
  ## 1.1.1 (March 14, 2012)
2216
2310
 
@@ -2220,8 +2314,8 @@ Bugfixes:
2220
2314
  - Stop asking users to report gem installation errors
2221
2315
  - Clarify "no sources" message
2222
2316
  - Use $\ so `bundle gem` gemspecs work on Windows (@postmodern)
2223
- - URI-encode gem names for dependency API (@rohit, [#1672](https://github.com/bundler/bundler/issues/1672))
2224
- - Fix `cache` edge case in rubygems 1.3.7 ([#1202](https://github.com/bundler/bundler/issues/1202))
2317
+ - URI-encode gem names for dependency API (@rohit, [#1672](https://github.com/rubygems/bundler/issues/1672))
2318
+ - Fix `cache` edge case in rubygems 1.3.7 ([#1202](https://github.com/rubygems/bundler/issues/1202))
2225
2319
 
2226
2320
  Performance:
2227
2321
 
@@ -2243,10 +2337,10 @@ Performance:
2243
2337
 
2244
2338
  Bugfixes:
2245
2339
 
2246
- - Load gemspecs from git even when a released gem has the same version ([#1609](https://github.com/bundler/bundler/issues/1609))
2247
- - Declare an accurate Ruby version requirement of 1.8.7 or newer ([#1619](https://github.com/bundler/bundler/issues/1619))
2248
- - handle gemspec development dependencies correctly (@raggi, [#1639](https://github.com/bundler/bundler/issues/1639))
2249
- - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, [#1604](https://github.com/bundler/bundler/issues/1604))
2340
+ - Load gemspecs from git even when a released gem has the same version ([#1609](https://github.com/rubygems/bundler/issues/1609))
2341
+ - Declare an accurate Ruby version requirement of 1.8.7 or newer ([#1619](https://github.com/rubygems/bundler/issues/1619))
2342
+ - handle gemspec development dependencies correctly (@raggi, [#1639](https://github.com/rubygems/bundler/issues/1639))
2343
+ - Avoid passing RUBYOPT changes in with_clean_env block. (eric1234, [#1604](https://github.com/rubygems/bundler/issues/1604))
2250
2344
 
2251
2345
  ## 1.1.rc.7 (Dec 29, 2011)
2252
2346
 
@@ -2258,7 +2352,7 @@ Bugfixes:
2258
2352
 
2259
2353
  Bugfixes:
2260
2354
 
2261
- - Fix performance regression from 1.0 (@spastorino, [#1511](https://github.com/bundler/bundler/issues/1511), [#1591](https://github.com/bundler/bundler/issues/1591), [#1592](https://github.com/bundler/bundler/issues/1592))
2355
+ - Fix performance regression from 1.0 (@spastorino, [#1511](https://github.com/rubygems/bundler/issues/1511), [#1591](https://github.com/bundler/bundler/issues/1591), [#1592](https://github.com/bundler/bundler/issues/1592))
2262
2356
  - Load gems correctly when GEM_HOME is blank
2263
2357
  - Refresh gems so Bundler works from inside a bundle
2264
2358
  - Handle empty .bundle/config files without an error
@@ -2273,64 +2367,64 @@ Bugfixes:
2273
2367
 
2274
2368
  Features:
2275
2369
 
2276
- - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, [#683](https://github.com/bundler/bundler/issues/683))
2370
+ - `bundle viz` has the option to output a DOT file instead of a PNG (@hirochachacha, [#683](https://github.com/rubygems/bundler/issues/683))
2277
2371
 
2278
2372
  Bugfixes:
2279
2373
 
2280
- - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, [#1588](https://github.com/bundler/bundler/issues/1588))
2281
- - fix `bundle viz` (@hirochachacha, [#1586](https://github.com/bundler/bundler/issues/1586))
2374
+ - Ensure binstubs generated when using --standalone point to the standalonde bundle (@cowboyd, [#1588](https://github.com/rubygems/bundler/issues/1588))
2375
+ - fix `bundle viz` (@hirochachacha, [#1586](https://github.com/rubygems/bundler/issues/1586))
2282
2376
 
2283
2377
  ## 1.1.rc.3 (Dec 8, 2011)
2284
2378
 
2285
2379
  Bugfixes:
2286
2380
 
2287
- - fix relative_path so it checks Bundler.root is actually in the beginning of the path ([#1582](https://github.com/bundler/bundler/issues/1582))
2288
- - fix bundle outdated doesn't list all gems (@joelmoss, [#1521](https://github.com/bundler/bundler/issues/1521))
2381
+ - fix relative_path so it checks Bundler.root is actually in the beginning of the path ([#1582](https://github.com/rubygems/bundler/issues/1582))
2382
+ - fix bundle outdated doesn't list all gems (@joelmoss, [#1521](https://github.com/rubygems/bundler/issues/1521))
2289
2383
 
2290
2384
  ## 1.1.rc.2 (Dec 6, 2011)
2291
2385
 
2292
2386
  Features:
2293
2387
 
2294
- - Added README.md to `newgem` (@ognevsky, [#1574](https://github.com/bundler/bundler/issues/1574))
2295
- - Added LICENSE (MIT) to newgem (@ognevsky, [#1571](https://github.com/bundler/bundler/issues/1571))
2388
+ - Added README.md to `newgem` (@ognevsky, [#1574](https://github.com/rubygems/bundler/issues/1574))
2389
+ - Added LICENSE (MIT) to newgem (@ognevsky, [#1571](https://github.com/rubygems/bundler/issues/1571))
2296
2390
 
2297
2391
  Bugfixes:
2298
2392
 
2299
- - only auto-namespace requires for implied requires ([#1531](https://github.com/bundler/bundler/issues/1531))
2300
- - fix bundle clean output for git repos ([#1473](https://github.com/bundler/bundler/issues/1473))
2301
- - use Gem.bindir for bundle clean ([#1544](https://github.com/bundler/bundler/issues/1544), [#1532](https://github.com/bundler/bundler/issues/1532))
2302
- - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2303
- - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, [#1539](https://github.com/bundler/bundler/issues/1539))
2304
- - `bundle clean` handles 7 length git hash for bundle clean ([#1490](https://github.com/bundler/bundler/issues/1490), [#1491](https://github.com/bundler/bundler/issues/1491))
2393
+ - only auto-namespace requires for implied requires ([#1531](https://github.com/rubygems/bundler/issues/1531))
2394
+ - fix bundle clean output for git repos ([#1473](https://github.com/rubygems/bundler/issues/1473))
2395
+ - use Gem.bindir for bundle clean ([#1544](https://github.com/rubygems/bundler/issues/1544), [#1532](https://github.com/bundler/bundler/issues/1532))
2396
+ - use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/rubygems/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2397
+ - differentiate Ruby 2.0 (trunk) from Ruby 1.9 (@tenderlove, [#1539](https://github.com/rubygems/bundler/issues/1539))
2398
+ - `bundle clean` handles 7 length git hash for bundle clean ([#1490](https://github.com/rubygems/bundler/issues/1490), [#1491](https://github.com/bundler/bundler/issues/1491))
2305
2399
  - fix Psych loading issues
2306
- - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, [#1573](https://github.com/bundler/bundler/issues/1573))
2307
- - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/bundler/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2308
- - `newgem` now uses https://rubygems.org ([#1562](https://github.com/bundler/bundler/issues/1562))
2309
- - `bundle init` now uses https://rubygems.org (@jjb, [#1522](https://github.com/bundler/bundler/issues/1522))
2400
+ - Search $PATH for a binary rather than shelling out to `which` (@tenderlove, [#1573](https://github.com/rubygems/bundler/issues/1573))
2401
+ - do not clear RG cache unless we actually modify GEM_PATH and GEM_HOME- use `Gem.load_env_plugins` instead of `Gem.load_env_plugins` ([#1500](https://github.com/rubygems/bundler/issues/1500), [#1543](https://github.com/bundler/bundler/issues/1543))
2402
+ - `newgem` now uses https://rubygems.org ([#1562](https://github.com/rubygems/bundler/issues/1562))
2403
+ - `bundle init` now uses https://rubygems.org (@jjb, [#1522](https://github.com/rubygems/bundler/issues/1522))
2310
2404
  - `bundle install/update` does not autoclean when using --path for semver
2311
2405
 
2312
2406
  Documentation:
2313
2407
 
2314
- - added documentation for --shebang option for `bundle install` (@lunks, [#1475](https://github.com/bundler/bundler/issues/1475), [#1558](https://github.com/bundler/bundler/issues/1558))
2408
+ - added documentation for --shebang option for `bundle install` (@lunks, [#1475](https://github.com/rubygems/bundler/issues/1475), [#1558](https://github.com/bundler/bundler/issues/1558))
2315
2409
 
2316
2410
  ## 1.1.rc (Oct 3, 2011)
2317
2411
 
2318
2412
  Features:
2319
2413
 
2320
- - add `--shebang` option to bundle install (@bensie, [#1467](https://github.com/bundler/bundler/issues/1467))
2321
- - build passes on ruby 1.9.3rc1 ([#1458](https://github.com/bundler/bundler/issues/1458), [#1469](https://github.com/bundler/bundler/issues/1469))
2322
- - hide basic auth credentials for custom sources ([#1440](https://github.com/bundler/bundler/issues/1440), [#1463](https://github.com/bundler/bundler/issues/1463))
2414
+ - add `--shebang` option to bundle install (@bensie, [#1467](https://github.com/rubygems/bundler/issues/1467))
2415
+ - build passes on ruby 1.9.3rc1 ([#1458](https://github.com/rubygems/bundler/issues/1458), [#1469](https://github.com/bundler/bundler/issues/1469))
2416
+ - hide basic auth credentials for custom sources ([#1440](https://github.com/rubygems/bundler/issues/1440), [#1463](https://github.com/bundler/bundler/issues/1463))
2323
2417
 
2324
2418
  Bugfixes:
2325
2419
 
2326
- - fix index search result caching ([#1446](https://github.com/bundler/bundler/issues/1446), [#1466](https://github.com/bundler/bundler/issues/1466))
2327
- - fix fetcher prints multiple times during install ([#1445](https://github.com/bundler/bundler/issues/1445), [#1462](https://github.com/bundler/bundler/issues/1462))
2420
+ - fix index search result caching ([#1446](https://github.com/rubygems/bundler/issues/1446), [#1466](https://github.com/bundler/bundler/issues/1466))
2421
+ - fix fetcher prints multiple times during install ([#1445](https://github.com/rubygems/bundler/issues/1445), [#1462](https://github.com/bundler/bundler/issues/1462))
2328
2422
  - don't mention API errors from non-rubygems.org sources
2329
- - fix autoclean so it doesn't remove bins that are used ([#1459](https://github.com/bundler/bundler/issues/1459), [#1460](https://github.com/bundler/bundler/issues/1460))
2423
+ - fix autoclean so it doesn't remove bins that are used ([#1459](https://github.com/rubygems/bundler/issues/1459), [#1460](https://github.com/bundler/bundler/issues/1460))
2330
2424
 
2331
2425
  Documentation:
2332
2426
 
2333
- - add :require => [...] to the gemfile(5) manpage (@nono, [#1468](https://github.com/bundler/bundler/issues/1468))
2427
+ - add :require => [...] to the gemfile(5) manpage (@nono, [#1468](https://github.com/rubygems/bundler/issues/1468))
2334
2428
 
2335
2429
  ## 1.1.pre.10 (Sep 27, 2011)
2336
2430
 
@@ -2343,75 +2437,75 @@ Features:
2343
2437
  Features:
2344
2438
 
2345
2439
  - `clean` will now clean up all old .gem and .gemspec files, cleaning up older pres
2346
- - `clean` will be automatically run after bundle install and update when using `--path` ([#1420](https://github.com/bundler/bundler/issues/1420), [#1425](https://github.com/bundler/bundler/issues/1425))
2347
- - `clean` now takes a `--force` option ([#1247](https://github.com/bundler/bundler/issues/1247), [#1426](https://github.com/bundler/bundler/issues/1426))
2348
- - `clean` will clean up cached git dirs in bundle clean ([#1390](https://github.com/bundler/bundler/issues/1390))
2349
- - remove deprecations from DSL ([#1119](https://github.com/bundler/bundler/issues/1119))
2350
- - autorequire tries directories for gems with dashed names ([#1205](https://github.com/bundler/bundler/issues/1205))
2351
- - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, [#1360](https://github.com/bundler/bundler/issues/1360))
2352
- - load rubygems plugins in the bundle binary (@tpope, [#1364](https://github.com/bundler/bundler/issues/1364))
2353
- - make `--standalone` respect `--path` (@cowboyd, [#1361](https://github.com/bundler/bundler/issues/1361))
2354
-
2355
- Bugfixes:
2356
-
2357
- - Fix `clean` to handle nested gems in a git repo ([#1329](https://github.com/bundler/bundler/issues/1329))
2358
- - Fix conflict from revert of benchmark tool (@boffbowsh, [#1355](https://github.com/bundler/bundler/issues/1355))
2359
- - Fix fatal error when unable to connect to gem source ([#1269](https://github.com/bundler/bundler/issues/1269))
2360
- - Fix `outdated` to find pre-release gems that are installed. ([#1359](https://github.com/bundler/bundler/issues/1359))
2361
- - Fix color for ui. ([#1374](https://github.com/bundler/bundler/issues/1374))
2440
+ - `clean` will be automatically run after bundle install and update when using `--path` ([#1420](https://github.com/rubygems/bundler/issues/1420), [#1425](https://github.com/bundler/bundler/issues/1425))
2441
+ - `clean` now takes a `--force` option ([#1247](https://github.com/rubygems/bundler/issues/1247), [#1426](https://github.com/bundler/bundler/issues/1426))
2442
+ - `clean` will clean up cached git dirs in bundle clean ([#1390](https://github.com/rubygems/bundler/issues/1390))
2443
+ - remove deprecations from DSL ([#1119](https://github.com/rubygems/bundler/issues/1119))
2444
+ - autorequire tries directories for gems with dashed names ([#1205](https://github.com/rubygems/bundler/issues/1205))
2445
+ - adds a `--paths` flag to `bundle show` to list all the paths of bundled gems (@tiegz, [#1360](https://github.com/rubygems/bundler/issues/1360))
2446
+ - load rubygems plugins in the bundle binary (@tpope, [#1364](https://github.com/rubygems/bundler/issues/1364))
2447
+ - make `--standalone` respect `--path` (@cowboyd, [#1361](https://github.com/rubygems/bundler/issues/1361))
2448
+
2449
+ Bugfixes:
2450
+
2451
+ - Fix `clean` to handle nested gems in a git repo ([#1329](https://github.com/rubygems/bundler/issues/1329))
2452
+ - Fix conflict from revert of benchmark tool (@boffbowsh, [#1355](https://github.com/rubygems/bundler/issues/1355))
2453
+ - Fix fatal error when unable to connect to gem source ([#1269](https://github.com/rubygems/bundler/issues/1269))
2454
+ - Fix `outdated` to find pre-release gems that are installed. ([#1359](https://github.com/rubygems/bundler/issues/1359))
2455
+ - Fix color for ui. ([#1374](https://github.com/rubygems/bundler/issues/1374))
2362
2456
  - Fix installing to user-owned system gems on OS X
2363
- - Fix caching issue in the resolver ([#1353](https://github.com/bundler/bundler/issues/1353), [#1421](https://github.com/bundler/bundler/issues/1421))
2457
+ - Fix caching issue in the resolver ([#1353](https://github.com/rubygems/bundler/issues/1353), [#1421](https://github.com/bundler/bundler/issues/1421))
2364
2458
  - Fix :github DSL option
2365
2459
 
2366
2460
  ## 1.1.pre.8 (Aug 13, 2011)
2367
2461
 
2368
2462
  Bugfixes:
2369
2463
 
2370
- - Fix `bundle check` to not print fatal error message (@cldwalker, [#1347](https://github.com/bundler/bundler/issues/1347))
2371
- - Fix require_sudo when Gem.bindir isn't writeable ([#1352](https://github.com/bundler/bundler/issues/1352))
2372
- - Fix not asking Gemcutter API for dependency chain of git gems in --deployment ([#1254](https://github.com/bundler/bundler/issues/1254))
2373
- - Fix `install --binstubs` when using --path ([#1332](https://github.com/bundler/bundler/issues/1332))
2464
+ - Fix `bundle check` to not print fatal error message (@cldwalker, [#1347](https://github.com/rubygems/bundler/issues/1347))
2465
+ - Fix require_sudo when Gem.bindir isn't writeable ([#1352](https://github.com/rubygems/bundler/issues/1352))
2466
+ - Fix not asking Gemcutter API for dependency chain of git gems in --deployment ([#1254](https://github.com/rubygems/bundler/issues/1254))
2467
+ - Fix `install --binstubs` when using --path ([#1332](https://github.com/rubygems/bundler/issues/1332))
2374
2468
 
2375
2469
  ## 1.1.pre.7 (Aug 8, 2011)
2376
2470
 
2377
2471
  Bugfixes:
2378
2472
 
2379
- - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
2473
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/rubygems/bundler/issues/1341))
2380
2474
  - Fixed exception when sudo was needed to install gems (@spastorino)
2381
2475
 
2382
2476
  ## 1.1.pre.6 (Aug 8, 2011)
2383
2477
 
2384
2478
  Bugfixes:
2385
2479
 
2386
- - Fix cross repository dependencies ([#1138](https://github.com/bundler/bundler/issues/1138))
2387
- - Fix git dependency fetching from API endpoint ([#1254](https://github.com/bundler/bundler/issues/1254))
2388
- - Fixes for bundle outdated (@joelmoss, [#1238](https://github.com/bundler/bundler/issues/1238))
2389
- - Fix bundle standalone when using the endpoint ([#1240](https://github.com/bundler/bundler/issues/1240))
2480
+ - Fix cross repository dependencies ([#1138](https://github.com/rubygems/bundler/issues/1138))
2481
+ - Fix git dependency fetching from API endpoint ([#1254](https://github.com/rubygems/bundler/issues/1254))
2482
+ - Fixes for bundle outdated (@joelmoss, [#1238](https://github.com/rubygems/bundler/issues/1238))
2483
+ - Fix bundle standalone when using the endpoint ([#1240](https://github.com/rubygems/bundler/issues/1240))
2390
2484
 
2391
2485
  Features:
2392
2486
 
2393
- - Implement `to_ary` to avoid calls to method_missing (@tenderlove, [#1274](https://github.com/bundler/bundler/issues/1274))
2394
- - bundle clean removes old .gem files (@cldwalker, [#1293](https://github.com/bundler/bundler/issues/1293))
2487
+ - Implement `to_ary` to avoid calls to method_missing (@tenderlove, [#1274](https://github.com/rubygems/bundler/issues/1274))
2488
+ - bundle clean removes old .gem files (@cldwalker, [#1293](https://github.com/rubygems/bundler/issues/1293))
2395
2489
  - Correcly identify missing child dependency in error message
2396
- - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, [#1120](https://github.com/bundler/bundler/issues/1120))
2397
- - create Gemfile.lock for empty Gemfile ([#1218](https://github.com/bundler/bundler/issues/1218))
2490
+ - Run pre-install, post-build, and post-install gem hooks for git gems (@warhammerkid, [#1120](https://github.com/rubygems/bundler/issues/1120))
2491
+ - create Gemfile.lock for empty Gemfile ([#1218](https://github.com/rubygems/bundler/issues/1218))
2398
2492
 
2399
2493
  ## 1.1.pre.5 (June 11, 2011)
2400
2494
 
2401
2495
  Bugfixes:
2402
2496
 
2403
- - Fix LazySpecification on Ruby 1.9 (@dpiddy, [#1232](https://github.com/bundler/bundler/issues/1232))
2404
- - Fix HTTP proxy support (@leobessa, [#878](https://github.com/bundler/bundler/issues/878))
2497
+ - Fix LazySpecification on Ruby 1.9 (@dpiddy, [#1232](https://github.com/rubygems/bundler/issues/1232))
2498
+ - Fix HTTP proxy support (@leobessa, [#878](https://github.com/rubygems/bundler/issues/878))
2405
2499
 
2406
2500
  Features:
2407
2501
 
2408
2502
  - Speed up `install --deployment` by using the API endpoint
2409
- - Support Basic HTTP Auth for the API endpoint (@dpiddy, [#1229](https://github.com/bundler/bundler/issues/1229))
2503
+ - Support Basic HTTP Auth for the API endpoint (@dpiddy, [#1229](https://github.com/rubygems/bundler/issues/1229))
2410
2504
  - Add `install --full-index` to disable the API endpoint, just in case
2411
2505
  - Significantly speed up install by removing unneeded gemspec fetches
2412
- - `outdated` command shows outdated gems (@joelmoss, [#1130](https://github.com/bundler/bundler/issues/1130))
2413
- - Print gem post install messages (@csquared, [#1155](https://github.com/bundler/bundler/issues/1155))
2414
- - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, [#1222](https://github.com/bundler/bundler/issues/1222))
2506
+ - `outdated` command shows outdated gems (@joelmoss, [#1130](https://github.com/rubygems/bundler/issues/1130))
2507
+ - Print gem post install messages (@csquared, [#1155](https://github.com/rubygems/bundler/issues/1155))
2508
+ - Reduce memory use by removing Specification.new inside method_missing (@tenderlove, [#1222](https://github.com/rubygems/bundler/issues/1222))
2415
2509
  - Allow `check --path`
2416
2510
 
2417
2511
  ## 1.1.pre.4 (May 5, 2011)
@@ -2479,7 +2573,7 @@ Bugfixes:
2479
2573
 
2480
2574
  Features:
2481
2575
 
2482
- - Add platform :maglev (@timfel, [#1444](https://github.com/bundler/bundler/issues/1444))
2576
+ - Add platform :maglev (@timfel, [#1444](https://github.com/rubygems/bundler/issues/1444))
2483
2577
 
2484
2578
  Bugfixes:
2485
2579
 
@@ -2490,73 +2584,73 @@ Bugfixes:
2490
2584
 
2491
2585
  Features:
2492
2586
 
2493
- - Rescue interrupts to `bundle` while loading bundler.rb ([#1395](https://github.com/bundler/bundler/issues/1395))
2494
- - Allow clearing without groups by passing `--without ''` ([#1259](https://github.com/bundler/bundler/issues/1259))
2587
+ - Rescue interrupts to `bundle` while loading bundler.rb ([#1395](https://github.com/rubygems/bundler/issues/1395))
2588
+ - Allow clearing without groups by passing `--without ''` ([#1259](https://github.com/rubygems/bundler/issues/1259))
2495
2589
 
2496
2590
  Bugfixes:
2497
2591
 
2498
- - Manually sort requirements in the lockfile ([#1375](https://github.com/bundler/bundler/issues/1375))
2592
+ - Manually sort requirements in the lockfile ([#1375](https://github.com/rubygems/bundler/issues/1375))
2499
2593
  - Remove several warnings generated by ruby -w (@stephencelis)
2500
- - Handle trailing slashes on names passed to `gem` ([#1372](https://github.com/bundler/bundler/issues/1372))
2501
- - Name modules for gems like 'test-foo_bar' correctly ([#1303](https://github.com/bundler/bundler/issues/1303))
2502
- - Don't require Psych if Syck is already loaded ([#1239](https://github.com/bundler/bundler/issues/1239))
2594
+ - Handle trailing slashes on names passed to `gem` ([#1372](https://github.com/rubygems/bundler/issues/1372))
2595
+ - Name modules for gems like 'test-foo_bar' correctly ([#1303](https://github.com/rubygems/bundler/issues/1303))
2596
+ - Don't require Psych if Syck is already loaded ([#1239](https://github.com/rubygems/bundler/issues/1239))
2503
2597
 
2504
2598
  ## 1.0.19.rc (September 13, 2011)
2505
2599
 
2506
2600
  Features:
2507
2601
 
2508
2602
  - Compatibility with Rubygems 1.8.10 installer changes
2509
- - Report gem installation failures clearly (@rwilcox, [#1380](https://github.com/bundler/bundler/issues/1380))
2603
+ - Report gem installation failures clearly (@rwilcox, [#1380](https://github.com/rubygems/bundler/issues/1380))
2510
2604
  - Useful error for cap and vlad on first deploy (@nexmat, @kirs)
2511
2605
 
2512
2606
  Bugfixes:
2513
2607
 
2514
2608
  - `exec` now works when the command contains 'exec'
2515
- - Only touch lock after changes on Windows (@robertwahler, [#1358](https://github.com/bundler/bundler/issues/1358))
2516
- - Keep load paths when #setup is called multiple times (@radsaq, [#1379](https://github.com/bundler/bundler/issues/1379))
2609
+ - Only touch lock after changes on Windows (@robertwahler, [#1358](https://github.com/rubygems/bundler/issues/1358))
2610
+ - Keep load paths when #setup is called multiple times (@radsaq, [#1379](https://github.com/rubygems/bundler/issues/1379))
2517
2611
 
2518
2612
  ## 1.0.18 (August 16, 2011)
2519
2613
 
2520
2614
  Bugfixes:
2521
2615
 
2522
2616
  - Fix typo in DEBUG_RESOLVER (@geemus)
2523
- - Fixes rake 0.9.x warning (@mtylty, [#1333](https://github.com/bundler/bundler/issues/1333))
2617
+ - Fixes rake 0.9.x warning (@mtylty, [#1333](https://github.com/rubygems/bundler/issues/1333))
2524
2618
  - Fix `bundle cache` again for rubygems 1.3.x
2525
2619
 
2526
2620
  Features:
2527
2621
 
2528
- - Run the bundle install earlier in a Capistrano deployment (@cgriego, [#1300](https://github.com/bundler/bundler/issues/1300))
2529
- - Support hidden gemspec (@trans, @cldwalker, [#827](https://github.com/bundler/bundler/issues/827))
2530
- - Make fetch_specs faster (@zeha, [#1294](https://github.com/bundler/bundler/issues/1294))
2531
- - Allow overriding development deps loaded by #gemspec (@lgierth, [#1245](https://github.com/bundler/bundler/issues/1245))
2622
+ - Run the bundle install earlier in a Capistrano deployment (@cgriego, [#1300](https://github.com/rubygems/bundler/issues/1300))
2623
+ - Support hidden gemspec (@trans, @cldwalker, [#827](https://github.com/rubygems/bundler/issues/827))
2624
+ - Make fetch_specs faster (@zeha, [#1294](https://github.com/rubygems/bundler/issues/1294))
2625
+ - Allow overriding development deps loaded by #gemspec (@lgierth, [#1245](https://github.com/rubygems/bundler/issues/1245))
2532
2626
 
2533
2627
  ## 1.0.17 (August 8, 2011)
2534
2628
 
2535
2629
  Bugfixes:
2536
2630
 
2537
- - Fix rake issues with rubygems 1.3.x ([#1342](https://github.com/bundler/bundler/issues/1342))
2538
- - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/bundler/bundler/issues/1341))
2631
+ - Fix rake issues with rubygems 1.3.x ([#1342](https://github.com/rubygems/bundler/issues/1342))
2632
+ - Fixed invalid byte sequence error while installing gem on Ruby 1.9 ([#1341](https://github.com/rubygems/bundler/issues/1341))
2539
2633
 
2540
2634
  ## 1.0.16 (August 8, 2011)
2541
2635
 
2542
2636
  Features:
2543
2637
 
2544
- - Performance fix for MRI 1.9 (@efficientcloud, [#1288](https://github.com/bundler/bundler/issues/1288))
2638
+ - Performance fix for MRI 1.9 (@efficientcloud, [#1288](https://github.com/rubygems/bundler/issues/1288))
2545
2639
  - Shortcuts (like `bundle i`) for all commands (@amatsuda)
2546
2640
  - Correcly identify missing child dependency in error message
2547
2641
 
2548
2642
  Bugfixes:
2549
2643
 
2550
- - Allow Windows network share paths with forward slashes (@mtscout6, [#1253](https://github.com/bundler/bundler/issues/1253))
2551
- - Check for rubygems.org credentials so `rake release` doesn't hang ([#980](https://github.com/bundler/bundler/issues/980))
2552
- - Find cached prerelease gems on rubygems 1.3.x (@dburt, [#1202](https://github.com/bundler/bundler/issues/1202))
2553
- - Fix `bundle install --without` on kiji (@tmm1, [#1287](https://github.com/bundler/bundler/issues/1287))
2554
- - Get rid of warning in ruby 1.9.3 (@smartinez87, [#1231](https://github.com/bundler/bundler/issues/1231))
2644
+ - Allow Windows network share paths with forward slashes (@mtscout6, [#1253](https://github.com/rubygems/bundler/issues/1253))
2645
+ - Check for rubygems.org credentials so `rake release` doesn't hang ([#980](https://github.com/rubygems/bundler/issues/980))
2646
+ - Find cached prerelease gems on rubygems 1.3.x (@dburt, [#1202](https://github.com/rubygems/bundler/issues/1202))
2647
+ - Fix `bundle install --without` on kiji (@tmm1, [#1287](https://github.com/rubygems/bundler/issues/1287))
2648
+ - Get rid of warning in ruby 1.9.3 (@smartinez87, [#1231](https://github.com/rubygems/bundler/issues/1231))
2555
2649
 
2556
2650
  Documentation:
2557
2651
 
2558
- - Documentation for `gem ..., :require => false` (@kmayer, [#1292](https://github.com/bundler/bundler/issues/1292))
2559
- - Gems provide "executables", they are rarely also binaries (@fxn, [#1242](https://github.com/bundler/bundler/issues/1242))
2652
+ - Documentation for `gem ..., :require => false` (@kmayer, [#1292](https://github.com/rubygems/bundler/issues/1292))
2653
+ - Gems provide "executables", they are rarely also binaries (@fxn, [#1242](https://github.com/rubygems/bundler/issues/1242))
2560
2654
 
2561
2655
  ## 1.0.15 (June 9, 2011)
2562
2656
 
@@ -2684,7 +2778,7 @@ Bugfixes:
2684
2778
  Bugfixes:
2685
2779
 
2686
2780
  - Fix regression in `update` that caused long/wrong results
2687
- - Allow git gems on other platforms while installing ([#579](https://github.com/bundler/bundler/issues/579))
2781
+ - Allow git gems on other platforms while installing ([#579](https://github.com/rubygems/bundler/issues/579))
2688
2782
 
2689
2783
  Features:
2690
2784
 
@@ -3016,18 +3110,18 @@ Features:
3016
3110
 
3017
3111
  - cache command now prunes stale .gem files from vendor/cache
3018
3112
  - init --gemspec command now generates development dependencies
3019
- - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED ([#287](https://github.com/bundler/bundler/issues/287))
3020
- - remove .gem files generated after installing a gem from a :path ([#286](https://github.com/bundler/bundler/issues/286))
3021
- - improve install/lock messaging ([#284](https://github.com/bundler/bundler/issues/284))
3113
+ - handle Polyglot's changes to Kernel#require with Bundler::ENV_LOADED ([#287](https://github.com/rubygems/bundler/issues/287))
3114
+ - remove .gem files generated after installing a gem from a :path ([#286](https://github.com/rubygems/bundler/issues/286))
3115
+ - improve install/lock messaging ([#284](https://github.com/rubygems/bundler/issues/284))
3022
3116
 
3023
3117
  Bugfixes:
3024
3118
 
3025
- - ignore cached gems that are for another platform ([#288](https://github.com/bundler/bundler/issues/288))
3026
- - install Windows gems that have no architecture set, like rcov ([#277](https://github.com/bundler/bundler/issues/277))
3027
- - exec command while locked now includes the bundler lib in $LOAD_PATH ([#293](https://github.com/bundler/bundler/issues/293))
3119
+ - ignore cached gems that are for another platform ([#288](https://github.com/rubygems/bundler/issues/288))
3120
+ - install Windows gems that have no architecture set, like rcov ([#277](https://github.com/rubygems/bundler/issues/277))
3121
+ - exec command while locked now includes the bundler lib in $LOAD_PATH ([#293](https://github.com/rubygems/bundler/issues/293))
3028
3122
  - fix the `rake install` task
3029
- - add GemspecError so it can be raised without (further) error ([#292](https://github.com/bundler/bundler/issues/292))
3030
- - create a parent directory before cloning for git 1.5 compatibility ([#285](https://github.com/bundler/bundler/issues/285))
3123
+ - add GemspecError so it can be raised without (further) error ([#292](https://github.com/rubygems/bundler/issues/292))
3124
+ - create a parent directory before cloning for git 1.5 compatibility ([#285](https://github.com/rubygems/bundler/issues/285))
3031
3125
 
3032
3126
  ## 0.9.21 (April 16, 2010)
3033
3127
 
@@ -3052,14 +3146,14 @@ Bugfixes:
3052
3146
 
3053
3147
  Features:
3054
3148
 
3055
- - suggest `bundle install --relock` when the Gemfile has changed ([#272](https://github.com/bundler/bundler/issues/272))
3056
- - source support for Rubygems servers without prerelease gem indexes ([#262](https://github.com/bundler/bundler/issues/262))
3149
+ - suggest `bundle install --relock` when the Gemfile has changed ([#272](https://github.com/rubygems/bundler/issues/272))
3150
+ - source support for Rubygems servers without prerelease gem indexes ([#262](https://github.com/rubygems/bundler/issues/262))
3057
3151
 
3058
3152
  Bugfixes:
3059
3153
 
3060
- - don't set up all groups every time Bundler.setup is called while locked ([#263](https://github.com/bundler/bundler/issues/263))
3061
- - fix #full_gem_path for git gems while locked ([#268](https://github.com/bundler/bundler/issues/268))
3062
- - eval gemspecs at the top level, not inside the Bundler class ([#269](https://github.com/bundler/bundler/issues/269))
3154
+ - don't set up all groups every time Bundler.setup is called while locked ([#263](https://github.com/rubygems/bundler/issues/263))
3155
+ - fix #full_gem_path for git gems while locked ([#268](https://github.com/rubygems/bundler/issues/268))
3156
+ - eval gemspecs at the top level, not inside the Bundler class ([#269](https://github.com/rubygems/bundler/issues/269))
3063
3157
 
3064
3158
 
3065
3159
  ## 0.9.18 (April 8, 2010)
@@ -3070,7 +3164,7 @@ Features:
3070
3164
 
3071
3165
  Bugfixes:
3072
3166
 
3073
- - Bundler.setup now fully disables system gems, even when unlocked ([#266](https://github.com/bundler/bundler/issues/266), [#246](https://github.com/bundler/bundler/issues/246))
3167
+ - Bundler.setup now fully disables system gems, even when unlocked ([#266](https://github.com/rubygems/bundler/issues/266), [#246](https://github.com/bundler/bundler/issues/246))
3074
3168
  - fixes Yard, which found plugins in Gem.source_index that it could not load
3075
3169
  - makes behaviour of `Bundler.require` consistent between locked and unlocked loads
3076
3170
 
@@ -3092,7 +3186,7 @@ Features:
3092
3186
 
3093
3187
  - exit gracefully on INT signal
3094
3188
  - resolver output now indicates whether remote sources were checked
3095
- - print error instead of backtrace when exec cannot find a binary ([#241](https://github.com/bundler/bundler/issues/241))
3189
+ - print error instead of backtrace when exec cannot find a binary ([#241](https://github.com/rubygems/bundler/issues/241))
3096
3190
 
3097
3191
  Bugfixes:
3098
3192
 
@@ -3101,9 +3195,9 @@ Bugfixes:
3101
3195
  - outputs branch names other than master
3102
3196
  - gets the correct sha from the checkout
3103
3197
  - doesn't print sha twice if :ref is set
3104
- - report errors from bundler/setup.rb without backtraces ([#243](https://github.com/bundler/bundler/issues/243))
3198
+ - report errors from bundler/setup.rb without backtraces ([#243](https://github.com/rubygems/bundler/issues/243))
3105
3199
  - fix Gem::Spec#git_version to not error on unloaded specs
3106
- - improve deprecation, Gemfile, and command error messages ([#242](https://github.com/bundler/bundler/issues/242))
3200
+ - improve deprecation, Gemfile, and command error messages ([#242](https://github.com/rubygems/bundler/issues/242))
3107
3201
 
3108
3202
  ## 0.9.15 (April 1, 2010)
3109
3203
 
@@ -3118,7 +3212,7 @@ Features:
3118
3212
  Bugfixes:
3119
3213
 
3120
3214
  - prep for Rubygems 1.3.7 changes
3121
- - install command now pulls git branches correctly ([#211](https://github.com/bundler/bundler/issues/211))
3215
+ - install command now pulls git branches correctly ([#211](https://github.com/rubygems/bundler/issues/211))
3122
3216
  - raise errors on invalid options in the Gemfile
3123
3217
 
3124
3218
  ## 0.9.14 (March 30, 2010)
@@ -3160,12 +3254,12 @@ Features:
3160
3254
 
3161
3255
  Bugfixes:
3162
3256
 
3163
- - perform a topological sort on resolved gems ([#191](https://github.com/bundler/bundler/issues/191))
3164
- - gems from git work even when paths or repos have spaces ([#196](https://github.com/bundler/bundler/issues/196))
3165
- - Specification#loaded_from returns a String, like Gem::Specification ([#197](https://github.com/bundler/bundler/issues/197))
3257
+ - perform a topological sort on resolved gems ([#191](https://github.com/rubygems/bundler/issues/191))
3258
+ - gems from git work even when paths or repos have spaces ([#196](https://github.com/rubygems/bundler/issues/196))
3259
+ - Specification#loaded_from returns a String, like Gem::Specification ([#197](https://github.com/rubygems/bundler/issues/197))
3166
3260
  - specs eval from inside the gem directory, even when locked
3167
3261
  - virtual gemspecs are now saved in environment.rb for use when loading
3168
- - unify the Installer's local index and the runtime index ([#204](https://github.com/bundler/bundler/issues/204))
3262
+ - unify the Installer's local index and the runtime index ([#204](https://github.com/rubygems/bundler/issues/204))
3169
3263
 
3170
3264
  ## 0.9.11 (March 9, 2010)
3171
3265
 
@@ -3173,23 +3267,23 @@ Bugfixes:
3173
3267
 
3174
3268
  Features:
3175
3269
 
3176
- - install command can take the path to the gemfile with --gemfile ([#125](https://github.com/bundler/bundler/issues/125))
3177
- - unknown command line options are now rejected ([#163](https://github.com/bundler/bundler/issues/163))
3178
- - exec command hugely sped up while locked ([#177](https://github.com/bundler/bundler/issues/177))
3179
- - show command prints the install path if you pass it a gem name ([#148](https://github.com/bundler/bundler/issues/148))
3180
- - open command edits an installed gem with $EDITOR ([#148](https://github.com/bundler/bundler/issues/148))
3181
- - Gemfile allows assigning an array of groups to a gem ([#114](https://github.com/bundler/bundler/issues/114))
3270
+ - install command can take the path to the gemfile with --gemfile ([#125](https://github.com/rubygems/bundler/issues/125))
3271
+ - unknown command line options are now rejected ([#163](https://github.com/rubygems/bundler/issues/163))
3272
+ - exec command hugely sped up while locked ([#177](https://github.com/rubygems/bundler/issues/177))
3273
+ - show command prints the install path if you pass it a gem name ([#148](https://github.com/rubygems/bundler/issues/148))
3274
+ - open command edits an installed gem with $EDITOR ([#148](https://github.com/rubygems/bundler/issues/148))
3275
+ - Gemfile allows assigning an array of groups to a gem ([#114](https://github.com/rubygems/bundler/issues/114))
3182
3276
  - Gemfile allows :tag option on :git sources
3183
3277
  - improve backtraces when a gemspec is invalid
3184
3278
  - improve performance by installing gems from the cache if present
3185
3279
 
3186
3280
  Bugfixes:
3187
3281
 
3188
- - normalize parameters to Bundler.require ([#153](https://github.com/bundler/bundler/issues/153))
3189
- - check now checks installed gems rather than cached gems ([#162](https://github.com/bundler/bundler/issues/162))
3190
- - don't update the gem index when installing after locking ([#169](https://github.com/bundler/bundler/issues/169))
3191
- - bundle parenthesises arguments for 1.8.6 ([#179](https://github.com/bundler/bundler/issues/179))
3192
- - gems can now be assigned to multiple groups without problems ([#135](https://github.com/bundler/bundler/issues/135))
3282
+ - normalize parameters to Bundler.require ([#153](https://github.com/rubygems/bundler/issues/153))
3283
+ - check now checks installed gems rather than cached gems ([#162](https://github.com/rubygems/bundler/issues/162))
3284
+ - don't update the gem index when installing after locking ([#169](https://github.com/rubygems/bundler/issues/169))
3285
+ - bundle parenthesises arguments for 1.8.6 ([#179](https://github.com/rubygems/bundler/issues/179))
3286
+ - gems can now be assigned to multiple groups without problems ([#135](https://github.com/rubygems/bundler/issues/135))
3193
3287
  - fix the warning when building extensions for a gem from git with Rubygems 1.3.6
3194
3288
  - fix a Dependency.to_yaml error due to accidentally including sources and groups
3195
3289
  - don't reinstall packed gems