[PR #17274] [CLOSED] Feature/frontend #11174

Closed
opened 2025-11-11 19:24:14 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/17274
Author: @cableman
Created: 9/8/2025
Status: Closed

Base: mainHead: feature/frontend


📝 Commits (10+)

  • ef5374a typo
  • 0bca4e2 refac: rename tools to external tools for clarity
  • 898826d Update dependabot.yml
  • be373e9 refac: dockerfile
  • 0ebe4f8 refac: conditional USE_PERMISSION_HARDENING
  • 9d80cc3 PKCE requires no secret, with no secret the login button does not ever show
  • d735b03 fix: handle unicode filenames in external document loader
  • 3111d1b refac
  • 1ca5ad4 Update translation.json (pt-BR)
  • 1d1a83b i18n: improve zh-CN translation

📊 Changes

143 files changed (+2063 additions, -1255 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/bug_report.yaml (+8 -5)
📝 .github/dependabot.yml (+0 -6)
📝 .github/workflows/build-release.yml (+1 -1)
📝 .github/workflows/deploy-to-hf-spaces.yml (+1 -1)
📝 .github/workflows/docker-build.yaml (+10 -10)
📝 .github/workflows/format-backend.yaml (+1 -1)
📝 .github/workflows/format-build-frontend.yaml (+2 -2)
📝 .github/workflows/release-pypi.yml (+1 -1)
📝 CHANGELOG.md (+1 -1)
📝 Dockerfile (+13 -7)
📝 backend/open_webui/config.py (+21 -2)
📝 backend/open_webui/main.py (+41 -7)
📝 backend/open_webui/models/files.py (+9 -0)
📝 backend/open_webui/models/folders.py (+15 -2)
📝 backend/open_webui/models/knowledge.py (+25 -5)
📝 backend/open_webui/models/models.py (+12 -3)
📝 backend/open_webui/models/notes.py (+3 -1)
📝 backend/open_webui/models/prompts.py (+12 -4)
📝 backend/open_webui/models/tools.py (+11 -3)
📝 backend/open_webui/retrieval/loaders/external_document.py (+2 -1)

...and 80 more files

📄 Description

Combination off:

As these adds code in the same place it is easier to resolved merge conflicts if they are combined


🔄 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/17274 **Author:** [@cableman](https://github.com/cableman) **Created:** 9/8/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `feature/frontend` --- ### 📝 Commits (10+) - [`ef5374a`](https://github.com/open-webui/open-webui/commit/ef5374a34e0d76ef787593b192c15755be8d52f9) typo - [`0bca4e2`](https://github.com/open-webui/open-webui/commit/0bca4e230ef276bec46889e3be036242ad11086f) refac: rename tools to external tools for clarity - [`898826d`](https://github.com/open-webui/open-webui/commit/898826dc22d90c4180ee466f378b6c3acefce72a) Update dependabot.yml - [`be373e9`](https://github.com/open-webui/open-webui/commit/be373e9fd42ac73b0302bdb487e16dbeae178b4e) refac: dockerfile - [`0ebe4f8`](https://github.com/open-webui/open-webui/commit/0ebe4f8f8490451ac8e85a4846f010854d9b54e5) refac: conditional USE_PERMISSION_HARDENING - [`9d80cc3`](https://github.com/open-webui/open-webui/commit/9d80cc3b2d39e5e986b53ba19d66379643e80645) PKCE requires no secret, with no secret the login button does not ever show - [`d735b03`](https://github.com/open-webui/open-webui/commit/d735b036fe4b3f05cf4eaf62249c277818fa8be5) fix: handle unicode filenames in external document loader - [`3111d1b`](https://github.com/open-webui/open-webui/commit/3111d1bf610a96eef849bf0ac73352aa812c3f9f) refac - [`1ca5ad4`](https://github.com/open-webui/open-webui/commit/1ca5ad47b12d780c5ccfd555eacbdcf97a9f794f) Update translation.json (pt-BR) - [`1d1a83b`](https://github.com/open-webui/open-webui/commit/1d1a83b75455b2c0a75f7faad5fea8b4c4a29522) i18n: improve zh-CN translation ### 📊 Changes **143 files changed** (+2063 additions, -1255 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/bug_report.yaml` (+8 -5) 📝 `.github/dependabot.yml` (+0 -6) 📝 `.github/workflows/build-release.yml` (+1 -1) 📝 `.github/workflows/deploy-to-hf-spaces.yml` (+1 -1) 📝 `.github/workflows/docker-build.yaml` (+10 -10) 📝 `.github/workflows/format-backend.yaml` (+1 -1) 📝 `.github/workflows/format-build-frontend.yaml` (+2 -2) 📝 `.github/workflows/release-pypi.yml` (+1 -1) 📝 `CHANGELOG.md` (+1 -1) 📝 `Dockerfile` (+13 -7) 📝 `backend/open_webui/config.py` (+21 -2) 📝 `backend/open_webui/main.py` (+41 -7) 📝 `backend/open_webui/models/files.py` (+9 -0) 📝 `backend/open_webui/models/folders.py` (+15 -2) 📝 `backend/open_webui/models/knowledge.py` (+25 -5) 📝 `backend/open_webui/models/models.py` (+12 -3) 📝 `backend/open_webui/models/notes.py` (+3 -1) 📝 `backend/open_webui/models/prompts.py` (+12 -4) 📝 `backend/open_webui/models/tools.py` (+11 -3) 📝 `backend/open_webui/retrieval/loaders/external_document.py` (+2 -1) _...and 80 more files_ </details> ### 📄 Description Combination off: * https://github.com/itk-dev/open-webui/pull/30 * https://github.com/itk-dev/open-webui/pull/31 _As these adds code in the same place it is easier to resolved merge conflicts if they are combined_ --- <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 19:24:14 -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#11174