[PR #9904] [CLOSED] Dev update #45483

Closed
opened 2026-04-29 19:53:08 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/9904
Author: @finnyung
Created: 2/13/2025
Status: Closed

Base: mainHead: dev


📝 Commits (10+)

📊 Changes

26 files changed (+330 additions, -338 deletions)

View changed files

.github/workflows/build-release.yml (+0 -72)
.github/workflows/deploy-to-hf-spaces.yml (+0 -63)
.github/workflows/format-backend.yaml (+0 -39)
.github/workflows/release-pypi.yml (+0 -32)
📝 backend/.dockerignore (+2 -2)
📝 backend/.gitignore (+2 -1)
📝 backend/open_webui/config.py (+1 -1)
📝 backend/open_webui/env.py (+3 -3)
📝 backend/open_webui/retrieval/web/bing.py (+39 -36)
📝 backend/open_webui/retrieval/web/main.py (+21 -5)
📝 backend/open_webui/retrieval/web/utils.py (+178 -22)
📝 backend/open_webui/routers/retrieval.py (+47 -48)
📝 backend/requirements.txt (+9 -0)
📝 pyproject.toml (+1 -1)
📝 src/app.html (+4 -4)
📝 src/lib/components/chat/MessageInput.svelte (+2 -2)
📝 src/lib/components/common/Collapsible.svelte (+1 -1)
📝 src/lib/constants.ts (+1 -1)
📝 static/favicon.png (+0 -0)
📝 static/favicon/favicon.ico (+0 -0)

...and 6 more files

📄 Description

Pull Request Checklist

Note to first-time contributors: Please open a discussion post in Discussions and describe your changes before submitting a pull request.

Before submitting, make sure you've checked the following:

  • Target branch: Please verify that the pull request targets the dev branch.
  • Description: Provide a concise description of the changes made in this pull request.
  • Changelog: Ensure a changelog entry following the format of Keep a Changelog is added at the bottom of the PR description.
  • Documentation: Have you updated relevant documentation Open WebUI Docs, or other documentation sources?
  • Dependencies: Are there any new dependencies? Have you updated the dependency versions in the documentation?
  • Testing: Have you written and run sufficient tests for validating the changes?
  • Code review: Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards?
  • Prefix: To cleary categorize this pull request, prefix the pull request title, using one of the following:
    • BREAKING CHANGE: Significant changes that may affect compatibility
    • build: Changes that affect the build system or external dependencies
    • ci: Changes to our continuous integration processes or workflows
    • chore: Refactor, cleanup, or other non-functional code changes
    • docs: Documentation update or addition
    • feat: Introduces a new feature or enhancement to the codebase
    • fix: Bug fix or error correction
    • i18n: Internationalization or localization changes
    • perf: Performance improvement
    • refactor: Code restructuring for better maintainability, readability, or scalability
    • style: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.)
    • test: Adding missing tests or correcting existing tests
    • WIP: Work in progress, a temporary label for incomplete or ongoing work

Changelog Entry

Description

  • [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)]

Added

  • [List any new features, functionalities, or additions]

Changed

  • [List any changes, updates, refactorings, or optimizations]

Deprecated

  • [List any deprecated functionality or features that have been removed]

Removed

  • [List any removed features, files, or functionalities]

Fixed

  • [List any fixes, corrections, or bug fixes]

Security

  • [List any new or updated security-related changes, including vulnerability fixes]

Breaking Changes

  • BREAKING CHANGE: [List any breaking changes affecting compatibility or functionality]

Additional Information

  • [Insert any additional context, notes, or explanations for the changes]
    • [Reference any related issues, commits, or other relevant information]

Screenshots or Videos

  • [Attach any relevant screenshots or videos demonstrating the changes]

