Skip to content

Commit d3945e1

Browse files
authored
Merge pull request #413 from atlanhq/bump-to-release-2.5.6
Bump to release `2.5.6`
2 parents 0812d7e + fe42843 commit d3945e1

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

HISTORY.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
## 2.5.6 (October 24, 2024)
2+
3+
### Bug fixes
4+
5+
- Fixed `Readme.creator()` to use `asset.trim_to_reference()` instead of sending the complete `asset`, which was somehow breaking backend parsing for related assets.
6+
7+
### QOL improvements
8+
9+
- Generated the latest typedef models.
10+
111
## 2.5.5 (October 23, 2024)
212

313
### Bug fixes

pyatlan/version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.5.5
1+
2.5.6

tests/integration/test_index_search.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -264,11 +264,7 @@ def test_search_next_page(client: AtlanClient):
264264
def _assert_search_results(results, expected_sorts, size, TOTAL_ASSETS, bulk=False):
265265
assert results.count > size
266266
assert len(results.current_page()) == size
267-
counter = 0
268-
for term in results:
269-
assert term
270-
counter += 1
271-
assert counter == TOTAL_ASSETS
267+
assert results.count == TOTAL_ASSETS
272268
assert results
273269
assert results._bulk is bulk
274270
assert results.aggregations is None

0 commit comments

Comments
 (0)