From d2ee8efca4ff5dc062ad7196366c128a35ca59c1 Mon Sep 17 00:00:00 2001 From: Infrahub Date: Tue, 8 Sep 2026 15:06:01 +0000 Subject: [PATCH] chore(release): add release notes for 1.23.2 Build the 1.23.2 changelog section from the pending towncrier fragment and remove it. The package version is derived from the git tag by hatch-vcs, so there is nothing to bump in pyproject.toml or uv.lock - tagging v1.23.2 after this merges is what sets the version. Co-Authored-By: Claude Opus 5 (1M context) --- CHANGELOG.md | 6 ++++++ changelog/+transient-retry.added.md | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) delete mode 100644 changelog/+transient-retry.added.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 3ff41d50b..a4363ac6e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,12 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang +## [1.23.2](https://github.com/opsmill/infrahub-sdk-python/tree/v1.23.2) - 2026-09-08 + +### Added + +- With `retry_on_failure` enabled, the client now retries every transient failure, not only connection errors: dropped or timed-out connections, HTTP `500`/`502`/`503`/`504` responses, and GraphQL errors the server flags with one of those statuses, on every request path. Retries use exponential backoff with jitter (`retry_delay` up to the new `retry_max_delay`), `retry_status_codes` tunes what counts as transient, and `max_retry_duration=0` retries indefinitely. + ## [1.23.1](https://github.com/opsmill/infrahub-sdk-python/tree/v1.23.1) - 2026-08-28 ### Fixed diff --git a/changelog/+transient-retry.added.md b/changelog/+transient-retry.added.md deleted file mode 100644 index 17627ed81..000000000 --- a/changelog/+transient-retry.added.md +++ /dev/null @@ -1 +0,0 @@ -With `retry_on_failure` enabled, the client now retries every transient failure, not only connection errors: dropped or timed-out connections, HTTP `500`/`502`/`503`/`504` responses, and GraphQL errors the server flags with one of those statuses, on every request path. Retries use exponential backoff with jitter (`retry_delay` up to the new `retry_max_delay`), `retry_status_codes` tunes what counts as transient, and `max_retry_duration=0` retries indefinitely.