From dab93b4e9e1192c9ba2e3dc8b5a370397d6ad308 Mon Sep 17 00:00:00 2001 From: Soju06 Date: Thu, 2 Apr 2026 19:07:18 +0900 Subject: [PATCH] chore(main): release 1.10.0 --- .github/release-please-manifest.json | 2 +- CHANGELOG.md | 19 +++++++++++++++++++ app/__init__.py | 2 +- deploy/helm/codex-lb/Chart.yaml | 4 ++-- frontend/package.json | 2 +- pyproject.toml | 2 +- 6 files changed, 25 insertions(+), 6 deletions(-) diff --git a/.github/release-please-manifest.json b/.github/release-please-manifest.json index 4fcfdf7a..d9246ddf 100644 --- a/.github/release-please-manifest.json +++ b/.github/release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.9.0" + ".": "1.10.0" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 33e0efeb..0c39b3eb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## [1.10.0](https://github.com/Soju06/codex-lb/compare/v1.9.0...v1.10.0) (2026-04-02) + + +### Features + +* **helm:** expose all caching subsystems in chart values ([cd39073](https://github.com/Soju06/codex-lb/commit/cd39073c4f2b9f086a00bf84c9cd80af27cc194a)) + + +### Bug Fixes + +* **ci:** lowercase GHCR owner in Helm OCI push ([03c14f6](https://github.com/Soju06/codex-lb/commit/03c14f61e132c81f483dd21f977e7f0dd32be083)) +* **helm:** harden defaults for multi-replica and streaming deployments ([70a348e](https://github.com/Soju06/codex-lb/commit/70a348e80bc6f46ec616e3ff497f056277049156)) +* **helm:** improve cache locality and align backpressure with capacity ([6c17201](https://github.com/Soju06/codex-lb/commit/6c1720189416da41a5c7c979ec8b523f0218c46a)) + + +### Documentation + +* **helm:** replace local-path install with OCI registry commands ([55ddeb7](https://github.com/Soju06/codex-lb/commit/55ddeb7300d6a1780ec748b3e1d940613333ab69)) + ## [1.9.0](https://github.com/Soju06/codex-lb/compare/v1.8.3...v1.9.0) (2026-04-02) diff --git a/app/__init__.py b/app/__init__.py index b807ae2e..6c59afcd 100644 --- a/app/__init__.py +++ b/app/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.9.0" # x-release-please-version +__version__ = "1.10.0" # x-release-please-version __all__ = ["app", "__version__"] diff --git a/deploy/helm/codex-lb/Chart.yaml b/deploy/helm/codex-lb/Chart.yaml index 2c8ce834..840cafc5 100644 --- a/deploy/helm/codex-lb/Chart.yaml +++ b/deploy/helm/codex-lb/Chart.yaml @@ -4,8 +4,8 @@ description: >- Production-grade Helm chart for codex-lb — OpenAI API load balancer with usage tracking, account pooling, and observability type: application -version: 1.9.0 -appVersion: 1.9.0 +version: 1.10.0 +appVersion: 1.10.0 kubeVersion: '>=1.32.0-0' home: https://github.com/soju06/codex-lb sources: diff --git a/frontend/package.json b/frontend/package.json index 6e4ca3c6..43de4ba6 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -1,7 +1,7 @@ { "name": "frontend", "private": true, - "version": "1.9.0", + "version": "1.10.0", "type": "module", "packageManager": "bun@1.3.7", "scripts": { diff --git a/pyproject.toml b/pyproject.toml index ec3a77bd..2b05d1c9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "codex-lb" -version = "1.9.0" +version = "1.10.0" description = "Codex load balancer and proxy for ChatGPT accounts with usage dashboard" readme = "README.md" license = { file = "LICENSE" }