[PR #352] [MERGED] Adds MongoDB checkpointer #684

Closed
opened 2026-02-15 19:15:30 -05:00 by yindo · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/langchain-ai/langgraphjs/pull/352
Author: @jacoblee93
Created: 8/22/2024
Status: Merged
Merged: 8/23/2024
Merged by: @jacoblee93

Base: mainHead: jacob/mongo


📝 Commits (5)

📊 Changes

18 files changed (+1031 additions, -1 deletions)

View changed files

libs/checkpoint-mongodb/.env.example (+6 -0)
libs/checkpoint-mongodb/.eslintrc.cjs (+69 -0)
libs/checkpoint-mongodb/.gitignore (+7 -0)
libs/checkpoint-mongodb/.prettierrc (+19 -0)
libs/checkpoint-mongodb/.release-it.json (+13 -0)
libs/checkpoint-mongodb/LICENSE (+21 -0)
libs/checkpoint-mongodb/README.md (+66 -0)
libs/checkpoint-mongodb/jest.config.cjs (+20 -0)
libs/checkpoint-mongodb/jest.env.cjs (+12 -0)
libs/checkpoint-mongodb/langchain.config.js (+21 -0)
libs/checkpoint-mongodb/package.json (+90 -0)
libs/checkpoint-mongodb/src/index.ts (+301 -0)
libs/checkpoint-mongodb/src/tests/checkpoints.int.test.ts (+150 -0)
libs/checkpoint-mongodb/tsconfig.cjs.json (+8 -0)
libs/checkpoint-mongodb/tsconfig.json (+23 -0)
libs/checkpoint-mongodb/turbo.json (+11 -0)
📝 libs/checkpoint-sqlite/src/tests/checkpoints.test.ts (+16 -0)
📝 yarn.lock (+178 -1)

📄 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/langchain-ai/langgraphjs/pull/352 **Author:** [@jacoblee93](https://github.com/jacoblee93) **Created:** 8/22/2024 **Status:** ✅ Merged **Merged:** 8/23/2024 **Merged by:** [@jacoblee93](https://github.com/jacoblee93) **Base:** `main` ← **Head:** `jacob/mongo` --- ### 📝 Commits (5) - [`b5b82fb`](https://github.com/langchain-ai/langgraphjs/commit/b5b82fbe610445ed02522a7eadc59efbbfa74800) Adds MongoDB checkpointer - [`1104724`](https://github.com/langchain-ai/langgraphjs/commit/1104724ab71b82f6274e0d84c9e2beb7134e9b69) Fix lint and format - [`ff4c64b`](https://github.com/langchain-ai/langgraphjs/commit/ff4c64b764896e25b6546e7c0d8508a9cc84ea61) Merge - [`909207c`](https://github.com/langchain-ai/langgraphjs/commit/909207ce1b2b14e501d6dff8e9ee6fb782aa2d6d) Use new checkpoint serde - [`9494aed`](https://github.com/langchain-ai/langgraphjs/commit/9494aed8d3726c415245c9d702f87ffe9b753ec1) Fix type ### 📊 Changes **18 files changed** (+1031 additions, -1 deletions) <details> <summary>View changed files</summary> ➕ `libs/checkpoint-mongodb/.env.example` (+6 -0) ➕ `libs/checkpoint-mongodb/.eslintrc.cjs` (+69 -0) ➕ `libs/checkpoint-mongodb/.gitignore` (+7 -0) ➕ `libs/checkpoint-mongodb/.prettierrc` (+19 -0) ➕ `libs/checkpoint-mongodb/.release-it.json` (+13 -0) ➕ `libs/checkpoint-mongodb/LICENSE` (+21 -0) ➕ `libs/checkpoint-mongodb/README.md` (+66 -0) ➕ `libs/checkpoint-mongodb/jest.config.cjs` (+20 -0) ➕ `libs/checkpoint-mongodb/jest.env.cjs` (+12 -0) ➕ `libs/checkpoint-mongodb/langchain.config.js` (+21 -0) ➕ `libs/checkpoint-mongodb/package.json` (+90 -0) ➕ `libs/checkpoint-mongodb/src/index.ts` (+301 -0) ➕ `libs/checkpoint-mongodb/src/tests/checkpoints.int.test.ts` (+150 -0) ➕ `libs/checkpoint-mongodb/tsconfig.cjs.json` (+8 -0) ➕ `libs/checkpoint-mongodb/tsconfig.json` (+23 -0) ➕ `libs/checkpoint-mongodb/turbo.json` (+11 -0) 📝 `libs/checkpoint-sqlite/src/tests/checkpoints.test.ts` (+16 -0) 📝 `yarn.lock` (+178 -1) </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-15 19:15:30 -05:00
yindo closed this issue 2026-02-15 19:15:30 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: langchain-ai/langgraphjs#684