From 14fc226b605ecfef6f198fbfd660a9c8a5127329 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 25 May 2026 20:50:31 +0000 Subject: [PATCH] Version Packages --- .../.changeset/agent-registry-governance.md | 7 ------- .../.changeset/augment-initial-release.md | 7 ------- .../augment/.changeset/lifecycle-hardening.md | 7 ------- .../.changeset/phase-c-approval-workflow.md | 7 ------- .../plugins/augment-backend/CHANGELOG.md | 18 ++++++++++++++++++ .../plugins/augment-backend/package.json | 2 +- .../plugins/augment-common/CHANGELOG.md | 10 ++++++++++ .../plugins/augment-common/package.json | 2 +- .../augment/plugins/augment/CHANGELOG.md | 18 ++++++++++++++++++ .../augment/plugins/augment/package.json | 2 +- 10 files changed, 49 insertions(+), 31 deletions(-) delete mode 100644 workspaces/augment/.changeset/agent-registry-governance.md delete mode 100644 workspaces/augment/.changeset/augment-initial-release.md delete mode 100644 workspaces/augment/.changeset/lifecycle-hardening.md delete mode 100644 workspaces/augment/.changeset/phase-c-approval-workflow.md create mode 100644 workspaces/augment/plugins/augment-backend/CHANGELOG.md create mode 100644 workspaces/augment/plugins/augment-common/CHANGELOG.md create mode 100644 workspaces/augment/plugins/augment/CHANGELOG.md diff --git a/workspaces/augment/.changeset/agent-registry-governance.md b/workspaces/augment/.changeset/agent-registry-governance.md deleted file mode 100644 index ad6ba505b7..0000000000 --- a/workspaces/augment/.changeset/agent-registry-governance.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-augment': minor -'@red-hat-developer-hub/backstage-plugin-augment-backend': minor -'@red-hat-developer-hub/backstage-plugin-augment-common': minor ---- - -Add agent registry governance: unified agent listings with governanceRegistered flag, register-for-governance API, strict lifecycle transitions on publish/unpublish, and Registry UI with unregistered agent warnings and bulk actions. diff --git a/workspaces/augment/.changeset/augment-initial-release.md b/workspaces/augment/.changeset/augment-initial-release.md deleted file mode 100644 index 16d6e431a9..0000000000 --- a/workspaces/augment/.changeset/augment-initial-release.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-augment': minor -'@red-hat-developer-hub/backstage-plugin-augment-backend': minor -'@red-hat-developer-hub/backstage-plugin-augment-common': minor ---- - -Initial release of the Augment AI assistant plugin for Backstage. Provides a chat interface backed by Llama Stack with RAG, tool calling, multi-agent orchestration, and configurable safety guardrails. diff --git a/workspaces/augment/.changeset/lifecycle-hardening.md b/workspaces/augment/.changeset/lifecycle-hardening.md deleted file mode 100644 index 8aa8cc6e64..0000000000 --- a/workspaces/augment/.changeset/lifecycle-hardening.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-augment': minor -'@red-hat-developer-hub/backstage-plugin-augment-backend': minor -'@red-hat-developer-hub/backstage-plugin-augment-common': minor ---- - -Agent lifecycle hardening: add 5-stage promotion pipeline (draft/review/staging/production/retired), ownership-gated operations, rejection tracking, role-aware UI, admin polling dashboards, cascading delete, and SonataFlow agent-approval workflow. diff --git a/workspaces/augment/.changeset/phase-c-approval-workflow.md b/workspaces/augment/.changeset/phase-c-approval-workflow.md deleted file mode 100644 index ea6a58deb7..0000000000 --- a/workspaces/augment/.changeset/phase-c-approval-workflow.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-augment-backend': minor -'@red-hat-developer-hub/backstage-plugin-augment-common': minor -'@red-hat-developer-hub/backstage-plugin-augment': minor ---- - -Add SonataFlow agent approval workflow integration with dual-mode support (immediate or workflow-based transitions), request-unpublish and withdraw endpoints. diff --git a/workspaces/augment/plugins/augment-backend/CHANGELOG.md b/workspaces/augment/plugins/augment-backend/CHANGELOG.md new file mode 100644 index 0000000000..d33d60b8b4 --- /dev/null +++ b/workspaces/augment/plugins/augment-backend/CHANGELOG.md @@ -0,0 +1,18 @@ +# @red-hat-developer-hub/backstage-plugin-augment-backend + +## 0.2.0 + +### Minor Changes + +- b418448: Add agent registry governance: unified agent listings with governanceRegistered flag, register-for-governance API, strict lifecycle transitions on publish/unpublish, and Registry UI with unregistered agent warnings and bulk actions. +- afaed59: Initial release of the Augment AI assistant plugin for Backstage. Provides a chat interface backed by Llama Stack with RAG, tool calling, multi-agent orchestration, and configurable safety guardrails. +- 3e18b17: Agent lifecycle hardening: add 5-stage promotion pipeline (draft/review/staging/production/retired), ownership-gated operations, rejection tracking, role-aware UI, admin polling dashboards, cascading delete, and SonataFlow agent-approval workflow. +- 717a651: Add SonataFlow agent approval workflow integration with dual-mode support (immediate or workflow-based transitions), request-unpublish and withdraw endpoints. + +### Patch Changes + +- Updated dependencies [b418448] +- Updated dependencies [afaed59] +- Updated dependencies [3e18b17] +- Updated dependencies [717a651] + - @red-hat-developer-hub/backstage-plugin-augment-common@0.2.0 diff --git a/workspaces/augment/plugins/augment-backend/package.json b/workspaces/augment/plugins/augment-backend/package.json index de9dfc3661..5dfaacd51c 100644 --- a/workspaces/augment/plugins/augment-backend/package.json +++ b/workspaces/augment/plugins/augment-backend/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-augment-backend", - "version": "0.1.0", + "version": "0.2.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/workspaces/augment/plugins/augment-common/CHANGELOG.md b/workspaces/augment/plugins/augment-common/CHANGELOG.md new file mode 100644 index 0000000000..8f12bfa6cb --- /dev/null +++ b/workspaces/augment/plugins/augment-common/CHANGELOG.md @@ -0,0 +1,10 @@ +# @red-hat-developer-hub/backstage-plugin-augment-common + +## 0.2.0 + +### Minor Changes + +- b418448: Add agent registry governance: unified agent listings with governanceRegistered flag, register-for-governance API, strict lifecycle transitions on publish/unpublish, and Registry UI with unregistered agent warnings and bulk actions. +- afaed59: Initial release of the Augment AI assistant plugin for Backstage. Provides a chat interface backed by Llama Stack with RAG, tool calling, multi-agent orchestration, and configurable safety guardrails. +- 3e18b17: Agent lifecycle hardening: add 5-stage promotion pipeline (draft/review/staging/production/retired), ownership-gated operations, rejection tracking, role-aware UI, admin polling dashboards, cascading delete, and SonataFlow agent-approval workflow. +- 717a651: Add SonataFlow agent approval workflow integration with dual-mode support (immediate or workflow-based transitions), request-unpublish and withdraw endpoints. diff --git a/workspaces/augment/plugins/augment-common/package.json b/workspaces/augment/plugins/augment-common/package.json index 8226c763f0..dd4e13a881 100644 --- a/workspaces/augment/plugins/augment-common/package.json +++ b/workspaces/augment/plugins/augment-common/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-augment-common", - "version": "0.1.0", + "version": "0.2.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/workspaces/augment/plugins/augment/CHANGELOG.md b/workspaces/augment/plugins/augment/CHANGELOG.md new file mode 100644 index 0000000000..8db8fe6cdc --- /dev/null +++ b/workspaces/augment/plugins/augment/CHANGELOG.md @@ -0,0 +1,18 @@ +# @red-hat-developer-hub/backstage-plugin-augment + +## 0.2.0 + +### Minor Changes + +- b418448: Add agent registry governance: unified agent listings with governanceRegistered flag, register-for-governance API, strict lifecycle transitions on publish/unpublish, and Registry UI with unregistered agent warnings and bulk actions. +- afaed59: Initial release of the Augment AI assistant plugin for Backstage. Provides a chat interface backed by Llama Stack with RAG, tool calling, multi-agent orchestration, and configurable safety guardrails. +- 3e18b17: Agent lifecycle hardening: add 5-stage promotion pipeline (draft/review/staging/production/retired), ownership-gated operations, rejection tracking, role-aware UI, admin polling dashboards, cascading delete, and SonataFlow agent-approval workflow. +- 717a651: Add SonataFlow agent approval workflow integration with dual-mode support (immediate or workflow-based transitions), request-unpublish and withdraw endpoints. + +### Patch Changes + +- Updated dependencies [b418448] +- Updated dependencies [afaed59] +- Updated dependencies [3e18b17] +- Updated dependencies [717a651] + - @red-hat-developer-hub/backstage-plugin-augment-common@0.2.0 diff --git a/workspaces/augment/plugins/augment/package.json b/workspaces/augment/plugins/augment/package.json index 7284609216..455dfeca79 100644 --- a/workspaces/augment/plugins/augment/package.json +++ b/workspaces/augment/plugins/augment/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-augment", - "version": "0.1.0", + "version": "0.2.0", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0",