@backstage/plugin-scaffolder-backend 0.15.14 → 0.15.18
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 +43 -0
- package/config.d.ts +12 -12
- package/dist/index.cjs.js +273 -155
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +17 -4
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 0.15.18
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.10.0
|
|
9
|
+
- @backstage/catalog-client@0.5.3
|
|
10
|
+
- @backstage/plugin-catalog-backend@0.19.3
|
|
11
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.6
|
|
12
|
+
|
|
13
|
+
## 0.15.17
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- eec0750d8d: Makes cookiecutter a default, but optional action based on if a containerRunner argument is passed in to createRouter or createBuiltinActions
|
|
18
|
+
- ed52f74ab3: Adding changes to create GitLab Merge Request using custom action
|
|
19
|
+
- Updated dependencies
|
|
20
|
+
- @backstage/plugin-catalog-backend@0.19.2
|
|
21
|
+
- @backstage/backend-common@0.9.14
|
|
22
|
+
- @backstage/catalog-model@0.9.8
|
|
23
|
+
|
|
24
|
+
## 0.15.16
|
|
25
|
+
|
|
26
|
+
### Patch Changes
|
|
27
|
+
|
|
28
|
+
- 2a3fb13718: Bump esbuild to ^0.14.1
|
|
29
|
+
- Updated dependencies
|
|
30
|
+
- @backstage/backend-common@0.9.13
|
|
31
|
+
- @backstage/plugin-catalog-backend@0.19.1
|
|
32
|
+
|
|
33
|
+
## 0.15.15
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 0398ea25d3: Removed unused scaffolder visibility configuration; this has been moved to publish actions. Deprecated scaffolder provider configuration keys; these should use the integrations configuration instead.
|
|
38
|
+
- b055a6addc: Align on usage of `cross-fetch` vs `node-fetch` in frontend vs backend packages, and remove some unnecessary imports of either one of them
|
|
39
|
+
- c6b44d80ad: Add options to spawn in runCommand helper
|
|
40
|
+
- Updated dependencies
|
|
41
|
+
- @backstage/integration@0.6.10
|
|
42
|
+
- @backstage/plugin-catalog-backend@0.19.0
|
|
43
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.5
|
|
44
|
+
- @backstage/backend-common@0.9.12
|
|
45
|
+
|
|
3
46
|
## 0.15.14
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -28,30 +28,30 @@ export interface Config {
|
|
|
28
28
|
* The commit message used when new components are created.
|
|
29
29
|
*/
|
|
30
30
|
defaultCommitMessage?: string;
|
|
31
|
+
/**
|
|
32
|
+
* @deprecated Replaced by parameters for the publish:github action
|
|
33
|
+
*/
|
|
31
34
|
github?: {
|
|
32
35
|
[key: string]: string;
|
|
33
|
-
/**
|
|
34
|
-
* The visibility to set on created repositories.
|
|
35
|
-
*/
|
|
36
|
-
visibility?: 'public' | 'internal' | 'private';
|
|
37
36
|
};
|
|
37
|
+
/**
|
|
38
|
+
* @deprecated Use the Gitlab integration instead
|
|
39
|
+
*/
|
|
38
40
|
gitlab?: {
|
|
39
41
|
api: { [key: string]: string };
|
|
40
|
-
/**
|
|
41
|
-
* The visibility to set on created repositories.
|
|
42
|
-
*/
|
|
43
|
-
visibility?: 'public' | 'internal' | 'private';
|
|
44
42
|
};
|
|
43
|
+
/**
|
|
44
|
+
* @deprecated Use the Azure integration instead
|
|
45
|
+
*/
|
|
45
46
|
azure?: {
|
|
46
47
|
baseUrl: string;
|
|
47
48
|
api: { [key: string]: string };
|
|
48
49
|
};
|
|
50
|
+
/**
|
|
51
|
+
* @deprecated Use the Bitbucket integration instead
|
|
52
|
+
*/
|
|
49
53
|
bitbucket?: {
|
|
50
54
|
api: { [key: string]: string };
|
|
51
|
-
/**
|
|
52
|
-
* The visibility to set on created repositories.
|
|
53
|
-
*/
|
|
54
|
-
visibility?: 'public' | 'private';
|
|
55
55
|
};
|
|
56
56
|
};
|
|
57
57
|
}
|