[PR #16859] [MERGED] 0.6.26 #24260

Closed
opened 2026-04-20 05:18:34 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/16859
Author: @tjbck
Created: 8/23/2025
Status: Merged
Merged: 8/28/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 5051bfe feat(document retrieval): Authenticate Azure Document Intelligence using AzureDefaultCredential if API key is not provided
  • 9e7ec0e feat: add shift-to-delete to prompts workspace
  • fa1590d Update fi-FI translation.json
  • 093af75 FIX: Playwright Timeout (ms) interpreted as seconds
  • d98a60f Add files via upload
  • 8d73194 Merge pull request #16848 from Kylapaallikko/dev
  • 8048d4a Merge pull request #16850 from rgaricano/dev-FIX_playwright_timeout
  • 3ff773c Merge pull request #16838 from silentoplayz/shift-to-delete-prompts
  • ff6946c UPD: i18n es-ES Translation v.0.6.25
  • 7a59cc9 Update translation.json

📊 Changes

113 files changed (+2595 additions, -1386 deletions)

View changed files

📝 .github/workflows/docker-build.yaml (+158 -0)
📝 CHANGELOG.md (+41 -0)
📝 Dockerfile (+9 -2)
📝 backend/open_webui/config.py (+22 -1)
📝 backend/open_webui/env.py (+19 -0)
📝 backend/open_webui/functions.py (+1 -1)
📝 backend/open_webui/main.py (+5 -0)
📝 backend/open_webui/models/groups.py (+17 -7)
📝 backend/open_webui/retrieval/loaders/datalab_marker.py (+2 -2)
📝 backend/open_webui/retrieval/loaders/main.py (+14 -7)
📝 backend/open_webui/retrieval/utils.py (+4 -0)
📝 backend/open_webui/retrieval/web/utils.py (+1 -1)
📝 backend/open_webui/routers/auths.py (+5 -3)
📝 backend/open_webui/routers/files.py (+12 -2)
📝 backend/open_webui/routers/ollama.py (+7 -6)
📝 backend/open_webui/routers/retrieval.py (+6 -2)
📝 backend/open_webui/routers/tasks.py (+4 -0)
📝 backend/open_webui/routers/users.py (+4 -0)
📝 backend/open_webui/socket/main.py (+37 -1)
📝 backend/open_webui/utils/middleware.py (+55 -31)

...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/16859 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 8/23/2025 **Status:** ✅ Merged **Merged:** 8/28/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`5051bfe`](https://github.com/open-webui/open-webui/commit/5051bfe7ab9a484b91193375f856cd794d056e50) feat(document retrieval): Authenticate Azure Document Intelligence using AzureDefaultCredential if API key is not provided - [`9e7ec0e`](https://github.com/open-webui/open-webui/commit/9e7ec0eb1ea22442e4fb10df9fa1cdb98c975979) feat: add shift-to-delete to prompts workspace - [`fa1590d`](https://github.com/open-webui/open-webui/commit/fa1590df57362febab5b9ef977f72237d66f4859) Update fi-FI translation.json - [`093af75`](https://github.com/open-webui/open-webui/commit/093af754e7dd6471b40f838dda8aa39ead5edc8b) FIX: Playwright Timeout (ms) interpreted as seconds - [`d98a60f`](https://github.com/open-webui/open-webui/commit/d98a60fbbb38d237dc40a28b4ec28279d2fc2f74) Add files via upload - [`8d73194`](https://github.com/open-webui/open-webui/commit/8d7319441e3e2aad5b172fdf89d663255dad28f8) Merge pull request #16848 from Kylapaallikko/dev - [`8048d4a`](https://github.com/open-webui/open-webui/commit/8048d4ac39aae4322c0870c22a449b8ae190d662) Merge pull request #16850 from rgaricano/dev-FIX_playwright_timeout - [`3ff773c`](https://github.com/open-webui/open-webui/commit/3ff773c19926de3317980f67f4c435ace579e114) Merge pull request #16838 from silentoplayz/shift-to-delete-prompts - [`ff6946c`](https://github.com/open-webui/open-webui/commit/ff6946c230990468c8584d9302fc3b4167e87218) UPD: i18n es-ES Translation v.0.6.25 - [`7a59cc9`](https://github.com/open-webui/open-webui/commit/7a59cc91864a994c85cd31e7e1435ccdfe435030) Update translation.json ### 📊 Changes **113 files changed** (+2595 additions, -1386 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-build.yaml` (+158 -0) 📝 `CHANGELOG.md` (+41 -0) 📝 `Dockerfile` (+9 -2) 📝 `backend/open_webui/config.py` (+22 -1) 📝 `backend/open_webui/env.py` (+19 -0) 📝 `backend/open_webui/functions.py` (+1 -1) 📝 `backend/open_webui/main.py` (+5 -0) 📝 `backend/open_webui/models/groups.py` (+17 -7) 📝 `backend/open_webui/retrieval/loaders/datalab_marker.py` (+2 -2) 📝 `backend/open_webui/retrieval/loaders/main.py` (+14 -7) 📝 `backend/open_webui/retrieval/utils.py` (+4 -0) 📝 `backend/open_webui/retrieval/web/utils.py` (+1 -1) 📝 `backend/open_webui/routers/auths.py` (+5 -3) 📝 `backend/open_webui/routers/files.py` (+12 -2) 📝 `backend/open_webui/routers/ollama.py` (+7 -6) 📝 `backend/open_webui/routers/retrieval.py` (+6 -2) 📝 `backend/open_webui/routers/tasks.py` (+4 -0) 📝 `backend/open_webui/routers/users.py` (+4 -0) 📝 `backend/open_webui/socket/main.py` (+37 -1) 📝 `backend/open_webui/utils/middleware.py` (+55 -31) _...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 05:18:34 -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#24260