[0.11.0] - 2022-06-18
Added
- ✨ 💥 The
MLFLOW_TRACKING_URI
environment variable is now used as the default tracking uri if theserver.mlflow_tracking_uri
config key isNone
. Themlflow.yml
is changed toserver: mlflow_tracking_uri: null
to enforce this new behaviour as the default value. If the environment variable does not exists, it will behave like before. (#321).
Changed
- ♻️ 💥 Unify the
MlflowPipelineHook
andMlflowNodeHook
in a singleMlflowHook
to ensure consistency in registration order (#315) - ♻️ 🧑💻 💥 The
get_mlflow_config
public function is removed. If you need to access the mlflow configuration, you can do it automatically in the contextmlflow
attribute, e.g.session.load_context().mlflow
(#310)
Removed
- ⚰️ 💥 Remove unused
stores_environment_variables
configuration option. This key must be removed frommlflow.yml
. - ⬆️ 🐛 Upgrade requirements to make support for
kedro>=0.18.1, kedro<0.19.0
explicit. This is the only valid compatibility range sincekedro-mlflow==0.10.0
, but requirements had not been updated yet (#309).
