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