From 4c642ac3ee30da532c5dacc3dadebb43e79e0886 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Fri, 15 Aug 2025 10:47:36 +0000 Subject: [PATCH 1/6] chore: sync VERSION file with release v1.1.111 [skip ci] --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index b2f4ea62..26b3e755 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.110 +1.1.111 From 14f94a65b5d8ad2b6e931e7eec15f441e398f8e2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Sun, 17 Aug 2025 09:11:48 +0000 Subject: [PATCH 2/6] chore: sync VERSION file with release v1.1.112 [skip ci] --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 26b3e755..1b5cd179 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.111 +1.1.112 From 9db88f9f0eaf7d86e8c2356d380317d4f4c7569d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 Aug 2025 01:37:33 +0000 Subject: [PATCH 3/6] chore: sync VERSION file with release v1.1.113 [skip ci] --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index 1b5cd179..d1887a00 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.112 +1.1.113 From d11b7c5e3e3fdec6f08f0b516269e2b3c89a3627 Mon Sep 17 00:00:00 2001 From: shaw Date: Mon, 18 Aug 2025 11:10:49 +0800 Subject: [PATCH 4/6] =?UTF-8?q?fix:=20openai=E7=9A=84api=E8=BD=AC=E5=8F=91?= =?UTF-8?q?=E5=89=94=E9=99=A4=E5=A4=9A=E4=BD=99=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/openaiRoutes.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/openaiRoutes.js b/src/routes/openaiRoutes.js index 2679da6f..0f46595c 100644 --- a/src/routes/openaiRoutes.js +++ b/src/routes/openaiRoutes.js @@ -128,7 +128,8 @@ router.post('/responses', authenticateApiKey, async (req, res) => { 'max_output_tokens', 'user', 'text_formatting', - 'truncation' + 'truncation', + 'service_tier' ] fieldsToRemove.forEach((field) => { delete req.body[field] From 262df4d42e5c92e3ed0b3c5cf7d3ffa352f5fe71 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 18 Aug 2025 03:13:25 +0000 Subject: [PATCH 5/6] chore: sync VERSION file with release v1.1.114 [skip ci] --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index d1887a00..1f837000 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.1.113 +1.1.114 From 539411d593f2891517cd18d206d05c30ea959ef8 Mon Sep 17 00:00:00 2001 From: shaw Date: Mon, 18 Aug 2025 19:15:23 +0800 Subject: [PATCH 6/6] =?UTF-8?q?fix:=20openai=E7=9A=84responses=E5=8E=BB?= =?UTF-8?q?=E9=99=A4text=E5=8F=82=E6=95=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/routes/openaiRoutes.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/routes/openaiRoutes.js b/src/routes/openaiRoutes.js index 0f46595c..2a237f26 100644 --- a/src/routes/openaiRoutes.js +++ b/src/routes/openaiRoutes.js @@ -129,6 +129,7 @@ router.post('/responses', authenticateApiKey, async (req, res) => { 'user', 'text_formatting', 'truncation', + 'text', 'service_tier' ] fieldsToRemove.forEach((field) => {