Skip to content

Commit 44c9aec

Browse files
committed
Bump version and update CHANGELOG (v2.5.7)
1 parent 50af1b8 commit 44c9aec

File tree

3 files changed

+7
-1
lines changed

3 files changed

+7
-1
lines changed

CHANGELOG.md

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v2.5.7 (2024-10-31)
2+
- Endpoint updates
3+
- Configurable max attempts for client-specific errors (4xx) using `max_attempts_client` in `retries` config
4+
- Fix `follow_redirect` option handling for `req` client
5+
16
v2.5.6 (2024-10-09)
27
- Endpoint updates
38

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,7 @@ config :ex_aws, :retries,
254254
```
255255

256256
* `max_attempts` is the maximum number of possible attempts with backoffs in between each one
257+
* `max_attempts_client` may be set to a different value for client errors (4xx) (default is `max_attempts`)
257258
* `base_backoff_in_ms` corresponds to the `base` value described in the blog post
258259
* `max_backoff_in_ms` corresponds to the `cap` value described in the blog post
259260

mix.exs

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ defmodule ExAws.Mixfile do
22
use Mix.Project
33

44
@source_url "https://github.com/ex-aws/ex_aws"
5-
@version "2.5.6"
5+
@version "2.5.7"
66

77
def project do
88
[

0 commit comments

Comments
 (0)