[PR #5485] [MERGED] Pg 1.12.1 #5462

Closed
opened 2026-06-05 15:21:26 -04:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/Mintplex-Labs/anything-llm/pull/5485
Author: @timothycarambat
Created: 4/22/2026
Status: Merged
Merged: 4/22/2026
Merged by: @timothycarambat

Base: pgHead: pg-1.12.1


📝 Commits (10+)

  • 114204b fix: typo in contribution guidelines, update project metadata and pull_request_temp...md (#5010)
  • e4022d3 bump copyright year
  • eaa35eb feat: update light mode UI sidebar (#4996)
  • a961fb8 fix(frontend): fix event listener memory leak in useIsDisabled hook (#5027)
  • e025df9 feat: dedicated dark theme option with system preference support (#5007)
  • 87b7c44 fix cleanup pr workflow
  • 907bd09 Merge branch 'master' of github.com:Mintplex-Labs/anything-llm
  • d325b07 Implement new home page redesign (#4931)
  • c927eda fix: GitLab connector infinite loop and rate limit crash for large repos (#5021)
  • 55dc0da fix: add password character validation to onboarding single-user setup (#5037)

📊 Changes

183 files changed (+24258 additions, -686 deletions)

View changed files

📝 .github/ISSUE_TEMPLATE/01_bug.yml (+18 -0)
📝 .github/workflows/build-and-push-pg-image.yaml (+1 -1)
📝 cloud-deployments/helm/charts/anythingllm/README.md (+2 -2)
📝 cloud-deployments/helm/charts/anythingllm/README.md.gotmpl (+1 -1)
📝 cloud-deployments/helm/charts/anythingllm/templates/deployment.yaml (+4 -4)
cloud-deployments/helm/charts/anythingllm/templates/httproute.yaml (+38 -0)
📝 cloud-deployments/helm/charts/anythingllm/values.yaml (+39 -1)
collector/__tests__/utils/extensions/Confluence/ConfluenceLoader.test.js (+125 -0)
📝 collector/package.json (+1 -1)
📝 collector/utils/extensions/Confluence/index.js (+25 -7)
📝 collector/utils/files/index.js (+13 -3)
📝 docker/.env.example (+4 -0)
📝 docker/Dockerfile (+1 -1)
📝 frontend/src/App.jsx (+2 -0)
frontend/src/EmbeddingProgressContext.jsx (+240 -0)
frontend/src/components/ImageLightbox/index.jsx (+115 -0)
📝 frontend/src/components/LLMSelection/LemonadeOptions/index.jsx (+2 -2)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx (+180 -7)
📝 frontend/src/components/Modals/ManageWorkspace/Documents/index.jsx (+53 -23)
📝 frontend/src/components/Modals/ManageWorkspace/index.jsx (+6 -3)

...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/Mintplex-Labs/anything-llm/pull/5485 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 4/22/2026 **Status:** ✅ Merged **Merged:** 4/22/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `pg` ← **Head:** `pg-1.12.1` --- ### 📝 Commits (10+) - [`114204b`](https://github.com/Mintplex-Labs/anything-llm/commit/114204be6ea9a1ee00687b4e1a08552eeccd7cd2) fix: typo in contribution guidelines, update project metadata and pull_request_temp...md (#5010) - [`e4022d3`](https://github.com/Mintplex-Labs/anything-llm/commit/e4022d331b39cc9bafa8b969a4ddaefc31a4faf7) bump copyright year - [`eaa35eb`](https://github.com/Mintplex-Labs/anything-llm/commit/eaa35eba618a11e5db035875795556c458de7e0d) feat: update light mode UI sidebar (#4996) - [`a961fb8`](https://github.com/Mintplex-Labs/anything-llm/commit/a961fb8f75a460e1392f4646e379c1917cdf1357) fix(frontend): fix event listener memory leak in useIsDisabled hook (#5027) - [`e025df9`](https://github.com/Mintplex-Labs/anything-llm/commit/e025df9b87e25013fb4205b6c229cee8c7359361) feat: dedicated dark theme option with system preference support (#5007) - [`87b7c44`](https://github.com/Mintplex-Labs/anything-llm/commit/87b7c4484094ef54aad8f1438ac2df04fed99a2e) fix cleanup pr workflow - [`907bd09`](https://github.com/Mintplex-Labs/anything-llm/commit/907bd09faf9c60e08bc6e92716deb89c8f3ee587) Merge branch 'master' of github.com:Mintplex-Labs/anything-llm - [`d325b07`](https://github.com/Mintplex-Labs/anything-llm/commit/d325b07182bc3c5925d98712a2790d39989e87a3) Implement new home page redesign (#4931) - [`c927eda`](https://github.com/Mintplex-Labs/anything-llm/commit/c927eda18fa6c7d7d6fa2cbf03cf9c9bfaa74f78) fix: GitLab connector infinite loop and rate limit crash for large repos (#5021) - [`55dc0da`](https://github.com/Mintplex-Labs/anything-llm/commit/55dc0da488282600752b0135d6d5096571a335e2) fix: add password character validation to onboarding single-user setup (#5037) ### 📊 Changes **183 files changed** (+24258 additions, -686 deletions) <details> <summary>View changed files</summary> 📝 `.github/ISSUE_TEMPLATE/01_bug.yml` (+18 -0) 📝 `.github/workflows/build-and-push-pg-image.yaml` (+1 -1) 📝 `cloud-deployments/helm/charts/anythingllm/README.md` (+2 -2) 📝 `cloud-deployments/helm/charts/anythingllm/README.md.gotmpl` (+1 -1) 📝 `cloud-deployments/helm/charts/anythingllm/templates/deployment.yaml` (+4 -4) ➕ `cloud-deployments/helm/charts/anythingllm/templates/httproute.yaml` (+38 -0) 📝 `cloud-deployments/helm/charts/anythingllm/values.yaml` (+39 -1) ➕ `collector/__tests__/utils/extensions/Confluence/ConfluenceLoader.test.js` (+125 -0) 📝 `collector/package.json` (+1 -1) 📝 `collector/utils/extensions/Confluence/index.js` (+25 -7) 📝 `collector/utils/files/index.js` (+13 -3) 📝 `docker/.env.example` (+4 -0) 📝 `docker/Dockerfile` (+1 -1) 📝 `frontend/src/App.jsx` (+2 -0) ➕ `frontend/src/EmbeddingProgressContext.jsx` (+240 -0) ➕ `frontend/src/components/ImageLightbox/index.jsx` (+115 -0) 📝 `frontend/src/components/LLMSelection/LemonadeOptions/index.jsx` (+2 -2) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/WorkspaceDirectory/index.jsx` (+180 -7) 📝 `frontend/src/components/Modals/ManageWorkspace/Documents/index.jsx` (+53 -23) 📝 `frontend/src/components/Modals/ManageWorkspace/index.jsx` (+6 -3) _...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>
yindo added the pull-request label 2026-06-05 15:21:26 -04:00
yindo closed this issue 2026-06-05 15:21:26 -04:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: Mintplex-Labs/anything-llm#5462