@backstage/plugin-scaffolder-backend 1.12.0-next.2 → 1.12.1-next.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 +55 -0
- package/alpha/package.json +1 -1
- package/dist/alpha.cjs.js +402 -164
- package/dist/alpha.cjs.js.map +1 -1
- package/dist/index.cjs.js +403 -164
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +35 -9
- package/package.json +19 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,60 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.12.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e23abb37ec1: Rename output parameter `mergeRequestURL` of `publish:gitlab:merge-request` action to `mergeRequestUrl`.
|
|
8
|
+
- e27ddc36dad: Added a possibility to cancel the running task (executing of a scaffolder template)
|
|
9
|
+
- c9a0fdcd2c8: Fix deprecated types.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-scaffolder-node@0.1.2-next.0
|
|
12
|
+
- @backstage/plugin-scaffolder-common@1.2.7-next.0
|
|
13
|
+
- @backstage/plugin-catalog-backend@1.8.1-next.0
|
|
14
|
+
- @backstage/backend-common@0.18.4-next.0
|
|
15
|
+
- @backstage/config@1.0.7
|
|
16
|
+
- @backstage/integration@1.4.3
|
|
17
|
+
- @backstage/backend-plugin-api@0.5.1-next.0
|
|
18
|
+
- @backstage/backend-tasks@0.5.1-next.0
|
|
19
|
+
- @backstage/catalog-client@1.4.0
|
|
20
|
+
- @backstage/catalog-model@1.2.1
|
|
21
|
+
- @backstage/errors@1.1.5
|
|
22
|
+
- @backstage/types@1.0.2
|
|
23
|
+
- @backstage/plugin-auth-node@0.2.13-next.0
|
|
24
|
+
- @backstage/plugin-catalog-common@1.0.12
|
|
25
|
+
- @backstage/plugin-catalog-node@1.3.5-next.0
|
|
26
|
+
|
|
27
|
+
## 1.12.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- 7d724d8ef56: Added the ability to be able to define an actions `input` and `output` schema using `zod` instead of hand writing types and `jsonschema`
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 860de10fa67: Make identity valid if subject of token is a backstage server-2-server auth token
|
|
36
|
+
- 65454876fb2: Minor API report tweaks
|
|
37
|
+
- c6c78b4acbe: throw error from catalog:fetch scaffolder action when entity is null and optional is false
|
|
38
|
+
- 9968f455921: catalog write action should allow any shape of object
|
|
39
|
+
- 928a12a9b3e: Internal refactor of `/alpha` exports.
|
|
40
|
+
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
|
|
41
|
+
- 7af12854970: Extended scaffolder action `catalog:fetch` to fetch multiple catalog entities by entity references.
|
|
42
|
+
- Updated dependencies
|
|
43
|
+
- @backstage/plugin-catalog-backend@1.8.0
|
|
44
|
+
- @backstage/catalog-client@1.4.0
|
|
45
|
+
- @backstage/plugin-auth-node@0.2.12
|
|
46
|
+
- @backstage/backend-tasks@0.5.0
|
|
47
|
+
- @backstage/backend-common@0.18.3
|
|
48
|
+
- @backstage/errors@1.1.5
|
|
49
|
+
- @backstage/plugin-catalog-node@1.3.4
|
|
50
|
+
- @backstage/backend-plugin-api@0.5.0
|
|
51
|
+
- @backstage/catalog-model@1.2.1
|
|
52
|
+
- @backstage/integration@1.4.3
|
|
53
|
+
- @backstage/config@1.0.7
|
|
54
|
+
- @backstage/types@1.0.2
|
|
55
|
+
- @backstage/plugin-scaffolder-common@1.2.6
|
|
56
|
+
- @backstage/plugin-scaffolder-node@0.1.1
|
|
57
|
+
|
|
3
58
|
## 1.12.0-next.2
|
|
4
59
|
|
|
5
60
|
### Patch Changes
|