From eb142ec7d3f646bb8b134c0f0f41e572e3627514 Mon Sep 17 00:00:00 2001 From: Dmitrii Gridnev Date: Tue, 25 Aug 2026 13:57:38 +0300 Subject: [PATCH] chore: bump qase-python-commons to 5.1.3 Release the batch-size cap change from #507: the maximum configurable batch size is now 200 instead of 2000, matching the bulk-results API cap. Only qase-python-commons carries code changes from that PR, the pytest and robotframework edits were docs-only, so no reporter version is bumped. The existing qase-python-commons~=5.1.2 pin in qase-pytest already accepts 5.1.3. --- qase-python-commons/changelog.md | 6 ++++++ qase-python-commons/pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/qase-python-commons/changelog.md b/qase-python-commons/changelog.md index 2f1a8903..f7e642d5 100644 --- a/qase-python-commons/changelog.md +++ b/qase-python-commons/changelog.md @@ -1,3 +1,9 @@ +# qase-python-commons@5.1.3 + +## What's new + +- Lowered the maximum batch size from 2000 to 200 results per request, matching the new bulk-results API cap. `BatchConfig.set_size` now rejects a size above 200, and both TestOps reporters clamp the configured size with `min(200, ...)`. The default stays 200, so setups on defaults are unaffected. + # qase-python-commons@5.1.2 ## What's new diff --git a/qase-python-commons/pyproject.toml b/qase-python-commons/pyproject.toml index f0cdf4cd..0cb839ed 100644 --- a/qase-python-commons/pyproject.toml +++ b/qase-python-commons/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "qase-python-commons" -version = "5.1.2" +version = "5.1.3" description = "A library for Qase TestOps and Qase Report" readme = "README.md" authors = [{name = "Qase Team", email = "support@qase.io"}]