Skip to content

Commit 1af6ed6

Browse files
Prepare 6.2.0 release
1 parent f55e597 commit 1af6ed6

3 files changed

Lines changed: 10 additions & 2 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [6.2.0] - 2026-07-05
11+
### Added
12+
- Automatic splitting of large batch lookups, aligned with the Go client: inputs beyond the API limit (1024 values) are chunked and dispatched with bounded concurrency, preserving input order. Configurable via `withMaxBatchSize` and `withBatchConcurrency` (default 4, set 1 for sequential dispatch).
13+
- New `DEFAULT_MAX_BATCH_SIZE` constant exposing the API per-request limit.
14+
15+
### Changed
16+
- Document timeout, retry, and batch configuration in the README.
17+
1018
## [6.1.0] - 2026-07-05
1119
### Added
1220
- Configurable retry behavior aligned with the Go client: `withMaxRetries` (default 3), `withRetryInterval` (exponential backoff base, default 1 second), `withRetryOnServerError` (default true) and `withRetryOnTooManyRequests` (default false, honoring the `Retry-After` header when enabled).

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@ipregistry/client",
33
"description": "Official Ipregistry Javascript Library.",
4-
"version": "6.1.0",
4+
"version": "6.2.0",
55
"browser": "./dist/index.global.js",
66
"main": "./dist/index.js",
77
"module": "./dist/index.mjs",

src/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818
* The version of this library. Must be kept in sync with the version field of
1919
* package.json; a unit test enforces this.
2020
*/
21-
export const LIBRARY_VERSION = '6.1.0'
21+
export const LIBRARY_VERSION = '6.2.0'

0 commit comments

Comments
 (0)