[PR #24492] [MERGED] 0.9.5 #98718

Closed
opened 2026-05-16 01:33:07 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/open-webui/open-webui/pull/24492
Author: @tjbck
Created: 5/9/2026
Status: Merged
Merged: 5/10/2026
Merged by: @tjbck

Base: mainHead: dev


📝 Commits (10+)

  • a0268e5 Merge pull request #24486 from Classic298/fix/notes-is-pinned-typeerror
  • 793e628 refac
  • 8854541 fix: prevent redirect-based SSRF in web-fetch and image-load call sites (#24491)
  • 2fa3b84 chore: bump
  • df42d96 refac
  • 2e71b3f chore: format
  • 69270e1 doc: changelog
  • 8a0018c fix: gate public sharing of calendars behind sharing.public_calendars permission (#24493)
  • 9918ab6 fix: gate public sharing of skills behind sharing.public_skills on create/update (#24494)
  • 203ec29 chore: remove unauthenticated dead-code GET /api/v1/retrieval/ status endpoint (#24497)

📊 Changes

109 files changed (+1058 additions, -355 deletions)

View changed files

📝 .github/pull_request_template.md (+1 -0)
📝 CHANGELOG.md (+36 -0)
📝 Dockerfile (+1 -1)
📝 backend/open_webui/config.py (+11 -0)
📝 backend/open_webui/env.py (+16 -0)
📝 backend/open_webui/main.py (+8 -4)
📝 backend/open_webui/models/chats.py (+68 -5)
📝 backend/open_webui/models/feedbacks.py (+4 -2)
📝 backend/open_webui/models/notes.py (+1 -1)
📝 backend/open_webui/retrieval/utils.py (+6 -1)
📝 backend/open_webui/retrieval/web/utils.py (+21 -2)
📝 backend/open_webui/routers/calendar.py (+26 -1)
📝 backend/open_webui/routers/channels.py (+41 -44)
📝 backend/open_webui/routers/chats.py (+11 -17)
📝 backend/open_webui/routers/folders.py (+15 -16)
📝 backend/open_webui/routers/images.py (+11 -3)
📝 backend/open_webui/routers/knowledge.py (+18 -0)
📝 backend/open_webui/routers/models.py (+22 -15)
📝 backend/open_webui/routers/notes.py (+4 -1)
📝 backend/open_webui/routers/retrieval.py (+5 -16)

...and 80 more files

📄 Description

No description provided


🔄 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/24492 **Author:** [@tjbck](https://github.com/tjbck) **Created:** 5/9/2026 **Status:** ✅ Merged **Merged:** 5/10/2026 **Merged by:** [@tjbck](https://github.com/tjbck) **Base:** `main` ← **Head:** `dev` --- ### 📝 Commits (10+) - [`a0268e5`](https://github.com/open-webui/open-webui/commit/a0268e51fc12c33b6df447bead4909ecd6733ebc) Merge pull request #24486 from Classic298/fix/notes-is-pinned-typeerror - [`793e628`](https://github.com/open-webui/open-webui/commit/793e628ac30c711f47ebe008ec2cf120488c4fa9) refac - [`8854541`](https://github.com/open-webui/open-webui/commit/88545415088e3eba8572711d444c6b914a9eb095) fix: prevent redirect-based SSRF in web-fetch and image-load call sites (#24491) - [`2fa3b84`](https://github.com/open-webui/open-webui/commit/2fa3b8424198ea143178b17d354e3b171283c926) chore: bump - [`df42d96`](https://github.com/open-webui/open-webui/commit/df42d96c95784b8abe430b935902e42c9ed15205) refac - [`2e71b3f`](https://github.com/open-webui/open-webui/commit/2e71b3fbb8b8434f91f0f8879f50a5b4c1b2f34f) chore: format - [`69270e1`](https://github.com/open-webui/open-webui/commit/69270e1c9e383059f13660e4247a7412c62b2d26) doc: changelog - [`8a0018c`](https://github.com/open-webui/open-webui/commit/8a0018cf96d98f6dc99523a1423aa2ef2c638392) fix: gate public sharing of calendars behind sharing.public_calendars permission (#24493) - [`9918ab6`](https://github.com/open-webui/open-webui/commit/9918ab62657378dc277441eddc93f0bcdefcd85c) fix: gate public sharing of skills behind sharing.public_skills on create/update (#24494) - [`203ec29`](https://github.com/open-webui/open-webui/commit/203ec29bafe3a8f753c83c028d9b0582cdacc837) chore: remove unauthenticated dead-code GET /api/v1/retrieval/ status endpoint (#24497) ### 📊 Changes **109 files changed** (+1058 additions, -355 deletions) <details> <summary>View changed files</summary> 📝 `.github/pull_request_template.md` (+1 -0) 📝 `CHANGELOG.md` (+36 -0) 📝 `Dockerfile` (+1 -1) 📝 `backend/open_webui/config.py` (+11 -0) 📝 `backend/open_webui/env.py` (+16 -0) 📝 `backend/open_webui/main.py` (+8 -4) 📝 `backend/open_webui/models/chats.py` (+68 -5) 📝 `backend/open_webui/models/feedbacks.py` (+4 -2) 📝 `backend/open_webui/models/notes.py` (+1 -1) 📝 `backend/open_webui/retrieval/utils.py` (+6 -1) 📝 `backend/open_webui/retrieval/web/utils.py` (+21 -2) 📝 `backend/open_webui/routers/calendar.py` (+26 -1) 📝 `backend/open_webui/routers/channels.py` (+41 -44) 📝 `backend/open_webui/routers/chats.py` (+11 -17) 📝 `backend/open_webui/routers/folders.py` (+15 -16) 📝 `backend/open_webui/routers/images.py` (+11 -3) 📝 `backend/open_webui/routers/knowledge.py` (+18 -0) 📝 `backend/open_webui/routers/models.py` (+22 -15) 📝 `backend/open_webui/routers/notes.py` (+4 -1) 📝 `backend/open_webui/routers/retrieval.py` (+5 -16) _...and 80 more files_ </details> ### 📄 Description _No description provided_ --- <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-16 01:33:07 -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#98718