@backstage/plugin-scaffolder-backend 0.15.24-next.0 → 0.15.24
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 +17 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 0.15.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2441d1cf59: chore(deps): bump `knex` from 0.95.6 to 1.0.2
|
|
8
|
+
|
|
9
|
+
This also replaces `sqlite3` with `@vscode/sqlite3` 5.0.7
|
|
10
|
+
|
|
11
|
+
- 2bd5f24043: fix for the `gitlab:publish` action to use the `oauthToken` key when creating a
|
|
12
|
+
`Gitlab` client. This only happens if `ctx.input.token` is provided else the key `token` will be used.
|
|
13
|
+
- 898a56578c: Bump `vm2` to version 3.9.6
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/catalog-client@0.6.0
|
|
16
|
+
- @backstage/backend-common@0.10.7
|
|
17
|
+
- @backstage/plugin-catalog-backend@0.21.3
|
|
18
|
+
- @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.11
|
|
19
|
+
|
|
3
20
|
## 0.15.24-next.0
|
|
4
21
|
|
|
5
22
|
### Patch 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": "0.15.24
|
|
4
|
+
"version": "0.15.24",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -31,14 +31,14 @@
|
|
|
31
31
|
"build:assets": "node scripts/build-nunjucks.js"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.10.7
|
|
35
|
-
"@backstage/catalog-client": "^0.
|
|
34
|
+
"@backstage/backend-common": "^0.10.7",
|
|
35
|
+
"@backstage/catalog-client": "^0.6.0",
|
|
36
36
|
"@backstage/catalog-model": "^0.9.10",
|
|
37
37
|
"@backstage/config": "^0.1.13",
|
|
38
38
|
"@backstage/errors": "^0.2.0",
|
|
39
39
|
"@backstage/integration": "^0.7.2",
|
|
40
|
-
"@backstage/plugin-catalog-backend": "^0.21.3
|
|
41
|
-
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.1.11
|
|
40
|
+
"@backstage/plugin-catalog-backend": "^0.21.3",
|
|
41
|
+
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "^0.1.11",
|
|
42
42
|
"@backstage/plugin-scaffolder-common": "^0.1.3",
|
|
43
43
|
"@backstage/types": "^0.1.1",
|
|
44
44
|
"@gitbeaker/core": "^34.6.0",
|
|
@@ -68,12 +68,12 @@
|
|
|
68
68
|
"octokit": "^1.7.1",
|
|
69
69
|
"octokit-plugin-create-pull-request": "^3.10.0",
|
|
70
70
|
"uuid": "^8.2.0",
|
|
71
|
-
"vm2": "^3.9.
|
|
71
|
+
"vm2": "^3.9.6",
|
|
72
72
|
"winston": "^3.2.1",
|
|
73
73
|
"yaml": "^1.10.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.13.2
|
|
76
|
+
"@backstage/cli": "^0.13.2",
|
|
77
77
|
"@backstage/test-utils": "^0.2.4",
|
|
78
78
|
"@types/command-exists": "^1.2.0",
|
|
79
79
|
"@types/fs-extra": "^9.0.1",
|
|
@@ -95,5 +95,5 @@
|
|
|
95
95
|
"assets"
|
|
96
96
|
],
|
|
97
97
|
"configSchema": "config.d.ts",
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "4f4bc77a4152d372b10a4e8d97d92f00e23f3b56"
|
|
99
99
|
}
|