fix(core): set deprecation since to 1.3.3 to match release (#37200)

This commit is contained in:
Nick Hollon
2026-05-05 14:59:47 -04:00
committed by GitHub
parent c979c6187b
commit 55a7707837
3 changed files with 6 additions and 6 deletions

View File

@@ -1291,7 +1291,7 @@ class Runnable(ABC, Generic[Input, Output]):
"""
warn_deprecated(
since="1.4.0",
since="1.3.3",
message=("astream_log is deprecated. Use astream instead."),
removal="2.0.0",
)
@@ -1545,7 +1545,7 @@ class Runnable(ABC, Generic[Input, Output]):
)
elif version == "v1":
warn_deprecated(
since="1.4.0",
since="1.3.3",
message=(
"astream_events version='v1' is deprecated. "
"Use version='v2' or astream instead."

View File

@@ -322,7 +322,7 @@ class RunnableWithMessageHistory(RunnableBindingBase): # type: ignore[no-redef]
"""
warn_deprecated(
since="1.4.0",
since="1.3.3",
message=(
"RunnableWithMessageHistory is deprecated. "
"Use LangGraph's built-in persistence instead."