Comparing v5.0.2...v5.0.3 · firebase/firebase-admin-python
base repository: firebase/firebase-admin-python
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.0.2
head repository: firebase/firebase-admin-python
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.0.3
- 3 commits
- 4 files changed
- 3 contributors
Commits on Sep 8, 2021
-
Speed up the PageIterator by evaluating items once per page (#572)
The `firebase_admin.auth.list_users().iterate_all()` method uses a sub-class of PageIterator, which happens to access the .items computed property more than once for every page of results. This has been changed so we take care not to access the `self.items` property more than once per page. This is a lot faster.