[PR #14666] [CLOSED] Bugfix/fix migration scripts #10341

Closed
opened 2025-11-11 19:02:20 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/14666
Author: @philszalay
Created: 6/4/2025
Status: Closed

Base: mainHead: bugfix/fix_migration_scripts


📝 Commits (10+)

  • 52b9ba2 Fix bug with assistant editing for admin
  • d99e1be Replace name with first and last name
  • 183db1b Update first and last name on prompts
  • 18850f8 Add login screen
  • 300c9ba Add mockup for reset password pages
  • 8722175 Add four steps for company registration
  • fa5dd98 Add icon for show password
  • df2a777 Add styles for progress bar company creation
  • 2a08e15 Bugfix: Regular users unable to see/use own assistants
  • 8e9d6c1 Bugfix: 500 Error on Shared Chat Message

📊 Changes

369 files changed (+26482 additions, -5251 deletions)

View changed files

.github/workflows/build-release.yml (+0 -72)
.github/workflows/codespell.disabled (+0 -25)
.github/workflows/deploy-to-hf-spaces.yml (+0 -63)
.github/workflows/docker-build-push.yml (+209 -0)
.github/workflows/docker-build.yaml (+0 -477)
.github/workflows/format-backend.yaml (+0 -39)
.github/workflows/format-build-frontend.yaml (+0 -57)
.github/workflows/integration-test.disabled (+0 -255)
.github/workflows/lint-backend.disabled (+0 -27)
.github/workflows/lint-frontend.disabled (+0 -21)
.github/workflows/release-pypi.yml (+0 -32)
📝 Dockerfile (+4 -1)
backend/beyond_the_loop/dev.sh (+12 -0)
📝 backend/beyond_the_loop/models/auths.py (+51 -9)
backend/beyond_the_loop/models/companies.py (+328 -0)
backend/beyond_the_loop/models/completions.py (+87 -0)
📝 backend/beyond_the_loop/models/groups.py (+7 -11)
backend/beyond_the_loop/models/model_costs.py (+87 -0)
📝 backend/beyond_the_loop/models/models.py (+116 -38)
backend/beyond_the_loop/models/prompts.py (+268 -0)

...and 80 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 to validate 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 clearly 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]

Contributor License Agreement

By submitting this pull request, I confirm that I have read and fully agree to the Contributor License Agreement (CLA), and I am providing my contributions under its terms.


🔄 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/14666 **Author:** [@philszalay](https://github.com/philszalay) **Created:** 6/4/2025 **Status:** ❌ Closed **Base:** `main` ← **Head:** `bugfix/fix_migration_scripts` --- ### 📝 Commits (10+) - [`52b9ba2`](https://github.com/open-webui/open-webui/commit/52b9ba28eced01fbec1ce83fb606130a1b6d0aa6) Fix bug with assistant editing for admin - [`d99e1be`](https://github.com/open-webui/open-webui/commit/d99e1be881c0e4e115f7609060b23d4fd5efccb4) Replace name with first and last name - [`183db1b`](https://github.com/open-webui/open-webui/commit/183db1be02d3270e09f843973a9541796d19ef90) Update first and last name on prompts - [`18850f8`](https://github.com/open-webui/open-webui/commit/18850f8a8773711339d4aa39de5df4914cb0a96e) Add login screen - [`300c9ba`](https://github.com/open-webui/open-webui/commit/300c9ba6c9bb6f5d3ba24bdf377539aa1c858bf4) Add mockup for reset password pages - [`8722175`](https://github.com/open-webui/open-webui/commit/87221752a15b85d115328ccb1ee15e031d881677) Add four steps for company registration - [`fa5dd98`](https://github.com/open-webui/open-webui/commit/fa5dd98ba9965d4768b9083b450a99460edd8424) Add icon for show password - [`df2a777`](https://github.com/open-webui/open-webui/commit/df2a777f826271d04c6d258c246334a8e248473d) Add styles for progress bar company creation - [`2a08e15`](https://github.com/open-webui/open-webui/commit/2a08e150532b1956aded9e940d0cb86e6a034b34) Bugfix: Regular users unable to see/use own assistants - [`8e9d6c1`](https://github.com/open-webui/open-webui/commit/8e9d6c1c2d8bd925168a614edfd15bc756d9f24b) Bugfix: 500 Error on Shared Chat Message ### 📊 Changes **369 files changed** (+26482 additions, -5251 deletions) <details> <summary>View changed files</summary> ➖ `.github/workflows/build-release.yml` (+0 -72) ➖ `.github/workflows/codespell.disabled` (+0 -25) ➖ `.github/workflows/deploy-to-hf-spaces.yml` (+0 -63) ➕ `.github/workflows/docker-build-push.yml` (+209 -0) ➖ `.github/workflows/docker-build.yaml` (+0 -477) ➖ `.github/workflows/format-backend.yaml` (+0 -39) ➖ `.github/workflows/format-build-frontend.yaml` (+0 -57) ➖ `.github/workflows/integration-test.disabled` (+0 -255) ➖ `.github/workflows/lint-backend.disabled` (+0 -27) ➖ `.github/workflows/lint-frontend.disabled` (+0 -21) ➖ `.github/workflows/release-pypi.yml` (+0 -32) 📝 `Dockerfile` (+4 -1) ➕ `backend/beyond_the_loop/dev.sh` (+12 -0) 📝 `backend/beyond_the_loop/models/auths.py` (+51 -9) ➕ `backend/beyond_the_loop/models/companies.py` (+328 -0) ➕ `backend/beyond_the_loop/models/completions.py` (+87 -0) 📝 `backend/beyond_the_loop/models/groups.py` (+7 -11) ➕ `backend/beyond_the_loop/models/model_costs.py` (+87 -0) 📝 `backend/beyond_the_loop/models/models.py` (+116 -38) ➕ `backend/beyond_the_loop/models/prompts.py` (+268 -0) _...and 80 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 to validate 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 clearly 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] ### Contributor License Agreement By submitting this pull request, I confirm that I have read and fully agree to the [Contributor License Agreement (CLA)](/CONTRIBUTOR_LICENSE_AGREEMENT), and I am providing my contributions under its terms. --- <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:02:20 -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#10341