@langchain/langgraph-api 0.0.53 → 0.0.54

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @langchain/langgraph-api
2
2
 
3
+ ## 0.0.54
4
+
5
+ ### Patch Changes
6
+
7
+ - 1777878: fix(cli): only warn the user if an invalid LangSmith API key is passed while tracing is enabled
8
+ - @langchain/langgraph-ui@0.0.54
9
+
3
10
  ## 0.0.53
4
11
 
5
12
  ### Patch Changes
@@ -24,10 +24,10 @@ const [{ host, cleanup }, organizationId] = await Promise.all([
24
24
  if (isTracingEnabled()) {
25
25
  try {
26
26
  // @ts-expect-error Private method
27
- return new LangSmithClient()._getTenantId();
27
+ return await new LangSmithClient()._getTenantId();
28
28
  }
29
29
  catch (error) {
30
- logger.warn("Failed to get organization ID", { error });
30
+ logger.warn("Failed to get organization ID. Tracing to LangSmith will not work.", { error });
31
31
  }
32
32
  }
33
33
  return null;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-api",
3
- "version": "0.0.53",
3
+ "version": "0.0.54",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -52,7 +52,7 @@
52
52
  "@babel/code-frame": "^7.26.2",
53
53
  "@hono/node-server": "^1.12.0",
54
54
  "@hono/zod-validator": "^0.2.2",
55
- "@langchain/langgraph-ui": "0.0.53",
55
+ "@langchain/langgraph-ui": "0.0.54",
56
56
  "@types/json-schema": "^7.0.15",
57
57
  "@typescript/vfs": "^1.6.0",
58
58
  "dedent": "^1.5.3",
@@ -86,7 +86,7 @@
86
86
  "@langchain/core": "^0.3.59",
87
87
  "@langchain/langgraph": "0.4.0",
88
88
  "@langchain/langgraph-checkpoint": "0.1.0",
89
- "@langchain/langgraph-sdk": "0.0.103",
89
+ "@langchain/langgraph-sdk": "0.0.104",
90
90
  "@types/babel__code-frame": "^7.0.6",
91
91
  "@types/node": "^18.15.11",
92
92
  "@types/react": "^19.0.8",