@backstage/plugin-scaffolder-backend 1.33.0 → 1.33.1-next.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 +22 -0
- package/dist/index.d.ts +17 -11
- package/package.json +31 -31
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.33.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.10-next.0
|
|
9
|
+
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.10-next.0
|
|
10
|
+
- @backstage/plugin-scaffolder-node@0.8.3-next.0
|
|
11
|
+
- @backstage/plugin-scaffolder-backend-module-gitlab@0.9.2-next.0
|
|
12
|
+
- @backstage/backend-plugin-api@1.4.0-next.0
|
|
13
|
+
- @backstage/backend-defaults@0.10.1-next.0
|
|
14
|
+
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.11-next.0
|
|
15
|
+
- @backstage/plugin-scaffolder-backend-module-azure@0.2.10-next.0
|
|
16
|
+
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.10-next.0
|
|
17
|
+
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.10-next.0
|
|
18
|
+
- @backstage/plugin-scaffolder-backend-module-github@0.7.2-next.0
|
|
19
|
+
- @backstage/plugin-auth-node@0.6.4-next.0
|
|
20
|
+
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.9-next.0
|
|
21
|
+
- @backstage/plugin-catalog-node@1.17.1-next.0
|
|
22
|
+
- @backstage/plugin-events-node@0.4.12-next.0
|
|
23
|
+
- @backstage/plugin-permission-node@0.10.1-next.0
|
|
24
|
+
|
|
3
25
|
## 1.33.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -390,17 +390,23 @@ declare const createPublishGitlabMergeRequestAction: (options: {
|
|
|
390
390
|
title: string;
|
|
391
391
|
description: string;
|
|
392
392
|
branchName: string;
|
|
393
|
-
targetBranchName?: string;
|
|
394
|
-
sourcePath?: string;
|
|
395
|
-
targetPath?: string;
|
|
396
|
-
token?: string;
|
|
397
|
-
commitAction?: "
|
|
398
|
-
projectid?: string;
|
|
399
|
-
removeSourceBranch?: boolean;
|
|
400
|
-
assignee?: string;
|
|
401
|
-
reviewers?: string[];
|
|
402
|
-
assignReviewersFromApprovalRules?: boolean;
|
|
403
|
-
|
|
393
|
+
targetBranchName?: string | undefined;
|
|
394
|
+
sourcePath?: string | undefined;
|
|
395
|
+
targetPath?: string | undefined;
|
|
396
|
+
token?: string | undefined;
|
|
397
|
+
commitAction?: "auto" | "update" | "delete" | "create" | "skip" | undefined;
|
|
398
|
+
projectid?: string | undefined;
|
|
399
|
+
removeSourceBranch?: boolean | undefined;
|
|
400
|
+
assignee?: string | undefined;
|
|
401
|
+
reviewers?: string[] | undefined;
|
|
402
|
+
assignReviewersFromApprovalRules?: boolean | undefined;
|
|
403
|
+
labels?: string | string[] | undefined;
|
|
404
|
+
}, {
|
|
405
|
+
targetBranchName: string;
|
|
406
|
+
projectid: string;
|
|
407
|
+
projectPath: string;
|
|
408
|
+
mergeRequestUrl: string;
|
|
409
|
+
}, "v2">;
|
|
404
410
|
|
|
405
411
|
/**
|
|
406
412
|
* Registry of all registered template actions.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
|
-
"version": "1.33.0",
|
|
3
|
+
"version": "1.33.1-next.0",
|
|
4
4
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -76,31 +76,31 @@
|
|
|
76
76
|
},
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@backstage/backend-common": "^0.25.0",
|
|
79
|
-
"@backstage/backend-defaults": "
|
|
80
|
-
"@backstage/backend-plugin-api": "
|
|
81
|
-
"@backstage/catalog-client": "
|
|
82
|
-
"@backstage/catalog-model": "
|
|
83
|
-
"@backstage/config": "
|
|
84
|
-
"@backstage/errors": "
|
|
85
|
-
"@backstage/integration": "
|
|
86
|
-
"@backstage/plugin-auth-node": "
|
|
87
|
-
"@backstage/plugin-bitbucket-cloud-common": "
|
|
88
|
-
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "
|
|
89
|
-
"@backstage/plugin-catalog-node": "
|
|
90
|
-
"@backstage/plugin-events-node": "
|
|
91
|
-
"@backstage/plugin-permission-common": "
|
|
92
|
-
"@backstage/plugin-permission-node": "
|
|
93
|
-
"@backstage/plugin-scaffolder-backend-module-azure": "
|
|
94
|
-
"@backstage/plugin-scaffolder-backend-module-bitbucket": "
|
|
95
|
-
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "
|
|
96
|
-
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "
|
|
97
|
-
"@backstage/plugin-scaffolder-backend-module-gerrit": "
|
|
98
|
-
"@backstage/plugin-scaffolder-backend-module-gitea": "
|
|
99
|
-
"@backstage/plugin-scaffolder-backend-module-github": "
|
|
100
|
-
"@backstage/plugin-scaffolder-backend-module-gitlab": "
|
|
101
|
-
"@backstage/plugin-scaffolder-common": "
|
|
102
|
-
"@backstage/plugin-scaffolder-node": "
|
|
103
|
-
"@backstage/types": "
|
|
79
|
+
"@backstage/backend-defaults": "0.10.1-next.0",
|
|
80
|
+
"@backstage/backend-plugin-api": "1.4.0-next.0",
|
|
81
|
+
"@backstage/catalog-client": "1.10.0",
|
|
82
|
+
"@backstage/catalog-model": "1.7.4",
|
|
83
|
+
"@backstage/config": "1.3.2",
|
|
84
|
+
"@backstage/errors": "1.2.7",
|
|
85
|
+
"@backstage/integration": "1.17.0",
|
|
86
|
+
"@backstage/plugin-auth-node": "0.6.4-next.0",
|
|
87
|
+
"@backstage/plugin-bitbucket-cloud-common": "0.3.0",
|
|
88
|
+
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.2.9-next.0",
|
|
89
|
+
"@backstage/plugin-catalog-node": "1.17.1-next.0",
|
|
90
|
+
"@backstage/plugin-events-node": "0.4.12-next.0",
|
|
91
|
+
"@backstage/plugin-permission-common": "0.9.0",
|
|
92
|
+
"@backstage/plugin-permission-node": "0.10.1-next.0",
|
|
93
|
+
"@backstage/plugin-scaffolder-backend-module-azure": "0.2.10-next.0",
|
|
94
|
+
"@backstage/plugin-scaffolder-backend-module-bitbucket": "0.3.11-next.0",
|
|
95
|
+
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "0.2.10-next.0",
|
|
96
|
+
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "0.2.10-next.0",
|
|
97
|
+
"@backstage/plugin-scaffolder-backend-module-gerrit": "0.2.10-next.0",
|
|
98
|
+
"@backstage/plugin-scaffolder-backend-module-gitea": "0.2.10-next.0",
|
|
99
|
+
"@backstage/plugin-scaffolder-backend-module-github": "0.7.2-next.0",
|
|
100
|
+
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.9.2-next.0",
|
|
101
|
+
"@backstage/plugin-scaffolder-common": "1.5.11",
|
|
102
|
+
"@backstage/plugin-scaffolder-node": "0.8.3-next.0",
|
|
103
|
+
"@backstage/types": "1.2.1",
|
|
104
104
|
"@opentelemetry/api": "^1.9.0",
|
|
105
105
|
"@types/express": "^4.17.6",
|
|
106
106
|
"@types/luxon": "^3.0.0",
|
|
@@ -131,11 +131,11 @@
|
|
|
131
131
|
"zod-to-json-schema": "^3.20.4"
|
|
132
132
|
},
|
|
133
133
|
"devDependencies": {
|
|
134
|
-
"@backstage/backend-app-api": "
|
|
135
|
-
"@backstage/backend-defaults": "
|
|
136
|
-
"@backstage/backend-test-utils": "
|
|
137
|
-
"@backstage/cli": "
|
|
138
|
-
"@backstage/plugin-scaffolder-node-test-utils": "
|
|
134
|
+
"@backstage/backend-app-api": "1.2.4-next.0",
|
|
135
|
+
"@backstage/backend-defaults": "0.10.1-next.0",
|
|
136
|
+
"@backstage/backend-test-utils": "1.6.0-next.0",
|
|
137
|
+
"@backstage/cli": "0.32.1",
|
|
138
|
+
"@backstage/plugin-scaffolder-node-test-utils": "0.2.3-next.0",
|
|
139
139
|
"@types/fs-extra": "^11.0.0",
|
|
140
140
|
"@types/nunjucks": "^3.1.4",
|
|
141
141
|
"@types/supertest": "^2.0.8",
|