We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf3bee commit 34bd186Copy full SHA for 34bd186
3 files changed
CHANGELOG.md
@@ -12,6 +12,12 @@ This may lead to instability when using dbx API methods directly.
12
13
## [UNRELEASED] - YYYY-MM-DD
14
15
+## [0.8.18] - 2023-07-14
16
+
17
+### Fixed
18
19
+- Added support for other property types in DLT libraries
20
21
## [0.8.17] - 2023-06-18
22
23
### Fixed
dbx/__init__.py
@@ -1 +1 @@
1
-__version__ = "0.8.17"
+__version__ = "0.8.18"
dbx/models/workflow/common/pipeline.py
@@ -31,7 +31,7 @@ class NotebookLibrary(FlexibleModel):
31
32
33
class PipelineLibrary(FlexibleModel):
34
- notebook: NotebookLibrary
+ notebook: Optional[NotebookLibrary] # this is optional to allow passing other properties, e.g. jar and maven
35
36
37
class Pipeline(AccessControlMixin):
0 commit comments