[PR #7180] [MERGED] 0.4.3 #8818

Closed
opened 2025-11-11 18:06:47 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/7180
Author: @tjbck
Created: 11/21/2024
Status: Merged
Merged: 11/22/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

82 files changed (+2052 additions, -1230 deletions)

View changed files

📝 CHANGELOG.md (+17 -0)
📝 backend/open_webui/apps/ollama/main.py (+4 -2)
📝 backend/open_webui/apps/openai/main.py (+6 -0)
📝 backend/open_webui/apps/retrieval/main.py (+45 -11)
📝 backend/open_webui/apps/retrieval/utils.py (+7 -27)
backend/open_webui/apps/retrieval/web/mojeek.py (+40 -0)
📝 backend/open_webui/apps/webui/routers/auths.py (+14 -4)
backend/open_webui/apps/webui/routers/documents.py (+0 -155)
📝 backend/open_webui/apps/webui/routers/files.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/tools.py (+25 -29)
📝 backend/open_webui/config.py (+27 -10)
📝 backend/open_webui/main.py (+67 -36)
backend/open_webui/utils/schemas.py (+0 -112)
📝 backend/open_webui/utils/tools.py (+79 -88)
📝 package-lock.json (+943 -16)
📝 package.json (+8 -0)
📝 src/app.css (+72 -5)
📝 src/lib/apis/streaming/index.ts (+4 -4)
📝 src/lib/components/admin/Settings/Connections/OpenAIConnection.svelte (+1 -1)
📝 src/lib/components/admin/Settings/Models.svelte (+1 -1)

...and 62 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/7180 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 11/21/2024 **Status:** ✅ Merged **Merged:** 11/22/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`b7d730e`](https://github.com/open-webui/open-webui/commit/b7d730e244a6c08612a1b327a3aad3a6700721f3) add mojeek as websearch option - [`e30c5e6`](https://github.com/open-webui/open-webui/commit/e30c5e628c69884e7baf40a224f047836f87e471) refac: rich text input - [`aca06f9`](https://github.com/open-webui/open-webui/commit/aca06f92e8178d7610dd1c3485e5ad1259a2453a) enh: rich text input - [`c5cd1e4`](https://github.com/open-webui/open-webui/commit/c5cd1e4403edff3d4d69d00d6fa7b7ff988317a2) refac: rich text input - [`6088acf`](https://github.com/open-webui/open-webui/commit/6088acf36dea664b2fcc25687b5cbac63cd20236) refac: styling - [`c03cae8`](https://github.com/open-webui/open-webui/commit/c03cae811da97c683240afd9536bdf7894007099) Updated Irish translations - [`3dfea83`](https://github.com/open-webui/open-webui/commit/3dfea834ca44d0a6ba32c8d29ab7cf9d53a85140) Merge branch 'dev' of https://github.com/open-webui/open-webui into dev - [`b1237cf`](https://github.com/open-webui/open-webui/commit/b1237cf389e23b49d5e622258a37abd328687ae5) Fixed security vulnerability: now LDAP password hashes are not stored, same as trusted header auth. - [`b9e637e`](https://github.com/open-webui/open-webui/commit/b9e637ee2bf5ed82c02626a5f87477780e389b0a) Now ENABLE_LOGIN_FORM=False disabling only email form. - [`d16b09b`](https://github.com/open-webui/open-webui/commit/d16b09bee5d1421f213afae966ddb955dd6e3078) Merge branch 'open-webui:main' into main ### 📊 Changes **82 files changed** (+2052 additions, -1230 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+17 -0) 📝 `backend/open_webui/apps/ollama/main.py` (+4 -2) 📝 `backend/open_webui/apps/openai/main.py` (+6 -0) 📝 `backend/open_webui/apps/retrieval/main.py` (+45 -11) 📝 `backend/open_webui/apps/retrieval/utils.py` (+7 -27) ➕ `backend/open_webui/apps/retrieval/web/mojeek.py` (+40 -0) 📝 `backend/open_webui/apps/webui/routers/auths.py` (+14 -4) ➖ `backend/open_webui/apps/webui/routers/documents.py` (+0 -155) 📝 `backend/open_webui/apps/webui/routers/files.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/tools.py` (+25 -29) 📝 `backend/open_webui/config.py` (+27 -10) 📝 `backend/open_webui/main.py` (+67 -36) ➖ `backend/open_webui/utils/schemas.py` (+0 -112) 📝 `backend/open_webui/utils/tools.py` (+79 -88) 📝 `package-lock.json` (+943 -16) 📝 `package.json` (+8 -0) 📝 `src/app.css` (+72 -5) 📝 `src/lib/apis/streaming/index.ts` (+4 -4) 📝 `src/lib/components/admin/Settings/Connections/OpenAIConnection.svelte` (+1 -1) 📝 `src/lib/components/admin/Settings/Models.svelte` (+1 -1) _...and 62 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 18:06:47 -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#8818