@backstage/plugin-scaffolder-backend 1.7.0-next.2 → 1.7.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 +32 -0
- package/alpha/package.json +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,37 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 253453fa14: Added a new property called `additionalTemplateGlobals` which allows you to add global functions to the scaffolder nunjucks templates.
|
|
8
|
+
- 17ff77154c: Update the `github:publish` action to allow passing whether pull
|
|
9
|
+
requests must be up to date with the default branch before merging.
|
|
10
|
+
- 304305dd20: Add `allowAutoMerge` option for `publish:github` action
|
|
11
|
+
- 694bfe2d61: Add functionality to shutdown scaffolder tasks if they are stale
|
|
12
|
+
- a8e9848479: Added optional `sourcePath` parameter to `publish:gitlab:merge-request` action, `targetPath` is now optional and falls back to current workspace path.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- 489621f613: Switching off duplicated timestamp in case of logging via task logger in a custom action
|
|
17
|
+
- 4880d43e25: Fixed setting default branch for Bitbucket Server
|
|
18
|
+
- b681275e69: Ignore .git directories in Template Editor, increase upload limit for dry-runs to 10MB.
|
|
19
|
+
- a35a27df70: Updated the `moduleId` of the experimental module export.
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/plugin-catalog-node@1.2.0
|
|
22
|
+
- @backstage/catalog-model@1.1.2
|
|
23
|
+
- @backstage/backend-common@0.15.2
|
|
24
|
+
- @backstage/plugin-catalog-backend@1.5.0
|
|
25
|
+
- @backstage/plugin-auth-node@0.2.6
|
|
26
|
+
- @backstage/backend-tasks@0.3.6
|
|
27
|
+
- @backstage/backend-plugin-api@0.1.3
|
|
28
|
+
- @backstage/catalog-client@1.1.1
|
|
29
|
+
- @backstage/plugin-scaffolder-common@1.2.1
|
|
30
|
+
- @backstage/config@1.0.3
|
|
31
|
+
- @backstage/errors@1.1.2
|
|
32
|
+
- @backstage/integration@1.3.2
|
|
33
|
+
- @backstage/types@1.0.0
|
|
34
|
+
|
|
3
35
|
## 1.7.0-next.2
|
|
4
36
|
|
|
5
37
|
### Minor Changes
|
package/alpha/package.json
CHANGED
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.7.0
|
|
4
|
+
"version": "1.7.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.15.2
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.1.3
|
|
39
|
-
"@backstage/backend-tasks": "^0.3.6
|
|
40
|
-
"@backstage/catalog-client": "^1.1.1
|
|
41
|
-
"@backstage/catalog-model": "^1.1.2
|
|
42
|
-
"@backstage/config": "^1.0.3
|
|
43
|
-
"@backstage/errors": "^1.1.2
|
|
44
|
-
"@backstage/integration": "^1.3.2
|
|
45
|
-
"@backstage/plugin-auth-node": "^0.2.6
|
|
46
|
-
"@backstage/plugin-catalog-backend": "^1.5.0
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.2.0
|
|
48
|
-
"@backstage/plugin-scaffolder-common": "^1.2.1
|
|
37
|
+
"@backstage/backend-common": "^0.15.2",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.1.3",
|
|
39
|
+
"@backstage/backend-tasks": "^0.3.6",
|
|
40
|
+
"@backstage/catalog-client": "^1.1.1",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.2",
|
|
42
|
+
"@backstage/config": "^1.0.3",
|
|
43
|
+
"@backstage/errors": "^1.1.2",
|
|
44
|
+
"@backstage/integration": "^1.3.2",
|
|
45
|
+
"@backstage/plugin-auth-node": "^0.2.6",
|
|
46
|
+
"@backstage/plugin-catalog-backend": "^1.5.0",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.2.0",
|
|
48
|
+
"@backstage/plugin-scaffolder-common": "^1.2.1",
|
|
49
49
|
"@backstage/types": "^1.0.0",
|
|
50
50
|
"@gitbeaker/core": "^35.6.0",
|
|
51
51
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -80,8 +80,8 @@
|
|
|
80
80
|
"zod": "^3.11.6"
|
|
81
81
|
},
|
|
82
82
|
"devDependencies": {
|
|
83
|
-
"@backstage/backend-test-utils": "^0.1.29
|
|
84
|
-
"@backstage/cli": "^0.20.0
|
|
83
|
+
"@backstage/backend-test-utils": "^0.1.29",
|
|
84
|
+
"@backstage/cli": "^0.20.0",
|
|
85
85
|
"@types/command-exists": "^1.2.0",
|
|
86
86
|
"@types/fs-extra": "^9.0.1",
|
|
87
87
|
"@types/git-url-parse": "^9.0.0",
|