@backstage/plugin-scaffolder 1.22.0-next.0 → 1.22.1-next.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 +25 -0
- package/alpha/package.json +1 -1
- package/dist/index.d.ts +13 -13
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder
|
|
2
2
|
|
|
3
|
+
## 1.22.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- cc81579: Updated dependency `@rjsf/utils` to `5.18.5`.
|
|
8
|
+
Updated dependency `@rjsf/core` to `5.18.5`.
|
|
9
|
+
Updated dependency `@rjsf/material-ui` to `5.18.5`.
|
|
10
|
+
Updated dependency `@rjsf/validator-ajv8` to `5.18.5`.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-catalog-react@1.12.2-next.1
|
|
13
|
+
- @backstage/plugin-scaffolder-react@1.10.0-next.1
|
|
14
|
+
- @backstage/core-compat-api@0.2.7-next.0
|
|
15
|
+
- @backstage/core-components@0.14.9-next.0
|
|
16
|
+
- @backstage/core-plugin-api@1.9.3
|
|
17
|
+
- @backstage/catalog-client@1.6.5
|
|
18
|
+
- @backstage/catalog-model@1.5.0
|
|
19
|
+
- @backstage/errors@1.2.4
|
|
20
|
+
- @backstage/frontend-plugin-api@0.6.7-next.0
|
|
21
|
+
- @backstage/integration@1.13.0-next.0
|
|
22
|
+
- @backstage/integration-react@1.1.29-next.0
|
|
23
|
+
- @backstage/types@1.1.1
|
|
24
|
+
- @backstage/plugin-catalog-common@1.0.24
|
|
25
|
+
- @backstage/plugin-permission-react@0.4.23
|
|
26
|
+
- @backstage/plugin-scaffolder-common@1.5.3
|
|
27
|
+
|
|
3
28
|
## 1.22.0-next.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/dist/index.d.ts
CHANGED
|
@@ -122,13 +122,13 @@ declare const scaffolderPlugin: _backstage_core_plugin_api.BackstagePlugin<{
|
|
|
122
122
|
declare const EntityPickerFieldExtension: _backstage_plugin_scaffolder_react.FieldExtensionComponent<string, {
|
|
123
123
|
defaultKind?: string | undefined;
|
|
124
124
|
defaultNamespace?: string | false | undefined;
|
|
125
|
-
allowedKinds?: string[] | undefined;
|
|
126
|
-
allowArbitraryValues?: boolean | undefined;
|
|
127
125
|
catalogFilter?: Record<string, string | string[] | {
|
|
128
126
|
exists?: boolean | undefined;
|
|
129
127
|
}> | Record<string, string | string[] | {
|
|
130
128
|
exists?: boolean | undefined;
|
|
131
129
|
}>[] | undefined;
|
|
130
|
+
allowedKinds?: string[] | undefined;
|
|
131
|
+
allowArbitraryValues?: boolean | undefined;
|
|
132
132
|
}>;
|
|
133
133
|
/**
|
|
134
134
|
* The field extension for selecting a name for a new Entity in the Catalog.
|
|
@@ -144,12 +144,12 @@ declare const EntityNamePickerFieldExtension: _backstage_plugin_scaffolder_react
|
|
|
144
144
|
declare const MultiEntityPickerFieldExtension: _backstage_plugin_scaffolder_react.FieldExtensionComponent<string[], {
|
|
145
145
|
defaultKind?: string | undefined;
|
|
146
146
|
defaultNamespace?: string | false | undefined;
|
|
147
|
-
allowArbitraryValues?: boolean | undefined;
|
|
148
147
|
catalogFilter?: Record<string, string | string[] | {
|
|
149
148
|
exists?: boolean | undefined;
|
|
150
149
|
}> | Record<string, string | string[] | {
|
|
151
150
|
exists?: boolean | undefined;
|
|
152
151
|
}>[] | undefined;
|
|
152
|
+
allowArbitraryValues?: boolean | undefined;
|
|
153
153
|
}>;
|
|
154
154
|
/**
|
|
155
155
|
* The field extension which provides the ability to select a RepositoryUrl.
|
|
@@ -182,13 +182,13 @@ declare const RepoUrlPickerFieldExtension: _backstage_plugin_scaffolder_react.Fi
|
|
|
182
182
|
*/
|
|
183
183
|
declare const OwnerPickerFieldExtension: _backstage_plugin_scaffolder_react.FieldExtensionComponent<string, {
|
|
184
184
|
defaultNamespace?: string | false | undefined;
|
|
185
|
-
allowedKinds?: string[] | undefined;
|
|
186
|
-
allowArbitraryValues?: boolean | undefined;
|
|
187
185
|
catalogFilter?: Record<string, string | string[] | {
|
|
188
186
|
exists?: boolean | undefined;
|
|
189
187
|
}> | Record<string, string | string[] | {
|
|
190
188
|
exists?: boolean | undefined;
|
|
191
189
|
}>[] | undefined;
|
|
190
|
+
allowedKinds?: string[] | undefined;
|
|
191
|
+
allowArbitraryValues?: boolean | undefined;
|
|
192
192
|
}>;
|
|
193
193
|
/**
|
|
194
194
|
* A field extension for picking groups a user belongs to out of the catalog.
|
|
@@ -213,13 +213,13 @@ declare const ScaffolderPage: (props: React.PropsWithChildren<RouterProps>) => R
|
|
|
213
213
|
declare const OwnedEntityPickerFieldExtension: _backstage_plugin_scaffolder_react.FieldExtensionComponent<string, {
|
|
214
214
|
defaultKind?: string | undefined;
|
|
215
215
|
defaultNamespace?: string | false | undefined;
|
|
216
|
-
allowedKinds?: string[] | undefined;
|
|
217
|
-
allowArbitraryValues?: boolean | undefined;
|
|
218
216
|
catalogFilter?: Record<string, string | string[] | {
|
|
219
217
|
exists?: boolean | undefined;
|
|
220
218
|
}> | Record<string, string | string[] | {
|
|
221
219
|
exists?: boolean | undefined;
|
|
222
220
|
}>[] | undefined;
|
|
221
|
+
allowedKinds?: string[] | undefined;
|
|
222
|
+
allowArbitraryValues?: boolean | undefined;
|
|
223
223
|
}>;
|
|
224
224
|
/**
|
|
225
225
|
* EntityTagsPickerFieldExtension
|
|
@@ -254,13 +254,13 @@ declare function makeFieldSchemaFromZod<TReturnSchema extends z.ZodType, TUiOpti
|
|
|
254
254
|
declare const EntityPickerFieldSchema: FieldSchema<string, {
|
|
255
255
|
defaultKind?: string | undefined;
|
|
256
256
|
defaultNamespace?: string | false | undefined;
|
|
257
|
-
allowedKinds?: string[] | undefined;
|
|
258
|
-
allowArbitraryValues?: boolean | undefined;
|
|
259
257
|
catalogFilter?: Record<string, string | string[] | {
|
|
260
258
|
exists?: boolean | undefined;
|
|
261
259
|
}> | Record<string, string | string[] | {
|
|
262
260
|
exists?: boolean | undefined;
|
|
263
261
|
}>[] | undefined;
|
|
262
|
+
allowedKinds?: string[] | undefined;
|
|
263
|
+
allowArbitraryValues?: boolean | undefined;
|
|
264
264
|
}>;
|
|
265
265
|
/**
|
|
266
266
|
* The input props that can be specified under `ui:options` for the
|
|
@@ -275,13 +275,13 @@ type EntityPickerUiOptions = typeof EntityPickerFieldSchema.uiOptionsType;
|
|
|
275
275
|
*/
|
|
276
276
|
declare const OwnerPickerFieldSchema: FieldSchema<string, {
|
|
277
277
|
defaultNamespace?: string | false | undefined;
|
|
278
|
-
allowedKinds?: string[] | undefined;
|
|
279
|
-
allowArbitraryValues?: boolean | undefined;
|
|
280
278
|
catalogFilter?: Record<string, string | string[] | {
|
|
281
279
|
exists?: boolean | undefined;
|
|
282
280
|
}> | Record<string, string | string[] | {
|
|
283
281
|
exists?: boolean | undefined;
|
|
284
282
|
}>[] | undefined;
|
|
283
|
+
allowedKinds?: string[] | undefined;
|
|
284
|
+
allowArbitraryValues?: boolean | undefined;
|
|
285
285
|
}>;
|
|
286
286
|
/**
|
|
287
287
|
* The input props that can be specified under `ui:options` for the
|
|
@@ -337,13 +337,13 @@ declare const repoPickerValidation: (value: string, validation: FieldValidation,
|
|
|
337
337
|
declare const OwnedEntityPickerFieldSchema: FieldSchema<string, {
|
|
338
338
|
defaultKind?: string | undefined;
|
|
339
339
|
defaultNamespace?: string | false | undefined;
|
|
340
|
-
allowedKinds?: string[] | undefined;
|
|
341
|
-
allowArbitraryValues?: boolean | undefined;
|
|
342
340
|
catalogFilter?: Record<string, string | string[] | {
|
|
343
341
|
exists?: boolean | undefined;
|
|
344
342
|
}> | Record<string, string | string[] | {
|
|
345
343
|
exists?: boolean | undefined;
|
|
346
344
|
}>[] | undefined;
|
|
345
|
+
allowedKinds?: string[] | undefined;
|
|
346
|
+
allowArbitraryValues?: boolean | undefined;
|
|
347
347
|
}>;
|
|
348
348
|
/**
|
|
349
349
|
* The input props that can be specified under `ui:options` for the
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder",
|
|
3
|
-
"version": "1.22.
|
|
3
|
+
"version": "1.22.1-next.1",
|
|
4
4
|
"description": "The Backstage plugin that helps you create new things",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -67,10 +67,10 @@
|
|
|
67
67
|
"@backstage/integration": "^1.13.0-next.0",
|
|
68
68
|
"@backstage/integration-react": "^1.1.29-next.0",
|
|
69
69
|
"@backstage/plugin-catalog-common": "^1.0.24",
|
|
70
|
-
"@backstage/plugin-catalog-react": "^1.12.2-next.
|
|
70
|
+
"@backstage/plugin-catalog-react": "^1.12.2-next.1",
|
|
71
71
|
"@backstage/plugin-permission-react": "^0.4.23",
|
|
72
72
|
"@backstage/plugin-scaffolder-common": "^1.5.3",
|
|
73
|
-
"@backstage/plugin-scaffolder-react": "^1.10.0-next.
|
|
73
|
+
"@backstage/plugin-scaffolder-react": "^1.10.0-next.1",
|
|
74
74
|
"@backstage/types": "^1.1.1",
|
|
75
75
|
"@codemirror/language": "^6.0.0",
|
|
76
76
|
"@codemirror/legacy-modes": "^6.1.0",
|
|
@@ -80,10 +80,10 @@
|
|
|
80
80
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
81
81
|
"@microsoft/fetch-event-source": "^2.0.1",
|
|
82
82
|
"@react-hookz/web": "^24.0.0",
|
|
83
|
-
"@rjsf/core": "5.18.
|
|
84
|
-
"@rjsf/material-ui": "5.18.
|
|
85
|
-
"@rjsf/utils": "5.18.
|
|
86
|
-
"@rjsf/validator-ajv8": "5.18.
|
|
83
|
+
"@rjsf/core": "5.18.5",
|
|
84
|
+
"@rjsf/material-ui": "5.18.5",
|
|
85
|
+
"@rjsf/utils": "5.18.5",
|
|
86
|
+
"@rjsf/validator-ajv8": "5.18.5",
|
|
87
87
|
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
88
88
|
"@uiw/react-codemirror": "^4.9.3",
|
|
89
89
|
"classnames": "^2.2.6",
|
|
@@ -103,12 +103,12 @@
|
|
|
103
103
|
"zod-to-json-schema": "^3.20.4"
|
|
104
104
|
},
|
|
105
105
|
"devDependencies": {
|
|
106
|
-
"@backstage/cli": "^0.26.
|
|
107
|
-
"@backstage/core-app-api": "^1.13.
|
|
108
|
-
"@backstage/dev-utils": "^1.0.
|
|
109
|
-
"@backstage/plugin-catalog": "^1.21.1-next.
|
|
106
|
+
"@backstage/cli": "^0.26.11-next.1",
|
|
107
|
+
"@backstage/core-app-api": "^1.13.1-next.1",
|
|
108
|
+
"@backstage/dev-utils": "^1.0.35-next.1",
|
|
109
|
+
"@backstage/plugin-catalog": "^1.21.1-next.1",
|
|
110
110
|
"@backstage/plugin-permission-common": "^0.7.14",
|
|
111
|
-
"@backstage/test-utils": "^1.5.
|
|
111
|
+
"@backstage/test-utils": "^1.5.8-next.1",
|
|
112
112
|
"@testing-library/dom": "^10.0.0",
|
|
113
113
|
"@testing-library/jest-dom": "^6.0.0",
|
|
114
114
|
"@testing-library/react": "^15.0.0",
|