Patch Changes
-
#10106
9f30267Thanks @hntrl! - Add package version metadata to runnable traces. Each package now stamps its version inthis.metadata.versionsat construction time, making version info available in LangSmith trace metadata. -
#10154
403a99fThanks @kanweiwei! - fix(core): add usage_metadata to AIMessage lc_aliases -
#10169
3b1fd54Thanks @hntrl! - fix(core, langchain): bump uuid dependency from ^10.0.0 to ^11.0.0 to fix Metro bundler errorThe
uuidv10 package has ambiguousexportsin itspackage.jsonwhich causes Metro (used by Expo/React Native) to resolve the wrong entry point, resulting inCannot read properties of undefined (reading 'v1'). Theuuidv11 package fixes its exports map to work correctly with Metro's package exports resolution. -
#10044
77bd982Thanks @hntrl! - fix(core): remove inherited LangChainTracer handlers when tracingEnabled is falseWhen a RunTree explicitly disables tracing via
tracingEnabled: false,CallbackManager._configureSyncnow strips any inheritedLangChainTracerhandlers so child runs don't produce traces.