Skip to content

Commit 971b4bc

Browse files
committed
📦 release: v3.5.25
1 parent 6975525 commit 971b4bc

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

astrbot/core/config/default.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from astrbot.core.utils.astrbot_path import get_astrbot_data_path
88

9-
VERSION = "3.5.24"
9+
VERSION = "3.5.25"
1010
DB_PATH = os.path.join(get_astrbot_data_path(), "data_v3.db")
1111

1212
# 默认配置

changelogs/v3.5.25.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# What's Changed
2+
3+
1. 修复: 修复插件可能存在的无法正常禁用的问题 ([#2352](https://github.com/Soulter/AstrBot/issues/2352))
4+
2. ❗修复:当返回文本为空并且存在函数调用时错误地被终止事件,导致函数调用结果未被正常返回 ([#2491](https://github.com/Soulter/AstrBot/issues/2491))
5+
3. 修复:修复无法清空 AstrBot 配置下的 http_proxy 代理的问题 ([#2434](https://github.com/Soulter/AstrBot/issues/2434))
6+
4. ❗修复:Gemini 下开启流式输出时,持久化的消息结果不完整 ([#2424](https://github.com/Soulter/AstrBot/issues/2424))
7+
5. 修复:注册文件时由于 file:/// 前缀,导致文件被误判为不存在的问题 ([#2325](https://github.com/Soulter/AstrBot/issues/2325))
8+
6. 优化: 为部分类型供应商添加默认的温度选项 ([#2321](https://github.com/Soulter/AstrBot/issues/2321))
9+
7. 优化: 适配 Qwen3 模型非流式输出下需要传入 enable_think 参数(否则报错) ([#2424](https://github.com/Soulter/AstrBot/issues/2424))
10+
8. 优化:支持配置工具调用轮数上限,默认 30
11+
9. 新增: 添加 WebUI 语义化预发布版本提醒和检测功能
12+
13+
> 新版本预告: v4.0.0 即将发布。

dashboard/src/layouts/full/vertical-header/VerticalHeader.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -365,7 +365,7 @@ commonStore.getStartTime();
365365
</div>
366366

367367
<v-alert
368-
v-if="releases.some(item => isPreRelease(item.tag_name))"
368+
v-if="releases.some((item: {tag_name: string}) => isPreRelease(item.tag_name))"
369369
type="warning"
370370
variant="tonal"
371371
border="start"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "AstrBot"
3-
version = "3.5.24"
3+
version = "3.5.25"
44
description = "易上手的多平台 LLM 聊天机器人及开发框架"
55
readme = "README.md"
66
requires-python = ">=3.10"

0 commit comments

Comments
 (0)