File tree Expand file tree Collapse file tree
docs-site/src/content/docs/deployment Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11{
2- "." : " 0.4.0 "
2+ "." : " 0.4.1 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.4.1] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.4.0...codex-pooler-v0.4.1 ) (2026-06-24)
4+
5+
6+ ### Features
7+
8+ * surface saved reset expiration metadata ([ 74c86b2] ( https://github.com/icoretech/codex-pooler/commit/74c86b248ed16b14327c08ce18ffebf791b8a0e3 ) )
9+
10+
11+ ### Bug Fixes
12+
13+ * ** gateway:** emit terminal responses failure on stream interruption ([ 4fcd699] ( https://github.com/icoretech/codex-pooler/commit/4fcd6999dc3441e577b89a57418722be2c75cc86 ) )
14+ * ** gateway:** guard log output compression failure details ([ 815fd60] ( https://github.com/icoretech/codex-pooler/commit/815fd6054777c2b35b6ec2c71697bacfb6481c90 ) )
15+ * ** gateway:** keep interrupted SSE streams health-neutral ([ 68821c3] ( https://github.com/icoretech/codex-pooler/commit/68821c3732cea474a6bc01d10580b82e69e63ddb ) )
16+ * ** gateway:** release neutral stream circuit probes ([ 7a9e282] ( https://github.com/icoretech/codex-pooler/commit/7a9e282132be4dd2936f39c4b07eee3cac3d57e0 ) )
17+ * ** openai:** preserve codex turn metadata passthrough ([ 4830676] ( https://github.com/icoretech/codex-pooler/commit/483067669c759a303a838aa693a8d2b947daee1d ) )
18+ * recover stale saved reset redemptions ([ b19bf8f] ( https://github.com/icoretech/codex-pooler/commit/b19bf8f6ab4d6908c64b9474950d2acced70a9b1 ) )
19+ * redeem expiring saved resets ([ 4c83ae7] ( https://github.com/icoretech/codex-pooler/commit/4c83ae77c49fdaa562d32e5533740b85be200f8f ) )
20+ * remove duplicate saved reset expiration banner ([ 6cb0f03] ( https://github.com/icoretech/codex-pooler/commit/6cb0f03af4a76c217fc91aa749b91df3d6896d90 ) )
21+
22+
23+ ### Miscellaneous Chores
24+
25+ * release 0.4.1 ([ 4c1873f] ( https://github.com/icoretech/codex-pooler/commit/4c1873f9d994c191d161f58d2ed04114859ef2d6 ) )
26+
327## [ 0.4.0] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.3.1...codex-pooler-v0.4.0 ) (2026-06-23)
428
529
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ less explicit for a real install.
3131
3232``` bash
3333export CODEX_POOLER_IMAGE=ghcr.io/icoretech/codex-pooler
34- export CODEX_POOLER_IMAGE_TAG=0.4.0
34+ export CODEX_POOLER_IMAGE_TAG=0.4.1
3535scripts/self-host/generate-env.sh
3636```
3737
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ Set an explicit immutable image tag for real deployments. Don't rely on `latest`
4949``` yaml
5050image :
5151 repository : ghcr.io/icoretech/codex-pooler
52- tag : 0.4.0
52+ tag : 0.4.1
5353 pullPolicy : IfNotPresent
5454` ` `
5555
@@ -224,9 +224,9 @@ Render manifests locally before applying them:
224224
225225` ` ` bash
226226helm template codex-pooler icoretech/codex-pooler \
227- --version 0.4.0 \
227+ --version 0.4.1 \
228228 --set image.repository=ghcr.io/icoretech/codex-pooler \
229- --set image.tag=0.4.0 \
229+ --set image.tag=0.4.1 \
230230 --set config.host=pooler.example.com \
231231 --set ingress.enabled=true \
232232 --set ingress.hosts[0].host=pooler.example.com
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ defmodule CodexPooler.MixProject do
55 [
66 app: :codex_pooler ,
77 # x-release-please-start-version
8- version: "0.4.0 " ,
8+ version: "0.4.1 " ,
99 # x-release-please-end
1010 elixir: "~> 1.16" ,
1111 elixirc_paths: elixirc_paths ( Mix . env ( ) ) ,
You can’t perform that action at this time.
0 commit comments