@backstage/plugin-scaffolder-react 1.12.0-next.2 → 1.12.1

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,51 @@
1
1
  # @backstage/plugin-scaffolder-react
2
2
 
3
+ ## 1.12.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.13.1
9
+
10
+ ## 1.12.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 4512f71: Add `ui:backstage.review.name` option for custom item names on scaffolder review page, and also add support for rendering the `title` property instead of the key name.
15
+ - 4baad34: Added support for `omitExtraData` and `liveOmit` for rjsf in the scaffolder
16
+
17
+ ### Patch Changes
18
+
19
+ - 1f3c5aa: Fix scaffolder review step issue where schema options are not handled for fields on multi-step templates.
20
+ - 836127c: Updated dependency `@testing-library/react` to `^16.0.0`.
21
+ - 0a50d44: Updated dependency `@rjsf/utils` to `5.21.1`.
22
+ Updated dependency `@rjsf/core` to `5.21.1`.
23
+ Updated dependency `@rjsf/material-ui` to `5.21.1`.
24
+ Updated dependency `@rjsf/validator-ajv8` to `5.21.1`.
25
+ - fa9d8da: Updated dependency `@rjsf/utils` to `5.20.1`.
26
+ Updated dependency `@rjsf/core` to `5.20.1`.
27
+ Updated dependency `@rjsf/material-ui` to `5.20.1`.
28
+ Updated dependency `@rjsf/validator-ajv8` to `5.20.1`.
29
+ - c2cbe1e: Updated dependency `use-immer` to `^0.10.0`.
30
+ - b0f0118: Remove unnecessary singleton wrapping of `scaffolderApiRef`.
31
+ - 3ebb64f: - Fix secret widget field not displaying as required.
32
+ - Fix secret widget not able to be required inside nested objects.
33
+ - Fix secret widget not able to be disabled.
34
+ - Support `minLength` and `maxLength` properties for secret widget.
35
+ - 8dd6ef6: Fix an issue where keys with duplicate final key parts are not all displayed in the `ReviewState`. Change the way the keys are formatted to include the full schema path, separated by `>`.
36
+ - 9a0672a: Scaffolder review page shows static amount of asterisks for secret fields.
37
+ - Updated dependencies
38
+ - @backstage/core-components@0.15.0
39
+ - @backstage/plugin-catalog-react@1.13.0
40
+ - @backstage/catalog-model@1.7.0
41
+ - @backstage/catalog-client@1.7.0
42
+ - @backstage/core-plugin-api@1.9.4
43
+ - @backstage/theme@0.5.7
44
+ - @backstage/version-bridge@1.0.9
45
+ - @backstage/plugin-permission-react@0.4.26
46
+ - @backstage/types@1.1.1
47
+ - @backstage/plugin-scaffolder-common@1.5.6
48
+
3
49
  ## 1.12.0-next.2
4
50
 
5
51
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-react__alpha",
3
- "version": "1.12.0-next.2",
3
+ "version": "1.12.1",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
@@ -1,12 +1,8 @@
1
1
  import { createApiRef } from '@backstage/core-plugin-api';
2
- import { getOrCreateGlobalSingleton } from '@backstage/version-bridge';
3
2
 
4
- const scaffolderApiRef = getOrCreateGlobalSingleton(
5
- "scaffolder:scaffolder-api-ref",
6
- () => createApiRef({
7
- id: "plugin.scaffolder.service"
8
- })
9
- );
3
+ const scaffolderApiRef = createApiRef({
4
+ id: "plugin.scaffolder.service"
5
+ });
10
6
 
11
7
  export { scaffolderApiRef };
12
8
  //# sourceMappingURL=ref.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"ref.esm.js","sources":["../../src/api/ref.ts"],"sourcesContent":["/*\n * Copyright 2022 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createApiRef } from '@backstage/core-plugin-api';\nimport { ScaffolderApi } from './types';\nimport { getOrCreateGlobalSingleton } from '@backstage/version-bridge';\n\n/** @public */\nexport const scaffolderApiRef = getOrCreateGlobalSingleton(\n 'scaffolder:scaffolder-api-ref',\n () =>\n createApiRef<ScaffolderApi>({\n id: 'plugin.scaffolder.service',\n }),\n);\n"],"names":[],"mappings":";;;AAqBO,MAAM,gBAAmB,GAAA,0BAAA;AAAA,EAC9B,+BAAA;AAAA,EACA,MACE,YAA4B,CAAA;AAAA,IAC1B,EAAI,EAAA,2BAAA;AAAA,GACL,CAAA;AACL;;;;"}
