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.0.8 "
2+ "." : " 0.0.9 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.0.9] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.0.8...codex-pooler-v0.0.9 ) (2026-06-10)
4+
5+
6+ ### Bug Fixes
7+
8+ * ** chat:** backfill streamed tool call ids ([ f1ce55b] ( https://github.com/icoretech/codex-pooler/commit/f1ce55bdbd228c8f45f03c92d0b66d9c5426dd18 ) )
9+ * ** chat:** translate Cline tool continuations ([ 8a7063e] ( https://github.com/icoretech/codex-pooler/commit/8a7063e5d6cdaf0d4bcaf5893e0a8ea52d784635 ) )
10+ * ** dev:** pin postgres healthcheck database ([ 0d4f901] ( https://github.com/icoretech/codex-pooler/commit/0d4f901d00f1d9b342d97620c9790970ef6bf920 ) )
11+ * ** gateway:** suppress keepalives during partial public SSE ([ 5c14a59] ( https://github.com/icoretech/codex-pooler/commit/5c14a59f83890b4951be6be02172f97196864c25 ) )
12+ * ** responses:** backfill streamed output item ids ([ 17870cd] ( https://github.com/icoretech/codex-pooler/commit/17870cda1754af97f7868e77bcbaa2c39ab7bdcd ) )
13+
314## [ 0.0.8] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.0.7...codex-pooler-v0.0.8 ) (2026-06-09)
415
516
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.0.8
34+ export CODEX_POOLER_IMAGE_TAG=0.0.9
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.0.8
52+ tag : 0.0.9
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.0.8 \
227+ --version 0.0.9 \
228228 --set image.repository=ghcr.io/icoretech/codex-pooler \
229- --set image.tag=0.0.8 \
229+ --set image.tag=0.0.9 \
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.0.8 " ,
8+ version: "0.0.9 " ,
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