[PR #23035] [MERGED] 0.8.11 #26985

Closed
opened 2026-04-20 06:48:09 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/23035
Author: @tjbck
Created: 3/25/2026
Status: Merged
Merged: 3/25/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

429 files changed (+45909 additions, -35177 deletions)

View changed files

📝 .github/workflows/format-backend.yaml (+3 -6)
.pre-commit-config.yaml (+8 -0)
📝 CHANGELOG.md (+146 -1)
📝 Dockerfile (+11 -10)
📝 backend/dev.sh (+1 -1)
📝 backend/open_webui/__init__.py (+32 -39)
📝 backend/open_webui/config.py (+1508 -1793)
📝 backend/open_webui/constants.py (+61 -79)
📝 backend/open_webui/env.py (+302 -424)
📝 backend/open_webui/functions.py (+85 -95)
📝 backend/open_webui/internal/db.py (+20 -30)
📝 backend/open_webui/internal/migrations/001_initial_schema.py (+24 -24)
📝 backend/open_webui/internal/migrations/002_add_local_sharing.py (+2 -4)
📝 backend/open_webui/internal/migrations/003_add_auth_api_key.py (+2 -4)
📝 backend/open_webui/internal/migrations/004_add_archived.py (+2 -2)
📝 backend/open_webui/internal/migrations/005_add_updated_at.py (+16 -20)
📝 backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py (+20 -20)
📝 backend/open_webui/internal/migrations/007_add_user_last_active_at.py (+6 -6)
📝 backend/open_webui/internal/migrations/008_add_memory.py (+2 -2)
📝 backend/open_webui/internal/migrations/009_add_models.py (+2 -2)

...and 80 more files

📄 Description

No description provided


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/open-webui/open-webui/pull/23035 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 3/25/2026 **Status:** ✅ Merged **Merged:** 3/25/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`83fad5e`](https://github.com/open-webui/open-webui/commit/83fad5e9f7e83aab396193e48ccb202b01f062bc) refac - [`8970923`](https://github.com/open-webui/open-webui/commit/8970923940745a5912967ac490db7ef3242ba3ad) refac - [`86cce2c`](https://github.com/open-webui/open-webui/commit/86cce2cd88cb5dae27b8d5f6237a0831ba1d7cca) Update fi-FI translation.json (#22542) - [`418bd05`](https://github.com/open-webui/open-webui/commit/418bd05ae0db2470b67e3823540767fe844d5a68) refac: refined shimmer effect (#22516) - [`a407a7f`](https://github.com/open-webui/open-webui/commit/a407a7f1c0730f99a756dc2207f9e3c7592ad0ce) Updated pt-PT Translation (#22587) - [`06657b8`](https://github.com/open-webui/open-webui/commit/06657b81097b17d101699c75089ec2fde004ae87) fix: handle non-dict history/messages in chat_message migration (#22588) - [`f1c1004`](https://github.com/open-webui/open-webui/commit/f1c100422566c96397d073bd9e63e38b3aec69b9) fix: ddgs - [`a87f015`](https://github.com/open-webui/open-webui/commit/a87f0152464df8c6cf0f4d2b76cd26b1897a03f9) i18n: Update Catalan translation.json (#22570) - [`0a87c1e`](https://github.com/open-webui/open-webui/commit/0a87c1ecd078320a08c4cc62d41fe8727fb3b5f7) refac - [`b312318`](https://github.com/open-webui/open-webui/commit/b312318a99064b12be7de6ed5c1a081b9f62a999) refac: rm mariadb dep ### 📊 Changes **429 files changed** (+45909 additions, -35177 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/format-backend.yaml` (+3 -6) ➕ `.pre-commit-config.yaml` (+8 -0) 📝 `CHANGELOG.md` (+146 -1) 📝 `Dockerfile` (+11 -10) 📝 `backend/dev.sh` (+1 -1) 📝 `backend/open_webui/__init__.py` (+32 -39) 📝 `backend/open_webui/config.py` (+1508 -1793) 📝 `backend/open_webui/constants.py` (+61 -79) 📝 `backend/open_webui/env.py` (+302 -424) 📝 `backend/open_webui/functions.py` (+85 -95) 📝 `backend/open_webui/internal/db.py` (+20 -30) 📝 `backend/open_webui/internal/migrations/001_initial_schema.py` (+24 -24) 📝 `backend/open_webui/internal/migrations/002_add_local_sharing.py` (+2 -4) 📝 `backend/open_webui/internal/migrations/003_add_auth_api_key.py` (+2 -4) 📝 `backend/open_webui/internal/migrations/004_add_archived.py` (+2 -2) 📝 `backend/open_webui/internal/migrations/005_add_updated_at.py` (+16 -20) 📝 `backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py` (+20 -20) 📝 `backend/open_webui/internal/migrations/007_add_user_last_active_at.py` (+6 -6) 📝 `backend/open_webui/internal/migrations/008_add_memory.py` (+2 -2) 📝 `backend/open_webui/internal/migrations/009_add_models.py` (+2 -2) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-20 06:48:09 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/open-webui#26985