@langchain/langgraph-cli 0.0.71 → 1.0.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @langchain/langgraph-cli
2
2
 
3
+ ## 1.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [610e1e1]
8
+ - @langchain/langgraph-api@1.0.1
9
+
10
+ ## 1.0.0
11
+
12
+ ### Major Changes
13
+
14
+ - 1e1ecbb: This release updates the package for compatibility with LangGraph v1.0. See the [v1.0 release notes](https://docs.langchain.com/oss/javascript/releases/langgraph-v1) for details on what's new.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies [1e1ecbb]
19
+ - create-langgraph@1.0.0
20
+ - @langchain/langgraph-api@1.0.0
21
+
3
22
  ## 0.0.71
4
23
 
5
24
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@langchain/langgraph-cli",
3
- "version": "0.0.71",
3
+ "version": "1.0.1",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": "^18.19.0 || >=20.16.0"
@@ -22,7 +22,7 @@
22
22
  "clean": "rm -rf dist/ .turbo/",
23
23
  "build": "yarn turbo:command build:internal --filter=@langchain/langgraph-cli",
24
24
  "build:internal": "yarn clean && node scripts/build.mjs",
25
- "prepack": "yarn run build",
25
+ "prepublish": "yarn build",
26
26
  "typecheck": "tsc --noEmit",
27
27
  "cli": "tsx src/cli/cli.mts",
28
28
  "cli:watch": "tsx watch src/cli/cli.mts",
@@ -33,10 +33,10 @@
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.71",
36
+ "@langchain/langgraph-api": "1.0.1",
37
37
  "chokidar": "^4.0.3",
38
38
  "commander": "^13.0.0",
39
- "create-langgraph": "0.0.4",
39
+ "create-langgraph": "1.0.0",
40
40
  "dedent": "^1.5.3",
41
41
  "dotenv": "^16.4.7",
42
42
  "execa": "^9.5.2",