[PR #4893] [MERGED] Pg v1.10.0 #4807

Closed
opened 2026-02-22 18:36:34 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

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

Base: pgHead: pg-v1.10.0


📝 Commits (10+)

📊 Changes

184 files changed (+7964 additions, -2950 deletions)

View changed files

📝 .devcontainer/devcontainer.json (+3 -0)
📝 .github/workflows/build-and-push-pg-image.yaml (+1 -2)
📝 .github/workflows/dev-build.yaml (+1 -1)
📝 README.md (+2 -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/values.yaml (+1 -1)
collector/__tests__/utils/WhisperProviders/ffmpeg/index.test.js (+77 -0)
collector/__tests__/utils/extensions/YoutubeTranscript/YoutubeLoader/youtube-transcript.test.js (+0 -33)
📝 collector/package.json (+8 -2)
📝 collector/processSingleFile/convert/asXlsx.js (+98 -22)
collector/utils/WhisperProviders/ffmpeg/index.js (+114 -0)
📝 collector/utils/WhisperProviders/localWhisper.js (+14 -42)
📝 collector/utils/extensions/PaperlessNgx/PaperlessNgxLoader/index.js (+41 -12)
📝 collector/utils/extensions/YoutubeTranscript/YoutubeLoader/index.js (+16 -4)
collector/utils/shell.js (+25 -0)
📝 collector/yarn.lock (+97 -58)
📝 docker/.env.example (+5 -0)
📝 docker/Dockerfile (+1 -1)
extras/support/announcements/2026-01-12.json (+25 -0)

...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/4893 **Author:** [@timothycarambat](https://github.com/timothycarambat) **Created:** 1/22/2026 **Status:** ✅ Merged **Merged:** 1/22/2026 **Merged by:** [@timothycarambat](https://github.com/timothycarambat) **Base:** `pg` ← **Head:** `pg-v1.10.0` --- ### 📝 Commits (10+) - [`dbb79b6`](https://github.com/Mintplex-Labs/anything-llm/commit/dbb79b674833ca32f4a955407bb9699c2766aba2) Migrate to `bcryptjs` (#4767) - [`c0c3ee6`](https://github.com/Mintplex-Labs/anything-llm/commit/c0c3ee6cfdd0badb2d2bc6027b46e8152ebae7c9) Refactor frontend legacy JSON.parse with safeJsonParse (#4759) - [`c76b070`](https://github.com/Mintplex-Labs/anything-llm/commit/c76b0708c38ce0ad71221b9ac57f80ac41a10dad) Fix pagination bug in paperless-ngx data connector (#4757) - [`8aa78c2`](https://github.com/Mintplex-Labs/anything-llm/commit/8aa78c2b753de05146ebdd46a0ee2d65dc944628) Fix Stale User Session with Proper `fetch` Error Handling (#4770) - [`7faee90`](https://github.com/Mintplex-Labs/anything-llm/commit/7faee90ecc83cc2a1d79299c1580110314b06fe2) Add Auth Token to Ollama Embedding Client (#4766) - [`c7b16c9`](https://github.com/Mintplex-Labs/anything-llm/commit/c7b16c9aa84c6e3a9a15709c95b3156dfd5681bc) Upgrade to Multer 2.0.0 (#4768) - [`62b45a7`](https://github.com/Mintplex-Labs/anything-llm/commit/62b45a76dc2241c5726aaba908cede4d04df78fb) Implement Global Error Boundary (#4765) - [`a8bdc00`](https://github.com/Mintplex-Labs/anything-llm/commit/a8bdc00abab72e093d2b2fb4e7f7fd1c6b40e828) Feat/cohere agent implementation (#4703) - [`8569254`](https://github.com/Mintplex-Labs/anything-llm/commit/856925451e82b6d8ac8fce8fb43f42dd97a3c788) Upgrade MCP SDK to Latest (1.24.3) (#4773) - [`bc3ad06`](https://github.com/Mintplex-Labs/anything-llm/commit/bc3ad06de4af00628189648047a74211f943e37c) fix(devcontainer): forward ports 3000/3001 (#4779) ### 📊 Changes **184 files changed** (+7964 additions, -2950 deletions) <details> <summary>View changed files</summary> 📝 `.devcontainer/devcontainer.json` (+3 -0) 📝 `.github/workflows/build-and-push-pg-image.yaml` (+1 -2) 📝 `.github/workflows/dev-build.yaml` (+1 -1) 📝 `README.md` (+2 -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/values.yaml` (+1 -1) ➕ `collector/__tests__/utils/WhisperProviders/ffmpeg/index.test.js` (+77 -0) ➖ `collector/__tests__/utils/extensions/YoutubeTranscript/YoutubeLoader/youtube-transcript.test.js` (+0 -33) 📝 `collector/package.json` (+8 -2) 📝 `collector/processSingleFile/convert/asXlsx.js` (+98 -22) ➕ `collector/utils/WhisperProviders/ffmpeg/index.js` (+114 -0) 📝 `collector/utils/WhisperProviders/localWhisper.js` (+14 -42) 📝 `collector/utils/extensions/PaperlessNgx/PaperlessNgxLoader/index.js` (+41 -12) 📝 `collector/utils/extensions/YoutubeTranscript/YoutubeLoader/index.js` (+16 -4) ➕ `collector/utils/shell.js` (+25 -0) 📝 `collector/yarn.lock` (+97 -58) 📝 `docker/.env.example` (+5 -0) 📝 `docker/Dockerfile` (+1 -1) ➕ `extras/support/announcements/2026-01-12.json` (+25 -0) _...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-02-22 18:36:34 -05:00
yindo closed this issue 2026-02-22 18:36:34 -05:00
yindo changed title from [PR #4893] Pg v1.10.0 to [PR #4893] [MERGED] Pg v1.10.0 2026-06-05 15:20:29 -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#4807