From 31fad36d69579b5bd8c37f5981202f63e7227d2d Mon Sep 17 00:00:00 2001 From: Classic298 <27028174+Classic298@users.noreply.github.com> Date: Sun, 6 Sep 2026 21:22:16 +0000 Subject: [PATCH] chore: soften the slim backend entry and cover the browser speech runtime --- CHANGELOG.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 168aca886a..03484d9f46 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,9 +54,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - ๐Ÿ”— **Default suggestions answer with an object.** Saving the default prompt suggestions now answers with the suggestions and their per-language wording together rather than the bare list it returned before, which anything calling it directly will need to read. [Commit](https://github.com/open-webui/open-webui/commit/7b6562e3358956ec71eed05352538a646d047734) - ๐Ÿ–ผ๏ธ **Default picture without access.** A model picture now falls back to the standard logo wherever the viewer holds no grant on that model, such as a model reply shown to the other members of a channel, or the admin analytics and evaluation pages with the access bypass switched off. [#29700](https://github.com/open-webui/open-webui/pull/29700) - ๐Ÿชถ **Slim leaves the heavy work outside.** An instance built slim starts and holds a conversation with nothing extra configured, but the features that leaned on the local models it no longer carries, knowledge search, document extraction past plain text and speech, each ask for a service of their own the first time they are used, and it can no longer be built together with the graphics card or Ollama options. [Commit](https://github.com/open-webui/open-webui/commit/cb942bb94c8dc7941336088fb3392e2398ff56c1) -- ๐Ÿงฎ **Slim keeps to one set of backends.** An instance built slim holds its own data in PostgreSQL or SQLite and keeps files on its own disk, refusing to start where it is pointed at anything else, searches what it stores through PostgreSQL alone, and can no longer drive a browser to read a page. [Commit](https://github.com/open-webui/open-webui/commit/d27aa72ab4a7b5632b4ad49e8467081ad3d7ebb4) +- ๐Ÿงฎ **Slim keeps to one set of backends.** An instance built slim keeps its data in SQLite or PostgreSQL and its files on its own disk, which is what it does out of the box; a cloud storage bucket, another database engine or AWS IAM database logins now ask for the standard image. It searches what it stores through PostgreSQL alone, and can no longer drive a browser to read a page. [Commit](https://github.com/open-webui/open-webui/commit/d27aa72ab4a7b5632b4ad49e8467081ad3d7ebb4) - ๐Ÿงฑ **Building the image needs BuildKit.** Building Open WebUI yourself now takes the BuildKit builder and reach to the registry the install tool is fetched from, next to the package index it already needed. [#29728](https://github.com/open-webui/open-webui/pull/29728) - ๐Ÿงพ **Tools declare what they import.** A tool or function importing a package that was only ever present by accident, among them nltk, pymongo and the Google Drive client, now has to name it in its requirements, or have it installed into the image where the instance cannot reach the package index. [#29725](https://github.com/open-webui/open-webui/pull/29725), [#29726](https://github.com/open-webui/open-webui/pull/29726) +- ๐Ÿ”Š **Browser speech loads its engine from the instance.** The WebAssembly runtime behind on-device text-to-speech is now loaded from the files served alongside the interface rather than from a copy carried inside its JavaScript. [Commit](https://github.com/open-webui/open-webui/commit/f1c803d36bae9d429eb630ad26853c9d939262b5) ## [0.11.3] - 2026-08-31