From d98a296000e76ddcebf82f6a425cdb0af66afa0f Mon Sep 17 00:00:00 2001 From: Soulter <37870767+Soulter@users.noreply.github.com> Date: Tue, 14 Jul 2026 09:36:01 +0800 Subject: [PATCH] chore: bump version to 4.26.6 (#9273) --- astrbot/__init__.py | 2 +- changelogs/v4.26.6.md | 27 +++++++++++++++++++++++++++ pyproject.toml | 2 +- 3 files changed, 29 insertions(+), 2 deletions(-) create mode 100644 changelogs/v4.26.6.md diff --git a/astrbot/__init__.py b/astrbot/__init__.py index c410be033..1d64e0d30 100644 --- a/astrbot/__init__.py +++ b/astrbot/__init__.py @@ -1,4 +1,4 @@ import logging -__version__ = "4.26.5" +__version__ = "4.26.6" logger = logging.getLogger("astrbot") diff --git a/changelogs/v4.26.6.md b/changelogs/v4.26.6.md new file mode 100644 index 000000000..1b19a2cda --- /dev/null +++ b/changelogs/v4.26.6.md @@ -0,0 +1,27 @@ +## [4.26.6] - 2026-07-14 + +### Added + +- Added persona import and export in the WebUI. Exported personas intentionally exclude tools and Skills configuration. (#4532) + +### Changed + +- Enabled ephemeral cache control for Anthropic providers to improve cache hit rates. (#9197) +- Refined README documentation and corrected the Satori and Mattermost tutorial links. (#9205) +- Updated grouped GitHub Actions dependencies. (#9170) + +### Fixed + +- Validated dashboard account username updates. (#9175) +- Removed an unsupported `force` argument from LINE response parsing. (#9187) +- Handled invalid response cleanup regular expressions without interrupting message delivery. (#9183) +- Fixed the mobile chat input freeze and multiline attachment button alignment. (#9202) +- Made ChatUI model selection theme-aware. (#9200) +- Corrected the i18n callback path to Settings General. (#9201) +- Returned appropriate HTTP errors when skill downloads fail. (#9213) +- Exempted WebChat from the friend wake prefix. (#9215) +- Handled `max_tokens` correctly for NVIDIA MiniMax M3. (#9209) +- Reported current context usage accurately in the token indicator. (#9255) +- Resumed active ChatUI streams after a page refresh. (#9259) + +[4.26.6]: https://github.com/AstrBotDevs/AstrBot/compare/v4.26.5...v4.26.6 diff --git a/pyproject.toml b/pyproject.toml index d80dadc48..3937ae302 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "AstrBot" -version = "4.26.5" +version = "4.26.6" description = "Easy-to-use multi-platform LLM chatbot and development framework" readme = "README.md" license = { text = "AGPL-3.0-or-later" }