Helps migrating projects to base-compat(-batteries)
Temporarily replace your base & base-compat(-batteries) dependencies with base-compat-migrate to verify that you are using all available base-compat modules. Please see the included README or visit https://github.com/bergmark/base-compat-migrate#readme for more information.
base-compat-migrate
This library is meant as a temporary migration library when moving a library to base-compat or upgrading it. Replace base-compat
with base-compat-batteries in the rest of the README if you want to use that library instead.
base-compat
defines backwards compatible versions of some base modules; If you for example want to make sure import Prelude
does the same thing on all GHC versions you can instead import Prelude.Compat
. If a Compat module exists it means it has some backwards compatibility fix, it also re-exports everything that is unchanged from the corresponding base module.
base-compat notably does not have Compat modules for every base module so you often need to depend on both base and base-compat. The standard recommended work-flow is to build your project with the oldest GHC you want to support and add Compat imports accordingly.
If you don't have quick access to old GHCs it can be error-prone to migrate to upgrade base-compat since you need to look through all base imports to see if you should be using Compat versions instead.
Workflow
This library offers a different work flow:
- Make sure you are using a GHC version compatible with this project (At the time of writing it is GHC 8.4.1)
- Replace any
base
andbase-compat
dependencies in your project withbase-compat-migrate
. - Add
default-extensions: NoImplicitPrelude
to each build component (libraries, executables, test suites, benchmarks). - Compile your project and fix issues:
- Add any needed
Prelude.Compat
imports - If a
base
module can't be found change the import to theCompat
version instead.
- Finally, replace the
base-compat-migrate
dependency withbase
andbase-compat
.
Whenever you wish to support newer versions of base
or base-compat
you can repeat these steps.
Common Issues with Solutions
- If your package declares Paths modules it won't compile without access to base. You can drop the Paths module until the affected component builds, and then add it again along with the base dependency.
Dependencies
Since base-compat-migrate
re-exports modules, we depend on minor versions of base
and base-compat
. A new minor version of either may require a new release of this library. This project's cabal file is generated by compiling this package with -fexe
with cabal-install, or stack build
with stack and then running the generated executable.