Skip to content

Commit 97cc947

Browse files
committed
chore: bump
1 parent cb73257 commit 97cc947

5 files changed

Lines changed: 9 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Added
1111

12-
- ⚡ **API call optimization.** Reduced excessive API calls when hovering over the model selector or scrolling through chat history by adding a 30-second cooldown to model list fetches and a 200ms debounce to chat loading. [#22457](https://github.com/open-webui/open-webui/pull/22457)
13-
- 🗄️ **MariaDB Vector support.** Added MariaDB Vector as a new vector database backend, enabling deployments with VECTOR_DB=mariadb-vector; supports cosine and euclidean distance strategies with configurable HNSW indexing. [#21931](https://github.com/open-webui/open-webui/pull/21931)
14-
- 📝 **Task message truncation.** Chat messages sent to task models for title and tag generation can now be truncated using a filter in the prompt template, reducing token usage and processing time for long conversations. [#21499](https://github.com/open-webui/open-webui/issues/21499)
1512
- 🔐 **Custom OIDC logout endpoint.** Administrators can now configure a custom OpenID Connect logout URL via OPENID_END_SESSION_ENDPOINT, enabling logout functionality for OIDC providers that require custom endpoints like AWS Cognito. [Commit](https://github.com/open-webui/open-webui/commit/3f350f865920daf2844769a758b2d2e6a7ee3efa)
13+
- 🗄️ **MariaDB Vector community support.** Added MariaDB Vector as a new vector database backend, enabling deployments with VECTOR_DB=mariadb-vector; supports cosine and euclidean distance strategies with configurable HNSW indexing. [#21931](https://github.com/open-webui/open-webui/pull/21931)
14+
- 📝 **Task message truncation.** Chat messages sent to task models for title and tag generation can now be truncated using a filter in the prompt template, reducing token usage and processing time for long conversations. [#21499](https://github.com/open-webui/open-webui/issues/21499)
1615
- 🔄 **General improvements.** Various improvements were implemented across the application to enhance performance, stability, and security.
1716
- 🌐 Translations for Portuguese (Brazil), Spanish, and Malay were enhanced and expanded.
1817

backend/open_webui/routers/audio.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -859,9 +859,7 @@ def transcription_handler(request, file_path, metadata, user=None):
859859
res = r.json()
860860
# Azure returns {"code": "...", "message": "...", "innerError": {...}}
861861
if "code" in res and "message" in res:
862-
azure_code = res.get("innerError", {}).get(
863-
"code", res["code"]
864-
)
862+
azure_code = res.get("innerError", {}).get("code", res["code"])
865863
user_facing_codes = {
866864
"EmptyAudioFile",
867865
"AudioLengthLimitExceeded",

backend/open_webui/utils/misc.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -588,7 +588,9 @@ def _sanitize(obj):
588588
if not callable(v) and _is_serializable(v)
589589
}
590590
if isinstance(obj, list):
591-
return [_sanitize(v) for v in obj if not callable(v) and _is_serializable(v)]
591+
return [
592+
_sanitize(v) for v in obj if not callable(v) and _is_serializable(v)
593+
]
592594
if callable(obj):
593595
return None
594596
# Last resort: try to see if it's serializable

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.8.9",
3+
"version": "0.8.10",
44
"private": true,
55
"scripts": {
66
"dev": "npm run pyodide:fetch && vite dev --host",

0 commit comments

Comments
 (0)