[PR #7796] [CLOSED] Dev #93147

Closed
opened 2026-05-15 18:51:06 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/7796
Author: @snehinsen
Created: 12/11/2024
Status: Closed

Base: mainHead: dev


📝 Commits (10+)

  • d42de65 Add OAUTH_ALLOWED_DOMAINS for ability to restrict from which e-mail domains can users sign-up via OAuth
  • d5ce85f feat: implement OAuth logout functionality for keyclock to terminate sso session
  • 9918ec6 feat: update signout functionality to use OpenID configuration for logout URL and remove the logout variable from config
  • 48d604a feat: enable OAuth signup configuration for signout functionality
  • 1439f68 enh: ollama /v1/completion endpoint support
  • 8dcee6b refac: pdf
  • 899424b feat: refactor signout functionality to use aiohttp for OpenID configuration retrieval
  • b825947 feat: add kagi
  • 9c554db add ollama ps endpoint
  • 1dadfa9 Update Finnish translations in translation.json file

📊 Changes

41 files changed (+1031 additions, -781 deletions)

View changed files

📝 backend/open_webui/apps/audio/main.py (+1 -1)
📝 backend/open_webui/apps/images/main.py (+2 -2)
📝 backend/open_webui/apps/ollama/main.py (+101 -2)
📝 backend/open_webui/apps/openai/main.py (+1 -1)
📝 backend/open_webui/apps/retrieval/main.py (+20 -3)
backend/open_webui/apps/retrieval/web/kagi.py (+50 -0)
📝 backend/open_webui/apps/socket/main.py (+1 -1)
📝 backend/open_webui/apps/webui/models/auths.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/auths.py (+31 -3)
📝 backend/open_webui/apps/webui/routers/chats.py (+1 -2)
📝 backend/open_webui/apps/webui/routers/configs.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/evaluations.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/files.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/folders.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/functions.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/groups.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/knowledge.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/memories.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/models.py (+1 -1)
📝 backend/open_webui/apps/webui/routers/prompts.py (+1 -1)

...and 21 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:

  • [x ] 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.
  • [x ] 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?
  • [x ] Testing: Have you written and run sufficient tests for validating the changes?
  • [ x] 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

Replaced all instances of

<input
	list="..."
	class="..."
	bind:value={...}
	placeholder="PLACEHOLDER"
/>

<datalist id="...">
	...
</datalist>

with

<select
	class="..."
	bind:value={...}
>
	<option value="" disabled selected>.PLACEHOLDER</option>
	// OPTIONS ITERTED HERE
</select>

Changed

A simple UI edit for the way dropdowns for STT and TTS work, and made API key for Elevenlabs a SensitiveInput for security

Note

This PR was closed previously, but for an unclear reason, if the same is to happen here please explain theroughly the reasoning as to why the simple UI change is an issue.


🔄 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/7796 **Author:** [@snehinsen](https://github.com/snehinsen) **Created:** 12/11/2024 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`d42de65`](https://github.com/open-webui/open-webui/commit/d42de65298df73ae58957c7cd0b79e2f4603735f) Add OAUTH_ALLOWED_DOMAINS for ability to restrict from which e-mail domains can users sign-up via OAuth - [`d5ce85f`](https://github.com/open-webui/open-webui/commit/d5ce85f34a3578f393c32b6d6b1adfcde65dad45) feat: implement OAuth logout functionality for keyclock to terminate sso session - [`9918ec6`](https://github.com/open-webui/open-webui/commit/9918ec6246f8f6e20fd13389155b44ae51b33758) feat: update signout functionality to use OpenID configuration for logout URL and remove the logout variable from config - [`48d604a`](https://github.com/open-webui/open-webui/commit/48d604a525be76add87319ac4a8764aef173808f) feat: enable OAuth signup configuration for signout functionality - [`1439f68`](https://github.com/open-webui/open-webui/commit/1439f6862d3dc47e775ab659ade9dd55b174d2fa) enh: ollama `/v1/completion` endpoint support - [`8dcee6b`](https://github.com/open-webui/open-webui/commit/8dcee6b6ed4833d58e521b15a7f2ec93464cc45e) refac: pdf - [`899424b`](https://github.com/open-webui/open-webui/commit/899424b3716d7c48ca0c2e3110b72e570dfc91ac) feat: refactor signout functionality to use aiohttp for OpenID configuration retrieval - [`b825947`](https://github.com/open-webui/open-webui/commit/b825947745eb93acd5729e7d72ed70104058805d) feat: add kagi - [`9c554db`](https://github.com/open-webui/open-webui/commit/9c554db37c5b485fc4f3b9ae7285ee3af852923c) add ollama ps endpoint - [`1dadfa9`](https://github.com/open-webui/open-webui/commit/1dadfa9f97a49612ac0a08ee0b4d47dbdfc1ba8d) Update Finnish translations in translation.json file ### 📊 Changes **41 files changed** (+1031 additions, -781 deletions) <details> <summary>View changed files</summary> 📝 `backend/open_webui/apps/audio/main.py` (+1 -1) 📝 `backend/open_webui/apps/images/main.py` (+2 -2) 📝 `backend/open_webui/apps/ollama/main.py` (+101 -2) 📝 `backend/open_webui/apps/openai/main.py` (+1 -1) 📝 `backend/open_webui/apps/retrieval/main.py` (+20 -3) ➕ `backend/open_webui/apps/retrieval/web/kagi.py` (+50 -0) 📝 `backend/open_webui/apps/socket/main.py` (+1 -1) 📝 `backend/open_webui/apps/webui/models/auths.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/auths.py` (+31 -3) 📝 `backend/open_webui/apps/webui/routers/chats.py` (+1 -2) 📝 `backend/open_webui/apps/webui/routers/configs.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/evaluations.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/files.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/folders.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/functions.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/groups.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/knowledge.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/memories.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/models.py` (+1 -1) 📝 `backend/open_webui/apps/webui/routers/prompts.py` (+1 -1) _...and 21 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:** - [x ] **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. - [x ] **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? - [x ] **Testing:** Have you written and run sufficient tests for validating the changes? - [ x] **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 Replaced all instances of ``` <input list="..." class="..." bind:value={...} placeholder="PLACEHOLDER" /> <datalist id="..."> ... </datalist> ``` with ``` <select class="..." bind:value={...} > <option value="" disabled selected>.PLACEHOLDER</option> // OPTIONS ITERTED HERE </select> ``` ### Changed A simple UI edit for the way dropdowns for STT and TTS work, and made API key for Elevenlabs a SensitiveInput for security ### Note This PR was closed previously, but for an unclear reason, if the same is to happen here please explain theroughly the reasoning as to why the simple UI change is an issue. --- <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-05-15 18:51:06 -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#93147