@backstage/plugin-scaffolder-backend 1.9.0 → 1.9.1-next.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 +49 -0
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @backstage/plugin-scaffolder-backend
|
|
2
2
|
|
|
3
|
+
## 1.9.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e4c0240445: Added `catalogFilter` field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.
|
|
8
|
+
|
|
9
|
+
The `allowedKinds` field has been deprecated. Use `catalogFilter` instead. This field allows users to specify a filter on the shape of [EntityFilterQuery](https://github.com/backstage/backstage/blob/774c42003782121d3d6b2aa5f2865d53370c160e/packages/catalog-client/src/types/api.ts#L74), which can be passed into the CatalogClient. See examples below:
|
|
10
|
+
|
|
11
|
+
- Get all entities of kind `Group`
|
|
12
|
+
|
|
13
|
+
```yaml
|
|
14
|
+
owner:
|
|
15
|
+
title: Owner
|
|
16
|
+
type: string
|
|
17
|
+
description: Owner of the component
|
|
18
|
+
ui:field: OwnerPicker
|
|
19
|
+
ui:options:
|
|
20
|
+
catalogFilter:
|
|
21
|
+
- kind: Group
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
- Get entities of kind `Group` and spec.type `team`
|
|
25
|
+
```yaml
|
|
26
|
+
owner:
|
|
27
|
+
title: Owner
|
|
28
|
+
type: string
|
|
29
|
+
description: Owner of the component
|
|
30
|
+
ui:field: OwnerPicker
|
|
31
|
+
ui:options:
|
|
32
|
+
catalogFilter:
|
|
33
|
+
- kind: Group
|
|
34
|
+
spec.type: team
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/catalog-model@1.1.5-next.0
|
|
39
|
+
- @backstage/plugin-scaffolder-common@1.2.4-next.0
|
|
40
|
+
- @backstage/catalog-client@1.3.0-next.0
|
|
41
|
+
- @backstage/plugin-catalog-backend@1.7.0-next.0
|
|
42
|
+
- @backstage/backend-common@0.17.0
|
|
43
|
+
- @backstage/backend-plugin-api@0.2.0
|
|
44
|
+
- @backstage/backend-tasks@0.4.0
|
|
45
|
+
- @backstage/config@1.0.5
|
|
46
|
+
- @backstage/errors@1.1.4
|
|
47
|
+
- @backstage/integration@1.4.1
|
|
48
|
+
- @backstage/types@1.0.2
|
|
49
|
+
- @backstage/plugin-auth-node@0.2.8
|
|
50
|
+
- @backstage/plugin-catalog-node@1.3.1-next.0
|
|
51
|
+
|
|
3
52
|
## 1.9.0
|
|
4
53
|
|
|
5
54
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-scaffolder-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that helps you create new things",
|
|
4
|
-
"version": "1.9.0",
|
|
4
|
+
"version": "1.9.1-next.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -37,15 +37,15 @@
|
|
|
37
37
|
"@backstage/backend-common": "^0.17.0",
|
|
38
38
|
"@backstage/backend-plugin-api": "^0.2.0",
|
|
39
39
|
"@backstage/backend-tasks": "^0.4.0",
|
|
40
|
-
"@backstage/catalog-client": "^1.
|
|
41
|
-
"@backstage/catalog-model": "^1.1.
|
|
40
|
+
"@backstage/catalog-client": "^1.3.0-next.0",
|
|
41
|
+
"@backstage/catalog-model": "^1.1.5-next.0",
|
|
42
42
|
"@backstage/config": "^1.0.5",
|
|
43
43
|
"@backstage/errors": "^1.1.4",
|
|
44
44
|
"@backstage/integration": "^1.4.1",
|
|
45
45
|
"@backstage/plugin-auth-node": "^0.2.8",
|
|
46
|
-
"@backstage/plugin-catalog-backend": "^1.
|
|
47
|
-
"@backstage/plugin-catalog-node": "^1.3.0",
|
|
48
|
-
"@backstage/plugin-scaffolder-common": "^1.2.
|
|
46
|
+
"@backstage/plugin-catalog-backend": "^1.7.0-next.0",
|
|
47
|
+
"@backstage/plugin-catalog-node": "^1.3.1-next.0",
|
|
48
|
+
"@backstage/plugin-scaffolder-common": "^1.2.4-next.0",
|
|
49
49
|
"@backstage/types": "^1.0.2",
|
|
50
50
|
"@gitbeaker/core": "^35.6.0",
|
|
51
51
|
"@gitbeaker/node": "^35.1.0",
|
|
@@ -82,8 +82,8 @@
|
|
|
82
82
|
"zod": "~3.18.0"
|
|
83
83
|
},
|
|
84
84
|
"devDependencies": {
|
|
85
|
-
"@backstage/backend-test-utils": "^0.1.
|
|
86
|
-
"@backstage/cli": "^0.22.0",
|
|
85
|
+
"@backstage/backend-test-utils": "^0.1.32-next.0",
|
|
86
|
+
"@backstage/cli": "^0.22.1-next.0",
|
|
87
87
|
"@types/command-exists": "^1.2.0",
|
|
88
88
|
"@types/fs-extra": "^9.0.1",
|
|
89
89
|
"@types/git-url-parse": "^9.0.0",
|