You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Apr 14, 2021. It is now read-only.
7479: Get ready for 2.1.0 release r=deivid-rodriguez a=deivid-rodriguez
### What was the end-user problem that led to this PR?
The problem was we want to release bundler 2.1.0 before ruby 2.7.0 ships, so that bundler 2.1.0 can be included with ruby 2.7.0.
### What is your fix for the problem, implemented in this PR?
My fix is to get ready for the release.
Co-authored-by: Bundlerbot <[email protected]>
Co-authored-by: David Rodríguez <[email protected]>
plus other PRs removing or lazily loading usages of these gems from other places to not interfere with user's choice, such as [#7471](https://github.com/bundler/bundler/pull/7471) or [#7473](https://github.com/bundler/bundler/pull/7473)
- Fix `bundle exec`'ing to rubygems being silent [#7442](https://github.com/bundler/bundler/pull/7442)
17
+
- Restore previous `BUNDLE_GEMFILE` in `bundler/inline`[#7418](https://github.com/bundler/bundler/pull/7418)
18
+
- Fix error when using `gem` DSL's `:glob` option for selecting gemspecs from a specific source [#7419](https://github.com/bundler/bundler/pull/7419)
19
+
20
+
Changes:
21
+
22
+
-`bundle config` no longer warns when using "old interface" (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
23
+
-`bundle update` no longer warns when used without arguments (might be deprecated again in the future) [#7475](https://github.com/bundler/bundler/pull/7475)
24
+
1
25
## 2.1.0.pre.3 (November 12, 2019)
2
26
3
27
Features:
@@ -20,13 +44,13 @@ Bugfixes:
20
44
Bugfixes:
21
45
22
46
- Fix `bundle clean` trying to delete non-existent directory ([#7340](https://github.com/bundler/bundler/pull/7340))
23
-
- Fix warnings about keywork argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))
47
+
- Fix warnings about keyword argument separation on ruby 2.7 ([#7337](https://github.com/bundler/bundler/pull/7337))
24
48
25
49
## 2.1.0.pre.1 (August 28, 2019)
26
50
27
51
One of the biggest changes in bundler 2.1.0 is that deprecations for upcoming
28
52
breaking changes in bundler 3 will be turned on by default. We do this to grab
29
-
feedback and comunicate early to our users the kind of changes we're intending
53
+
feedback and communicate early to our users the kind of changes we're intending
- Warn about situations where multiple gems provide the same executable ([#7075](https://github.com/bundler/bundler/pull/7075))
90
114
- Ignore `frozen` setting in inline mode ([#7125](https://github.com/bundler/bundler/pull/7125))
91
115
- Fix incorrect "bundler attempted to update GEM but version stayed the same" message when updating git sourced gems ([#6325](https://github.com/bundler/bundler/pull/6325))
92
-
- Don't check for existance of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
116
+
- Don't check for existence of a writable home directory if `BUNDLE_USER_HOME` is set ([#6885](https://github.com/bundler/bundler/pull/6885))
93
117
- Fix error message when server would respond to a bad username/password requiest with a 401 ([#6928](https://github.com/bundler/bundler/pull/6928))
94
118
- Fix `bundle outdated` pluralization when multiple groups are requested ([#7063](https://github.com/bundler/bundler/pull/7063))
95
119
- Fix `bundle install` not updating conservatively when gemspec is changed ([#7143](https://github.com/bundler/bundler/pull/7143))
Copy file name to clipboardExpand all lines: doc/development/SETUP.md
+5-1Lines changed: 5 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,7 +24,11 @@ Bundler doesn't use a Gemfile to list development dependencies, because when we
24
24
25
25
$ bin/rake spec
26
26
27
-
6. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias ([follow these instructions](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile):
27
+
6. Optionally, you can run the test suite in parallel:
28
+
29
+
$ bin/parallel_rspec spec
30
+
31
+
7. Set up a shell alias to run Bundler from your clone, e.g. a Bash alias ([follow these instructions](https://www.moncefbelyamani.com/create-aliases-in-bash-profile-to-assign-shortcuts-for-common-terminal-commands/) for adding aliases to your `~/.bashrc` profile):
28
32
29
33
$ alias dbundle='/path/to/bundler/repo/bin/bundle'
Copy file name to clipboardExpand all lines: lib/bundler/cli/config.rb
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -25,7 +25,7 @@ def base(name = nil, *value)
25
25
["config","get",ARGV[1]]
26
26
end
27
27
28
-
SharedHelpers.major_deprecation2,
28
+
SharedHelpers.major_deprecation3,
29
29
"Using the `config` command without a subcommand [list, get, set, unset] is deprecated and will be removed in the future. Use `bundle #{new_args.join(" ")}` instead."
0 commit comments