Added
- `Build.get_all()` is now paginated, allowing the return of more than 5000 results.
- `Commit`s now have a method, `get_changed_content` which returns the files changes by a commit (expensive!)
- `PullRequest`s have a similar method, which returns the changes, which can be ChangeFile.to_string(changed_files) to view as logs.
- `Team.get_my_teams()`, returning all the teams the authenticated token's owner is in.
Changed
- Tests for `Environment`s, which require about 1 second to exist through the API, giving them the delay allowed the tests to pass properly.
- Remove the internal `_get_all` & `_get_by_id` methods, `_get_all` will be replaced with `_get_by_url` with `fetch_multiple=True`.
- Removed the utils `to_iso()` which handled some edge cases, no longer being used.
- Fixed commit.get_all_by_repo improperly passing in branch name as limit.
---