fix: honor checkpointer.serde.allowed_msgpack_modules in langgraph.json (#1500)#814
Open
radu-mocanu wants to merge 1 commit intomainfrom
Open
fix: honor checkpointer.serde.allowed_msgpack_modules in langgraph.json (#1500)#814radu-mocanu wants to merge 1 commit intomainfrom
radu-mocanu wants to merge 1 commit intomainfrom
Conversation
a6fc37e to
7188224
Compare
radugheo
approved these changes
Apr 28, 2026
7188224 to
787950f
Compare
787950f to
71e8d51
Compare
radu-mocanu
commented
May 4, 2026
Collaborator
Author
radu-mocanu
left a comment
There was a problem hiding this comment.
Langgraph feature request: langchain-ai/langgraph#7695
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
checkpointer.serde.allowed_msgpack_modulesfromlanggraph.jsonand apply it to the saver's serializerCreateTaskandInvokeProcesskeep round-tripping silentlyserdeblock, langgraph's default permissive serde is preservedsamples/checkpoint-allowlistsample and thetestcases/checkpoint-allowlistintegration test that asserts noDeserializing unregistered typewarning fires when the block is setWhy
Fixes UiPath/uipath-python#1500
users couldn't silence the
Deserializing unregistered type ...CreateTaskwarning that fires on every HITL--resumebecause uipath-langchain owns saver construction and didn't expose any hook. this PR matches the public schema documented for the langgraph CLI so users can declare their custom types alongside ours.