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

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +11 -5
  2. package/config.d.ts +12 -12
  3. package/package.json +12 -12
package/CHANGELOG.md CHANGED
@@ -1,16 +1,22 @@
1
1
  # @backstage/plugin-scaffolder-backend
2
2
 
3
- ## 0.0.0-nightly-202111122525
3
+ ## 0.0.0-nightly-202111222339
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 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
8
  - 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
9
  - c6b44d80ad: Add options to spawn in runCommand helper
9
10
  - 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
11
+ - @backstage/integration@0.0.0-nightly-202111222339
12
+ - @backstage/plugin-catalog-backend@0.0.0-nightly-202111222339
13
+ - @backstage/plugin-scaffolder-backend-module-cookiecutter@0.0.0-nightly-202111222339
14
+ - @backstage/backend-common@0.0.0-nightly-202111222339
15
+ - @backstage/catalog-client@0.0.0-nightly-202111222339
16
+ - @backstage/catalog-model@0.0.0-nightly-202111222339
17
+ - @backstage/errors@0.0.0-nightly-202111222339
18
+ - @backstage/types@0.0.0-nightly-202111222339
19
+ - @backstage/plugin-scaffolder-common@0.0.0-nightly-202111222339
14
20
 
15
21
  ## 0.15.14
16
22
 
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
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend",
3
3
  "description": "The Backstage backend plugin that helps you create new things",
4
- "version": "0.0.0-nightly-202111122525",
4
+ "version": "0.0.0-nightly-202111222339",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -31,16 +31,16 @@
31
31
  "build:assets": "node scripts/build-nunjucks.js"
32
32
  },
33
33
  "dependencies": {
34
- "@backstage/backend-common": "^0.0.0-nightly-202111122525",
35
- "@backstage/catalog-client": "^0.5.2",
36
- "@backstage/catalog-model": "^0.9.7",
34
+ "@backstage/backend-common": "^0.0.0-nightly-202111222339",
35
+ "@backstage/catalog-client": "^0.0.0-nightly-202111222339",
36
+ "@backstage/catalog-model": "^0.0.0-nightly-202111222339",
37
37
  "@backstage/config": "^0.1.11",
38
- "@backstage/errors": "^0.1.5",
39
- "@backstage/integration": "^0.0.0-nightly-202111122525",
40
- "@backstage/plugin-catalog-backend": "^0.0.0-nightly-202111122525",
41
- "@backstage/plugin-scaffolder-common": "^0.1.1",
42
- "@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.0.0-nightly-202111122525",
43
- "@backstage/types": "^0.1.1",
38
+ "@backstage/errors": "^0.0.0-nightly-202111222339",
39
+ "@backstage/integration": "^0.0.0-nightly-202111222339",
40
+ "@backstage/plugin-catalog-backend": "^0.0.0-nightly-202111222339",
41
+ "@backstage/plugin-scaffolder-common": "^0.0.0-nightly-202111222339",
42
+ "@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.0.0-nightly-202111222339",
43
+ "@backstage/types": "^0.0.0-nightly-202111222339",
44
44
  "@gitbeaker/core": "^34.6.0",
45
45
  "@gitbeaker/node": "^34.6.0",
46
46
  "@octokit/rest": "^18.5.3",
@@ -73,8 +73,8 @@
73
73
  "vm2": "^3.9.5"
74
74
  },
75
75
  "devDependencies": {
76
- "@backstage/cli": "^0.0.0-nightly-202111122525",
77
- "@backstage/test-utils": "^0.1.23",
76
+ "@backstage/cli": "^0.0.0-nightly-202111222339",
77
+ "@backstage/test-utils": "^0.0.0-nightly-202111222339",
78
78
  "@types/command-exists": "^1.2.0",
79
79
  "@types/fs-extra": "^9.0.1",
80
80
  "@types/git-url-parse": "^9.0.0",