@langchain/langgraph-cli 0.0.58 → 0.0.59

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,13 @@
1
1
  # @langchain/langgraph-cli
2
2
 
3
+ ## 0.0.59
4
+
5
+ ### Patch Changes
6
+
7
+ - d28a9d7: fix(cli): sysinfo command failing to obtain dep versions for Node.js 20.x
8
+ - Updated dependencies [3412f9f]
9
+ - @langchain/langgraph-api@0.0.59
10
+
3
11
  ## 0.0.58
4
12
 
5
13
  ### Patch Changes
@@ -11,7 +11,7 @@ builder
11
11
  console.log("Node version:", process.version);
12
12
  console.log("Operating system:", process.platform, process.arch);
13
13
  console.log("Package manager:", manager.name);
14
- console.log("Package manager version:", manager.version);
14
+ console.log("Package manager version:", manager.version ?? "N/A");
15
15
  console.log("-".repeat(20));
16
16
  const output = await (async () => {
17
17
  switch (manager.name) {
@@ -31,7 +31,7 @@ builder
31
31
  }
32
32
  })();
33
33
  const gatherMatch = (str, regex) => {
34
- return [...new Set(str.matchAll(regex).map((match) => match[0]))];
34
+ return [...new Set([...str.matchAll(regex)].map((match) => match[0]))];
35
35
  };
36
36
  const packages = gatherMatch(output.stdout, /(@langchain\/[^\s@]+|langsmith|langchain|zod|zod-to-json-schema)/g);
37
37
  async function getPackageInfo(packageName) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.58",
3
+ "version": "0.0.59",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -33,7 +33,7 @@
33
33
  "dependencies": {
34
34
  "@babel/code-frame": "^7.26.2",
35
35
  "@commander-js/extra-typings": "^13.0.0",
36
- "@langchain/langgraph-api": "0.0.58",
36
+ "@langchain/langgraph-api": "0.0.59",
37
37
  "chokidar": "^4.0.3",
38
38
  "commander": "^13.0.0",
39
39
  "dedent": "^1.5.3",