Skip to content

Commit e14682c

Browse files
authored
feat: upgrade to codex 0.131.0 (#16)
1 parent edc49bd commit e14682c

17 files changed

Lines changed: 2149 additions & 472 deletions

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Fetch bundled codex binary for integration test
7070
if: ${{ steps.integration.outputs.enabled == 'true' }}
7171
env:
72-
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.122.0' }}
72+
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.131.0' }}
7373
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7474
run: |
7575
set -euo pipefail

.github/workflows/codex-autoreview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
run: python3 -m pip install zstandard
3030
- name: Fetch bundled codex binary
3131
env:
32-
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.122.0' }}
32+
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.131.0' }}
3333
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3434
run: |
3535
set -euo pipefail
@@ -60,7 +60,7 @@ jobs:
6060
run: python3 -m pip install zstandard
6161
- name: Fetch bundled codex binary
6262
env:
63-
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.122.0' }}
63+
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.131.0' }}
6464
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6565
run: |
6666
set -euo pipefail

.github/workflows/release-published.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ jobs:
250250
- name: Fetch bundled codex binaries
251251
shell: bash
252252
env:
253-
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.122.0' }}
253+
CODEX_BINARY_RELEASE_TAG: ${{ vars.CODEX_BINARY_RELEASE_TAG || 'rust-v0.131.0' }}
254254
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
255255
run: |
256256
set -euo pipefail

codex/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
)
1818
from codex.thread import CodexTurnStream, Input, Thread
1919

20-
__version__ = "1.122.0"
20+
__version__ = "1.131.0"
2121

2222
__all__ = [
2323
"Codex",

codex/app_server/_async_services.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,13 +113,11 @@ async def list(
113113
*,
114114
cwds: Sequence[str] | None = None,
115115
force_reload: bool | None = None,
116-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
117116
) -> list[SkillsListEntry]:
118117
return (
119118
await self.list_page(
120119
cwds=cwds,
121120
force_reload=force_reload,
122-
per_cwd_extra_user_roots=per_cwd_extra_user_roots,
123121
)
124122
).data
125123

@@ -128,14 +126,10 @@ async def list_page(
128126
*,
129127
cwds: Sequence[str] | None = None,
130128
force_reload: bool | None = None,
131-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
132129
) -> SkillsListResult:
133130
params = protocol.SkillsListParams(
134131
cwds=list(cwds) if cwds is not None else None,
135132
forceReload=force_reload,
136-
perCwdExtraUserRoots=(
137-
list(per_cwd_extra_user_roots) if per_cwd_extra_user_roots is not None else None
138-
),
139133
)
140134
return await self._rpc.request_typed("skills/list", params, SkillsListResult)
141135

codex/app_server/_sync_services.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,13 @@ async def list(
7676
*,
7777
cwds: Sequence[str] | None = None,
7878
force_reload: bool | None = None,
79-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
8079
) -> list[SkillsListEntry]: ...
8180

8281
async def list_page(
8382
self,
8483
*,
8584
cwds: Sequence[str] | None = None,
8685
force_reload: bool | None = None,
87-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
8886
) -> SkillsListResult: ...
8987

9088
async def write_config(self, *, path: str, enabled: bool) -> SkillsConfigWriteResult: ...
@@ -338,13 +336,11 @@ def list(
338336
*,
339337
cwds: Sequence[str] | None = None,
340338
force_reload: bool | None = None,
341-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
342339
) -> list[SkillsListEntry]:
343340
return self._run(
344341
self._async_client.list(
345342
cwds=cwds,
346343
force_reload=force_reload,
347-
per_cwd_extra_user_roots=per_cwd_extra_user_roots,
348344
)
349345
)
350346

@@ -353,13 +349,11 @@ def list_page(
353349
*,
354350
cwds: Sequence[str] | None = None,
355351
force_reload: bool | None = None,
356-
per_cwd_extra_user_roots: Sequence[protocol.SkillsListExtraRootsForCwd] | None = None,
357352
) -> SkillsListResult:
358353
return self._run(
359354
self._async_client.list_page(
360355
cwds=cwds,
361356
force_reload=force_reload,
362-
per_cwd_extra_user_roots=per_cwd_extra_user_roots,
363357
)
364358
)
365359

0 commit comments

Comments
 (0)