Skip to content

Commit dfae141

Browse files
author
atp-release[bot]
committed
chore(release): atp-publish
- project: @mondaydotcomorg/atp-vercel-sdk 0.21.3 - project: @mondaydotcomorg/atp-compiler 0.19.24 - project: @mondaydotcomorg/atp-mcp-adapter 0.21.3 - project: @mondaydotcomorg/atp-provenance 0.19.20 - project: @mondaydotcomorg/atp-langchain 0.21.3 - project: @mondaydotcomorg/atp-providers 0.19.21 - project: @mondaydotcomorg/atp-protocol 0.19.21 - project: @mondaydotcomorg/atp-runtime 0.19.20 - project: @mondaydotcomorg/atp-client 0.20.2 - project: @mondaydotcomorg/atp-server 0.21.3
1 parent 5e3ec5a commit dfae141

11 files changed

Lines changed: 61 additions & 61 deletions

File tree

packages/atp-compiler/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-compiler",
3-
"version": "0.19.23",
3+
"version": "0.19.24",
44
"description": "Production-ready compiler for transforming async iteration patterns into resumable operations with checkpoint-based state management",
55
"type": "module",
66
"main": "dist/index.cjs",
@@ -46,14 +46,14 @@
4646
"@babel/parser": "^7.26.0",
4747
"@babel/traverse": "^7.26.0",
4848
"@babel/types": "^7.26.0",
49-
"@mondaydotcomorg/atp-protocol": "0.19.20",
50-
"@mondaydotcomorg/atp-runtime": "0.19.19",
49+
"@mondaydotcomorg/atp-protocol": "0.19.21",
50+
"@mondaydotcomorg/atp-runtime": "0.19.20",
5151
"@types/babel__generator": "^7.6.0",
5252
"@types/babel__traverse": "^7.20.0"
5353
},
5454
"peerDependencies": {
55-
"@mondaydotcomorg/atp-protocol": "0.19.20",
56-
"@mondaydotcomorg/atp-runtime": "0.19.19"
55+
"@mondaydotcomorg/atp-protocol": "0.19.21",
56+
"@mondaydotcomorg/atp-runtime": "0.19.20"
5757
},
5858
"devDependencies": {
5959
"@stryker-mutator/core": "^8.0.0",

packages/client/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-client",
3-
"version": "0.20.1",
3+
"version": "0.20.2",
44
"description": "Client SDK for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -48,8 +48,8 @@
4848
},
4949
"license": "MIT",
5050
"dependencies": {
51-
"@mondaydotcomorg/atp-protocol": "0.19.20",
52-
"@mondaydotcomorg/atp-runtime": "0.19.19",
51+
"@mondaydotcomorg/atp-protocol": "0.19.21",
52+
"@mondaydotcomorg/atp-runtime": "0.19.20",
5353
"undici": "*",
5454
"zod-to-json-schema": "^3.24.6"
5555
},

packages/langchain/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-langchain",
3-
"version": "0.21.2",
3+
"version": "0.21.3",
44
"description": "LangChain integration for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -44,9 +44,9 @@
4444
"license": "MIT",
4545
"dependencies": {
4646
"@langchain/core": "^0.3.78",
47-
"@mondaydotcomorg/atp-client": "0.20.1",
48-
"@mondaydotcomorg/atp-protocol": "0.19.20",
49-
"@mondaydotcomorg/atp-runtime": "0.19.19",
47+
"@mondaydotcomorg/atp-client": "0.20.2",
48+
"@mondaydotcomorg/atp-protocol": "0.19.21",
49+
"@mondaydotcomorg/atp-runtime": "0.19.20",
5050
"json-schema-to-zod": "^2.6.1",
5151
"langchain": "^0.3.35"
5252
},

