Skip to content
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
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## 1.9.0 - 30-07-2024

- Remove optional "email" argument from ListUsers, since the handler ignores it.
- Add optional "organization_id" argument to ListUsers, since the handler supports it.
- Add optional "sort_key", "sort_order", and "filter" pagination arguments to all non-accessor paginated methods.
- Add optional "sort_key" and "sort_order" arguments to ExecuteAccessor.
- Update userstore sample to exercise multi-key accessor pagination.

## 1.8.0 - 19-07-2024

- Breaking change: Add "ending_before" argument to all paginated methods, add pagination to ExecuteAccessor, change "starting_after" and "ending_before" to be str instead of uuid
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "usercloudssdk"
version = "1.8.0"
version = "1.9.0"
description = "Python SDK for UserClouds"
authors = [{ name = "UserClouds", email = "info@userclouds.com" }]
classifiers = [
Expand Down
Loading