[PR #4811] [MERGED] 0.3.16 #8367

Closed
opened 2025-11-11 17:52:03 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/4811
Author: @tjbck
Created: 8/22/2024
Status: Merged
Merged: 8/27/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • a53c2a8 fix: Pass all parsed options to ReconnectingPostgresqlDatabase
  • e63d577 fix: Decode URL-encoded characters in passwords
  • 510a0f3 chore(deps): bump langchain from 0.2.12 to 0.2.14 in /backend
  • ccf5bd1 chore(deps): bump unstructured from 0.15.5 to 0.15.7 in /backend
  • f5994e3 chore(deps): bump langfuse from 2.43.3 to 2.44.0 in /backend
  • ec075e2 Update catalan translation.json
  • 89ebbed fix: DeprecationWarning for datetime.utcnow() by using datetime.now(UTC)
  • abe36a3 Merge pull request #4803 from CJDaniel96/dev
  • 95d016d Merge pull request #4800 from aleixdorca/dev
  • ac8a16e Merge pull request #4787 from open-webui/dependabot/pip/backend/dev/langfuse-2.44.0

📊 Changes

104 files changed (+7096 additions, -3166 deletions)

View changed files

📝 .github/workflows/docker-build.yaml (+44 -28)
📝 CHANGELOG.md (+26 -0)
📝 backend/apps/audio/main.py (+6 -0)
📝 backend/apps/images/main.py (+4 -2)
📝 backend/apps/ollama/main.py (+26 -3)
📝 backend/apps/rag/main.py (+26 -3)
📝 backend/apps/rag/utils.py (+14 -10)
📝 backend/apps/webui/internal/db.py (+8 -21)
📝 backend/apps/webui/internal/wrappers.py (+4 -10)
📝 backend/apps/webui/main.py (+35 -29)
📝 backend/apps/webui/models/auths.py (+2 -2)
📝 backend/apps/webui/models/chats.py (+12 -9)
📝 backend/apps/webui/models/documents.py (+1 -1)
📝 backend/apps/webui/models/files.py (+8 -1)
📝 backend/apps/webui/models/functions.py (+1 -1)
📝 backend/apps/webui/models/models.py (+1 -1)
📝 backend/apps/webui/models/tags.py (+1 -1)
📝 backend/apps/webui/models/tools.py (+1 -1)
📝 backend/apps/webui/routers/auths.py (+5 -2)
📝 backend/apps/webui/routers/files.py (+8 -6)

...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/4811 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 8/22/2024 **Status:** ✅ Merged **Merged:** 8/27/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`a53c2a8`](https://github.com/open-webui/open-webui/commit/a53c2a8c6b362f20a944ddb9e5a34a9fd97b3b44) fix: Pass all parsed options to ReconnectingPostgresqlDatabase - [`e63d577`](https://github.com/open-webui/open-webui/commit/e63d5778a864d5a3118244b85c347877acc06890) fix: Decode URL-encoded characters in passwords - [`510a0f3`](https://github.com/open-webui/open-webui/commit/510a0f3a2fd62afa35f55e5f3c1c2273483157ba) chore(deps): bump langchain from 0.2.12 to 0.2.14 in /backend - [`ccf5bd1`](https://github.com/open-webui/open-webui/commit/ccf5bd149271b16b4aa2a90d1d98ad69591bbce1) chore(deps): bump unstructured from 0.15.5 to 0.15.7 in /backend - [`f5994e3`](https://github.com/open-webui/open-webui/commit/f5994e3a447fa9e213388a3dff286f91fb9e56a1) chore(deps): bump langfuse from 2.43.3 to 2.44.0 in /backend - [`ec075e2`](https://github.com/open-webui/open-webui/commit/ec075e26128fcf7d65616cabadbb6404397e45f7) Update catalan translation.json - [`89ebbed`](https://github.com/open-webui/open-webui/commit/89ebbed67b7a5d102e23ca2b61c24b320bb9003a) fix: DeprecationWarning for datetime.utcnow() by using datetime.now(UTC) - [`abe36a3`](https://github.com/open-webui/open-webui/commit/abe36a3e6745822b31dca7b0aca4ff00af93645d) Merge pull request #4803 from CJDaniel96/dev - [`95d016d`](https://github.com/open-webui/open-webui/commit/95d016dea45160643fb6c49c272b729c3d7124eb) Merge pull request #4800 from aleixdorca/dev - [`ac8a16e`](https://github.com/open-webui/open-webui/commit/ac8a16ec5bb803e02d4c40663e46606c9793a480) Merge pull request #4787 from open-webui/dependabot/pip/backend/dev/langfuse-2.44.0 ### 📊 Changes **104 files changed** (+7096 additions, -3166 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/docker-build.yaml` (+44 -28) 📝 `CHANGELOG.md` (+26 -0) 📝 `backend/apps/audio/main.py` (+6 -0) 📝 `backend/apps/images/main.py` (+4 -2) 📝 `backend/apps/ollama/main.py` (+26 -3) 📝 `backend/apps/rag/main.py` (+26 -3) 📝 `backend/apps/rag/utils.py` (+14 -10) 📝 `backend/apps/webui/internal/db.py` (+8 -21) 📝 `backend/apps/webui/internal/wrappers.py` (+4 -10) 📝 `backend/apps/webui/main.py` (+35 -29) 📝 `backend/apps/webui/models/auths.py` (+2 -2) 📝 `backend/apps/webui/models/chats.py` (+12 -9) 📝 `backend/apps/webui/models/documents.py` (+1 -1) 📝 `backend/apps/webui/models/files.py` (+8 -1) 📝 `backend/apps/webui/models/functions.py` (+1 -1) 📝 `backend/apps/webui/models/models.py` (+1 -1) 📝 `backend/apps/webui/models/tags.py` (+1 -1) 📝 `backend/apps/webui/models/tools.py` (+1 -1) 📝 `backend/apps/webui/routers/auths.py` (+5 -2) 📝 `backend/apps/webui/routers/files.py` (+8 -6) _...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 2025-11-11 17:52:03 -06: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#8367