mirror of
https://github.com/langchain-ai/langgraphjs.git
synced 2026-07-22 00:55:26 -04:00
fix(release): new changesets for re-release (#1846)
This commit is contained in:
committed by
GitHub
parent
5125de572c
commit
3613386ad0
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@langchain/langgraph-api": patch
|
||||
---
|
||||
|
||||
retry release: bump @hono/zod-validator
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@langchain/langgraph-checkpoint-validation": patch
|
||||
---
|
||||
|
||||
retry release: export primitive as type, use Zod v3 for better compatibility
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@langchain/langgraph": patch
|
||||
---
|
||||
|
||||
retry release: improved Zod interop
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@langchain/langgraph-checkpoint-mongodb": patch
|
||||
---
|
||||
|
||||
retry release: Updates the checkpoint-mongodb to append client metadata
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
"@langchain/langgraph-sdk": patch
|
||||
---
|
||||
|
||||
retry release: add type-safe tool call streaming with agent type inference, provide proper error message when failing to connect to a server, expose Thread["config"] and Thread["error"]
|
||||
@@ -12,6 +12,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-esm:
|
||||
image: node:22
|
||||
@@ -28,6 +29,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-tsc:
|
||||
image: node:22
|
||||
@@ -41,6 +43,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-cjs:
|
||||
image: node:22
|
||||
@@ -54,6 +57,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-cf:
|
||||
image: node:22
|
||||
@@ -67,6 +71,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-vercel:
|
||||
image: node:22
|
||||
@@ -83,6 +88,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
test-exports-vite:
|
||||
image: node:22
|
||||
@@ -96,6 +102,7 @@ services:
|
||||
- ../../libs/langgraph:/langgraph
|
||||
- ../../libs/langgraph-core:/langgraph-core
|
||||
- ../../libs/checkpoint:/checkpoint
|
||||
- ../../libs/sdk:/sdk
|
||||
command: bash /scripts/docker-ci-entrypoint.sh
|
||||
success:
|
||||
image: alpine:3.14
|
||||
|
||||
@@ -20,10 +20,12 @@ cp ../package/.[!.]* . 2>/dev/null || true
|
||||
mkdir -p ./libs/langgraph/
|
||||
mkdir -p ./libs/langgraph-core/
|
||||
mkdir -p ./libs/checkpoint/
|
||||
mkdir -p ./libs/sdk/
|
||||
|
||||
cp -r ../langgraph ./libs/
|
||||
cp -r ../langgraph-core ./libs/
|
||||
cp -r ../checkpoint ./libs/
|
||||
cp -r ../sdk ./libs/
|
||||
|
||||
# copy cache
|
||||
mkdir -p ./.yarn
|
||||
|
||||
Reference in New Issue
Block a user