From 34bd186956915d70792621faa1a8bc38f38a9d41 Mon Sep 17 00:00:00 2001 From: Ivan Trusov Date: Fri, 14 Jul 2023 13:58:25 +0200 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20Ease=20type=20verification=20for=20?= =?UTF-8?q?DLT=20libraries=20section=20(#814)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 6 ++++++ dbx/__init__.py | 2 +- dbx/models/workflow/common/pipeline.py | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd27130c..90bbe3ea 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,12 @@ This may lead to instability when using dbx API methods directly. ## [UNRELEASED] - YYYY-MM-DD +## [0.8.18] - 2023-07-14 + +### Fixed + +- Added support for other property types in DLT libraries + ## [0.8.17] - 2023-06-18 ### Fixed diff --git a/dbx/__init__.py b/dbx/__init__.py index 1dae3105..ccab46fb 100644 --- a/dbx/__init__.py +++ b/dbx/__init__.py @@ -1 +1 @@ -__version__ = "0.8.17" +__version__ = "0.8.18" diff --git a/dbx/models/workflow/common/pipeline.py b/dbx/models/workflow/common/pipeline.py index 048498fb..b59b0358 100644 --- a/dbx/models/workflow/common/pipeline.py +++ b/dbx/models/workflow/common/pipeline.py @@ -31,7 +31,7 @@ class NotebookLibrary(FlexibleModel): class PipelineLibrary(FlexibleModel): - notebook: NotebookLibrary + notebook: Optional[NotebookLibrary] # this is optional to allow passing other properties, e.g. jar and maven class Pipeline(AccessControlMixin):