Releases: beda-software/fhir-py
Releases · beda-software/fhir-py
v2.0.4
v2.0.3
v2.0.2
v2.0.1
v2.0.0
- Add typehints for all methods
- Add pluggable data model #126
- Add client API for data model operations (CRUD)
- Add reference helpers for delete and patch #103
- BREAKING CHANGE: Changed internal module structure paths
- There are private files structure, it should not affect the code that uses
fhirpy
andfhirpy.base
public exports SyncResource
/SyncReference
/SyncSearchSet
moved frombase.lib
tobase.lib_sync
AsyncResource
/AsyncReference
/AsyncSearchSet
moved fromfhirpy.base.lib
tofhirpy.base.lib_async
SyncClient
moved fromfhirpy.base.lib
tofhirpy.base.lib_sync
AsyncClient
moved fromfhirpy.base.lib
tofhirpy.base.lib_async
AbstractClient
moved fromfhirpy.base.lib
tofhirpy.base.client
BaseResource
/BaseReference
are available as part of public exports
- There are private files structure, it should not affect the code that uses
- BREAKING CHANGE: Rename AbstractResource
client
to__client__
#59- It's a private API, there's a small chance that it should not affect the code
- Deprecate conditional patch with resource argument, use kwargs instead
- Fix pickling error for BaseResource instances #77
- Add .execute for search set #74
v1.4.2
What's Changed
- Update docs and changelog by @pavlushkin in #114
- Conditional delete @pavlushkin
Full Changelog: v1.4.1...v1.4.2
v1.4.1
What's Changed
- Fix get resource by id (use rt/id, not search(_id=)) by @pavlushkin in #111
- Implement conditional operations by @pavlushkin in #112
- Bump aiohttp from 3.7.4 to 3.8.5 by @dependabot in #105
- Bump certifi from 2023.5.7 to 2023.7.22 by @dependabot in #106
Full Changelog: v1.3.2...v1.4.1
v1.3.2
What's Changed
- Add set_by_path(obj, path, value) function