Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
<!-- MAINTENANCE: When bumping workspace.version in Cargo.toml, add a new ## [x.y.z] section
above [Unreleased] with date YYYY-MM-DD and move relevant [Unreleased] entries there. -->

## Week of 2026-05-27

### Fixed

- `EventRouter` com `RetryPolicy::Exponential`: o atraso `base_delay * 2^n` usa `Duration::saturating_mul` e limita o expoente a 31, evitando panic por overflow de `Duration` em retentativas longas ou `base_delay` grande ([#13](https://github.com/JaimeJunr/serverust/pull/13)).
- `SqsBroker::handle_sqs_event` (Lambda ESM + `ReportBatchItemFailures`): mensagens sem handler para a fila do ARN ou sem `event_source_arn` válido entram em `batchItemFailures` quando há `messageId`, em vez de ack silencioso pela Lambda ([#12](https://github.com/JaimeJunr/serverust/pull/12)).

## [Unreleased]

### Fixed
Expand Down
Loading