@backstage/plugin-scaffolder-react 1.0.0-next.0 → 1.0.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 +20 -0
- package/alpha/package.json +1 -1
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-react
|
|
2
2
|
|
|
3
|
+
## 1.0.0
|
|
4
|
+
|
|
5
|
+
### Major Changes
|
|
6
|
+
|
|
7
|
+
- b4955ed7b9: Re-home some of the common types, components, hooks and `scaffolderApiRef` for the `@backstage/plugin-scaffolder` to this package for easy re-use across things that want to interact with the `scaffolder`.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/catalog-model@1.1.5
|
|
13
|
+
- @backstage/plugin-scaffolder-common@1.2.4
|
|
14
|
+
- @backstage/catalog-client@1.3.0
|
|
15
|
+
- @backstage/plugin-catalog-react@1.2.4
|
|
16
|
+
- @backstage/core-components@0.12.3
|
|
17
|
+
- @backstage/core-plugin-api@1.3.0
|
|
18
|
+
- @backstage/errors@1.1.4
|
|
19
|
+
- @backstage/theme@0.2.16
|
|
20
|
+
- @backstage/types@1.0.2
|
|
21
|
+
- @backstage/version-bridge@1.0.3
|
|
22
|
+
|
|
3
23
|
## 1.0.0-next.0
|
|
4
24
|
|
|
5
25
|
### Major Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-react",
|
|
3
3
|
"description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
|
|
4
|
-
"version": "1.0.0
|
|
4
|
+
"version": "1.0.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,13 +33,13 @@
|
|
|
33
33
|
"start": "backstage-cli package start"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/catalog-client": "^1.3.0
|
|
37
|
-
"@backstage/catalog-model": "^1.1.5
|
|
38
|
-
"@backstage/core-components": "^0.12.3
|
|
39
|
-
"@backstage/core-plugin-api": "^1.3.0
|
|
36
|
+
"@backstage/catalog-client": "^1.3.0",
|
|
37
|
+
"@backstage/catalog-model": "^1.1.5",
|
|
38
|
+
"@backstage/core-components": "^0.12.3",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.3.0",
|
|
40
40
|
"@backstage/errors": "^1.1.4",
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.2.4
|
|
42
|
-
"@backstage/plugin-scaffolder-common": "^1.2.4
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.2.4",
|
|
42
|
+
"@backstage/plugin-scaffolder-common": "^1.2.4",
|
|
43
43
|
"@backstage/theme": "^0.2.16",
|
|
44
44
|
"@backstage/types": "^1.0.2",
|
|
45
45
|
"@backstage/version-bridge": "^1.0.3",
|
|
@@ -68,11 +68,11 @@
|
|
|
68
68
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@backstage/cli": "^0.22.1
|
|
72
|
-
"@backstage/core-app-api": "^1.4.0
|
|
73
|
-
"@backstage/plugin-catalog": "^1.7.2
|
|
74
|
-
"@backstage/plugin-catalog-common": "^1.0.10
|
|
75
|
-
"@backstage/test-utils": "^1.2.4
|
|
71
|
+
"@backstage/cli": "^0.22.1",
|
|
72
|
+
"@backstage/core-app-api": "^1.4.0",
|
|
73
|
+
"@backstage/plugin-catalog": "^1.7.2",
|
|
74
|
+
"@backstage/plugin-catalog-common": "^1.0.10",
|
|
75
|
+
"@backstage/test-utils": "^1.2.4",
|
|
76
76
|
"@testing-library/jest-dom": "^5.10.1",
|
|
77
77
|
"@testing-library/react": "^12.1.3",
|
|
78
78
|
"@testing-library/react-hooks": "^8.0.0",
|