Releases: crowdin/crowdin-api-client-python
Releases · crowdin/crowdin-api-client-python
1.11.0
What's Changed
- feat: distributions API updates by @andrii-bodnar in #95
- ci: exit with error in case of lint issues by @andrii-bodnar in #86
- chore: conventional commits specification by @andrii-bodnar in #87
- ci: automated versioning by @andrii-bodnar in #93
- ci: create a GH release automatically by @andrii-bodnar in #94
Full Changelog: v1.10.1...1.11.0
bundleIds instead of the removed properties
1.10.1
1.10.0
What's Changed
- Added 3 new bundle functions with basic unit tests by @Pawes in #72
- Add missing groupId inside list glossaries/projects by @dhoko in #77
- ci: upgrade CI workflows by @andrii-bodnar in #78
New Contributors
Full Changelog: v1.9.0...v1.10.0
1.9.0
1.8.0
1.7.0
Added
-
Add
with_fetch_allfunctionality in #55 by @ayatsynyThis feature allows fetching all records from paginatable methods (where we have a limit and offset in arguments).
Example:
from crowdin_api import CrowdinClient client = CrowdinClient(token='__token__') # get all projects print(client.projects.with_fetch_all().list_projects()) # get projects but not more than 1000 print(client.projects.with_fetch_all(1000).list_projects())