@backstage/plugin-scaffolder-backend 1.11.0-next.2 → 1.11.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 +57 -0
- package/alpha/package.json +3 -3
- package/dist/alpha.cjs.js +5729 -0
- package/dist/alpha.cjs.js.map +1 -0
- package/dist/alpha.d.ts +31 -0
- package/dist/index.cjs.js +21 -113
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +657 -706
- package/package.json +32 -22
- package/dist/index.alpha.d.ts +0 -1091
- package/dist/index.beta.d.ts +0 -1070
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,62 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.11.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c6c78b4acb: throw error from catalog:fetch scaffolder action when entity is null and optional is false
|
|
8
|
+
- 928a12a9b3: Internal refactor of `/alpha` exports.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/catalog-client@1.4.0-next.0
|
|
11
|
+
- @backstage/plugin-catalog-backend@1.8.0-next.0
|
|
12
|
+
- @backstage/backend-tasks@0.4.4-next.0
|
|
13
|
+
- @backstage/backend-plugin-api@0.4.1-next.0
|
|
14
|
+
- @backstage/backend-common@0.18.3-next.0
|
|
15
|
+
- @backstage/catalog-model@1.2.1-next.0
|
|
16
|
+
- @backstage/plugin-catalog-node@1.3.4-next.0
|
|
17
|
+
- @backstage/config@1.0.6
|
|
18
|
+
- @backstage/errors@1.1.4
|
|
19
|
+
- @backstage/integration@1.4.2
|
|
20
|
+
- @backstage/types@1.0.2
|
|
21
|
+
- @backstage/plugin-auth-node@0.2.12-next.0
|
|
22
|
+
- @backstage/plugin-scaffolder-common@1.2.6-next.0
|
|
23
|
+
- @backstage/plugin-scaffolder-node@0.1.1-next.0
|
|
24
|
+
|
|
25
|
+
## 1.11.0
|
|
26
|
+
|
|
27
|
+
### Minor Changes
|
|
28
|
+
|
|
29
|
+
- 0b2952ee4b: Added the option to overwrite files in the `targetPath` of the `template:fetch` action
|
|
30
|
+
- 127154930f: Renamed the export `scaffolderCatalogModule` to `catalogModuleTemplateKind` in order to follow the new recommended naming patterns of backend system items. This is technically a breaking change but in an alpha export, so take care to change your imports if you have already migrated to the new backend system.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- 0ff03319be: Updated usage of `createBackendPlugin`.
|
|
35
|
+
- ad3edc402d: **Deprecations**: The following are deprecated and should instead be imported from the new package `@backstage/plugin-scaffolder-node`:
|
|
36
|
+
|
|
37
|
+
- `ActionContext`
|
|
38
|
+
- `createTemplateAction`
|
|
39
|
+
- `TaskSecrets`
|
|
40
|
+
- `TemplateAction`
|
|
41
|
+
|
|
42
|
+
- 6c70919f1a: Provide better error messaging when GitHub fails due to missing team definitions
|
|
43
|
+
- 66cf22fdc4: Updated dependency `esbuild` to `^0.17.0`.
|
|
44
|
+
- Updated dependencies
|
|
45
|
+
- @backstage/plugin-catalog-backend@1.7.2
|
|
46
|
+
- @backstage/backend-plugin-api@0.4.0
|
|
47
|
+
- @backstage/backend-common@0.18.2
|
|
48
|
+
- @backstage/plugin-scaffolder-node@0.1.0
|
|
49
|
+
- @backstage/catalog-model@1.2.0
|
|
50
|
+
- @backstage/plugin-catalog-node@1.3.3
|
|
51
|
+
- @backstage/backend-tasks@0.4.3
|
|
52
|
+
- @backstage/catalog-client@1.3.1
|
|
53
|
+
- @backstage/config@1.0.6
|
|
54
|
+
- @backstage/errors@1.1.4
|
|
55
|
+
- @backstage/integration@1.4.2
|
|
56
|
+
- @backstage/types@1.0.2
|
|
57
|
+
- @backstage/plugin-auth-node@0.2.11
|
|
58
|
+
- @backstage/plugin-scaffolder-common@1.2.5
|
|
59
|
+
|
|
3
60
|
## 1.11.0-next.2
|
|
4
61
|
|
|
5
62
|
### Patch Changes
|
package/alpha/package.json
CHANGED