https://kedro.org/ logo
#announcements
Title
# announcements
m

Merel

05/10/2022, 11:20 AM
Hi @here! This is a quick announcement that Kedro 0.18.1 is out. It’s available on PyPI and Conda. This version has several bug fixes and major improvements including: πŸ› Bug fixes: - Fixed
CONFIG_LOADER_CLASS
validation so that `TemplatedConfigLoader `can be specified in settings.py. Any
CONFIG_LOADER_CLASS
must be a subclass of
AbstractConfigLoader
. - Fixed
Jinja2
syntax loading with
TemplatedConfigLoader
using globals.yml. - Removed global
_active_session
,
_activate_session
and
_deactivate_session
. Plugins that need to access objects such as the config loader should now do so through context in the new
after_context_created
hook. - Made
hook_manager
argument optional for runner.run. - kedro docs now opens an online version of the Kedro documentation instead of a locally built version. πŸš€ Major features: - Added a new hook
after_context_created
that passes the
KedroContext
instance as
context
. - Added a new CLI hook
after_command_run
. - The Kedro package no longer contains a built version of the Kedro documentation significantly reducing the package size 🐳 You can find the full list of changes in the release notes: https://github.com/kedro-org/kedro/blob/main/RELEASE.md Kedro 0.18.1 is a non-breaking release in the 0.18.x series, upgrade now with:
Copy code
pip install kedro==0.18.1
conda install -c conda-forge kedro==0.18.1