[PR #7896] [MERGED] 0.5.0 #8923

Closed
opened 2025-11-11 18:09:38 -06:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/7896
Author: @tjbck
Created: 12/16/2024
Status: Merged
Merged: 12/25/2024
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • 4adcd2b feat: Add comprehensive logging to Google Drive picker integration
  • 7dace30 fix: Update Google Drive file upload to use authorization headers
  • 7d55f9b fix: Adjust Google Drive file upload headers in processWeb call
  • 29efee8 feat: Improve Google Drive file upload with correct headers
  • b9499b4 fix: Resolve Google Drive Picker 404 error and improve configuration
  • b57f725 feat: Improve Google Drive file upload handling with better logging and error management
  • 9faa585 fix: Update Google Drive Picker to show files and improve file upload process
  • 9b939e9 refactor: Update Google Drive file upload to match local file upload flow
  • 4342411 feat: Add comprehensive logging for Google Drive file upload process
  • 1542cb4 fix: Improve Google Drive file upload handling and error logging

📊 Changes

251 files changed (+98337 additions, -8815 deletions)

View changed files

📝 CHANGELOG.md (+29 -0)
backend/open_webui/apps/audio/main.py (+0 -703)
backend/open_webui/apps/retrieval/main.py (+0 -1494)
backend/open_webui/apps/retrieval/vector/connector.py (+0 -22)
backend/open_webui/apps/webui/main.py (+0 -506)
📝 backend/open_webui/config.py (+121 -4)
📝 backend/open_webui/env.py (+1 -3)
backend/open_webui/functions.py (+316 -0)
📝 backend/open_webui/internal/db.py (+2 -2)
📝 backend/open_webui/internal/migrations/001_initial_schema.py (+0 -0)
📝 backend/open_webui/internal/migrations/002_add_local_sharing.py (+0 -0)
📝 backend/open_webui/internal/migrations/003_add_auth_api_key.py (+0 -0)
📝 backend/open_webui/internal/migrations/004_add_archived.py (+0 -0)
📝 backend/open_webui/internal/migrations/005_add_updated_at.py (+0 -0)
📝 backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py (+0 -0)
📝 backend/open_webui/internal/migrations/007_add_user_last_active_at.py (+0 -0)
📝 backend/open_webui/internal/migrations/008_add_memory.py (+0 -0)
📝 backend/open_webui/internal/migrations/009_add_models.py (+0 -0)
📝 backend/open_webui/internal/migrations/010_migrate_modelfiles_to_models.py (+0 -0)
📝 backend/open_webui/internal/migrations/011_add_user_settings.py (+0 -0)

...and 80 more files

📄 Description

#2647 #7683 #7810 #7929

  • Option to disable channels globally.

🔄 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/7896 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 12/16/2024 **Status:** ✅ Merged **Merged:** 12/25/2024 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`4adcd2b`](https://github.com/open-webui/open-webui/commit/4adcd2b64a8069dd0d3793d5c9445951eaf1f107) feat: Add comprehensive logging to Google Drive picker integration - [`7dace30`](https://github.com/open-webui/open-webui/commit/7dace30587d9bd065798c6aa795c855c12239c6c) fix: Update Google Drive file upload to use authorization headers - [`7d55f9b`](https://github.com/open-webui/open-webui/commit/7d55f9bc2ea2f0c242e6dd84e1a255996c94258c) fix: Adjust Google Drive file upload headers in processWeb call - [`29efee8`](https://github.com/open-webui/open-webui/commit/29efee8ede042ebec71934bced217d34cfbc1c09) feat: Improve Google Drive file upload with correct headers - [`b9499b4`](https://github.com/open-webui/open-webui/commit/b9499b43929d36a551c4a7a1b56f4583bb664fe0) fix: Resolve Google Drive Picker 404 error and improve configuration - [`b57f725`](https://github.com/open-webui/open-webui/commit/b57f7251a5ed2bed2e0afe6816be300b65fc20c2) feat: Improve Google Drive file upload handling with better logging and error management - [`9faa585`](https://github.com/open-webui/open-webui/commit/9faa5856f51675255a237b0fd8a16cf5b742cd31) fix: Update Google Drive Picker to show files and improve file upload process - [`9b939e9`](https://github.com/open-webui/open-webui/commit/9b939e99f272ad47a039d7579af1c94820c10e15) refactor: Update Google Drive file upload to match local file upload flow - [`4342411`](https://github.com/open-webui/open-webui/commit/434241149bf37332db551a9544056522f28f82c1) feat: Add comprehensive logging for Google Drive file upload process - [`1542cb4`](https://github.com/open-webui/open-webui/commit/1542cb486d9bcbb529a86286f353aa05971b9f24) fix: Improve Google Drive file upload handling and error logging ### 📊 Changes **251 files changed** (+98337 additions, -8815 deletions) <details> <summary>View changed files</summary> 📝 `CHANGELOG.md` (+29 -0) ➖ `backend/open_webui/apps/audio/main.py` (+0 -703) ➖ `backend/open_webui/apps/retrieval/main.py` (+0 -1494) ➖ `backend/open_webui/apps/retrieval/vector/connector.py` (+0 -22) ➖ `backend/open_webui/apps/webui/main.py` (+0 -506) 📝 `backend/open_webui/config.py` (+121 -4) 📝 `backend/open_webui/env.py` (+1 -3) ➕ `backend/open_webui/functions.py` (+316 -0) 📝 `backend/open_webui/internal/db.py` (+2 -2) 📝 `backend/open_webui/internal/migrations/001_initial_schema.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/002_add_local_sharing.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/003_add_auth_api_key.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/004_add_archived.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/005_add_updated_at.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/006_migrate_timestamps_and_charfields.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/007_add_user_last_active_at.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/008_add_memory.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/009_add_models.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/010_migrate_modelfiles_to_models.py` (+0 -0) 📝 `backend/open_webui/internal/migrations/011_add_user_settings.py` (+0 -0) _...and 80 more files_ </details> ### 📄 Description #2647 #7683 #7810 #7929 - [x] Option to disable channels globally. --- <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 18:09:39 -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#8923