diff --git a/workspaces/orchestrator/.changeset/fix-multiselect-enter-key.md b/workspaces/orchestrator/.changeset/fix-multiselect-enter-key.md deleted file mode 100644 index a32db35b11..0000000000 --- a/workspaces/orchestrator/.changeset/fix-multiselect-enter-key.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-orchestrator-form-widgets': patch ---- - -Fixed ActiveMultiSelect Enter key behavior when `ui:allowNewItems` is enabled. Pressing Enter now adds a new chip instead of submitting the form to the next step. diff --git a/workspaces/orchestrator/.changeset/rbac-permission-denied-panel.md b/workspaces/orchestrator/.changeset/rbac-permission-denied-panel.md deleted file mode 100644 index 18dc7d33af..0000000000 --- a/workspaces/orchestrator/.changeset/rbac-permission-denied-panel.md +++ /dev/null @@ -1,12 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-orchestrator': patch -'@red-hat-developer-hub/backstage-plugin-orchestrator-backend': patch ---- - -feat: Improve permission denied error handling for workflow instances - -- Add PermissionDeniedPanel component for clean access denied UI -- Improve backend error messages when user lacks instanceAdminView permission -- Provide detailed error messages explaining why access is denied: - - When instance has no ownership info (external/legacy runs) - - When instance was created by another user diff --git a/workspaces/orchestrator/.changeset/renovate-53cc25d.md b/workspaces/orchestrator/.changeset/renovate-53cc25d.md deleted file mode 100644 index 3651d26e42..0000000000 --- a/workspaces/orchestrator/.changeset/renovate-53cc25d.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'@red-hat-developer-hub/backstage-plugin-orchestrator-backend': patch -'@red-hat-developer-hub/backstage-plugin-orchestrator-form-api': patch -'@red-hat-developer-hub/backstage-plugin-orchestrator-form-react': patch -'@red-hat-developer-hub/backstage-plugin-orchestrator': patch ---- - -Updated dependency `prettier` to `3.8.0`. diff --git a/workspaces/orchestrator/plugins/orchestrator-backend/CHANGELOG.md b/workspaces/orchestrator/plugins/orchestrator-backend/CHANGELOG.md index f0773d9dcf..b1e25e7518 100644 --- a/workspaces/orchestrator/plugins/orchestrator-backend/CHANGELOG.md +++ b/workspaces/orchestrator/plugins/orchestrator-backend/CHANGELOG.md @@ -1,5 +1,18 @@ ### Dependencies +## 8.6.1 + +### Patch Changes + +- 0f60a00: feat: Improve permission denied error handling for workflow instances + - Add PermissionDeniedPanel component for clean access denied UI + - Improve backend error messages when user lacks instanceAdminView permission + - Provide detailed error messages explaining why access is denied: + - When instance has no ownership info (external/legacy runs) + - When instance was created by another user + +- 9c17c36: Updated dependency `prettier` to `3.8.0`. + ## 8.6.0 ### Minor Changes diff --git a/workspaces/orchestrator/plugins/orchestrator-backend/package.json b/workspaces/orchestrator/plugins/orchestrator-backend/package.json index 7ce9ac1552..d5012eab0c 100644 --- a/workspaces/orchestrator/plugins/orchestrator-backend/package.json +++ b/workspaces/orchestrator/plugins/orchestrator-backend/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-orchestrator-backend", - "version": "8.6.0", + "version": "8.6.1", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts", diff --git a/workspaces/orchestrator/plugins/orchestrator-form-api/CHANGELOG.md b/workspaces/orchestrator/plugins/orchestrator-form-api/CHANGELOG.md index fcb31d5187..f9b5040c8a 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-api/CHANGELOG.md +++ b/workspaces/orchestrator/plugins/orchestrator-form-api/CHANGELOG.md @@ -1,5 +1,11 @@ # @red-hat-developer-hub/backstage-plugin-orchestrator-form-api +## 2.4.3 + +### Patch Changes + +- 9c17c36: Updated dependency `prettier` to `3.8.0`. + ## 2.4.2 ### Patch Changes diff --git a/workspaces/orchestrator/plugins/orchestrator-form-api/package.json b/workspaces/orchestrator/plugins/orchestrator-form-api/package.json index ed0d4eff5f..f67eb22e54 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-api/package.json +++ b/workspaces/orchestrator/plugins/orchestrator-form-api/package.json @@ -1,7 +1,7 @@ { "name": "@red-hat-developer-hub/backstage-plugin-orchestrator-form-api", "description": "library for orchestrator form api, enabling creating a factory to extend the workflow execution form", - "version": "2.4.2", + "version": "2.4.3", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/workspaces/orchestrator/plugins/orchestrator-form-react/CHANGELOG.md b/workspaces/orchestrator/plugins/orchestrator-form-react/CHANGELOG.md index 5f93d8ff71..23a5d3d964 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-react/CHANGELOG.md +++ b/workspaces/orchestrator/plugins/orchestrator-form-react/CHANGELOG.md @@ -1,5 +1,13 @@ ### Dependencies +## 2.5.2 + +### Patch Changes + +- 9c17c36: Updated dependency `prettier` to `3.8.0`. +- Updated dependencies [9c17c36] + - @red-hat-developer-hub/backstage-plugin-orchestrator-form-api@2.4.3 + ## 2.5.1 ### Patch Changes diff --git a/workspaces/orchestrator/plugins/orchestrator-form-react/package.json b/workspaces/orchestrator/plugins/orchestrator-form-react/package.json index ab0a591f3b..674bf94294 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-react/package.json +++ b/workspaces/orchestrator/plugins/orchestrator-form-react/package.json @@ -1,7 +1,7 @@ { "name": "@red-hat-developer-hub/backstage-plugin-orchestrator-form-react", "description": "Web library for the orchestrator-form plugin", - "version": "2.5.1", + "version": "2.5.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/workspaces/orchestrator/plugins/orchestrator-form-widgets/CHANGELOG.md b/workspaces/orchestrator/plugins/orchestrator-form-widgets/CHANGELOG.md index 6880cdaf77..73261a53a8 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-widgets/CHANGELOG.md +++ b/workspaces/orchestrator/plugins/orchestrator-form-widgets/CHANGELOG.md @@ -1,5 +1,13 @@ # @red-hat-developer-hub/backstage-plugin-orchestrator-form-widgets +## 1.6.2 + +### Patch Changes + +- e6987f1: Fixed ActiveMultiSelect Enter key behavior when `ui:allowNewItems` is enabled. Pressing Enter now adds a new chip instead of submitting the form to the next step. +- Updated dependencies [9c17c36] + - @red-hat-developer-hub/backstage-plugin-orchestrator-form-api@2.4.3 + ## 1.6.1 ### Patch Changes diff --git a/workspaces/orchestrator/plugins/orchestrator-form-widgets/package.json b/workspaces/orchestrator/plugins/orchestrator-form-widgets/package.json index 3d38473ca9..925eec1fd8 100644 --- a/workspaces/orchestrator/plugins/orchestrator-form-widgets/package.json +++ b/workspaces/orchestrator/plugins/orchestrator-form-widgets/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-orchestrator-form-widgets", - "version": "1.6.1", + "version": "1.6.2", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts", diff --git a/workspaces/orchestrator/plugins/orchestrator/CHANGELOG.md b/workspaces/orchestrator/plugins/orchestrator/CHANGELOG.md index a8574fbfe5..d3553bc0a7 100644 --- a/workspaces/orchestrator/plugins/orchestrator/CHANGELOG.md +++ b/workspaces/orchestrator/plugins/orchestrator/CHANGELOG.md @@ -1,5 +1,21 @@ ### Dependencies +## 5.4.1 + +### Patch Changes + +- 0f60a00: feat: Improve permission denied error handling for workflow instances + - Add PermissionDeniedPanel component for clean access denied UI + - Improve backend error messages when user lacks instanceAdminView permission + - Provide detailed error messages explaining why access is denied: + - When instance has no ownership info (external/legacy runs) + - When instance was created by another user + +- 9c17c36: Updated dependency `prettier` to `3.8.0`. +- Updated dependencies [9c17c36] + - @red-hat-developer-hub/backstage-plugin-orchestrator-form-api@2.4.3 + - @red-hat-developer-hub/backstage-plugin-orchestrator-form-react@2.5.2 + ## 5.4.0 ### Minor Changes diff --git a/workspaces/orchestrator/plugins/orchestrator/package.json b/workspaces/orchestrator/plugins/orchestrator/package.json index 480f6460c7..83d6cd55fe 100644 --- a/workspaces/orchestrator/plugins/orchestrator/package.json +++ b/workspaces/orchestrator/plugins/orchestrator/package.json @@ -1,6 +1,6 @@ { "name": "@red-hat-developer-hub/backstage-plugin-orchestrator", - "version": "5.4.0", + "version": "5.4.1", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts",