[PR #15014] [MERGED] 0.6.15 #39309

Closed
opened 2026-04-25 11:57:20 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/15014
Author: @tjbck
Created: 6/16/2025
Status: Merged
Merged: 6/16/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 210dc74 feat: Add OpenTelemetry Metrics Support via OTLP Exporter
  • 1ca70b8 Update fi-FI translation.json
  • 70333c4 feat: Enable Code Interpreter via URL parameter
  • 5c156c8 Update translation.json
  • af28529 Feat: add ability to sort leaderboard
  • 9123c57 refac
  • 88c8ea8 Isolated fix to single section
  • 4e61bdd Merge pull request #14858 from Kylapaallikko/dev
  • bebbc24 Merge pull request #14860 from Classic298/patch-2
  • c70a037 refac

📊 Changes

153 files changed (+8212 additions, -3017 deletions)

View changed files

📝 CHANGELOG.md (+36 -0)
📝 backend/open_webui/config.py (+57 -0)
📝 backend/open_webui/env.py (+1 -0)
📝 backend/open_webui/main.py (+50 -2)
📝 backend/open_webui/models/groups.py (+32 -2)
📝 backend/open_webui/retrieval/loaders/external_document.py (+38 -13)
📝 backend/open_webui/retrieval/loaders/main.py (+4 -4)
📝 backend/open_webui/routers/audio.py (+19 -6)
📝 backend/open_webui/routers/auths.py (+103 -9)
📝 backend/open_webui/routers/files.py (+12 -3)
📝 backend/open_webui/routers/notes.py (+4 -4)
📝 backend/open_webui/routers/ollama.py (+22 -11)
📝 backend/open_webui/routers/retrieval.py (+16 -8)
📝 backend/open_webui/routers/users.py (+36 -1)
📝 backend/open_webui/socket/main.py (+37 -51)
📝 backend/open_webui/static/apple-touch-icon.png (+0 -0)
backend/open_webui/static/custom.css (+0 -0)
📝 backend/open_webui/utils/access_control.py (+1 -1)
📝 backend/open_webui/utils/auth.py (+3 -1)
📝 backend/open_webui/utils/middleware.py (+32 -14)

...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/15014 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 6/16/2025 **Status:** ✅ Merged **Merged:** 6/16/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`210dc74`](https://github.com/open-webui/open-webui/commit/210dc746f04a908d2190b01eebb9ead86be41e44) feat: Add OpenTelemetry Metrics Support via OTLP Exporter - [`1ca70b8`](https://github.com/open-webui/open-webui/commit/1ca70b886beb1f6ecc70fd4b6f846494e7704e3d) Update fi-FI translation.json - [`70333c4`](https://github.com/open-webui/open-webui/commit/70333c4dcf8f8fddb92eeab9352328a998fb5581) feat: Enable Code Interpreter via URL parameter - [`5c156c8`](https://github.com/open-webui/open-webui/commit/5c156c854b45dbc4c33e80b619c56c456551cbf3) Update translation.json - [`af28529`](https://github.com/open-webui/open-webui/commit/af285297bcdeca3b773968c6153d03dce6d71824) Feat: add ability to sort leaderboard - [`9123c57`](https://github.com/open-webui/open-webui/commit/9123c57c8a3855abd5829e19cdbb52df2ae18ce7) refac - [`88c8ea8`](https://github.com/open-webui/open-webui/commit/88c8ea883cd2142b70925a08790ea089946d37e0) Isolated fix to single section - [`4e61bdd`](https://github.com/open-webui/open-webui/commit/4e61bdd10909e1db59444859e1639c667171d456) Merge pull request #14858 from Kylapaallikko/dev - [`bebbc24`](https://github.com/open-webui/open-webui/commit/bebbc24d2709bb59684a91f213bd1a34b553e4a6) Merge pull request #14860 from Classic298/patch-2 - [`c70a037`](https://github.com/open-webui/open-webui/commit/c70a037692b95cfad3a7023a6f1f2dd0d6b538d4) refac ### 📊 Changes **153 files changed** (+8212 additions, -3017 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+36 -0) 📝 `backend/open_webui/config.py` (+57 -0) 📝 `backend/open_webui/env.py` (+1 -0) 📝 `backend/open_webui/main.py` (+50 -2) 📝 `backend/open_webui/models/groups.py` (+32 -2) 📝 `backend/open_webui/retrieval/loaders/external_document.py` (+38 -13) 📝 `backend/open_webui/retrieval/loaders/main.py` (+4 -4) 📝 `backend/open_webui/routers/audio.py` (+19 -6) 📝 `backend/open_webui/routers/auths.py` (+103 -9) 📝 `backend/open_webui/routers/files.py` (+12 -3) 📝 `backend/open_webui/routers/notes.py` (+4 -4) 📝 `backend/open_webui/routers/ollama.py` (+22 -11) 📝 `backend/open_webui/routers/retrieval.py` (+16 -8) 📝 `backend/open_webui/routers/users.py` (+36 -1) 📝 `backend/open_webui/socket/main.py` (+37 -51) 📝 `backend/open_webui/static/apple-touch-icon.png` (+0 -0) ➕ `backend/open_webui/static/custom.css` (+0 -0) 📝 `backend/open_webui/utils/access_control.py` (+1 -1) 📝 `backend/open_webui/utils/auth.py` (+3 -1) 📝 `backend/open_webui/utils/middleware.py` (+32 -14) _...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-25 11:57:20 -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#39309