@backstage/plugin-scaffolder-backend 4.0.0-next.2 → 4.0.0
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.
- package/CHANGELOG.md +30 -0
- package/package.json +19 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,35 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 4.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 77bee9f: Updated the `list-scaffolder-tasks` action to support the new "status" filter parameter, allowing the action to return tasks matching a specific status.
|
|
8
|
+
- 07e08be: Added `always()` and `failure()` status check functions for scaffolder steps. These functions can be used in the if field of a step to control execution after failures. `always()` ensures a step runs regardless of previous step outcomes, while `failure()` runs a step only when a previous step has failed.
|
|
9
|
+
- 8006acf: The template parameter schema response now exposes a `formDecorators` field
|
|
10
|
+
instead of `EXPERIMENTAL_formDecorators`. Templates that still declare
|
|
11
|
+
`spec.EXPERIMENTAL_formDecorators` are read transparently and surfaced under
|
|
12
|
+
the new field.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- c78b3b6: Add explicit memory management to SecureTemplater usage
|
|
17
|
+
- 1ecc3ca: Fixed spelling mistakes in internal code
|
|
18
|
+
- e9b78e9: Removed the `uuid` dependency and replaced usage with the built-in `crypto.randomUUID()`.
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/catalog-model@1.9.0
|
|
21
|
+
- @backstage/errors@1.3.1
|
|
22
|
+
- @backstage/backend-plugin-api@1.9.1
|
|
23
|
+
- @backstage/plugin-catalog-node@2.2.1
|
|
24
|
+
- @backstage/integration@2.0.2
|
|
25
|
+
- @backstage/plugin-scaffolder-node@0.13.3
|
|
26
|
+
- @backstage/plugin-permission-node@0.11.0
|
|
27
|
+
- @backstage/plugin-permission-common@0.9.9
|
|
28
|
+
- @backstage/plugin-scaffolder-common@2.2.0
|
|
29
|
+
- @backstage/backend-openapi-utils@0.6.9
|
|
30
|
+
- @backstage/config@1.3.8
|
|
31
|
+
- @backstage/plugin-events-node@0.4.22
|
|
32
|
+
|
|
3
33
|
## 4.0.0-next.2
|
|
4
34
|
|
|
5
35
|
### Major Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
|
-
"version": "4.0.0
|
|
3
|
+
"version": "4.0.0",
|
|
4
4
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -77,19 +77,19 @@
|
|
|
77
77
|
"test": "backstage-cli package test"
|
|
78
78
|
},
|
|
79
79
|
"dependencies": {
|
|
80
|
-
"@backstage/backend-openapi-utils": "0.6.9
|
|
81
|
-
"@backstage/backend-plugin-api": "1.9.1
|
|
82
|
-
"@backstage/catalog-model": "1.
|
|
83
|
-
"@backstage/config": "1.3.8
|
|
84
|
-
"@backstage/errors": "1.3.1
|
|
85
|
-
"@backstage/integration": "2.0.2
|
|
86
|
-
"@backstage/plugin-catalog-node": "2.2.1
|
|
87
|
-
"@backstage/plugin-events-node": "0.4.22
|
|
88
|
-
"@backstage/plugin-permission-common": "0.9.9
|
|
89
|
-
"@backstage/plugin-permission-node": "0.
|
|
90
|
-
"@backstage/plugin-scaffolder-common": "2.2.0
|
|
91
|
-
"@backstage/plugin-scaffolder-node": "0.13.3
|
|
92
|
-
"@backstage/types": "1.2.2",
|
|
80
|
+
"@backstage/backend-openapi-utils": "^0.6.9",
|
|
81
|
+
"@backstage/backend-plugin-api": "^1.9.1",
|
|
82
|
+
"@backstage/catalog-model": "^1.9.0",
|
|
83
|
+
"@backstage/config": "^1.3.8",
|
|
84
|
+
"@backstage/errors": "^1.3.1",
|
|
85
|
+
"@backstage/integration": "^2.0.2",
|
|
86
|
+
"@backstage/plugin-catalog-node": "^2.2.1",
|
|
87
|
+
"@backstage/plugin-events-node": "^0.4.22",
|
|
88
|
+
"@backstage/plugin-permission-common": "^0.9.9",
|
|
89
|
+
"@backstage/plugin-permission-node": "^0.11.0",
|
|
90
|
+
"@backstage/plugin-scaffolder-common": "^2.2.0",
|
|
91
|
+
"@backstage/plugin-scaffolder-node": "^0.13.3",
|
|
92
|
+
"@backstage/types": "^1.2.2",
|
|
93
93
|
"@types/luxon": "^3.0.0",
|
|
94
94
|
"express": "^4.22.0",
|
|
95
95
|
"fs-extra": "^11.2.0",
|
|
@@ -113,11 +113,11 @@
|
|
|
113
113
|
"zod-to-json-schema": "^3.25.1"
|
|
114
114
|
},
|
|
115
115
|
"devDependencies": {
|
|
116
|
-
"@backstage/backend-defaults": "0.17.1
|
|
117
|
-
"@backstage/backend-test-utils": "1.11.3
|
|
118
|
-
"@backstage/cli": "0.36.2
|
|
119
|
-
"@backstage/plugin-scaffolder-node-test-utils": "0.3.11
|
|
120
|
-
"@backstage/repo-tools": "0.17.2
|
|
116
|
+
"@backstage/backend-defaults": "^0.17.1",
|
|
117
|
+
"@backstage/backend-test-utils": "^1.11.3",
|
|
118
|
+
"@backstage/cli": "^0.36.2",
|
|
119
|
+
"@backstage/plugin-scaffolder-node-test-utils": "^0.3.11",
|
|
120
|
+
"@backstage/repo-tools": "^0.17.2",
|
|
121
121
|
"@types/express": "^4.17.6",
|
|
122
122
|
"@types/fs-extra": "^11.0.0",
|
|
123
123
|
"@types/nunjucks": "^3.1.4",
|