[PR #23318] [MERGED] 0.9.0 #66002

Closed
opened 2026-05-06 12:05:44 -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: Merged
Merged: 4/21/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

304 files changed (+32300 additions, -9655 deletions)

View changed files

📝 .github/pull_request_template.md (+6 -0)
📝 CHANGELOG.md (+225 -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 (+35 -27)
📝 backend/open_webui/internal/db.py (+247 -10)
📝 backend/open_webui/main.py (+444 -255)
📝 backend/open_webui/migrations/env.py (+6 -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)

...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:** ✅ Merged **Merged:** 4/21/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`253f416`](https://github.com/open-webui/open-webui/commit/253f416de3f2d3a939a6feef2a56413fd61cc70b) refac - [`c40ea7f`](https://github.com/open-webui/open-webui/commit/c40ea7f29d34fa9535cdf9ffe599f4429ff3f455) refac - [`8e82f0d`](https://github.com/open-webui/open-webui/commit/8e82f0d2393beee21507ecaf8be8f3ef2ab66088) refac - [`9f1b279`](https://github.com/open-webui/open-webui/commit/9f1b279e88bd22dfff4d2531209536dea6a2f65e) refac - [`8977789`](https://github.com/open-webui/open-webui/commit/89777891770b4fb82587cca413e4ab6bcf28ae61) fix(ui): remove capitalize class from terminal menu selected label (#23518) - [`435efa3`](https://github.com/open-webui/open-webui/commit/435efa31ce04f703ed983c480fd2f46fd20b41c9) fix: add SSRF protection to OAuth profile picture URL fetching (#23356) - [`803d833`](https://github.com/open-webui/open-webui/commit/803d833908638bf7cac71c394c7b797912d537d0) i18n: Update catalan translation.json (#23506) - [`e7e006e`](https://github.com/open-webui/open-webui/commit/e7e006e78156288dc4308ea018dee1611019ac30) fix: use admin-configured WEB_SEARCH_RESULT_COUNT as default (#23488) - [`99f3c55`](https://github.com/open-webui/open-webui/commit/99f3c554c8595bb0c94b8f7bac66d61386cfeae1) feat: support Azure v1 endpoint format (/openai/v1) (#23484) - [`fcedeb9`](https://github.com/open-webui/open-webui/commit/fcedeb903401fc33ca999a4e8b014f65b867e756) feat: add /v1/responses proxy endpoint for Ollama (#23483) ### 📊 Changes **304 files changed** (+32300 additions, -9655 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+6 -0) 📝 `CHANGELOG.md` (+225 -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` (+35 -27) 📝 `backend/open_webui/internal/db.py` (+247 -10) 📝 `backend/open_webui/main.py` (+444 -255) 📝 `backend/open_webui/migrations/env.py` (+6 -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) _...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-05-06 12:05:44 -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#66002