What's New in Kedro 0.16.4
If we take a look at the release notes [1] I see one major feature improvement on the list, auto-discovery of hooks.
## Major features and improvements
* Enabled auto-discovery of hooks implementations coming from installed plugins.
This one comes a bit surprising as it was just casually mentioned in #435 [2]
[2]
Think pytest # [3]
As mentioned in #435 [2] this is the model that pytest uses. Not all plugins automatically start doing things right out of the box but require a CLI argument.
simplicity # [4]
It feels a bit crazy that simply installing a package will change the way that your pipeline gets executed. I do like that it requires just a bit less reaching into the framework stuff for the average user. Most folks will be able to write in the catalog and nodes without much change to the rest of the project.
Implementation # [5]
Reading through the docs [6], they show us that we can make our hooks automatically register by adding a kedro.hooks endpoint that points to a ...