@backstage/plugin-scaffolder-common 1.2.7-next.1 → 1.2.7-next.2
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 +9 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-common
|
|
2
2
|
|
|
3
|
+
## 1.2.7-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/catalog-model@1.3.0-next.0
|
|
9
|
+
- @backstage/types@1.0.2
|
|
10
|
+
- @backstage/plugin-permission-common@0.7.5-next.0
|
|
11
|
+
|
|
3
12
|
## 1.2.7-next.1
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -7,7 +7,7 @@ import { JsonObject, JsonValue } from '@backstage/types';
|
|
|
7
7
|
*
|
|
8
8
|
* @public
|
|
9
9
|
*/
|
|
10
|
-
|
|
10
|
+
type TemplateInfo = {
|
|
11
11
|
/**
|
|
12
12
|
* The entityRef of the template
|
|
13
13
|
*/
|
|
@@ -104,7 +104,7 @@ interface TaskSpecV1beta3 {
|
|
|
104
104
|
*
|
|
105
105
|
* @public
|
|
106
106
|
*/
|
|
107
|
-
|
|
107
|
+
type TaskSpec = TaskSpecV1beta3;
|
|
108
108
|
|
|
109
109
|
/**
|
|
110
110
|
* Backstage catalog Template kind Entity. Templates are used by the Scaffolder
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-common",
|
|
3
3
|
"description": "Common functionalities for the scaffolder, to be shared between scaffolder and scaffolder-backend plugin",
|
|
4
|
-
"version": "1.2.7-next.
|
|
4
|
+
"version": "1.2.7-next.2",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"url": "https://github.com/backstage/backstage/issues"
|
|
55
55
|
},
|
|
56
56
|
"dependencies": {
|
|
57
|
-
"@backstage/catalog-model": "^1.
|
|
57
|
+
"@backstage/catalog-model": "^1.3.0-next.0",
|
|
58
58
|
"@backstage/plugin-permission-common": "^0.7.5-next.0",
|
|
59
59
|
"@backstage/types": "^1.0.2"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.22.6-next.
|
|
62
|
+
"@backstage/cli": "^0.22.6-next.3"
|
|
63
63
|
},
|
|
64
64
|
"module": "dist/index.esm.js"
|
|
65
65
|
}
|