@backstage/plugin-scaffolder-react 1.19.7-next.1 → 1.19.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 +16 -0
- package/dist/alpha.d.ts +1 -1
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-react
|
|
2
2
|
|
|
3
|
+
## 1.19.7-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- b9d90a7: Added `@backstage/frontend-test-utils` as a dev dependency for mock API usage in tests.
|
|
8
|
+
- a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-catalog-react@2.0.0-next.2
|
|
11
|
+
- @backstage/catalog-client@1.12.2-next.0
|
|
12
|
+
- @backstage/frontend-plugin-api@0.14.0-next.2
|
|
13
|
+
- @backstage/core-components@0.18.7-next.2
|
|
14
|
+
- @backstage/core-plugin-api@1.12.3-next.1
|
|
15
|
+
- @backstage/plugin-permission-react@0.4.40-next.1
|
|
16
|
+
- @backstage/version-bridge@1.0.12-next.0
|
|
17
|
+
- @backstage/theme@0.7.2-next.1
|
|
18
|
+
|
|
3
19
|
## 1.19.7-next.1
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -419,9 +419,9 @@ declare function createFormField<TReturnValue extends z.ZodType, TUiOptions exte
|
|
|
419
419
|
declare const scaffolderReactTranslationRef: _backstage_frontend_plugin_api.TranslationRef<"scaffolder-react", {
|
|
420
420
|
readonly "workflow.noDescription": "No description";
|
|
421
421
|
readonly "stepper.backButtonText": "Back";
|
|
422
|
+
readonly "stepper.nextButtonText": "Next";
|
|
422
423
|
readonly "stepper.createButtonText": "Create";
|
|
423
424
|
readonly "stepper.reviewButtonText": "Review";
|
|
424
|
-
readonly "stepper.nextButtonText": "Next";
|
|
425
425
|
readonly "stepper.stepIndexLabel": "Step {{index, number}}";
|
|
426
426
|
readonly "passwordWidget.content": "This widget is insecure. Please use [`ui:field: Secret`](https://backstage.io/docs/features/software-templates/writing-templates/#using-secrets) instead of `ui:widget: password`";
|
|
427
427
|
readonly "scaffolderPageContextMenu.createLabel": "Create";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-react",
|
|
3
|
-
"version": "1.19.7-next.
|
|
3
|
+
"version": "1.19.7-next.2",
|
|
4
4
|
"description": "A frontend library that helps other Backstage plugins interact with the Scaffolder",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "web-library",
|
|
@@ -66,17 +66,17 @@
|
|
|
66
66
|
"test": "backstage-cli package test"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@backstage/catalog-client": "1.12.
|
|
69
|
+
"@backstage/catalog-client": "1.12.2-next.0",
|
|
70
70
|
"@backstage/catalog-model": "1.7.6",
|
|
71
|
-
"@backstage/core-components": "0.18.7-next.
|
|
72
|
-
"@backstage/core-plugin-api": "1.12.3-next.
|
|
73
|
-
"@backstage/frontend-plugin-api": "0.14.0-next.
|
|
74
|
-
"@backstage/plugin-catalog-react": "
|
|
75
|
-
"@backstage/plugin-permission-react": "0.4.40-next.
|
|
71
|
+
"@backstage/core-components": "0.18.7-next.2",
|
|
72
|
+
"@backstage/core-plugin-api": "1.12.3-next.1",
|
|
73
|
+
"@backstage/frontend-plugin-api": "0.14.0-next.2",
|
|
74
|
+
"@backstage/plugin-catalog-react": "2.0.0-next.2",
|
|
75
|
+
"@backstage/plugin-permission-react": "0.4.40-next.1",
|
|
76
76
|
"@backstage/plugin-scaffolder-common": "1.7.6-next.1",
|
|
77
|
-
"@backstage/theme": "0.7.2-next.
|
|
77
|
+
"@backstage/theme": "0.7.2-next.1",
|
|
78
78
|
"@backstage/types": "1.2.2",
|
|
79
|
-
"@backstage/version-bridge": "1.0.
|
|
79
|
+
"@backstage/version-bridge": "1.0.12-next.0",
|
|
80
80
|
"@material-ui/core": "^4.12.2",
|
|
81
81
|
"@material-ui/icons": "^4.9.1",
|
|
82
82
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -104,12 +104,13 @@
|
|
|
104
104
|
"zod-to-json-schema": "^3.25.1"
|
|
105
105
|
},
|
|
106
106
|
"devDependencies": {
|
|
107
|
-
"@backstage/cli": "0.35.4-next.
|
|
108
|
-
"@backstage/core-app-api": "1.19.5-next.
|
|
109
|
-
"@backstage/
|
|
107
|
+
"@backstage/cli": "0.35.4-next.2",
|
|
108
|
+
"@backstage/core-app-api": "1.19.5-next.1",
|
|
109
|
+
"@backstage/frontend-test-utils": "0.5.0-next.2",
|
|
110
|
+
"@backstage/plugin-catalog": "1.33.0-next.2",
|
|
110
111
|
"@backstage/plugin-catalog-common": "1.1.8-next.0",
|
|
111
112
|
"@backstage/plugin-permission-common": "0.9.6-next.0",
|
|
112
|
-
"@backstage/test-utils": "1.7.15-next.
|
|
113
|
+
"@backstage/test-utils": "1.7.15-next.2",
|
|
113
114
|
"@testing-library/dom": "^10.0.0",
|
|
114
115
|
"@testing-library/jest-dom": "^6.0.0",
|
|
115
116
|
"@testing-library/react": "^16.0.0",
|
|
@@ -118,14 +119,14 @@
|
|
|
118
119
|
"@types/react": "^18.0.0",
|
|
119
120
|
"react": "^18.0.2",
|
|
120
121
|
"react-dom": "^18.0.2",
|
|
121
|
-
"react-router-dom": "^6.
|
|
122
|
+
"react-router-dom": "^6.30.2",
|
|
122
123
|
"swr": "^2.0.0"
|
|
123
124
|
},
|
|
124
125
|
"peerDependencies": {
|
|
125
126
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
126
127
|
"react": "^17.0.0 || ^18.0.0",
|
|
127
128
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
128
|
-
"react-router-dom": "^6.
|
|
129
|
+
"react-router-dom": "^6.30.2"
|
|
129
130
|
},
|
|
130
131
|
"peerDependenciesMeta": {
|
|
131
132
|
"@types/react": {
|