From 5ca958409ac67480c940964a1b9bd32b820ebfee Mon Sep 17 00:00:00 2001 From: Salomon Popp Date: Wed, 3 Jul 2024 11:49:02 +0200 Subject: [PATCH] Update migration guide --- docs/docs/user/migration-guide/v6-v7.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/docs/user/migration-guide/v6-v7.md b/docs/docs/user/migration-guide/v6-v7.md index 74bf86c1e..78aaf0f31 100644 --- a/docs/docs/user/migration-guide/v6-v7.md +++ b/docs/docs/user/migration-guide/v6-v7.md @@ -1,5 +1,13 @@ # Migrate from V6 to V7 +## [Automatic loading of namespaced custom components](https://github.com/bakdata/kpops/pull/500) + +KPOps is now distributed as a Python namespace package (as defined by [PEP 420](https://peps.python.org/pep-0420/)). This allows us to standardize the namespace `kpops.components` for both builtin and custom pipeline components. + +Some imports need to be adjusted: + +**KPOps Python API** + ```diff -import kpops +import kpops.api as kpops