[PR #12715] [MERGED] 0.6.3 #61863

Closed
opened 2026-05-06 05:34:50 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/12715
Author: @tjbck
Created: 4/10/2025
Status: Merged
Merged: 4/13/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 35ea29b prepare websocket redis sentinel code for upcoming native support of sentinel in python-socketio
  • 257ca45 leave out @ in redis+sentine url when no username/password is provided
  • 5379c08 build(deps): bump azure-identity from 1.20.0 to 1.21.0 in /backend
  • 9e8b7ac build(deps): bump chromadb from 0.6.2 to 0.6.3 in /backend
  • f187a1c build(deps): bump pgvector from 0.3.5 to 0.4.0 in /backend
  • 96ecdc3 build(deps): bump youtube-transcript-api from 0.6.3 to 1.0.3 in /backend
  • ba66995 build(deps): bump @tiptap/pm from 2.10.0 to 2.11.7
  • 8a81f5f add support for elixir code syntax highlighting
  • dbc0608 build(deps): bump opentelemetry-instrumentation-logging
  • 76d8935 Update catalan translation.json

📊 Changes

136 files changed (+5412 additions, -3010 deletions)

View changed files

📝 CHANGELOG.md (+40 -0)
📝 backend/open_webui/__init__.py (+8 -1)
📝 backend/open_webui/config.py (+121 -55)
📝 backend/open_webui/constants.py (+1 -0)
📝 backend/open_webui/env.py (+36 -0)
📝 backend/open_webui/main.py (+89 -54)
📝 backend/open_webui/models/memories.py (+3 -2)
📝 backend/open_webui/retrieval/loaders/youtube.py (+1 -1)
📝 backend/open_webui/retrieval/utils.py (+14 -0)
📝 backend/open_webui/retrieval/web/duckduckgo.py (+8 -8)
backend/open_webui/retrieval/web/sougou.py (+60 -0)
📝 backend/open_webui/retrieval/web/utils.py (+25 -23)
📝 backend/open_webui/routers/audio.py (+150 -14)
📝 backend/open_webui/routers/auths.py (+12 -3)
📝 backend/open_webui/routers/chats.py (+6 -1)
📝 backend/open_webui/routers/files.py (+42 -0)
📝 backend/open_webui/routers/knowledge.py (+68 -0)
📝 backend/open_webui/routers/memories.py (+3 -1)
📝 backend/open_webui/routers/retrieval.py (+418 -398)
📝 backend/open_webui/routers/tools.py (+14 -16)

...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/12715 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 4/10/2025 **Status:** ✅ Merged **Merged:** 4/13/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`35ea29b`](https://github.com/open-webui/open-webui/commit/35ea29b184ca4cf5b96a27429dfc62521873a2d3) prepare websocket redis sentinel code for upcoming native support of sentinel in python-socketio - [`257ca45`](https://github.com/open-webui/open-webui/commit/257ca454569f1c4bd936a039c751f170ab3c6c38) leave out @ in redis+sentine url when no username/password is provided - [`5379c08`](https://github.com/open-webui/open-webui/commit/5379c08b9dfd544cf22fb75b50a9346fc9c9cb87) build(deps): bump azure-identity from 1.20.0 to 1.21.0 in /backend - [`9e8b7ac`](https://github.com/open-webui/open-webui/commit/9e8b7ac61119d8d048ae03b2b7501b96a98e5085) build(deps): bump chromadb from 0.6.2 to 0.6.3 in /backend - [`f187a1c`](https://github.com/open-webui/open-webui/commit/f187a1c9efd86a4ee1cc44ed4679e426d05c995e) build(deps): bump pgvector from 0.3.5 to 0.4.0 in /backend - [`96ecdc3`](https://github.com/open-webui/open-webui/commit/96ecdc37b3656545a6d5536db72ba21ef8d64ce5) build(deps): bump youtube-transcript-api from 0.6.3 to 1.0.3 in /backend - [`ba66995`](https://github.com/open-webui/open-webui/commit/ba669955322ab956ff72a4ac6cfcf4cc6d89c5f0) build(deps): bump @tiptap/pm from 2.10.0 to 2.11.7 - [`8a81f5f`](https://github.com/open-webui/open-webui/commit/8a81f5f18816d59c27f54cd5085f3762a6d5f1a5) add support for elixir code syntax highlighting - [`dbc0608`](https://github.com/open-webui/open-webui/commit/dbc06084a786928a1cbd876cb1e62a032668bf3b) build(deps): bump opentelemetry-instrumentation-logging - [`76d8935`](https://github.com/open-webui/open-webui/commit/76d8935d0b094b897bf80ee2bb4a76fab81ca86d) Update catalan translation.json ### 📊 Changes **136 files changed** (+5412 additions, -3010 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+40 -0) 📝 `backend/open_webui/__init__.py` (+8 -1) 📝 `backend/open_webui/config.py` (+121 -55) 📝 `backend/open_webui/constants.py` (+1 -0) 📝 `backend/open_webui/env.py` (+36 -0) 📝 `backend/open_webui/main.py` (+89 -54) 📝 `backend/open_webui/models/memories.py` (+3 -2) 📝 `backend/open_webui/retrieval/loaders/youtube.py` (+1 -1) 📝 `backend/open_webui/retrieval/utils.py` (+14 -0) 📝 `backend/open_webui/retrieval/web/duckduckgo.py` (+8 -8) ➕ `backend/open_webui/retrieval/web/sougou.py` (+60 -0) 📝 `backend/open_webui/retrieval/web/utils.py` (+25 -23) 📝 `backend/open_webui/routers/audio.py` (+150 -14) 📝 `backend/open_webui/routers/auths.py` (+12 -3) 📝 `backend/open_webui/routers/chats.py` (+6 -1) 📝 `backend/open_webui/routers/files.py` (+42 -0) 📝 `backend/open_webui/routers/knowledge.py` (+68 -0) 📝 `backend/open_webui/routers/memories.py` (+3 -1) 📝 `backend/open_webui/routers/retrieval.py` (+418 -398) 📝 `backend/open_webui/routers/tools.py` (+14 -16) _...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 05:34:50 -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#61863