[PR #5072] [CLOSED] Update to new version #44671

Closed
opened 2026-04-29 18:50:45 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/5072
Author: @m-hoseyny
Created: 9/1/2024
Status: Closed

Base: mainHead: main


📝 Commits (10+)

📊 Changes

34 files changed (+927 additions, -200 deletions)

View changed files

📝 backend/apps/openai/main.py (+1 -0)
📝 backend/apps/webui/main.py (+2 -4)
📝 backend/apps/webui/models/auths.py (+8 -0)
📝 backend/apps/webui/routers/auths.py (+3 -0)
📝 backend/apps/webui/routers/chats.py (+34 -12)
📝 backend/apps/webui/routers/users.py (+2 -0)
📝 backend/config.py (+5 -4)
docker-compose.dev.yaml (+100 -0)
docker-compose.pipeline.yaml (+16 -0)
matn.pipeline.big.py (+126 -0)
matn.pipeline.py (+140 -0)
matn.pipeline.small.py (+56 -0)
pipelines/matn.pipeline.big.py (+121 -0)
pipelines/matn.pipeline.big/valves.json (+1 -0)
pipelines/matn.pipeline.small.py (+56 -0)
pipelines/matn.pipeline.small/valves.json (+1 -0)
📝 src/app.html (+2 -2)
📝 src/lib/apis/chats/index.ts (+23 -1)
📝 src/lib/apis/users/index.ts (+2 -0)
📝 src/lib/components/chat/Chat.svelte (+18 -2)

...and 14 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/5072 **Author:** [@m-hoseyny](https://github.com/m-hoseyny) **Created:** 9/1/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (10+) - [`447846e`](https://github.com/open-webui/open-webui/commit/447846e21f8124b9d0b8a58bc76e3c92fe66d7ce) feat: dev env + nav bar - [`e49f41b`](https://github.com/open-webui/open-webui/commit/e49f41b41145ad0ba1f6976e40d6bf7cc549ece7) Merge branch 'open-webui:main' into main - [`36b901a`](https://github.com/open-webui/open-webui/commit/36b901a35899071e76f903c6634eaf70401fde70) feat: Charge added [WIP] - [`46655de`](https://github.com/open-webui/open-webui/commit/46655de9b3f87d67d34a039dff1095e7a05f9973) Merge branch 'open-webui:main' into main - [`9624818`](https://github.com/open-webui/open-webui/commit/9624818b3f0942b8ace0ba1c0f08535d7460e7d2) fix: chat.matn.ai - [`b887667`](https://github.com/open-webui/open-webui/commit/b887667709bcad4b6613fd907fa3dd2fe53f006d) fix: traefik - [`0274ba7`](https://github.com/open-webui/open-webui/commit/0274ba7578fc16b61d83db5596f0cfc60d4074a4) fix: usage of treafik - [`a87e0fd`](https://github.com/open-webui/open-webui/commit/a87e0fde47a5245e589b25932a057603c557d7a2) fix: usage of treafik - [`2cb6e73`](https://github.com/open-webui/open-webui/commit/2cb6e73fe1409352154089df846a8d521a9bf910) fix: usage of treafik - [`fabaa4a`](https://github.com/open-webui/open-webui/commit/fabaa4ae5838989b42633d1d066e136579971ed8) fix: usage of treafik ### 📊 Changes **34 files changed** (+927 additions, -200 deletions) <details> <summary>View changed files</summary> 📝 `backend/apps/openai/main.py` (+1 -0) 📝 `backend/apps/webui/main.py` (+2 -4) 📝 `backend/apps/webui/models/auths.py` (+8 -0) 📝 `backend/apps/webui/routers/auths.py` (+3 -0) 📝 `backend/apps/webui/routers/chats.py` (+34 -12) 📝 `backend/apps/webui/routers/users.py` (+2 -0) 📝 `backend/config.py` (+5 -4) ➕ `docker-compose.dev.yaml` (+100 -0) ➕ `docker-compose.pipeline.yaml` (+16 -0) ➕ `matn.pipeline.big.py` (+126 -0) ➕ `matn.pipeline.py` (+140 -0) ➕ `matn.pipeline.small.py` (+56 -0) ➕ `pipelines/matn.pipeline.big.py` (+121 -0) ➕ `pipelines/matn.pipeline.big/valves.json` (+1 -0) ➕ `pipelines/matn.pipeline.small.py` (+56 -0) ➕ `pipelines/matn.pipeline.small/valves.json` (+1 -0) 📝 `src/app.html` (+2 -2) 📝 `src/lib/apis/chats/index.ts` (+23 -1) 📝 `src/lib/apis/users/index.ts` (+2 -0) 📝 `src/lib/components/chat/Chat.svelte` (+18 -2) _...and 14 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 18:50:45 -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#44671