@backstage/plugin-scaffolder-backend-module-yeoman 0.2.13-next.2 → 0.2.14

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +46 -0
  2. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,51 @@
1
1
  # @backstage/plugin-scaffolder-backend-module-yeoman
2
2
 
3
+ ## 0.2.14
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-scaffolder-backend@1.10.1
9
+
10
+ ## 0.2.13
11
+
12
+ ### Patch Changes
13
+
14
+ - e4c0240445: Added `catalogFilter` field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.
15
+
16
+ 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:
17
+
18
+ - Get all entities of kind `Group`
19
+
20
+ ```yaml
21
+ owner:
22
+ title: Owner
23
+ type: string
24
+ description: Owner of the component
25
+ ui:field: OwnerPicker
26
+ ui:options:
27
+ catalogFilter:
28
+ - kind: Group
29
+ ```
30
+
31
+ - Get entities of kind `Group` and spec.type `team`
32
+ ```yaml
33
+ owner:
34
+ title: Owner
35
+ type: string
36
+ description: Owner of the component
37
+ ui:field: OwnerPicker
38
+ ui:options:
39
+ catalogFilter:
40
+ - kind: Group
41
+ spec.type: team
42
+ ```
43
+
44
+ - Updated dependencies
45
+ - @backstage/plugin-scaffolder-backend@1.10.0
46
+ - @backstage/config@1.0.6
47
+ - @backstage/types@1.0.2
48
+
3
49
  ## 0.2.13-next.2
4
50
 
5
51
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-scaffolder-backend-module-yeoman",
3
- "version": "0.2.13-next.2",
3
+ "version": "0.2.14",
4
4
  "main": "dist/index.cjs.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -22,15 +22,15 @@
22
22
  "clean": "backstage-cli package clean"
23
23
  },
24
24
  "dependencies": {
25
- "@backstage/config": "^1.0.6-next.0",
26
- "@backstage/plugin-scaffolder-backend": "^1.10.0-next.2",
25
+ "@backstage/config": "^1.0.6",
26
+ "@backstage/plugin-scaffolder-backend": "^1.10.1",
27
27
  "@backstage/types": "^1.0.2",
28
28
  "winston": "^3.2.1",
29
29
  "yeoman-environment": "^3.9.1"
30
30
  },
31
31
  "devDependencies": {
32
- "@backstage/backend-common": "^0.18.0-next.1",
33
- "@backstage/cli": "^0.22.1-next.2"
32
+ "@backstage/backend-common": "^0.18.1",
33
+ "@backstage/cli": "^0.22.1"
34
34
  },
35
35
  "files": [
36
36
  "dist"