Skip to content

Commit 34bd186

Browse files
✨ Ease type verification for DLT libraries section (#814)
1 parent adf3bee commit 34bd186

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,12 @@ This may lead to instability when using dbx API methods directly.
1212

1313
## [UNRELEASED] - YYYY-MM-DD
1414

15+
## [0.8.18] - 2023-07-14
16+
17+
### Fixed
18+
19+
- Added support for other property types in DLT libraries
20+
1521
## [0.8.17] - 2023-06-18
1622

1723
### Fixed

dbx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.8.17"
1+
__version__ = "0.8.18"

dbx/models/workflow/common/pipeline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ class NotebookLibrary(FlexibleModel):
3131

3232

3333
class PipelineLibrary(FlexibleModel):
34-
notebook: NotebookLibrary
34+
notebook: Optional[NotebookLibrary] # this is optional to allow passing other properties, e.g. jar and maven
3535

3636

3737
class Pipeline(AccessControlMixin):

0 commit comments

Comments
 (0)