Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump to release 2.5.6 #413

Merged
merged 1 commit into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading