From 014e6957da220dcc6f0a1075e41a25dd805aec34 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Mon, 25 Nov 2024 06:57:20 +0000 Subject: [PATCH] chore(release): version packages on main branch --- .changeset/cyan-tigers-jam.md | 7 ------- .changeset/spicy-owls-smoke.md | 7 ------- plugins/orchestrator-backend/CHANGELOG.md | 8 ++++++++ plugins/orchestrator-backend/package.json | 4 ++-- plugins/orchestrator-common/CHANGELOG.md | 6 ++++++ plugins/orchestrator-common/package.json | 2 +- plugins/orchestrator-form-api/CHANGELOG.md | 6 ++++++ plugins/orchestrator-form-api/package.json | 2 +- plugins/orchestrator-form-react/CHANGELOG.md | 8 ++++++++ plugins/orchestrator-form-react/package.json | 4 ++-- plugins/orchestrator/CHANGELOG.md | 12 ++++++++++++ plugins/orchestrator/package.json | 8 ++++---- 12 files changed, 50 insertions(+), 24 deletions(-) delete mode 100644 .changeset/cyan-tigers-jam.md delete mode 100644 .changeset/spicy-owls-smoke.md diff --git a/.changeset/cyan-tigers-jam.md b/.changeset/cyan-tigers-jam.md deleted file mode 100644 index 40cad27e35..0000000000 --- a/.changeset/cyan-tigers-jam.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@janus-idp/backstage-plugin-orchestrator-form-react": patch -"@janus-idp/backstage-plugin-orchestrator-form-api": patch -"@janus-idp/backstage-plugin-orchestrator": patch ---- - -pass also initial form data to custom decorator diff --git a/.changeset/spicy-owls-smoke.md b/.changeset/spicy-owls-smoke.md deleted file mode 100644 index 0b48edd175..0000000000 --- a/.changeset/spicy-owls-smoke.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@janus-idp/backstage-plugin-orchestrator-backend": patch -"@janus-idp/backstage-plugin-orchestrator-common": patch -"@janus-idp/backstage-plugin-orchestrator": patch ---- - -The parent assessment link is shown again thanks to fixing passing of the businessKey when "execute" action is trigerred. diff --git a/plugins/orchestrator-backend/CHANGELOG.md b/plugins/orchestrator-backend/CHANGELOG.md index ecfe95db93..d18d75532a 100644 --- a/plugins/orchestrator-backend/CHANGELOG.md +++ b/plugins/orchestrator-backend/CHANGELOG.md @@ -1,5 +1,13 @@ ### Dependencies +## 4.1.1 + +### Patch Changes + +- f75ff15: The parent assessment link is shown again thanks to fixing passing of the businessKey when "execute" action is trigerred. +- Updated dependencies [f75ff15] + - @janus-idp/backstage-plugin-orchestrator-common@1.24.1 + ## 4.1.0 ### Minor Changes diff --git a/plugins/orchestrator-backend/package.json b/plugins/orchestrator-backend/package.json index fe290afb1d..ed0216dab0 100644 --- a/plugins/orchestrator-backend/package.json +++ b/plugins/orchestrator-backend/package.json @@ -1,6 +1,6 @@ { "name": "@janus-idp/backstage-plugin-orchestrator-backend", - "version": "4.1.0", + "version": "4.1.1", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts", @@ -76,7 +76,7 @@ "@backstage/plugin-permission-node": "^0.8.4", "@backstage/plugin-scaffolder-backend": "^1.26.2", "@backstage/plugin-scaffolder-node": "^0.5.0", - "@janus-idp/backstage-plugin-orchestrator-common": "^1.24.0", + "@janus-idp/backstage-plugin-orchestrator-common": "^1.24.1", "@urql/core": "^4.1.4", "ajv-formats": "^2.1.1", "cloudevents": "^8.0.0", diff --git a/plugins/orchestrator-common/CHANGELOG.md b/plugins/orchestrator-common/CHANGELOG.md index 5601bb423a..daf326a151 100644 --- a/plugins/orchestrator-common/CHANGELOG.md +++ b/plugins/orchestrator-common/CHANGELOG.md @@ -1,5 +1,11 @@ ## @janus-idp/backstage-plugin-orchestrator-common [1.13.1](https://github.com/janus-idp/backstage-plugins/compare/@janus-idp/backstage-plugin-orchestrator-common@1.13.0...@janus-idp/backstage-plugin-orchestrator-common@1.13.1) (2024-08-02) +## 1.24.1 + +### Patch Changes + +- f75ff15: The parent assessment link is shown again thanks to fixing passing of the businessKey when "execute" action is trigerred. + ## 1.24.0 ### Minor Changes diff --git a/plugins/orchestrator-common/package.json b/plugins/orchestrator-common/package.json index e14df56439..8eb4008be7 100644 --- a/plugins/orchestrator-common/package.json +++ b/plugins/orchestrator-common/package.json @@ -1,6 +1,6 @@ { "name": "@janus-idp/backstage-plugin-orchestrator-common", - "version": "1.24.0", + "version": "1.24.1", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts", diff --git a/plugins/orchestrator-form-api/CHANGELOG.md b/plugins/orchestrator-form-api/CHANGELOG.md index b84a900006..d7cbe54be4 100644 --- a/plugins/orchestrator-form-api/CHANGELOG.md +++ b/plugins/orchestrator-form-api/CHANGELOG.md @@ -1,5 +1,11 @@ # @janus-idp/backstage-plugin-orchestrator-form-api +## 1.4.2 + +### Patch Changes + +- 1e6e274: pass also initial form data to custom decorator + ## 1.4.1 ### Patch Changes diff --git a/plugins/orchestrator-form-api/package.json b/plugins/orchestrator-form-api/package.json index 47fda8bfe9..f5d14b1434 100644 --- a/plugins/orchestrator-form-api/package.json +++ b/plugins/orchestrator-form-api/package.json @@ -1,7 +1,7 @@ { "name": "@janus-idp/backstage-plugin-orchestrator-form-api", "description": "library for orchestrator form api, enabling creating a factory to extend the workflow execution form", - "version": "1.4.1", + "version": "1.4.2", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", diff --git a/plugins/orchestrator-form-react/CHANGELOG.md b/plugins/orchestrator-form-react/CHANGELOG.md index 018b599f72..110ea69ed4 100644 --- a/plugins/orchestrator-form-react/CHANGELOG.md +++ b/plugins/orchestrator-form-react/CHANGELOG.md @@ -1,5 +1,13 @@ ### Dependencies +## 1.4.3 + +### Patch Changes + +- 1e6e274: pass also initial form data to custom decorator +- Updated dependencies [1e6e274] + - @janus-idp/backstage-plugin-orchestrator-form-api@1.4.2 + ## 1.4.2 ### Patch Changes diff --git a/plugins/orchestrator-form-react/package.json b/plugins/orchestrator-form-react/package.json index ef0e96f2db..d404a9ff79 100644 --- a/plugins/orchestrator-form-react/package.json +++ b/plugins/orchestrator-form-react/package.json @@ -1,7 +1,7 @@ { "name": "@janus-idp/backstage-plugin-orchestrator-form-react", "description": "Web library for the orchestrator-form plugin", - "version": "1.4.2", + "version": "1.4.3", "main": "src/index.ts", "types": "src/index.ts", "license": "Apache-2.0", @@ -36,7 +36,7 @@ "@backstage/core-components": "^0.15.1", "@backstage/core-plugin-api": "^1.10.0", "@backstage/types": "^1.1.1", - "@janus-idp/backstage-plugin-orchestrator-form-api": "^1.4.1", + "@janus-idp/backstage-plugin-orchestrator-form-api": "^1.4.2", "@material-ui/core": "^4.12.4", "@rjsf/core": "^5.21.2", "@rjsf/material-ui": "^5.21.2", diff --git a/plugins/orchestrator/CHANGELOG.md b/plugins/orchestrator/CHANGELOG.md index bea8326f23..0be39c0622 100644 --- a/plugins/orchestrator/CHANGELOG.md +++ b/plugins/orchestrator/CHANGELOG.md @@ -1,5 +1,17 @@ ### Dependencies +## 2.4.1 + +### Patch Changes + +- 1e6e274: pass also initial form data to custom decorator +- f75ff15: The parent assessment link is shown again thanks to fixing passing of the businessKey when "execute" action is trigerred. +- Updated dependencies [1e6e274] +- Updated dependencies [f75ff15] + - @janus-idp/backstage-plugin-orchestrator-form-react@1.4.3 + - @janus-idp/backstage-plugin-orchestrator-form-api@1.4.2 + - @janus-idp/backstage-plugin-orchestrator-common@1.24.1 + ## 2.4.0 ### Minor Changes diff --git a/plugins/orchestrator/package.json b/plugins/orchestrator/package.json index 158d3b533e..4b986c234e 100644 --- a/plugins/orchestrator/package.json +++ b/plugins/orchestrator/package.json @@ -1,6 +1,6 @@ { "name": "@janus-idp/backstage-plugin-orchestrator", - "version": "2.4.0", + "version": "2.4.1", "license": "Apache-2.0", "main": "src/index.ts", "types": "src/index.ts", @@ -59,9 +59,9 @@ "@backstage/errors": "^1.2.4", "@backstage/plugin-catalog": "^1.24.0", "@backstage/plugin-permission-react": "^0.4.27", - "@janus-idp/backstage-plugin-orchestrator-common": "^1.24.0", - "@janus-idp/backstage-plugin-orchestrator-form-api": "^1.4.1", - "@janus-idp/backstage-plugin-orchestrator-form-react": "^1.4.2", + "@janus-idp/backstage-plugin-orchestrator-common": "^1.24.1", + "@janus-idp/backstage-plugin-orchestrator-form-api": "^1.4.2", + "@janus-idp/backstage-plugin-orchestrator-form-react": "^1.4.3", "@kie-tools-core/editor": "^0.32.0", "@kie-tools-core/notifications": "^0.32.0", "@kie-tools-core/react-hooks": "^0.32.0",