Skip to content

Commit

Permalink
Merge pull request #413 from atlanhq/bump-to-release-2.5.6
Browse files Browse the repository at this point in the history
Bump to release `2.5.6`
  • Loading branch information
Aryamanz29 authored Oct 23, 2024
2 parents 0812d7e + fe42843 commit d3945e1
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 6 deletions.
10 changes: 10 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
## 2.5.6 (October 24, 2024)

### Bug fixes

- Fixed `Readme.creator()` to use `asset.trim_to_reference()` instead of sending the complete `asset`, which was somehow breaking backend parsing for related assets.

### QOL improvements

- Generated the latest typedef models.

## 2.5.5 (October 23, 2024)

### Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion pyatlan/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.5.5
2.5.6
6 changes: 1 addition & 5 deletions tests/integration/test_index_search.py
Original file line number Diff line number Diff line change
Expand Up @@ -264,11 +264,7 @@ def test_search_next_page(client: AtlanClient):
def _assert_search_results(results, expected_sorts, size, TOTAL_ASSETS, bulk=False):
assert results.count > size
assert len(results.current_page()) == size
counter = 0
for term in results:
assert term
counter += 1
assert counter == TOTAL_ASSETS
assert results.count == TOTAL_ASSETS
assert results
assert results._bulk is bulk
assert results.aggregations is None
Expand Down

0 comments on commit d3945e1

Please sign in to comment.