[PR #8159] [MERGED] 0.5.3 #22169

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/8159
Author: @tjbck
Created: 12/28/2024
Status: Merged
Merged: 12/31/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 3f0dd80 fix: chmod +x update_ollama_models.sh
  • 7f8b6eb refac: styling
  • 59ed53e Merge pull request #8145 from bernadinm/fix/modified_update_ollama_models.sh
  • 7b3a864 Add reset panzoom button to SVGPanZoom and cleanup
  • c8fb11d Merge pull request #8158 from cvaz1306/add_reset_button_mermaidjs_renderer
  • d55884b enh: ENABLE_REALTIME_CHAT_SAVE
  • 5a720a4 refac
  • 8a7e8b5 Add reset panzoom button to SVGPanZoom and cleanup
  • 95598e5 Merge branch 'dev' into add_reset_button_mermaidjs_renderer
  • f7d1833 Fixing formatting

📊 Changes

3928 files changed (+12955 additions, -330 deletions)

View changed files

📝 CHANGELOG.md (+20 -0)
📝 README.md (+8 -0)
📝 backend/open_webui/env.py (+8 -0)
backend/open_webui/migrations/versions/3781e22d8b01_update_message_table.py (+70 -0)
📝 backend/open_webui/models/channels.py (+6 -2)
📝 backend/open_webui/models/chats.py (+9 -0)
📝 backend/open_webui/models/messages.py (+143 -7)
📝 backend/open_webui/retrieval/utils.py (+4 -1)
📝 backend/open_webui/routers/channels.py (+329 -13)
📝 backend/open_webui/routers/files.py (+1 -1)
📝 backend/open_webui/routers/knowledge.py (+4 -8)
📝 backend/open_webui/routers/retrieval.py (+5 -1)
📝 backend/open_webui/socket/main.py (+29 -0)
📝 backend/open_webui/storage/provider.py (+3 -1)
📝 backend/open_webui/utils/chat.py (+5 -0)
📝 backend/open_webui/utils/middleware.py (+71 -40)
📝 backend/open_webui/utils/payload.py (+4 -0)
📝 backend/open_webui/utils/response.py (+2 -2)
📝 package-lock.json (+9 -2)
📝 package.json (+3 -2)

...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/8159 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 12/28/2024 **Status:** ✅ Merged **Merged:** 12/31/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`3f0dd80`](https://github.com/open-webui/open-webui/commit/3f0dd80898cb22ec9d230a006dfb6ddbd3eb16b3) fix: chmod +x update_ollama_models.sh - [`7f8b6eb`](https://github.com/open-webui/open-webui/commit/7f8b6ebbd5016f701d7f41c7b3cf56e769f25862) refac: styling - [`59ed53e`](https://github.com/open-webui/open-webui/commit/59ed53ec1e7d29631567a2cc19d4322517b589be) Merge pull request #8145 from bernadinm/fix/modified_update_ollama_models.sh - [`7b3a864`](https://github.com/open-webui/open-webui/commit/7b3a86475d7b28ecc682d4bbfaaf1c6e3eedf043) Add reset panzoom button to SVGPanZoom and cleanup - [`c8fb11d`](https://github.com/open-webui/open-webui/commit/c8fb11db59c46fcc7978a46ddd1dfcb514a95822) Merge pull request #8158 from cvaz1306/add_reset_button_mermaidjs_renderer - [`d55884b`](https://github.com/open-webui/open-webui/commit/d55884b50ec06d3c40540deb47ae6d821b27ab04) enh: ENABLE_REALTIME_CHAT_SAVE - [`5a720a4`](https://github.com/open-webui/open-webui/commit/5a720a4a31058ed88a58930052128bc6a0ad062e) refac - [`8a7e8b5`](https://github.com/open-webui/open-webui/commit/8a7e8b57a80e305f3731f8799ad2371896c7bf96) Add reset panzoom button to SVGPanZoom and cleanup - [`95598e5`](https://github.com/open-webui/open-webui/commit/95598e543536575b2f7d79a4535d711143f66c67) Merge branch 'dev' into add_reset_button_mermaidjs_renderer - [`f7d1833`](https://github.com/open-webui/open-webui/commit/f7d1833f4156845e3419141ebfe5cc223eb0fb4d) Fixing formatting ### 📊 Changes **3928 files changed** (+12955 additions, -330 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+20 -0) 📝 `README.md` (+8 -0) 📝 `backend/open_webui/env.py` (+8 -0) ➕ `backend/open_webui/migrations/versions/3781e22d8b01_update_message_table.py` (+70 -0) 📝 `backend/open_webui/models/channels.py` (+6 -2) 📝 `backend/open_webui/models/chats.py` (+9 -0) 📝 `backend/open_webui/models/messages.py` (+143 -7) 📝 `backend/open_webui/retrieval/utils.py` (+4 -1) 📝 `backend/open_webui/routers/channels.py` (+329 -13) 📝 `backend/open_webui/routers/files.py` (+1 -1) 📝 `backend/open_webui/routers/knowledge.py` (+4 -8) 📝 `backend/open_webui/routers/retrieval.py` (+5 -1) 📝 `backend/open_webui/socket/main.py` (+29 -0) 📝 `backend/open_webui/storage/provider.py` (+3 -1) 📝 `backend/open_webui/utils/chat.py` (+5 -0) 📝 `backend/open_webui/utils/middleware.py` (+71 -40) 📝 `backend/open_webui/utils/payload.py` (+4 -0) 📝 `backend/open_webui/utils/response.py` (+2 -2) 📝 `package-lock.json` (+9 -2) 📝 `package.json` (+3 -2) _...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 03:57:24 -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#22169