Skip to content

Commit 6822fff

Browse files
github-actions[bot]polRk
authored andcommitted
Version Packages
1 parent fbf2c6b commit 6822fff

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

.changeset/fix-retry-timeout-overflow.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/retry/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @ydbjs/retry
22

3+
## 6.1.1
4+
5+
### Patch Changes
6+
7+
- [#568](https://github.com/ydb-platform/ydb-js-sdk/pull/568) [`fbf2c6b`](https://github.com/ydb-platform/ydb-js-sdk/commit/fbf2c6bbd4b04da8d34d4e76c5d36b4dffb68dd9) Thanks [@DanilTezin](https://github.com/DanilTezin)! - Fix TimeoutOverflowWarning caused by unbounded exponential backoff. Replace `exponential(ms)` with `backoff(base, max)` which caps the delay via `Math.min(2^attempt * base, max)`, preventing `Infinity` from being passed to `setTimeout`.
8+
39
## 6.1.0
410

511
### Minor Changes

packages/retry/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ydbjs/retry",
3-
"version": "6.1.0",
3+
"version": "6.1.1",
44
"description": "Flexible, configurable retry logic for YDB operations. Supports custom strategies, budgets, and integration with async workflows.",
55
"keywords": [
66
"database",

0 commit comments

Comments
 (0)