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.1.1 "
2+ "." : " 0.2.0 "
33}
Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.2.0] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.1.1...codex-pooler-v0.2.0 ) (2026-06-17)
4+
5+
6+ ### Features
7+
8+ * ** compression:** handle minimal unified diffs ([ f839b41] ( https://github.com/icoretech/codex-pooler/commit/f839b41bf6b9075ab9892fccd2b21e4ee225002f ) )
9+ * ** compression:** support grouped search output ([ 6ee8498] ( https://github.com/icoretech/codex-pooler/commit/6ee84985e5b0a6d1218aed54486ce7e3816ce351 ) )
10+ * ** gateway:** lower non-strict function schemas ([ a99be2e] ( https://github.com/icoretech/codex-pooler/commit/a99be2e43c0ae316a411430b09d9117f836bbe5f ) )
11+ * ** runtime:** proxy reset-credit consume routes ([ b3a37fd] ( https://github.com/icoretech/codex-pooler/commit/b3a37fdd8743e36346153cb1bbf046b6466ca825 ) )
12+ * ** v1:** normalize responses reasoning context ([ 554d048] ( https://github.com/icoretech/codex-pooler/commit/554d0488f193da2ba41943ae468010d8a1f36b49 ) )
13+
14+
15+ ### Bug Fixes
16+
17+ * ** access:** reject invalid invite list scopes ([ 192c6cb] ( https://github.com/icoretech/codex-pooler/commit/192c6cb13e4b3036817291a4c5534e2f03e987d5 ) )
18+ * ** accounting:** honor unavailable pricing buckets ([ 32e2a45] ( https://github.com/icoretech/codex-pooler/commit/32e2a45d1c1217849255210fae7fe7c6006ae983 ) )
19+ * ** gateway:** strip encrypted websocket agent messages ([ 4bbd303] ( https://github.com/icoretech/codex-pooler/commit/4bbd30397be180c9fabc6afab3cc83a0c3038401 ) )
20+ * ** mcp:** validate metadata lookup arguments ([ 9c309e6] ( https://github.com/icoretech/codex-pooler/commit/9c309e6623f9543c9cf936cace715088898cb763 ) )
21+
322## [ 0.1.1] ( https://github.com/icoretech/codex-pooler/compare/codex-pooler-v0.1.0...codex-pooler-v0.1.1 ) (2026-06-16)
423
524
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.1.1
34+ export CODEX_POOLER_IMAGE_TAG=0.2.0
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.1.1
52+ tag : 0.2.0
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.1.1 \
227+ --version 0.2.0 \
228228 --set image.repository=ghcr.io/icoretech/codex-pooler \
229- --set image.tag=0.1.1 \
229+ --set image.tag=0.2.0 \
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.1.1 " ,
8+ version: "0.2.0 " ,
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