From 9db9403daebeae0d8866975478a6f41930fff4a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?David=20Rodr=C3=ADguez?= Date: Thu, 8 Aug 2019 19:18:58 +0200 Subject: Changelog for 2.1.0.pre.1 It also includes an upgrading document with some explanations about the new deprecations and how they map to breaking changes in bundler 3. --- UPGRADING.md | 234 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 234 insertions(+) create mode 100644 UPGRADING.md (limited to 'UPGRADING.md') diff --git a/UPGRADING.md b/UPGRADING.md new file mode 100644 index 0000000000..4a7e5c55e7 --- /dev/null +++ b/UPGRADING.md @@ -0,0 +1,234 @@ +# Upgrading + +## Bundler 3 + +The following is a summary of the changes that we plan to introduce in Bundler +3, why we will be making those changes, and what the deprecation process will +look like. All these deprecations will be printed by default in the upcoming +Bundler 2.1 release. + +If you don't want to deal with deprecations right now and want to toggle them +off, you can do it through configuration. Set the `BUNDLE_SILENCE_DEPRECATIONS` +environment variable to "true", or configure it through `bundle config` either +globally through `bundle config set silence_deprecations true` command, or +locally through `bundle config set --local silence_deprecations true`. From now +on in this document we will assume that all three of these configuration options +are available, but will only mention `bundle config set