You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
feat: add HTTP 429 and 503 error handling to FHIR client (#101)
Enhance the FHIR client with comprehensive error handling for rate limiting (429) and service unavailability (503) scenarios. This improves the SDK's resilience and provides better error feedback to developers.
Key changes:
- Add TooManyRequestsError for HTTP 429 responses with structured error handling
- Add ServiceUnavailableError for HTTP 503 responses with generic error handling
- Update both synchronous and asynchronous FHIR clients with new error cases
- Import new error classes in client implementations
🌿 Generated with Fern
Co-authored-by: fern-api[bot] <115122769+fern-api[bot]@users.noreply.github.com>
Copy file name to clipboardExpand all lines: changelog.md
+10Lines changed: 10 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,13 @@
1
+
## 9.1.0 - 2026-03-09
2
+
* feat: add HTTP 429 and 503 error handling to FHIR client
3
+
* Enhance the FHIR client with comprehensive error handling for rate limiting (429) and service unavailability (503) scenarios. This improves the SDK's resilience and provides better error feedback to developers.
4
+
* Key changes:
5
+
* Add TooManyRequestsError for HTTP 429 responses with structured error handling
6
+
* Add ServiceUnavailableError for HTTP 503 responses with generic error handling
7
+
* Update both synchronous and asynchronous FHIR clients with new error cases
8
+
* Import new error classes in client implementations
0 commit comments