Changes
- Support for Python 3.8 has been dropped, as it is now end-of-life.
- Add pagination functionality to
FHIRSearch
by @LanaNYC in #169 and #174- This adds two new methods:
FHIRSearch.perform_iter
andFHIRSearch.perform_resources_iter
, which automatically handle the pagination for you. - It changes
FHIRSearch.perform_resources
to handle pagination behind the scenes, so you don't miss out on any resources. But in order to avoid breaking the API for current users, it does keep them all in memory at once. - It deprecates the previous versions of those methods (
perform
which has no pagination, andperform_resources
which now keeps everything in memory)
- This adds two new methods:
Improvements
New Contributors
Full Changelog: v4.2.0...v4.3.0