From 22e83d97b6ebad40237edbde364ed38c154d8e6c Mon Sep 17 00:00:00 2001 From: "runpod-release-please-bot[bot]" <228772213+runpod-release-please-bot[bot]@users.noreply.github.com> Date: Fri, 27 Mar 2026 00:27:09 +0000 Subject: [PATCH] chore: release 1.11.1 --- .release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ pyproject.toml | 2 +- src/runpod_flash/__init__.py | 2 +- 4 files changed, 22 insertions(+), 3 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index cf198b9b..1b796cf0 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.11.0" + ".": "1.11.1" } diff --git a/CHANGELOG.md b/CHANGELOG.md index ba62da4c..488fab67 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.11.1](https://github.com/runpod/flash/compare/v1.11.0...v1.11.1) (2026-03-27) + + +### Bug Fixes + +* AE-2322: network volume size bounds, forbid extra args ([#290](https://github.com/runpod/flash/issues/290)) ([6cc7ec2](https://github.com/runpod/flash/commit/6cc7ec27a230d0f9d08246d6a0085ad8159d479d)) +* enforce payload size limit and timeout on deserialization ([#289](https://github.com/runpod/flash/issues/289)) ([1240d82](https://github.com/runpod/flash/commit/1240d824a19d98f655eda50fc8c6b4e37c3834ca)) +* idletimeout must be in valid range ([#287](https://github.com/runpod/flash/issues/287)) ([57aebbf](https://github.com/runpod/flash/commit/57aebbf472b8d03900608bcac01fa83dcb6b51c4)) +* lock all workers to Python 3.12, remove multi-version support ([#292](https://github.com/runpod/flash/issues/292)) ([e1f1dd8](https://github.com/runpod/flash/commit/e1f1dd8738dcc641d36699d13e131368b614f6fb)) +* reject unknown kwargs in [@remote](https://github.com/remote) ([#288](https://github.com/runpod/flash/issues/288)) ([a651275](https://github.com/runpod/flash/commit/a6512756a8b06cd8dd22ac8b3a5c90e3830edd6d)) +* **runtime:** handle input=None in generic handler ([#286](https://github.com/runpod/flash/issues/286)) ([cab2d0c](https://github.com/runpod/flash/commit/cab2d0c4c80d3c450d102db641e5414bec995976)) +* stable sorted gpu ids ([#285](https://github.com/runpod/flash/issues/285)) ([759e0f6](https://github.com/runpod/flash/commit/759e0f640342495ef58073c6ff39dc54df643eeb)) + + +### Code Refactoring + +* **build:** replace .flashignore with built-in ignore patterns ([#220](https://github.com/runpod/flash/issues/220)) ([f42c802](https://github.com/runpod/flash/commit/f42c802be1a9cc5b6887f83ebaf7635ac71dbf62)) +* migrate .runpod directory to .flash ([#221](https://github.com/runpod/flash/issues/221)) ([c6792d6](https://github.com/runpod/flash/commit/c6792d6f421443ee0f31ff73760c57b5441997fb)) + ## [1.11.0](https://github.com/runpod/flash/compare/v1.10.2...v1.11.0) (2026-03-25) diff --git a/pyproject.toml b/pyproject.toml index 977cf32e..d8739656 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "runpod-flash" -version = "1.11.0" +version = "1.11.1" description = "A Python library for distributed inference and serving of machine learning models" authors = [ { name = "Runpod", email = "engineer@runpod.io" }, diff --git a/src/runpod_flash/__init__.py b/src/runpod_flash/__init__.py index 7a55951b..f94fffa1 100644 --- a/src/runpod_flash/__init__.py +++ b/src/runpod_flash/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.11.0" # x-release-please-version +__version__ = "1.11.1" # x-release-please-version # Load .env vars from file before everything else # usecwd=True walks up from CWD (user's project) instead of from the