@backstage/plugin-scaffolder-backend 0.0.0-nightly-202111122525 → 0.0.0-nightly-202111522632

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 CHANGED
@@ -1,16 +1,26 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-202111122525
3
+ ## 0.0.0-nightly-202111522632
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 2a3fb13718: Bump esbuild to ^0.14.1
8
+ - Updated dependencies
9
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-202111522632
10
+ - @backstage/backend-common@0.0.0-nightly-202111522632
11
+
12
+ ## 0.15.15
13
+
14
+ ### Patch Changes
15
+
16
+ - 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.
7
17
  - 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
8
18
  - c6b44d80ad: Add options to spawn in runCommand helper
9
19
  - Updated dependencies
10
- - @backstage/integration@0.0.0-nightly-202111122525
11
- - @backstage/plugin-catalog-backend@0.0.0-nightly-202111122525
12
- - @backstage/plugin-scaffolder-backend-module-cookiecutter@0.0.0-nightly-202111122525
13
- - @backstage/backend-common@0.0.0-nightly-202111122525
20
+ - @backstage/integration@0.6.10
21
+ - @backstage/plugin-catalog-backend@0.19.0
22
+ - @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.5
23
+ - @backstage/backend-common@0.9.12
14
24
 
15
25
  ## 0.15.14
16
26
 
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
  }