Skip to content

Commit 8920bf2

Browse files
authored
Merge pull request open-webui#17528 from open-webui/dev
0.6.30
2 parents dddd1e4 + b55a38e commit 8920bf2

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [0.6.30] - 2025-09-17
9+
10+
### Added
11+
12+
- 🔑 Microsoft Entra ID authentication type support was added for Azure OpenAI connections, enabling enhanced security and streamlined authentication workflows.
13+
14+
### Fixed
15+
16+
- ☁️ OneDrive integration was fixed after recent breakage, restoring reliable account connectivity and file access.
17+
818
## [0.6.29] - 2025-09-17
919

1020
### Added

backend/open_webui/main.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -110,9 +110,6 @@
110110
OLLAMA_API_CONFIGS,
111111
# OpenAI
112112
ENABLE_OPENAI_API,
113-
ONEDRIVE_CLIENT_ID,
114-
ONEDRIVE_SHAREPOINT_URL,
115-
ONEDRIVE_SHAREPOINT_TENANT_ID,
116113
OPENAI_API_BASE_URLS,
117114
OPENAI_API_KEYS,
118115
OPENAI_API_CONFIGS,
@@ -303,14 +300,16 @@
303300
GOOGLE_PSE_ENGINE_ID,
304301
GOOGLE_DRIVE_CLIENT_ID,
305302
GOOGLE_DRIVE_API_KEY,
303+
ENABLE_ONEDRIVE_INTEGRATION,
306304
ONEDRIVE_CLIENT_ID,
307305
ONEDRIVE_SHAREPOINT_URL,
308306
ONEDRIVE_SHAREPOINT_TENANT_ID,
307+
ENABLE_ONEDRIVE_PERSONAL,
308+
ENABLE_ONEDRIVE_BUSINESS,
309309
ENABLE_RAG_HYBRID_SEARCH,
310310
ENABLE_RAG_LOCAL_WEB_FETCH,
311311
ENABLE_WEB_LOADER_SSL_VERIFICATION,
312312
ENABLE_GOOGLE_DRIVE_INTEGRATION,
313-
ENABLE_ONEDRIVE_INTEGRATION,
314313
UPLOAD_DIR,
315314
EXTERNAL_WEB_SEARCH_URL,
316315
EXTERNAL_WEB_SEARCH_API_KEY,
@@ -1701,8 +1700,8 @@ async def get_app_config(request: Request):
17011700
"enable_onedrive_integration": app.state.config.ENABLE_ONEDRIVE_INTEGRATION,
17021701
**(
17031702
{
1704-
"enable_onedrive_personal": app.state.config.ENABLE_ONEDRIVE_PERSONAL,
1705-
"enable_onedrive_business": app.state.config.ENABLE_ONEDRIVE_BUSINESS,
1703+
"enable_onedrive_personal": ENABLE_ONEDRIVE_PERSONAL,
1704+
"enable_onedrive_business": ENABLE_ONEDRIVE_BUSINESS,
17061705
}
17071706
if app.state.config.ENABLE_ONEDRIVE_INTEGRATION
17081707
else {}

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "open-webui",
3-
"version": "0.6.29",
3+
"version": "0.6.30",
44
"private": true,
55
"scripts": {
66
"dev": "npm run pyodide:fetch && vite dev --host",

0 commit comments

Comments
 (0)