@backstage/plugin-scaffolder 1.0.1-next.1 → 1.0.1-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 +16 -0
- package/README.md +1 -2
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.0.1-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9975ff9852: Applied the fix from version 1.0.1 of this package, which is part of the v1.0.2 release of Backstage.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.9.3-next.1
|
|
10
|
+
- @backstage/plugin-catalog-react@1.0.1-next.2
|
|
11
|
+
- @backstage/catalog-model@1.0.1-next.1
|
|
12
|
+
|
|
13
|
+
## 1.0.1
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- Pin the `event-source-polyfill` dependency to version 1.0.25
|
|
18
|
+
|
|
3
19
|
## 1.0.1-next.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -20,8 +20,7 @@ the plugin, if you previously removed it.
|
|
|
20
20
|
|
|
21
21
|
```bash
|
|
22
22
|
# From your Backstage root directory
|
|
23
|
-
|
|
24
|
-
yarn add @backstage/plugin-scaffolder
|
|
23
|
+
yarn add --cwd packages/app @backstage/plugin-scaffolder
|
|
25
24
|
```
|
|
26
25
|
|
|
27
26
|
### Add the plugin to your `packages/app`
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
3
|
"description": "The Backstage plugin that helps you create new things",
|
|
4
|
-
"version": "1.0.1-next.
|
|
4
|
+
"version": "1.0.1-next.2",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -36,15 +36,15 @@
|
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
38
|
"@backstage/catalog-client": "^1.0.1-next.0",
|
|
39
|
-
"@backstage/catalog-model": "^1.0.1-next.
|
|
39
|
+
"@backstage/catalog-model": "^1.0.1-next.1",
|
|
40
40
|
"@backstage/config": "^1.0.0",
|
|
41
|
-
"@backstage/core-components": "^0.9.3-next.
|
|
41
|
+
"@backstage/core-components": "^0.9.3-next.1",
|
|
42
42
|
"@backstage/core-plugin-api": "^1.0.0",
|
|
43
43
|
"@backstage/errors": "^1.0.0",
|
|
44
44
|
"@backstage/integration": "^1.1.0-next.1",
|
|
45
45
|
"@backstage/integration-react": "^1.0.1-next.1",
|
|
46
46
|
"@backstage/plugin-catalog-common": "^1.0.1-next.1",
|
|
47
|
-
"@backstage/plugin-catalog-react": "^1.0.1-next.
|
|
47
|
+
"@backstage/plugin-catalog-react": "^1.0.1-next.2",
|
|
48
48
|
"@backstage/plugin-permission-react": "^0.4.0-next.0",
|
|
49
49
|
"@backstage/plugin-scaffolder-common": "^1.0.1-next.0",
|
|
50
50
|
"@backstage/theme": "^0.2.15",
|
|
@@ -79,10 +79,10 @@
|
|
|
79
79
|
"react": "^16.13.1 || ^17.0.0"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
|
-
"@backstage/cli": "^0.17.0-next.
|
|
82
|
+
"@backstage/cli": "^0.17.0-next.2",
|
|
83
83
|
"@backstage/core-app-api": "^1.0.1-next.0",
|
|
84
84
|
"@backstage/dev-utils": "^1.0.1-next.0",
|
|
85
|
-
"@backstage/plugin-catalog": "^1.1.0-next.
|
|
85
|
+
"@backstage/plugin-catalog": "^1.1.0-next.2",
|
|
86
86
|
"@backstage/test-utils": "^1.0.1-next.1",
|
|
87
87
|
"@testing-library/jest-dom": "^5.10.1",
|
|
88
88
|
"@testing-library/react": "^12.1.3",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"@types/jest": "^26.0.7",
|
|
93
93
|
"@types/node": "^14.14.32",
|
|
94
94
|
"cross-fetch": "^3.1.5",
|
|
95
|
-
"event-source-polyfill": "
|
|
95
|
+
"event-source-polyfill": "1.0.25",
|
|
96
96
|
"msw": "^0.35.0"
|
|
97
97
|
},
|
|
98
98
|
"files": [
|
|
99
99
|
"dist",
|
|
100
100
|
"alpha"
|
|
101
101
|
],
|
|
102
|
-
"gitHead": "
|
|
102
|
+
"gitHead": "0857aaef2040e1d6c0b8b2063f4c94c810d0a96a"
|
|
103
103
|
}
|