🔄 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/9904 **Author:** [@finnyung](https://github.com/finnyung) **Created:** 2/13/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`db7109c`](https://github.com/open-webui/open-webui/commit/db7109c916b3e26b19548785bad34c9c151ede6f) update - [`0738a86`](https://github.com/open-webui/open-webui/commit/0738a868c80488d39c269a62c8e30633489e2e2c) update - [`bbc8c5f`](https://github.com/open-webui/open-webui/commit/bbc8c5f94cd4f07b32107a4fd8b518414dfe6c37) update - [`5a2e472`](https://github.com/open-webui/open-webui/commit/5a2e4728bdcf1d830ee1bda7fbfa0fcaf1c4eecf) update - [`12d4248`](https://github.com/open-webui/open-webui/commit/12d42488a92322032fcd607734fad48f460a62b8) update - [`025c6ed`](https://github.com/open-webui/open-webui/commit/025c6edcd65ad42e7fe87db862dabbf1e7584761) update - [`eba77af`](https://github.com/open-webui/open-webui/commit/eba77afe31861792af0b3b59ab091919f480f9ec) update - [`d127e9d`](https://github.com/open-webui/open-webui/commit/d127e9d797a523110cce41094f46957001d53161) update - [`ebfba69`](https://github.com/open-webui/open-webui/commit/ebfba6981b3978d36d4af5ed33aabb3972ed138d) Update favicon.svg - [`f8e4ebe`](https://github.com/open-webui/open-webui/commit/f8e4ebe361dc434358ed3cecfe1203e88dc7ac41) update ### 📊 Changes **26 files changed** (+330 additions, -338 deletions) <details> <summary>View changed files</summary> ➖ `.github/workflows/build-release.yml` (+0 -72) ➖ `.github/workflows/deploy-to-hf-spaces.yml` (+0 -63) ➖ `.github/workflows/format-backend.yaml` (+0 -39) ➖ `.github/workflows/release-pypi.yml` (+0 -32) 📝 `backend/.dockerignore` (+2 -2) 📝 `backend/.gitignore` (+2 -1) 📝 `backend/open_webui/config.py` (+1 -1) 📝 `backend/open_webui/env.py` (+3 -3) 📝 `backend/open_webui/retrieval/web/bing.py` (+39 -36) 📝 `backend/open_webui/retrieval/web/main.py` (+21 -5) 📝 `backend/open_webui/retrieval/web/utils.py` (+178 -22) 📝 `backend/open_webui/routers/retrieval.py` (+47 -48) 📝 `backend/requirements.txt` (+9 -0) 📝 `pyproject.toml` (+1 -1) 📝 `src/app.html` (+4 -4) 📝 `src/lib/components/chat/MessageInput.svelte` (+2 -2) 📝 `src/lib/components/common/Collapsible.svelte` (+1 -1) 📝 `src/lib/constants.ts` (+1 -1) 📝 `static/favicon.png` (+0 -0) 📝 `static/favicon/favicon.ico` (+0 -0) _...and 6 more files_ </details> ### 📄 Description # Pull Request Checklist ### Note to first-time contributors: Please open a discussion post in [Discussions](https://github.com/open-webui/open-webui/discussions) and describe your changes before submitting a pull request. **Before submitting, make sure you've checked the following:** - [ ] **Target branch:** Please verify that the pull request targets the `dev` branch. - [ ] **Description:** Provide a concise description of the changes made in this pull request. - [ ] **Changelog:** Ensure a changelog entry following the format of [Keep a Changelog](https://keepachangelog.com/) is added at the bottom of the PR description. - [ ] **Documentation:** Have you updated relevant documentation [Open WebUI Docs](https://github.com/open-webui/docs), or other documentation sources? - [ ] **Dependencies:** Are there any new dependencies? Have you updated the dependency versions in the documentation? - [ ] **Testing:** Have you written and run sufficient tests for validating the changes? - [ ] **Code review:** Have you performed a self-review of your code, addressing any coding standard issues and ensuring adherence to the project's coding standards? - [ ] **Prefix:** To cleary categorize this pull request, prefix the pull request title, using one of the following: - **BREAKING CHANGE**: Significant changes that may affect compatibility - **build**: Changes that affect the build system or external dependencies - **ci**: Changes to our continuous integration processes or workflows - **chore**: Refactor, cleanup, or other non-functional code changes - **docs**: Documentation update or addition - **feat**: Introduces a new feature or enhancement to the codebase - **fix**: Bug fix or error correction - **i18n**: Internationalization or localization changes - **perf**: Performance improvement - **refactor**: Code restructuring for better maintainability, readability, or scalability - **style**: Changes that do not affect the meaning of the code (white-space, formatting, missing semi-colons, etc.) - **test**: Adding missing tests or correcting existing tests - **WIP**: Work in progress, a temporary label for incomplete or ongoing work # Changelog Entry ### Description - [Concisely describe the changes made in this pull request, including any relevant motivation and impact (e.g., fixing a bug, adding a feature, or improving performance)] ### Added - [List any new features, functionalities, or additions] ### Changed - [List any changes, updates, refactorings, or optimizations] ### Deprecated - [List any deprecated functionality or features that have been removed] ### Removed - [List any removed features, files, or functionalities] ### Fixed - [List any fixes, corrections, or bug fixes] ### Security - [List any new or updated security-related changes, including vulnerability fixes] ### Breaking Changes - **BREAKING CHANGE**: [List any breaking changes affecting compatibility or functionality] --- ### Additional Information - [Insert any additional context, notes, or explanations for the changes] - [Reference any related issues, commits, or other relevant information] ### Screenshots or Videos - [Attach any relevant screenshots or videos demonstrating the changes] --- <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-29 19:53:08 -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#45483