Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions workspaces/x2a/.changeset/cool-candies-heal.md

This file was deleted.

6 changes: 0 additions & 6 deletions workspaces/x2a/.changeset/refactor-callback-token.md

This file was deleted.

20 changes: 0 additions & 20 deletions workspaces/x2a/.changeset/rules.md

This file was deleted.

9 changes: 0 additions & 9 deletions workspaces/x2a/.changeset/shaggy-beers-fry.md

This file was deleted.

10 changes: 0 additions & 10 deletions workspaces/x2a/.changeset/upset-pianos-sleep.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# @red-hat-developer-hub/backstage-plugin-scaffolder-backend-module-x2a

## 0.4.0

### Minor Changes

- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

### Patch Changes

- daaea27: Changed the project to be source-technology agnostic. Rephrasing all texts from being Chef-oriented to more generic variants. There is explicit mapping from free-form agentic findings to the new SourceTechnology enum (normalizeSourceTechnology.ts).
- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.
- Updated dependencies [e887fb4]
- Updated dependencies [f13f2c5]
- Updated dependencies [daaea27]
- Updated dependencies [8d71b85]
- @red-hat-developer-hub/backstage-plugin-x2a-common@1.3.0

## 0.3.1

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-scaffolder-backend-module-x2a",
"version": "0.3.1",
"version": "0.4.0",
"license": "Apache-2.0",
"description": "The x2a module for @backstage/plugin-scaffolder-backend",
"main": "src/index.ts",
Expand Down
30 changes: 30 additions & 0 deletions workspaces/x2a/plugins/x2a-backend/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,35 @@
# @red-hat-developer-hub/backstage-plugin-x2a-backend

## 1.5.0

### Minor Changes

- e887fb4: Added "Edit project" action.

### Patch Changes

- b32708f: Refactored callback token handling into a self-validating `CallbackToken` class that encapsulates generation, HMAC signing, and signature verification.
- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

- daaea27: Changed the project to be source-technology agnostic. Rephrasing all texts from being Chef-oriented to more generic variants. There is explicit mapping from free-form agentic findings to the new SourceTechnology enum (normalizeSourceTechnology.ts).
- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.
- Updated dependencies [e887fb4]
- Updated dependencies [b32708f]
- Updated dependencies [f13f2c5]
- Updated dependencies [daaea27]
- Updated dependencies [8d71b85]
- @red-hat-developer-hub/backstage-plugin-x2a-common@1.3.0
- @red-hat-developer-hub/backstage-plugin-x2a-node@0.3.0

## 1.4.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/x2a/plugins/x2a-backend/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-x2a-backend",
"version": "1.4.2",
"version": "1.5.0",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
21 changes: 21 additions & 0 deletions workspaces/x2a/plugins/x2a-common/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @red-hat-developer-hub/backstage-plugin-x2a-common

## 1.3.0

### Minor Changes

- e887fb4: Added "Edit project" action.
- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

### Patch Changes

- daaea27: Changed the project to be source-technology agnostic. Rephrasing all texts from being Chef-oriented to more generic variants. There is explicit mapping from free-form agentic findings to the new SourceTechnology enum (normalizeSourceTechnology.ts).
- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.

## 1.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/x2a/plugins/x2a-common/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-x2a-common",
"version": "1.2.1",
"version": "1.3.0",
"license": "Apache-2.0",
"description": "Common functionalities for the x2a plugin",
"main": "src/index.ts",
Expand Down
24 changes: 24 additions & 0 deletions workspaces/x2a/plugins/x2a-mcp-extras/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @red-hat-developer-hub/backstage-plugin-x2a-mcp-extras

## 0.2.2

### Patch Changes

- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.
- Updated dependencies [e887fb4]
- Updated dependencies [b32708f]
- Updated dependencies [f13f2c5]
- Updated dependencies [daaea27]
- Updated dependencies [8d71b85]
- @red-hat-developer-hub/backstage-plugin-x2a-common@1.3.0
- @red-hat-developer-hub/backstage-plugin-x2a-node@0.3.0

## 0.2.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/x2a/plugins/x2a-mcp-extras/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-x2a-mcp-extras",
"version": "0.2.1",
"version": "0.2.2",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down
28 changes: 28 additions & 0 deletions workspaces/x2a/plugins/x2a-node/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# @red-hat-developer-hub/backstage-plugin-x2a-node

## 0.3.0

### Minor Changes

- e887fb4: Added "Edit project" action.

### Patch Changes

- b32708f: Refactored callback token handling into a self-validating `CallbackToken` class that encapsulates generation, HMAC signing, and signature verification.
- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

- daaea27: Changed the project to be source-technology agnostic. Rephrasing all texts from being Chef-oriented to more generic variants. There is explicit mapping from free-form agentic findings to the new SourceTechnology enum (normalizeSourceTechnology.ts).
- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.
- Updated dependencies [e887fb4]
- Updated dependencies [f13f2c5]
- Updated dependencies [daaea27]
- Updated dependencies [8d71b85]
- @red-hat-developer-hub/backstage-plugin-x2a-common@1.3.0

## 0.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/x2a/plugins/x2a-node/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-x2a-node",
"version": "0.2.2",
"version": "0.3.0",
"license": "Apache-2.0",
"description": "Shared backend API surface (interfaces, service refs, utilities) for x2a plugins",
"main": "src/index.ts",
Expand Down
27 changes: 27 additions & 0 deletions workspaces/x2a/plugins/x2a/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,32 @@
# @red-hat-developer-hub/backstage-plugin-x2a

## 1.3.0

### Minor Changes

- e887fb4: Added "Edit project" action.

### Patch Changes

- f13f2c5: feat(x2a): Add `Rules` API

This add a way to create into the init phase the x2a-rules introduced on x2a-convertor, and take advantage of the INPUT-AGENTS.md and EXPORT-AGENTS.md

Summary of Changes:
- New /rules/ api endpoints. (only admin can add it)
- New Configmap on init phase.
- Small changes on the script template.
- New MCP tool to list all rules: x2a-list-rules (Also updated the project create)
- Change on CSV to support rules.

- daaea27: Changed the project to be source-technology agnostic. Rephrasing all texts from being Chef-oriented to more generic variants. There is explicit mapping from free-form agentic findings to the new SourceTechnology enum (normalizeSourceTechnology.ts).
- 8d71b85: Removing Abbreviation from project's details. Replaced by project directory calculated from the project's name.
- Updated dependencies [e887fb4]
- Updated dependencies [f13f2c5]
- Updated dependencies [daaea27]
- Updated dependencies [8d71b85]
- @red-hat-developer-hub/backstage-plugin-x2a-common@1.3.0

## 1.2.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion workspaces/x2a/plugins/x2a/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@red-hat-developer-hub/backstage-plugin-x2a",
"version": "1.2.2",
"version": "1.3.0",
"license": "Apache-2.0",
"main": "src/index.ts",
"types": "src/index.ts",
Expand Down