diff --git a/.changeset/pr-22.md b/.changeset/pr-22.md deleted file mode 100644 index be256de7..00000000 --- a/.changeset/pr-22.md +++ /dev/null @@ -1,16 +0,0 @@ ---- -'@flowlib/agents': patch -'@flowlib/cli': patch -'@flowlib/core': patch -'@flowlib/db': patch -'@flowlib/express': patch -'@flowlib/http': patch -'@flowlib/mcp': patch -'@flowlib/rbac': patch -'@flowlib/sdk': patch -'@flowlib/ui': patch -'@flowlib/user-auth': patch -'@flowlib/webhooks': patch ---- - -feat: Agents plugin v2 (#22) diff --git a/pkg/action-kit/CHANGELOG.md b/pkg/action-kit/CHANGELOG.md index 4cf9eff1..75ab4837 100644 --- a/pkg/action-kit/CHANGELOG.md +++ b/pkg/action-kit/CHANGELOG.md @@ -1,5 +1,7 @@ # @flowlib/action-kit +## 0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/action-kit/package.json b/pkg/action-kit/package.json index 28af70a1..cffb1ff2 100644 --- a/pkg/action-kit/package.json +++ b/pkg/action-kit/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/action-kit", - "version": "0.0.9", + "version": "0.0.10", "description": "Framework-agnostic type kit for defining Flowlib actions (flow nodes + agent tools)", "keywords": [ "actions", diff --git a/pkg/actions/CHANGELOG.md b/pkg/actions/CHANGELOG.md index b5eed4c0..56b530b7 100644 --- a/pkg/actions/CHANGELOG.md +++ b/pkg/actions/CHANGELOG.md @@ -1,5 +1,12 @@ # @flowlib/actions +## 0.0.10 + +### Patch Changes + +- Updated dependencies []: + - @flowlib/action-kit@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/actions/package.json b/pkg/actions/package.json index 2787a2da..c87a6edf 100644 --- a/pkg/actions/package.json +++ b/pkg/actions/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/actions", - "version": "0.0.9", + "version": "0.0.10", "description": "Built-in provider actions for Flowlib flows (Gmail, Slack, GitHub, etc.)", "keywords": [ "actions", diff --git a/pkg/cli/CHANGELOG.md b/pkg/cli/CHANGELOG.md index 6910de05..f0ac52bd 100644 --- a/pkg/cli/CHANGELOG.md +++ b/pkg/cli/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/cli +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/cli/package.json b/pkg/cli/package.json index 7a6344ce..f9cce99c 100644 --- a/pkg/cli/package.json +++ b/pkg/cli/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/cli", - "version": "0.0.9", + "version": "0.0.10", "description": "CLI for managing Flowlib database schemas, migrations, and project setup", "keywords": [ "cli", diff --git a/pkg/core/CHANGELOG.md b/pkg/core/CHANGELOG.md index 1727a0ab..8a892734 100644 --- a/pkg/core/CHANGELOG.md +++ b/pkg/core/CHANGELOG.md @@ -1,5 +1,18 @@ # @flowlib/core +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/db@0.0.10 + - @flowlib/sdk@0.0.10 + - @flowlib/action-kit@0.0.10 + - @flowlib/actions@0.0.10 + - @flowlib/layouts@0.0.10 + ## 0.0.9 ### Patch Changes @@ -38,13 +51,13 @@ ```ts const telemetryPlugin: FlowlibPluginDefinition = { - id: 'agent-telemetry', + id: "agent-telemetry", backend: { - id: 'agent-telemetry', + id: "agent-telemetry", hooks: { afterAgentToolExecute: async (ctx) => { recordEvent({ - metric: 'agent_tool_call', + metric: "agent_tool_call", tool: ctx.toolName, ok: ctx.success, flowRunId: ctx.flowRunId, diff --git a/pkg/core/package.json b/pkg/core/package.json index a500296a..67d6d342 100644 --- a/pkg/core/package.json +++ b/pkg/core/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/core", - "version": "0.0.9", + "version": "0.0.10", "description": "Framework-agnostic core package for Flowlib workflow execution engine", "keywords": [ "automation", diff --git a/pkg/db/CHANGELOG.md b/pkg/db/CHANGELOG.md index 5c7d0e76..5a8f614a 100644 --- a/pkg/db/CHANGELOG.md +++ b/pkg/db/CHANGELOG.md @@ -1,5 +1,14 @@ # @flowlib/db +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies []: + - @flowlib/action-kit@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/db/package.json b/pkg/db/package.json index ffe97d70..73dd139e 100644 --- a/pkg/db/package.json +++ b/pkg/db/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/db", - "version": "0.0.9", + "version": "0.0.10", "description": "Drizzle schemas + schema-merger + schema-generator for Flowlib core. Lightweight package consumable from any JS runtime (Node, Workers, edge) without pulling in the @flowlib/core executor.", "keywords": [ "drizzle", diff --git a/pkg/express/CHANGELOG.md b/pkg/express/CHANGELOG.md index 1a8458b3..d982fadf 100644 --- a/pkg/express/CHANGELOG.md +++ b/pkg/express/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/express +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/http@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/express/package.json b/pkg/express/package.json index 35f89ea9..9a352e55 100644 --- a/pkg/express/package.json +++ b/pkg/express/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/express", - "version": "0.0.9", + "version": "0.0.10", "description": "Express.js integration package for Flowlib Core", "keywords": [ "api", diff --git a/pkg/flowlib/CHANGELOG.md b/pkg/flowlib/CHANGELOG.md index 4a6530ef..a63bed27 100644 --- a/pkg/flowlib/CHANGELOG.md +++ b/pkg/flowlib/CHANGELOG.md @@ -1,5 +1,12 @@ # flowlib-cli +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/cli@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/flowlib/package.json b/pkg/flowlib/package.json index 26140c12..5a809da9 100644 --- a/pkg/flowlib/package.json +++ b/pkg/flowlib/package.json @@ -1,6 +1,6 @@ { "name": "flowlib-cli", - "version": "0.0.9", + "version": "0.0.10", "description": "CLI for managing Flowlib workflow projects. Thin wrapper around @flowlib/cli.", "keywords": [ "automation", diff --git a/pkg/http/CHANGELOG.md b/pkg/http/CHANGELOG.md index 91292240..c39917cf 100644 --- a/pkg/http/CHANGELOG.md +++ b/pkg/http/CHANGELOG.md @@ -1,5 +1,14 @@ # @flowlib/http +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/http/package.json b/pkg/http/package.json index b0e29a56..d0067f8a 100644 --- a/pkg/http/package.json +++ b/pkg/http/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/http", - "version": "0.0.9", + "version": "0.0.10", "description": "Framework-agnostic HTTP route registry shared by Flowlib's Express, NestJS, and Next.js adapters. Walk `allFirstPartyEndpoints` to build a custom adapter (Hono, Fastify, etc.) without re-implementing route logic.", "keywords": [ "adapter", diff --git a/pkg/layouts/CHANGELOG.md b/pkg/layouts/CHANGELOG.md index 6ecf0252..32eb674b 100644 --- a/pkg/layouts/CHANGELOG.md +++ b/pkg/layouts/CHANGELOG.md @@ -1,5 +1,7 @@ # @flowlib/layouts +## 0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/layouts/package.json b/pkg/layouts/package.json index edb1fed6..b0f9f856 100644 --- a/pkg/layouts/package.json +++ b/pkg/layouts/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/layouts", - "version": "0.0.9", + "version": "0.0.10", "description": "Shared layout utilities for Flowlib graph positioning", "keywords": [ "dagre", diff --git a/pkg/nestjs/CHANGELOG.md b/pkg/nestjs/CHANGELOG.md index 9c92869f..042d96c6 100644 --- a/pkg/nestjs/CHANGELOG.md +++ b/pkg/nestjs/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/nestjs +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/http@0.0.10 + - @flowlib/action-kit@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/nestjs/package.json b/pkg/nestjs/package.json index 8067e307..beaf43f3 100644 --- a/pkg/nestjs/package.json +++ b/pkg/nestjs/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/nestjs", - "version": "0.0.9", + "version": "0.0.10", "private": false, "description": "A NestJS module for executing Flowlib workflows with batch processing capabilities", "keywords": [ diff --git a/pkg/nextjs/CHANGELOG.md b/pkg/nextjs/CHANGELOG.md index cb686890..b4517fb2 100644 --- a/pkg/nextjs/CHANGELOG.md +++ b/pkg/nextjs/CHANGELOG.md @@ -1,5 +1,13 @@ # @flowlib/nextjs +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/http@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/nextjs/package.json b/pkg/nextjs/package.json index 75fc8fb5..7800b3d0 100644 --- a/pkg/nextjs/package.json +++ b/pkg/nextjs/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/nextjs", - "version": "0.0.9", + "version": "0.0.10", "description": "Next.js integration for Flowlib", "keywords": [ "api", diff --git a/pkg/plugins/agents/CHANGELOG.md b/pkg/plugins/agents/CHANGELOG.md index b38c80bf..4d958462 100644 --- a/pkg/plugins/agents/CHANGELOG.md +++ b/pkg/plugins/agents/CHANGELOG.md @@ -1,5 +1,18 @@ # @flowlib/agents +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/ui@0.0.10 + - @flowlib/action-kit@0.0.10 + - @flowlib/actions@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/agents/package.json b/pkg/plugins/agents/package.json index 385c3cfe..f065a1e0 100644 --- a/pkg/plugins/agents/package.json +++ b/pkg/plugins/agents/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/agents", - "version": "0.0.9", + "version": "0.0.10", "description": "Code-editing AI agents plugin for Flowlib — Claude Code, opencode, raw-LLM providers; Cloudflare Sandbox workspaces; durable-object-backed sessions", "keywords": [ "agents", diff --git a/pkg/plugins/auth/CHANGELOG.md b/pkg/plugins/auth/CHANGELOG.md index 7b39fa91..362534f6 100644 --- a/pkg/plugins/auth/CHANGELOG.md +++ b/pkg/plugins/auth/CHANGELOG.md @@ -1,5 +1,16 @@ # @flowlib/user-auth +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/ui@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/auth/package.json b/pkg/plugins/auth/package.json index a1193bac..8cc321c2 100644 --- a/pkg/plugins/auth/package.json +++ b/pkg/plugins/auth/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/user-auth", - "version": "0.0.9", + "version": "0.0.10", "description": "Better Auth plugin for Flowlib — adds user authentication, session management, identity resolution, and auth UI components", "keywords": [ "auth", diff --git a/pkg/plugins/cloudflare-agents/CHANGELOG.md b/pkg/plugins/cloudflare-agents/CHANGELOG.md index bf63c27b..a7dc9307 100644 --- a/pkg/plugins/cloudflare-agents/CHANGELOG.md +++ b/pkg/plugins/cloudflare-agents/CHANGELOG.md @@ -1,5 +1,13 @@ # @flowlib/cloudflare-agents +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/primitives@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/cloudflare-agents/package.json b/pkg/plugins/cloudflare-agents/package.json index f1b97c67..f0f0d19d 100644 --- a/pkg/plugins/cloudflare-agents/package.json +++ b/pkg/plugins/cloudflare-agents/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/cloudflare-agents", - "version": "0.0.9", + "version": "0.0.10", "description": "Compile Flowlib flows to Cloudflare Agents & Workflows — deploy visual flows as durable, globally-distributed Workers", "license": "MIT", "author": "robase ", diff --git a/pkg/plugins/mcp/CHANGELOG.md b/pkg/plugins/mcp/CHANGELOG.md index 03ff9eeb..8c5446d8 100644 --- a/pkg/plugins/mcp/CHANGELOG.md +++ b/pkg/plugins/mcp/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/mcp +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/sdk@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/mcp/package.json b/pkg/plugins/mcp/package.json index fa5b798a..aa2137e9 100644 --- a/pkg/plugins/mcp/package.json +++ b/pkg/plugins/mcp/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/mcp", - "version": "0.0.9", + "version": "0.0.10", "description": "MCP (Model Context Protocol) plugin for Flowlib — exposes flow building, editing, execution, and debugging as MCP tools for Claude Desktop, VS Code Copilot, and other MCP clients", "keywords": [ "ai-agent", diff --git a/pkg/plugins/rbac/CHANGELOG.md b/pkg/plugins/rbac/CHANGELOG.md index 91b52e04..c23ea8b6 100644 --- a/pkg/plugins/rbac/CHANGELOG.md +++ b/pkg/plugins/rbac/CHANGELOG.md @@ -1,5 +1,17 @@ # @flowlib/rbac +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/ui@0.0.10 + - @flowlib/user-auth@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/rbac/package.json b/pkg/plugins/rbac/package.json index 57b67ad6..a94d7f53 100644 --- a/pkg/plugins/rbac/package.json +++ b/pkg/plugins/rbac/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/rbac", - "version": "0.0.9", + "version": "0.0.10", "description": "RBAC plugin for Flowlib — adds role-based access control UI, flow sharing, and permission management. Requires @flowlib/user-auth.", "homepage": "https://flowlib.dev", "bugs": { diff --git a/pkg/plugins/vercel-workflows/CHANGELOG.md b/pkg/plugins/vercel-workflows/CHANGELOG.md index 161ec204..f9ab5afd 100644 --- a/pkg/plugins/vercel-workflows/CHANGELOG.md +++ b/pkg/plugins/vercel-workflows/CHANGELOG.md @@ -1,5 +1,17 @@ # @flowlib/vercel-workflows +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/sdk@0.0.10 + - @flowlib/ui@0.0.10 + - @flowlib/primitives@0.0.10 + - @flowlib/action-kit@0.0.10 + - @flowlib/actions@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/vercel-workflows/package.json b/pkg/plugins/vercel-workflows/package.json index 21430356..9d616869 100644 --- a/pkg/plugins/vercel-workflows/package.json +++ b/pkg/plugins/vercel-workflows/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/vercel-workflows", - "version": "0.0.9", + "version": "0.0.10", "description": "Run Flowlib primitive flows as Vercel Workflows — server plugin and single-step wrapping helpers", "license": "MIT", "author": "robase ", diff --git a/pkg/plugins/version-control/CHANGELOG.md b/pkg/plugins/version-control/CHANGELOG.md index ebb79198..78c803ac 100644 --- a/pkg/plugins/version-control/CHANGELOG.md +++ b/pkg/plugins/version-control/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/version-control +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/sdk@0.0.10 + - @flowlib/ui@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/version-control/package.json b/pkg/plugins/version-control/package.json index c4b0fb17..94d0f958 100644 --- a/pkg/plugins/version-control/package.json +++ b/pkg/plugins/version-control/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/version-control", - "version": "0.0.9", + "version": "0.0.10", "description": "Version control plugin for Flowlib — sync flows to GitHub/GitLab/Bitbucket as .flow.ts files", "license": "MIT", "repository": { diff --git a/pkg/plugins/webhooks/CHANGELOG.md b/pkg/plugins/webhooks/CHANGELOG.md index 45a11aec..17ffcff6 100644 --- a/pkg/plugins/webhooks/CHANGELOG.md +++ b/pkg/plugins/webhooks/CHANGELOG.md @@ -1,5 +1,16 @@ # @flowlib/webhooks +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/ui@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/plugins/webhooks/package.json b/pkg/plugins/webhooks/package.json index e7b18260..884af68b 100644 --- a/pkg/plugins/webhooks/package.json +++ b/pkg/plugins/webhooks/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/webhooks", - "version": "0.0.9", + "version": "0.0.10", "description": "Webhook trigger plugin for Flowlib — adds webhook management, ingestion, signature verification, and a dedicated webhooks UI page", "keywords": [ "flowlib", diff --git a/pkg/primitives/CHANGELOG.md b/pkg/primitives/CHANGELOG.md index 9e900fe3..6693580e 100644 --- a/pkg/primitives/CHANGELOG.md +++ b/pkg/primitives/CHANGELOG.md @@ -1,5 +1,14 @@ # @flowlib/primitives +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/action-kit@0.0.10 + - @flowlib/actions@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/primitives/package.json b/pkg/primitives/package.json index d2c945e7..335ac396 100644 --- a/pkg/primitives/package.json +++ b/pkg/primitives/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/primitives", - "version": "0.0.9", + "version": "0.0.10", "description": "TypeScript-native flow execution primitives — run Flowlib flows in any JS runtime without a database or framework", "license": "MIT", "author": "robase ", diff --git a/pkg/sdk/CHANGELOG.md b/pkg/sdk/CHANGELOG.md index c908c2fb..f8bba058 100644 --- a/pkg/sdk/CHANGELOG.md +++ b/pkg/sdk/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/sdk +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies []: + - @flowlib/action-kit@0.0.10 + - @flowlib/actions@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/sdk/package.json b/pkg/sdk/package.json index 94c090fd..b3ed5a7a 100644 --- a/pkg/sdk/package.json +++ b/pkg/sdk/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/sdk", - "version": "0.0.9", + "version": "0.0.10", "description": "Unified authoring SDK for Flowlib flows — defineFlow, core node helpers, and the canonical serializer", "keywords": [ "flowlib", diff --git a/pkg/ui/CHANGELOG.md b/pkg/ui/CHANGELOG.md index b2315fd8..8626e0e3 100644 --- a/pkg/ui/CHANGELOG.md +++ b/pkg/ui/CHANGELOG.md @@ -1,5 +1,15 @@ # @flowlib/ui +## 0.0.10 + +### Patch Changes + +- [#24](https://github.com/robase/flowlib/pull/24) [`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724) Thanks [@robase](https://github.com/robase)! - feat: Agents plugin v2 ([#22](https://github.com/robase/flowlib/issues/22)) + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/sdk@0.0.10 + - @flowlib/layouts@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/ui/package.json b/pkg/ui/package.json index 8ac4b993..3cc2bf90 100644 --- a/pkg/ui/package.json +++ b/pkg/ui/package.json @@ -1,6 +1,6 @@ { "name": "@flowlib/ui", - "version": "0.0.9", + "version": "0.0.10", "description": "Complete React components and routes for Flowlib workflow management", "keywords": [ "components", diff --git a/pkg/vsix-extension/CHANGELOG.md b/pkg/vsix-extension/CHANGELOG.md index 52729a03..e390a6e1 100644 --- a/pkg/vsix-extension/CHANGELOG.md +++ b/pkg/vsix-extension/CHANGELOG.md @@ -1,5 +1,19 @@ # Changelog +## 0.0.10 + +### Patch Changes + +- Updated dependencies [[`d2cd0ef`](https://github.com/robase/flowlib/commit/d2cd0efbc8de5281376bbea5b2a28fb34fb9e724)]: + - @flowlib/core@0.0.10 + - @flowlib/db@0.0.10 + - @flowlib/express@0.0.10 + - @flowlib/mcp@0.0.10 + - @flowlib/sdk@0.0.10 + - @flowlib/ui@0.0.10 + - @flowlib/webhooks@0.0.10 + - @flowlib/action-kit@0.0.10 + ## 0.0.9 ### Patch Changes diff --git a/pkg/vsix-extension/package.json b/pkg/vsix-extension/package.json index 7f84ad45..8303a9ce 100644 --- a/pkg/vsix-extension/package.json +++ b/pkg/vsix-extension/package.json @@ -1,7 +1,7 @@ { "name": "@flowlib/vsix", "displayName": "Flowlib", - "version": "0.0.9", + "version": "0.0.10", "private": true, "description": "Edit Flowlib flows visually inside VSCode. .flow.ts files are the source of truth.", "categories": [