Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
陈曦
sub2api
Commits
641e6107
Unverified
Commit
641e6107
authored
Apr 25, 2026
by
Wesley Liddick
Committed by
GitHub
Apr 25, 2026
Browse files
Merge pull request #1940 from 4fuu/fix/bump-codex-cli-version-to-0.125.0
fix(openai): bump codex CLI version from 0.104.0 to 0.125.0
parents
095f457c
1e57e88e
Changes
4
Hide whitespace changes
Inline
Side-by-side
backend/internal/handler/openai_gateway_compact_log_test.go
View file @
641e6107
...
...
@@ -116,7 +116,7 @@ func TestLogOpenAIRemoteCompactOutcome_Succeeded(t *testing.T) {
rec
:=
httptest
.
NewRecorder
()
c
,
_
:=
gin
.
CreateTestContext
(
rec
)
c
.
Request
=
httptest
.
NewRequest
(
http
.
MethodPost
,
"/v1/responses/compact"
,
nil
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
04
.0"
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
25
.0"
)
c
.
Set
(
opsModelKey
,
"gpt-5.3-codex"
)
c
.
Set
(
opsAccountIDKey
,
int64
(
123
))
c
.
Header
(
"x-request-id"
,
"rid-compact-ok"
)
...
...
@@ -142,7 +142,7 @@ func TestLogOpenAIRemoteCompactOutcome_Failed(t *testing.T) {
rec
:=
httptest
.
NewRecorder
()
c
,
_
:=
gin
.
CreateTestContext
(
rec
)
c
.
Request
=
httptest
.
NewRequest
(
http
.
MethodPost
,
"/responses/compact"
,
nil
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
04
.0"
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
25
.0"
)
c
.
Status
(
http
.
StatusBadGateway
)
h
:=
&
OpenAIGatewayHandler
{}
...
...
@@ -180,7 +180,7 @@ func TestOpenAIResponses_CompactUnauthorizedLogsFailed(t *testing.T) {
c
,
_
:=
gin
.
CreateTestContext
(
rec
)
c
.
Request
=
httptest
.
NewRequest
(
http
.
MethodPost
,
"/v1/responses/compact"
,
strings
.
NewReader
(
`{"model":"gpt-5.3-codex"}`
))
c
.
Request
.
Header
.
Set
(
"Content-Type"
,
"application/json"
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
04
.0"
)
c
.
Request
.
Header
.
Set
(
"User-Agent"
,
"codex_cli_rs/0.1
25
.0"
)
h
:=
&
OpenAIGatewayHandler
{}
h
.
Responses
(
c
)
...
...
backend/internal/service/account_usage_service.go
View file @
641e6107
...
...
@@ -110,7 +110,7 @@ const (
apiQueryMaxJitter
=
800
*
time
.
Millisecond
// 用量查询最大随机延迟
windowStatsCacheTTL
=
1
*
time
.
Minute
openAIProbeCacheTTL
=
10
*
time
.
Minute
openAICodexProbeVersion
=
"0.1
04
.0"
openAICodexProbeVersion
=
"0.1
25
.0"
)
// UsageCache 封装账户使用量相关的缓存
...
...
backend/internal/service/openai_gateway_service.go
View file @
641e6107
...
...
@@ -40,7 +40,7 @@ const (
// OpenAI Platform API for API Key accounts (fallback)
openaiPlatformAPIURL = "https://api.openai.com/v1/responses"
openaiStickySessionTTL = time.Hour // 粘性会话TTL
codexCLIUserAgent
=
"codex_cli_rs/0.1
04
.0"
codexCLIUserAgent = "codex_cli_rs/0.1
25
.0"
// codex_cli_only 拒绝时单个请求头日志长度上限(字符)
codexCLIOnlyHeaderValueMaxBytes = 256
...
...
@@ -54,7 +54,7 @@ const (
openAIWSRetryBackoffMaxDefault = 2 * time.Second
openAIWSRetryJitterRatioDefault = 0.2
openAICompactSessionSeedKey = "openai_compact_session_seed"
codexCLIVersion
=
"0.1
04
.0"
codexCLIVersion = "0.1
25
.0"
// Codex 限额快照仅用于后台展示/诊断,不需要每个成功请求都立即落库。
openAICodexSnapshotPersistMinInterval = 30 * time.Second
)
...
...
backend/internal/service/openai_oauth_passthrough_test.go
View file @
641e6107
...
...
@@ -734,7 +734,7 @@ func TestOpenAIGatewayService_OAuthPassthrough_NonCodexUAFallbackToCodexUA(t *te
require
.
NoError
(
t
,
err
)
require
.
Equal
(
t
,
false
,
gjson
.
GetBytes
(
upstream
.
lastBody
,
"store"
)
.
Bool
())
require
.
Equal
(
t
,
true
,
gjson
.
GetBytes
(
upstream
.
lastBody
,
"stream"
)
.
Bool
())
require
.
Equal
(
t
,
"codex_cli_rs/0.1
04
.0"
,
upstream
.
lastReq
.
Header
.
Get
(
"User-Agent"
))
require
.
Equal
(
t
,
"codex_cli_rs/0.1
25
.0"
,
upstream
.
lastReq
.
Header
.
Get
(
"User-Agent"
))
}
func
TestOpenAIGatewayService_CodexCLIOnly_RejectsNonCodexClient
(
t
*
testing
.
T
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment