Skip to content

Commit

Permalink
✨ Ease type verification for DLT libraries section (#814)
Browse files Browse the repository at this point in the history
  • Loading branch information
renardeinside authored Jul 14, 2023
1 parent adf3bee commit 34bd186
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion dbx/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.8.17"
__version__ = "0.8.18"
2 changes: 1 addition & 1 deletion dbx/models/workflow/common/pipeline.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 34bd186

Please sign in to comment.