packages/mcp-adapter/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-mcp-adapter",
3-
"version": "0.21.2",
3+
"version": "0.21.3",
44
"description": "MCP compatibility adapter for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -44,8 +44,8 @@
4444
],
4545
"license": "MIT",
4646
"dependencies": {
47-
"@mondaydotcomorg/atp-protocol": "0.19.20",
48-
"@mondaydotcomorg/atp-server": "0.21.2"
47+
"@mondaydotcomorg/atp-protocol": "0.19.21",
48+
"@mondaydotcomorg/atp-server": "0.21.3"
4949
},
5050
"peerDependencies": {
5151
"@modelcontextprotocol/sdk": ">=0.5.0",

packages/protocol/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-protocol",
3-
"version": "0.19.20",
3+
"version": "0.19.21",
44
"description": "Core protocol types and interfaces for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -40,7 +40,7 @@
4040
},
4141
"license": "MIT",
4242
"dependencies": {
43-
"@mondaydotcomorg/atp-provenance": "0.19.19"
43+
"@mondaydotcomorg/atp-provenance": "0.19.20"
4444
},
4545
"peerDependencies": {
4646
"zod": "^3.25.0"

packages/provenance/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-provenance",
3-
"version": "0.19.19",
3+
"version": "0.19.20",
44
"description": "CAMEL-inspired provenance security for LLM applications - track data origin and enforce security policies",
55
"main": "./dist/index.cjs",
66
"module": "./dist/index.js",
@@ -40,7 +40,7 @@
4040
"author": "Agent Tool Protocol Team",
4141
"license": "MIT",
4242
"dependencies": {
43-
"@mondaydotcomorg/atp-runtime": "0.19.19",
43+
"@mondaydotcomorg/atp-runtime": "0.19.20",
4444
"@types/escodegen": "^0.0.10",
4545
"acorn": "^8.11.0",
4646
"acorn-walk": "^8.3.0",

packages/providers/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-providers",
3-
"version": "0.19.20",
3+
"version": "0.19.21",
44
"description": "Built-in providers for Agent Tool Protocol (cache, auth, audit)",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -35,8 +35,8 @@
3535
"agent"
3636
],
3737
"dependencies": {
38-
"@mondaydotcomorg/atp-protocol": "0.19.20",
39-
"@mondaydotcomorg/atp-runtime": "0.19.19",
38+
"@mondaydotcomorg/atp-protocol": "0.19.21",
39+
"@mondaydotcomorg/atp-runtime": "0.19.20",
4040
"@opentelemetry/api": "^1.9.0"
4141
},
4242
"devDependencies": {

packages/runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-runtime",
3-
"version": "0.19.19",
3+
"version": "0.19.20",
44
"description": "Runtime SDK injected into sandbox for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",

packages/server/package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-server",
3-
"version": "0.21.2",
3+
"version": "0.21.3",
44
"description": "Server implementation for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -49,11 +49,11 @@
4949
"@babel/parser": "^7.26.0",
5050
"@babel/traverse": "^7.26.0",
5151
"@babel/types": "^7.26.0",
52-
"@mondaydotcomorg/atp-compiler": "0.19.23",
53-
"@mondaydotcomorg/atp-protocol": "0.19.20",
54-
"@mondaydotcomorg/atp-provenance": "0.19.19",
55-
"@mondaydotcomorg/atp-providers": "0.19.20",
56-
"@mondaydotcomorg/atp-runtime": "0.19.19",
52+
"@mondaydotcomorg/atp-compiler": "0.19.24",
53+
"@mondaydotcomorg/atp-protocol": "0.19.21",
54+
"@mondaydotcomorg/atp-provenance": "0.19.20",
55+
"@mondaydotcomorg/atp-providers": "0.19.21",
56+
"@mondaydotcomorg/atp-runtime": "0.19.20",
5757
"@opentelemetry/api": "^1.9.0",
5858
"@opentelemetry/auto-instrumentations-node": "^0.66.0",
5959
"@opentelemetry/core": "^2.2.0",

packages/vercel-ai-sdk/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mondaydotcomorg/atp-vercel-sdk",
3-
"version": "0.21.2",
3+
"version": "0.21.3",
44
"description": "Vercel AI SDK integration for Agent Tool Protocol",
55
"type": "module",
66
"main": "./dist/index.cjs",
@@ -44,8 +44,8 @@
4444
],
4545
"license": "MIT",
4646
"dependencies": {
47-
"@mondaydotcomorg/atp-client": "0.20.1",
48-
"@mondaydotcomorg/atp-protocol": "0.19.20"
47+
"@mondaydotcomorg/atp-client": "0.20.2",
48+
"@mondaydotcomorg/atp-protocol": "0.19.21"
4949
},
5050
"peerDependencies": {
5151
"ai": "^5.0.0",

0 commit comments

Comments
 (0)