[PR #23318] 0.9.0 #27146

Open
opened 2026-04-20 06:54:13 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/23318
Author: @tjbck
Created: 4/1/2026
Status: 🔄 Open

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

302 files changed (+30498 additions, -9570 deletions)

View changed files

📝 .github/pull_request_template.md (+6 -0)
📝 LICENSE (+23 -5)
📝 README.md (+0 -2)
📝 backend/open_webui/config.py (+144 -9)
📝 backend/open_webui/constants.py (+11 -0)
📝 backend/open_webui/env.py (+115 -7)
📝 backend/open_webui/functions.py (+20 -25)
📝 backend/open_webui/internal/db.py (+137 -6)
📝 backend/open_webui/main.py (+444 -255)
📝 backend/open_webui/migrations/env.py (+1 -0)
backend/open_webui/migrations/versions/56359461a091_add_calendar_tables.py (+83 -0)
backend/open_webui/migrations/versions/a3dd5bedd151_add_tasks_and_summary_to_chat.py (+28 -0)
backend/open_webui/migrations/versions/b7c8d9e0f1a2_add_last_read_at_to_chat.py (+27 -0)
backend/open_webui/migrations/versions/c1d2e3f4a5b6_add_shared_chat_table.py (+164 -0)
backend/open_webui/migrations/versions/d4e5f6a7b8c9_add_automation_tables.py (+55 -0)
backend/open_webui/migrations/versions/e1f2a3b4c5d6_add_is_pinned_to_note.py (+23 -0)
📝 backend/open_webui/models/access_grants.py (+101 -96)
📝 backend/open_webui/models/auths.py (+42 -40)
backend/open_webui/models/automations.py (+421 -0)
backend/open_webui/models/calendar.py (+824 -0)

...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/23318 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/1/2026 **Status:** 🔄 Open **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4632f20`](https://github.com/open-webui/open-webui/commit/4632f200a9ac98c915aee412b34e86c3d3c58bb1) refac - [`60e4d75`](https://github.com/open-webui/open-webui/commit/60e4d7517463690b3a87de38babc9ac561897c61) refac - [`3425826`](https://github.com/open-webui/open-webui/commit/342582676a5212bf196a69d11825cb407992f257) refac - [`6d6dfbf`](https://github.com/open-webui/open-webui/commit/6d6dfbf02c893d72d85d4490cb41f1665b1f9f95) refac - [`6fdd19b`](https://github.com/open-webui/open-webui/commit/6fdd19bf14f39c63b6403fda7ee1c2d1e7d3d8e5) I18n: improve Chinese translation (#23347) - [`9190d4b`](https://github.com/open-webui/open-webui/commit/9190d4b54240d6a692ba3d509ca1fb6bc75952a4) refac - [`4578bf5`](https://github.com/open-webui/open-webui/commit/4578bf52ee2f58f9889d7ce2c88f1c366f2df504) refac - [`366454e`](https://github.com/open-webui/open-webui/commit/366454e81282b83559761cafa110facaa87a9cf6) refac - [`640dbb6`](https://github.com/open-webui/open-webui/commit/640dbb6a282dddc09749efe05ef84fb0daeb0df0) refac - [`a71d927`](https://github.com/open-webui/open-webui/commit/a71d927a0c505f9d3a30bbb3e7ca56d666144245) chore: format ### 📊 Changes **302 files changed** (+30498 additions, -9570 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+6 -0) 📝 `LICENSE` (+23 -5) 📝 `README.md` (+0 -2) 📝 `backend/open_webui/config.py` (+144 -9) 📝 `backend/open_webui/constants.py` (+11 -0) 📝 `backend/open_webui/env.py` (+115 -7) 📝 `backend/open_webui/functions.py` (+20 -25) 📝 `backend/open_webui/internal/db.py` (+137 -6) 📝 `backend/open_webui/main.py` (+444 -255) 📝 `backend/open_webui/migrations/env.py` (+1 -0) ➕ `backend/open_webui/migrations/versions/56359461a091_add_calendar_tables.py` (+83 -0) ➕ `backend/open_webui/migrations/versions/a3dd5bedd151_add_tasks_and_summary_to_chat.py` (+28 -0) ➕ `backend/open_webui/migrations/versions/b7c8d9e0f1a2_add_last_read_at_to_chat.py` (+27 -0) ➕ `backend/open_webui/migrations/versions/c1d2e3f4a5b6_add_shared_chat_table.py` (+164 -0) ➕ `backend/open_webui/migrations/versions/d4e5f6a7b8c9_add_automation_tables.py` (+55 -0) ➕ `backend/open_webui/migrations/versions/e1f2a3b4c5d6_add_is_pinned_to_note.py` (+23 -0) 📝 `backend/open_webui/models/access_grants.py` (+101 -96) 📝 `backend/open_webui/models/auths.py` (+42 -40) ➕ `backend/open_webui/models/automations.py` (+421 -0) ➕ `backend/open_webui/models/calendar.py` (+824 -0) _...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:54:13 -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#27146