@backstage/plugin-scaffolder-react 1.5.0-next.3 → 1.5.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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-scaffolder-react
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 6b571405f806: `scaffolder/next`: Provide some default template components to `rjsf` to allow for standardization and markdown descriptions
8
+ - 4505dc3b4598: `scaffolder/next`: Don't render `TemplateGroups` when there's no results in with search query
9
+ - a452bda74d7a: Fixed typescript casting bug for useTemplateParameterSchema hook
10
+ - 6b571405f806: `scaffolder/next`: provide a `ScaffolderField` component which is meant to replace some of the `FormControl` components from MUI, making it easier to write `FieldExtensions`.
11
+
12
+ ### Patch Changes
13
+
14
+ - 84a5c7724c7e: fixed refresh problem when backstage backend disconnects without any feedback to user. Now we send a generic message and try to reconnect after 15 seconds
15
+ - cf34311cdbe1: Extract `ui:*` fields from conditional `then` and `else` schema branches.
16
+ - 2ff94da135a4: bump `rjsf` dependencies to 5.7.3
17
+ - 74b216ee4e50: Add `PropsWithChildren` to usages of `ComponentType`, in preparation for React 18 where the children are no longer implicit.
18
+ - Updated dependencies
19
+ - @backstage/core-plugin-api@1.5.2
20
+ - @backstage/catalog-client@1.4.2
21
+ - @backstage/core-components@0.13.2
22
+ - @backstage/types@1.1.0
23
+ - @backstage/theme@0.4.0
24
+ - @backstage/plugin-catalog-react@1.7.0
25
+ - @backstage/catalog-model@1.4.0
26
+ - @backstage/errors@1.2.0
27
+ - @backstage/version-bridge@1.0.4
28
+ - @backstage/plugin-scaffolder-common@1.3.1
29
+
3
30
  ## 1.5.0-next.3
4
31
 
5
32
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-react",
3
- "version": "1.5.0-next.3",
3
+ "version": "1.5.0",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
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.5.0-next.3",
4
+ "version": "1.5.0",
5
5
  "main": "./dist/index.esm.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -43,15 +43,15 @@
43
43
  "start": "backstage-cli package start"
44
44
  },
45
45
  "dependencies": {
46
- "@backstage/catalog-client": "^1.4.2-next.2",
47
- "@backstage/catalog-model": "^1.4.0-next.1",
48
- "@backstage/core-components": "^0.13.2-next.3",
49
- "@backstage/core-plugin-api": "^1.5.2-next.0",
50
- "@backstage/errors": "^1.2.0-next.0",
51
- "@backstage/plugin-catalog-react": "^1.7.0-next.3",
52
- "@backstage/plugin-scaffolder-common": "^1.3.1-next.1",
53
- "@backstage/theme": "^0.4.0-next.1",
54
- "@backstage/types": "^1.0.2",
46
+ "@backstage/catalog-client": "^1.4.2",
47
+ "@backstage/catalog-model": "^1.4.0",
48
+ "@backstage/core-components": "^0.13.2",
49
+ "@backstage/core-plugin-api": "^1.5.2",
50
+ "@backstage/errors": "^1.2.0",
51
+ "@backstage/plugin-catalog-react": "^1.7.0",
52
+ "@backstage/plugin-scaffolder-common": "^1.3.1",
53
+ "@backstage/theme": "^0.4.0",
54
+ "@backstage/types": "^1.1.0",
55
55
  "@backstage/version-bridge": "^1.0.4",
56
56
  "@material-ui/core": "^4.12.2",
57
57
  "@material-ui/icons": "^4.9.1",
@@ -85,11 +85,11 @@
85
85
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
86
86
  },
87
87
  "devDependencies": {
88
- "@backstage/cli": "^0.22.8-next.2",
89
- "@backstage/core-app-api": "^1.8.1-next.0",
90
- "@backstage/plugin-catalog": "^1.11.2-next.3",
91
- "@backstage/plugin-catalog-common": "^1.0.14-next.1",
92
- "@backstage/test-utils": "^1.4.0-next.2",
88
+ "@backstage/cli": "^0.22.8",
89
+ "@backstage/core-app-api": "^1.8.1",
90
+ "@backstage/plugin-catalog": "^1.11.2",
91
+ "@backstage/plugin-catalog-common": "^1.0.14",
92
+ "@backstage/test-utils": "^1.4.0",
93
93
  "@testing-library/dom": "^8.0.0",
94
94
  "@testing-library/jest-dom": "^5.10.1",
95
95
  "@testing-library/react": "^12.1.3",