[PR #8246] [MERGED] 0.5.4 #22192

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

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/8246
Author: @tjbck
Created: 1/1/2025
Status: Merged
Merged: 1/5/2025
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • f1800e2 build(deps): bump pyjwt[crypto] from 2.9.0 to 2.10.1 in /backend
  • 236410c build(deps): bump fpdf2 from 2.7.9 to 2.8.2 in /backend
  • 5bb308a build(deps): bump validators from 0.33.0 to 0.34.0 in /backend
  • b41c112 build(deps): bump flask from 3.0.3 to 3.1.0 in /backend
  • 7fb87dd build(deps): bump peewee from 3.17.6 to 3.17.8 in /backend
  • 60fc24c refac: channel message input
  • 085f483 refac
  • 80600db Merge pull request #8241 from open-webui/dependabot/pip/backend/dev/pyjwt-crypto--2.10.1
  • b69941c Merge pull request #8242 from open-webui/dependabot/pip/backend/dev/fpdf2-2.8.2
  • 55fbc60 Merge pull request #8244 from open-webui/dependabot/pip/backend/dev/flask-3.1.0

📊 Changes

90 files changed (+561 additions, -244 deletions)

View changed files

.github/workflows/codespell.yml (+25 -0)
📝 CHANGELOG.md (+27 -0)
📝 CODE_OF_CONDUCT.md (+1 -1)
📝 README.md (+3 -1)
📝 backend/open_webui/config.py (+3 -0)
📝 backend/open_webui/env.py (+6 -1)
📝 backend/open_webui/models/chats.py (+2 -0)
📝 backend/open_webui/models/messages.py (+5 -3)
📝 backend/open_webui/retrieval/vector/dbs/pgvector.py (+38 -2)
📝 backend/open_webui/retrieval/web/testdata/brave.json (+1 -1)
📝 backend/open_webui/routers/chats.py (+24 -0)
📝 backend/open_webui/routers/tasks.py (+1 -1)
📝 backend/open_webui/utils/auth.py (+3 -3)
📝 backend/open_webui/utils/chat.py (+2 -0)
📝 backend/open_webui/utils/middleware.py (+2 -1)
📝 backend/requirements.txt (+5 -5)
📝 package-lock.json (+2 -2)
📝 package.json (+1 -1)
📝 pyproject.toml (+12 -5)
📝 src/lib/apis/chats/index.ts (+38 -0)

...and 70 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/8246 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 1/1/2025 **Status:** ✅ Merged **Merged:** 1/5/2025 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`f1800e2`](https://github.com/open-webui/open-webui/commit/f1800e2853e9f896392ad2fe84c029bafe545998) build(deps): bump pyjwt[crypto] from 2.9.0 to 2.10.1 in /backend - [`236410c`](https://github.com/open-webui/open-webui/commit/236410cd9594be4ade0e9043a9addef58bde166c) build(deps): bump fpdf2 from 2.7.9 to 2.8.2 in /backend - [`5bb308a`](https://github.com/open-webui/open-webui/commit/5bb308a0983b15353f8ada4c7791deb8e454684f) build(deps): bump validators from 0.33.0 to 0.34.0 in /backend - [`b41c112`](https://github.com/open-webui/open-webui/commit/b41c1128c6259d78d0598e69af30f947c81b5490) build(deps): bump flask from 3.0.3 to 3.1.0 in /backend - [`7fb87dd`](https://github.com/open-webui/open-webui/commit/7fb87ddf99daa5d719e39c5834ee88efc09cc49d) build(deps): bump peewee from 3.17.6 to 3.17.8 in /backend - [`60fc24c`](https://github.com/open-webui/open-webui/commit/60fc24cd39270994fdbec481db317b70c788ad3e) refac: channel message input - [`085f483`](https://github.com/open-webui/open-webui/commit/085f48366b3a2876c88001b0b52fee7b396aa853) refac - [`80600db`](https://github.com/open-webui/open-webui/commit/80600dbe63cac8911e786ba72251641e776a75ad) Merge pull request #8241 from open-webui/dependabot/pip/backend/dev/pyjwt-crypto--2.10.1 - [`b69941c`](https://github.com/open-webui/open-webui/commit/b69941caf4b4c591f1ef0e49eedd279e0af7d942) Merge pull request #8242 from open-webui/dependabot/pip/backend/dev/fpdf2-2.8.2 - [`55fbc60`](https://github.com/open-webui/open-webui/commit/55fbc60ad3d338dabe115d17d37a9040fdb8cef2) Merge pull request #8244 from open-webui/dependabot/pip/backend/dev/flask-3.1.0 ### 📊 Changes **90 files changed** (+561 additions, -244 deletions) <details> <summary>View changed files</summary> ➕ `.github/workflows/codespell.yml` (+25 -0) 📝 `CHANGELOG.md` (+27 -0) 📝 `CODE_OF_CONDUCT.md` (+1 -1) 📝 `README.md` (+3 -1) 📝 `backend/open_webui/config.py` (+3 -0) 📝 `backend/open_webui/env.py` (+6 -1) 📝 `backend/open_webui/models/chats.py` (+2 -0) 📝 `backend/open_webui/models/messages.py` (+5 -3) 📝 `backend/open_webui/retrieval/vector/dbs/pgvector.py` (+38 -2) 📝 `backend/open_webui/retrieval/web/testdata/brave.json` (+1 -1) 📝 `backend/open_webui/routers/chats.py` (+24 -0) 📝 `backend/open_webui/routers/tasks.py` (+1 -1) 📝 `backend/open_webui/utils/auth.py` (+3 -3) 📝 `backend/open_webui/utils/chat.py` (+2 -0) 📝 `backend/open_webui/utils/middleware.py` (+2 -1) 📝 `backend/requirements.txt` (+5 -5) 📝 `package-lock.json` (+2 -2) 📝 `package.json` (+1 -1) 📝 `pyproject.toml` (+12 -5) 📝 `src/lib/apis/chats/index.ts` (+38 -0) _...and 70 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:58:21 -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#22192