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: main ← Head: dev
main
dev
253f416
c40ea7f
8e82f0d
9f1b279
8977789
435efa3
803d833
e7e006e
99f3c55
fcedeb9
304 files changed (+32300 additions, -9655 deletions)
📝 .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)
.github/pull_request_template.md
CHANGELOG.md
LICENSE
README.md
backend/open_webui/config.py
backend/open_webui/constants.py
backend/open_webui/env.py
backend/open_webui/functions.py
backend/open_webui/internal/db.py
backend/open_webui/main.py
backend/open_webui/migrations/env.py
backend/open_webui/migrations/versions/56359461a091_add_calendar_tables.py
backend/open_webui/migrations/versions/a3dd5bedd151_add_tasks_and_summary_to_chat.py
backend/open_webui/migrations/versions/b7c8d9e0f1a2_add_last_read_at_to_chat.py
backend/open_webui/migrations/versions/c1d2e3f4a5b6_add_shared_chat_table.py
backend/open_webui/migrations/versions/d4e5f6a7b8c9_add_automation_tables.py
backend/open_webui/migrations/versions/e1f2a3b4c5d6_add_is_pinned_to_note.py
backend/open_webui/models/access_grants.py
backend/open_webui/models/auths.py
backend/open_webui/models/automations.py
...and 80 more files
No description provided
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.
No dependencies set.
The note is not visible to the blocked user.
📋 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:
main← Head:dev📝 Commits (10+)
253f416refacc40ea7frefac8e82f0drefac9f1b279refac8977789fix(ui): remove capitalize class from terminal menu selected label (#23518)435efa3fix: add SSRF protection to OAuth profile picture URL fetching (#23356)803d833i18n: Update catalan translation.json (#23506)e7e006efix: use admin-configured WEB_SEARCH_RESULT_COUNT as default (#23488)99f3c55feat: support Azure v1 endpoint format (/openai/v1) (#23484)fcedeb9feat: add /v1/responses proxy endpoint for Ollama (#23483)📊 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.