@langchain/langgraph 0.0.29 → 0.0.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/utils.cjs CHANGED
@@ -54,7 +54,7 @@ class RunnableCallable extends runnables_1.Runnable {
54
54
  const childConfig = (0, runnables_1.patchConfig)(config, {
55
55
  callbacks: runManager?.getChild(),
56
56
  });
57
- void singletons_1.AsyncLocalStorageProviderSingleton.getInstance().run(childConfig, async () => {
57
+ void singletons_1.AsyncLocalStorageProviderSingleton.runWithConfig(childConfig, async () => {
58
58
  try {
59
59
  const output = await this.func(input, childConfig);
60
60
  resolve(output);
package/dist/utils.js CHANGED
@@ -51,7 +51,7 @@ export class RunnableCallable extends Runnable {
51
51
  const childConfig = patchConfig(config, {
52
52
  callbacks: runManager?.getChild(),
53
53
  });
54
- void AsyncLocalStorageProviderSingleton.getInstance().run(childConfig, async () => {
54
+ void AsyncLocalStorageProviderSingleton.runWithConfig(childConfig, async () => {
55
55
  try {
56
56
  const output = await this.func(input, childConfig);
57
57
  resolve(output);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "description": "LangGraph",
5
5
  "type": "module",
6
6
  "engines": {
@@ -37,7 +37,7 @@
37
37
  "author": "LangChain",
38
38
  "license": "MIT",
39
39
  "dependencies": {
40
- "@langchain/core": ">=0.2.16 <0.3.0",
40
+ "@langchain/core": ">=0.2.18 <0.3.0",
41
41
  "uuid": "^10.0.0",
42
42
  "zod": "^3.23.8"
43
43
  },