1
+ {"version":3,"file":"ref.esm.js","sources":["../../src/api/ref.ts"],"sourcesContent":["/*\n * Copyright 2022 The Backstage Authors\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createApiRef } from '@backstage/core-plugin-api';\nimport { ScaffolderApi } from './types';\n\n/** @public */\nexport const scaffolderApiRef = createApiRef<ScaffolderApi>({\n id: 'plugin.scaffolder.service',\n});\n"],"names":[],"mappings":";;AAoBO,MAAM,mBAAmB,YAA4B,CAAA;AAAA,EAC1D,EAAI,EAAA,2BAAA;AACN,CAAC;;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-react",
3
- "version": "1.12.0-next.2",
3
+ "version": "1.12.1",
4
4
  "description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
5
5
  "backstage": {
6
6
  "role": "web-library",
@@ -57,24 +57,24 @@
57
57
  "test": "backstage-cli package test"
58
58
  },
59
59
  "dependencies": {
60
- "@backstage/catalog-client": "^1.7.0-next.1",
61
- "@backstage/catalog-model": "^1.6.0",
62
- "@backstage/core-components": "^0.14.11-next.1",
63
- "@backstage/core-plugin-api": "^1.9.4-next.0",
64
- "@backstage/plugin-catalog-react": "^1.13.0-next.2",
65
- "@backstage/plugin-permission-react": "^0.4.26-next.0",
66
- "@backstage/plugin-scaffolder-common": "^1.5.5",
67
- "@backstage/theme": "^0.5.7-next.0",
60
+ "@backstage/catalog-client": "^1.7.0",
61
+ "@backstage/catalog-model": "^1.7.0",
62
+ "@backstage/core-components": "^0.15.0",
63
+ "@backstage/core-plugin-api": "^1.9.4",
64
+ "@backstage/plugin-catalog-react": "^1.13.1",
65
+ "@backstage/plugin-permission-react": "^0.4.26",
66
+ "@backstage/plugin-scaffolder-common": "^1.5.6",
67
+ "@backstage/theme": "^0.5.7",
68
68
  "@backstage/types": "^1.1.1",
69
- "@backstage/version-bridge": "^1.0.9-next.0",
69
+ "@backstage/version-bridge": "^1.0.9",
70
70
  "@material-ui/core": "^4.12.2",
71
71
  "@material-ui/icons": "^4.9.1",
72
72
  "@material-ui/lab": "4.0.0-alpha.61",
73
73
  "@react-hookz/web": "^24.0.0",
74
- "@rjsf/core": "5.20.1",
75
- "@rjsf/material-ui": "5.20.1",
76
- "@rjsf/utils": "5.20.1",
77
- "@rjsf/validator-ajv8": "5.20.1",
74
+ "@rjsf/core": "5.21.1",
75
+ "@rjsf/material-ui": "5.21.1",
76
+ "@rjsf/utils": "5.21.1",
77
+ "@rjsf/validator-ajv8": "5.21.1",
78
78
  "@types/json-schema": "^7.0.9",
79
79
  "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
80
80
  "ajv-errors": "^3.0.0",
@@ -93,12 +93,12 @@
93
93
  "zod-to-json-schema": "^3.20.4"
94
94
  },
95
95
  "devDependencies": {
96
- "@backstage/cli": "^0.27.1-next.2",
97
- "@backstage/core-app-api": "^1.14.3-next.0",
98
- "@backstage/plugin-catalog": "^1.23.0-next.2",
99
- "@backstage/plugin-catalog-common": "^1.0.26",
96
+ "@backstage/cli": "^0.27.1",
97
+ "@backstage/core-app-api": "^1.15.0",
98
+ "@backstage/plugin-catalog": "^1.23.1",
99
+ "@backstage/plugin-catalog-common": "^1.1.0",
100
100
  "@backstage/plugin-permission-common": "^0.8.1",
101
- "@backstage/test-utils": "^1.6.0-next.1",
101
+ "@backstage/test-utils": "^1.6.0",
102
102
  "@testing-library/dom": "^10.0.0",
103
103
  "@testing-library/jest-dom": "^6.0.0",
104
104
  "@testing-library/react": "^16.0.0",