@openchoreo/backstage-plugin-openchoreo-workflows-backend 1.2.0-rc.2 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +25 -0
  2. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -1,5 +1,30 @@
1
1
  # @openchoreo/backstage-plugin-openchoreo-workflows-backend
2
2
 
3
+ ## 1.2.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 8d8bd80: Upgrade the OpenChoreo Backstage plugin suite to Backstage v1.51.0.
8
+
9
+ This bump aligns every `@backstage/*` peer dependency with the v1.51.0 line and adapts the plugins to the API shapes introduced across v1.44–v1.51. Adopters running the OpenChoreo plugins on a host Backstage app must be on Backstage v1.51.0 (or newer) after this release; older host versions will hit peer-dep mismatches.
10
+
11
+ Notable adapter-side changes:
12
+
13
+ - Scaffolder backend actions now use the v4.0 `schema.input: { field: z => z.type(...) }` field-per-arrow shape introduced after v1.43.3.
14
+ - Permission rules inline their `paramsSchema` at the `createPermissionRule` call site and import Zod via `zod/v3` to match what `@backstage/plugin-permission-node@0.11.0` was compiled against.
15
+ - The catalog backend module reads `catalogProcessingExtensionPoint` from the stable export (no `/alpha`) and registers permission rules through `coreServices.permissionsRegistry`.
16
+ - React 18 + Node 22 are required at runtime, in line with Backstage v1.50+.
17
+
18
+ - 0b71ed9: fetch all pages when listing workflows
19
+ - 7e84bb5: fetch all pages when listing workflow runs
20
+ - Updated dependencies [529f13c]
21
+ - Updated dependencies [52396b0]
22
+ - Updated dependencies [2f45e83]
23
+ - Updated dependencies [56b4e95]
24
+ - Updated dependencies [8d8bd80]
25
+ - @openchoreo/openchoreo-client-node@1.2.0
26
+ - @openchoreo/openchoreo-auth@1.2.0
27
+
3
28
  ## 1.2.0-next.2
4
29
 
5
30
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openchoreo/backstage-plugin-openchoreo-workflows-backend",
3
- "version": "1.2.0-rc.2",
3
+ "version": "1.2.1",
4
4
  "license": "Apache-2.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
@@ -36,8 +36,8 @@
36
36
  "@backstage/backend-defaults": "^0.17.1",
37
37
  "@backstage/backend-plugin-api": "^1.9.1",
38
38
  "@backstage/errors": "^1.3.1",
39
- "@openchoreo/openchoreo-auth": "^1.2.0-rc.2",
40
- "@openchoreo/openchoreo-client-node": "^1.2.0-rc.2",
39
+ "@openchoreo/openchoreo-auth": "^1.2.1",
40
+ "@openchoreo/openchoreo-client-node": "^1.2.1",
41
41
  "express": "4.21.1",
42
42
  "express-promise-router": "4.1.1"
43
43
  },