@backstage/plugin-scaffolder-backend 1.8.1-next.0 → 1.8.1-next.1
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 +20 -0
- package/alpha/package.json +1 -1
- package/dist/index.alpha.d.ts +1 -1
- package/dist/index.beta.d.ts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.8.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c3fa90e184: Updated dependency `zen-observable` to `^0.10.0`.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.17.0-next.1
|
|
10
|
+
- @backstage/plugin-catalog-backend@1.6.0-next.1
|
|
11
|
+
- @backstage/backend-tasks@0.4.0-next.1
|
|
12
|
+
- @backstage/types@1.0.2-next.1
|
|
13
|
+
- @backstage/backend-plugin-api@0.1.5-next.1
|
|
14
|
+
- @backstage/plugin-auth-node@0.2.8-next.1
|
|
15
|
+
- @backstage/plugin-catalog-node@1.2.2-next.1
|
|
16
|
+
- @backstage/config@1.0.5-next.1
|
|
17
|
+
- @backstage/integration@1.4.1-next.1
|
|
18
|
+
- @backstage/catalog-client@1.2.0-next.1
|
|
19
|
+
- @backstage/catalog-model@1.1.4-next.1
|
|
20
|
+
- @backstage/errors@1.1.4-next.1
|
|
21
|
+
- @backstage/plugin-scaffolder-common@1.2.3-next.1
|
|
22
|
+
|
|
3
23
|
## 1.8.1-next.0
|
|
4
24
|
|
|
5
25
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.alpha.d.ts
CHANGED
|
@@ -580,7 +580,7 @@ branchName: string;
|
|
|
580
580
|
sourcePath?: string | undefined;
|
|
581
581
|
targetPath?: string | undefined;
|
|
582
582
|
token?: string | undefined;
|
|
583
|
-
commitAction?: "update" | "
|
|
583
|
+
commitAction?: "update" | "delete" | "create" | undefined;
|
|
584
584
|
/** @deprecated projectID passed as query parameters in the repoUrl */
|
|
585
585
|
projectid?: string | undefined;
|
|
586
586
|
removeSourceBranch?: boolean | undefined;
|
package/dist/index.beta.d.ts
CHANGED
|
@@ -580,7 +580,7 @@ branchName: string;
|
|
|
580
580
|
sourcePath?: string | undefined;
|
|
581
581
|
targetPath?: string | undefined;
|
|
582
582
|
token?: string | undefined;
|
|
583
|
-
commitAction?: "update" | "
|
|
583
|
+
commitAction?: "update" | "delete" | "create" | undefined;
|
|
584
584
|
/** @deprecated projectID passed as query parameters in the repoUrl */
|
|
585
585
|
projectid?: string | undefined;
|
|
586
586
|
removeSourceBranch?: boolean | undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -580,7 +580,7 @@ branchName: string;
|
|
|
580
580
|
sourcePath?: string | undefined;
|
|
581
581
|
targetPath?: string | undefined;
|
|
582
582
|
token?: string | undefined;
|
|
583
|
-
commitAction?: "update" | "
|
|
583
|
+
commitAction?: "update" | "delete" | "create" | undefined;
|
|
584
584
|
/** @deprecated projectID passed as query parameters in the repoUrl */
|
|
585
585
|
projectid?: string | undefined;
|
|
586
586
|
removeSourceBranch?: boolean | undefined;
|
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.8.1-next.
|
|
4
|
+
"version": "1.8.1-next.1",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,19 +34,19 @@
|
|
|
34
34
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@backstage/backend-common": "^0.
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.1.5-next.
|
|
39
|
-
"@backstage/backend-tasks": "^0.
|
|
40
|
-
"@backstage/catalog-client": "^1.2.0-next.
|
|
41
|
-
"@backstage/catalog-model": "^1.1.4-next.
|
|
42
|
-
"@backstage/config": "^1.0.5-next.
|
|
43
|
-
"@backstage/errors": "^1.1.4-next.
|
|
44
|
-
"@backstage/integration": "^1.4.1-next.
|
|
45
|
-
"@backstage/plugin-auth-node": "^0.2.8-next.
|
|
46
|
-
"@backstage/plugin-catalog-backend": "^1.6.0-next.
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.2.2-next.
|
|
48
|
-
"@backstage/plugin-scaffolder-common": "^1.2.3-next.
|
|
49
|
-
"@backstage/types": "^1.0.2-next.
|
|
37
|
+
"@backstage/backend-common": "^0.17.0-next.1",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.1.5-next.1",
|
|
39
|
+
"@backstage/backend-tasks": "^0.4.0-next.1",
|
|
40
|
+
"@backstage/catalog-client": "^1.2.0-next.1",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.4-next.1",
|
|
42
|
+
"@backstage/config": "^1.0.5-next.1",
|
|
43
|
+
"@backstage/errors": "^1.1.4-next.1",
|
|
44
|
+
"@backstage/integration": "^1.4.1-next.1",
|
|
45
|
+
"@backstage/plugin-auth-node": "^0.2.8-next.1",
|
|
46
|
+
"@backstage/plugin-catalog-backend": "^1.6.0-next.1",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.2.2-next.1",
|
|
48
|
+
"@backstage/plugin-scaffolder-common": "^1.2.3-next.1",
|
|
49
|
+
"@backstage/types": "^1.0.2-next.1",
|
|
50
50
|
"@gitbeaker/core": "^35.6.0",
|
|
51
51
|
"@gitbeaker/node": "^35.1.0",
|
|
52
52
|
"@octokit/webhooks": "^10.0.0",
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
"vm2": "^3.9.11",
|
|
78
78
|
"winston": "^3.2.1",
|
|
79
79
|
"yaml": "^2.0.0",
|
|
80
|
-
"zen-observable": "^0.
|
|
80
|
+
"zen-observable": "^0.10.0",
|
|
81
81
|
"zod": "^3.11.6"
|
|
82
82
|
},
|
|
83
83
|
"devDependencies": {
|
|
84
|
-
"@backstage/backend-test-utils": "^0.1.31-next.
|
|
85
|
-
"@backstage/cli": "^0.21.2-next.
|
|
84
|
+
"@backstage/backend-test-utils": "^0.1.31-next.1",
|
|
85
|
+
"@backstage/cli": "^0.21.2-next.1",
|
|
86
86
|
"@types/command-exists": "^1.2.0",
|
|
87
87
|
"@types/fs-extra": "^9.0.1",
|
|
88
88
|
"@types/git-url-parse": "^9.0.0",
|