@backstage/plugin-scaffolder-backend 1.11.0 → 1.12.0-next.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.
- package/CHANGELOG.md +47 -0
- package/alpha/package.json +3 -3
- package/dist/alpha.cjs.js +5721 -0
- package/dist/alpha.cjs.js.map +1 -0
- package/dist/alpha.d.ts +31 -0
- package/dist/index.cjs.js +12 -130
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +659 -706
- package/package.json +36 -26
- package/dist/index.alpha.d.ts +0 -1091
- package/dist/index.beta.d.ts +0 -1070
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.12.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 7d724d8ef56: Added the ability to be able to define an actions `input` and `output` schema using `zod` instead of hand writing types and `jsonschema`
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/errors@1.1.5-next.0
|
|
14
|
+
- @backstage/backend-common@0.18.3-next.1
|
|
15
|
+
- @backstage/catalog-client@1.4.0-next.1
|
|
16
|
+
- @backstage/integration@1.4.3-next.0
|
|
17
|
+
- @backstage/plugin-auth-node@0.2.12-next.1
|
|
18
|
+
- @backstage/plugin-catalog-backend@1.8.0-next.1
|
|
19
|
+
- @backstage/backend-plugin-api@0.4.1-next.1
|
|
20
|
+
- @backstage/backend-tasks@0.4.4-next.1
|
|
21
|
+
- @backstage/config@1.0.7-next.0
|
|
22
|
+
- @backstage/catalog-model@1.2.1-next.1
|
|
23
|
+
- @backstage/types@1.0.2
|
|
24
|
+
- @backstage/plugin-catalog-node@1.3.4-next.1
|
|
25
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.1
|
|
26
|
+
- @backstage/plugin-scaffolder-node@0.1.1-next.1
|
|
27
|
+
|
|
28
|
+
## 1.11.1-next.0
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- c6c78b4acb: throw error from catalog:fetch scaffolder action when entity is null and optional is false
|
|
33
|
+
- 928a12a9b3: Internal refactor of `/alpha` exports.
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/catalog-client@1.4.0-next.0
|
|
36
|
+
- @backstage/plugin-catalog-backend@1.8.0-next.0
|
|
37
|
+
- @backstage/backend-tasks@0.4.4-next.0
|
|
38
|
+
- @backstage/backend-plugin-api@0.4.1-next.0
|
|
39
|
+
- @backstage/backend-common@0.18.3-next.0
|
|
40
|
+
- @backstage/catalog-model@1.2.1-next.0
|
|
41
|
+
- @backstage/plugin-catalog-node@1.3.4-next.0
|
|
42
|
+
- @backstage/config@1.0.6
|
|
43
|
+
- @backstage/errors@1.1.4
|
|
44
|
+
- @backstage/integration@1.4.2
|
|
45
|
+
- @backstage/types@1.0.2
|
|
46
|
+
- @backstage/plugin-auth-node@0.2.12-next.0
|
|
47
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.0
|
|
48
|
+
- @backstage/plugin-scaffolder-node@0.1.1-next.0
|
|
49
|
+
|
|
3
50
|
## 1.11.0
|
|
4
51
|
|
|
5
52
|
### Minor Changes
|
package/alpha/package.json
CHANGED