@backstage/plugin-scaffolder-backend 1.2.0-next.1 → 1.2.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 +38 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,43 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 9818112d12: Update the `github:publish` action to allow passing required status check
|
|
8
|
+
contexts before merging to the main branch.
|
|
9
|
+
- f8baf7df44: Added the ability to reference the user in the `template.yaml` manifest
|
|
10
|
+
- 8d5a2238a9: Split `publish:bitbucket` into `publish:bitbucketCloud` and `publish:bitbucketServer`.
|
|
11
|
+
|
|
12
|
+
In order to migrate from the deprecated action, you need to replace the use of action
|
|
13
|
+
`publish:bitbucket` in your templates with the use of either `publish:bitbucketCloud`
|
|
14
|
+
or `publish:bitbucketServer` - depending on which destination SCM provider you use.
|
|
15
|
+
|
|
16
|
+
Additionally, these actions will not utilize `integrations.bitbucket` anymore,
|
|
17
|
+
but `integrations.bitbucketCloud` or `integrations.bitbucketServer` respectively.
|
|
18
|
+
You may or may not have migrated to these already.
|
|
19
|
+
|
|
20
|
+
As described in a previous changeset, using these two replacement integrations configs
|
|
21
|
+
will not compromise use cases which still rely on `integrations.bitbucket` as this was
|
|
22
|
+
set up in a backwards compatible way.
|
|
23
|
+
|
|
24
|
+
Additionally, please mind that the option `enableLFS` is only available (and always was)
|
|
25
|
+
for Bitbucket Server use cases and therefore, is not even part of the schema for
|
|
26
|
+
`publish:bitbucketCloud` anymore.
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 0fc65cbf89: Override default commit message and author details in GitHub, Azure, bitbucket
|
|
31
|
+
- cfc0f19699: Updated dependency `fs-extra` to `10.1.0`.
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/backend-common@0.13.3
|
|
34
|
+
- @backstage/plugin-catalog-backend@1.1.2
|
|
35
|
+
- @backstage/integration@1.2.0
|
|
36
|
+
- @backstage/plugin-scaffolder-common@1.1.0
|
|
37
|
+
- @backstage/config@1.0.1
|
|
38
|
+
- @backstage/catalog-client@1.0.2
|
|
39
|
+
- @backstage/catalog-model@1.0.2
|
|
40
|
+
|
|
3
41
|
## 1.2.0-next.1
|
|
4
42
|
|
|
5
43
|
### Minor Changes
|
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": "1.2.0
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.13.3
|
|
38
|
-
"@backstage/catalog-client": "^1.0.2
|
|
39
|
-
"@backstage/catalog-model": "^1.0.2
|
|
40
|
-
"@backstage/config": "^1.0.1
|
|
37
|
+
"@backstage/backend-common": "^0.13.3",
|
|
38
|
+
"@backstage/catalog-client": "^1.0.2",
|
|
39
|
+
"@backstage/catalog-model": "^1.0.2",
|
|
40
|
+
"@backstage/config": "^1.0.1",
|
|
41
41
|
"@backstage/errors": "^1.0.0",
|
|
42
|
-
"@backstage/integration": "^1.2.0
|
|
43
|
-
"@backstage/plugin-catalog-backend": "^1.1.2
|
|
44
|
-
"@backstage/plugin-scaffolder-common": "^1.1.0
|
|
42
|
+
"@backstage/integration": "^1.2.0",
|
|
43
|
+
"@backstage/plugin-catalog-backend": "^1.1.2",
|
|
44
|
+
"@backstage/plugin-scaffolder-common": "^1.1.0",
|
|
45
45
|
"@backstage/types": "^1.0.0",
|
|
46
46
|
"@gitbeaker/core": "^35.6.0",
|
|
47
47
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -74,8 +74,8 @@
|
|
|
74
74
|
"zen-observable": "^0.8.15"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/backend-test-utils": "^0.1.24
|
|
78
|
-
"@backstage/cli": "^0.17.1
|
|
77
|
+
"@backstage/backend-test-utils": "^0.1.24",
|
|
78
|
+
"@backstage/cli": "^0.17.1",
|
|
79
79
|
"@types/command-exists": "^1.2.0",
|
|
80
80
|
"@types/fs-extra": "^9.0.1",
|
|
81
81
|
"@types/git-url-parse": "^9.0.0",
|
|
@@ -97,5 +97,5 @@
|
|
|
97
97
|
"assets"
|
|
98
98
|
],
|
|
99
99
|
"configSchema": "config.d.ts",
|
|
100
|
-
"gitHead": "
|
|
100
|
+
"gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
|
|
101
101
|
}
|