Skip to content

Commit

Permalink
Merge pull request #204 from atlanhq/DVX-128
Browse files Browse the repository at this point in the history
Interim fix for problem parsing assets that contain SourceTagAttachments
  • Loading branch information
ErnestoLoma authored Dec 21, 2023
2 parents 7eb8343 + bbd374c commit 5cb76f2
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
17 changes: 14 additions & 3 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,27 @@
## 1.8.2 (December 21, 2023)

### New Features

### Bug fixes

- Fix problem parsing assets that contain SourceTagAttachements

### QOL improvements


## 1.8.1 (December 19, 2023)

### New Features

- Add support for search log access

### Breaking changes

### Bug fixes

- Modify constants like Referenceable.TYPE_NAME to use InternalKeywordField, InternalKeywordTextField or InternalNumericField
- Modify constants like Referenceable.TYPE_NAME to use InternalKeywordField, InternalKeywordTextField or InternalNumericField
- Fix groups in purpose policies and remove data mesh slugs and abbreviations
- Added missing "templates" field to the WorkflowSpec model
- Added missing "templates" field to the WorkflowSpec model

### QOL improvements

Expand Down
2 changes: 2 additions & 0 deletions pyatlan/model/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,8 @@ class Config:
)
validity_periods: Optional[list[str]] = Field(None, alias="validityPeriods")

attributes: Optional[dict[str, Any]] = None

@validator("type_name", pre=True)
def type_name_is_tag_name(cls, value):
if isinstance(value, AtlanTagName):
Expand Down
2 changes: 1 addition & 1 deletion pyatlan/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.8.1
1.8.2

0 comments on commit 5cb76f2

Please sign in to comment.