@backstage/plugin-org 0.6.8-next.2 → 0.6.9-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,5 +1,40 @@
1
1
  # @backstage/plugin-org
2
2
 
3
+ ## 0.6.9-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-react@1.7.0-next.0
9
+ - @backstage/theme@0.4.0-next.0
10
+ - @backstage/core-components@0.13.2-next.0
11
+ - @backstage/core-plugin-api@1.5.1
12
+ - @backstage/catalog-model@1.3.0
13
+
14
+ ## 0.6.8
15
+
16
+ ### Patch Changes
17
+
18
+ - 6e387c077a4: Changed the MembersListCard component to allow displaying aggregated members when viewing a group. Now, a toggle switch can be displayed that lets you switch between showing direct members and aggregated members.
19
+
20
+ To enable this new feature, set the showAggregateMembersToggle prop on EntityMembersListCard:
21
+
22
+ ```jsx
23
+ // In packages/app/src/components/catalog/EntityPage.tsx
24
+ const groupPage = (
25
+ // ...
26
+ <EntityMembersListCard showAggregateMembersToggle />
27
+ // ...
28
+ );
29
+ ```
30
+
31
+ - Updated dependencies
32
+ - @backstage/theme@0.3.0
33
+ - @backstage/plugin-catalog-react@1.6.0
34
+ - @backstage/core-components@0.13.1
35
+ - @backstage/catalog-model@1.3.0
36
+ - @backstage/core-plugin-api@1.5.1
37
+
3
38
  ## 0.6.8-next.2
4
39
 
5
40
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-org",
3
3
  "description": "A Backstage plugin that helps you create entity pages for your organization",
4
- "version": "0.6.8-next.2",
4
+ "version": "0.6.9-next.0",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -29,10 +29,10 @@
29
29
  },
30
30
  "dependencies": {
31
31
  "@backstage/catalog-model": "^1.3.0",
32
- "@backstage/core-components": "^0.13.1-next.1",
32
+ "@backstage/core-components": "^0.13.2-next.0",
33
33
  "@backstage/core-plugin-api": "^1.5.1",
34
- "@backstage/plugin-catalog-react": "^1.6.0-next.2",
35
- "@backstage/theme": "^0.3.0-next.0",
34
+ "@backstage/plugin-catalog-react": "^1.7.0-next.0",
35
+ "@backstage/theme": "^0.4.0-next.0",
36
36
  "@material-ui/core": "^4.12.2",
37
37
  "@material-ui/icons": "^4.9.1",
38
38
  "@material-ui/lab": "4.0.0-alpha.61",
@@ -47,13 +47,13 @@
47
47
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
48
48
  },
49
49
  "devDependencies": {
50
- "@backstage/catalog-client": "^1.4.1",
51
- "@backstage/cli": "^0.22.7-next.0",
52
- "@backstage/core-app-api": "^1.8.0-next.1",
53
- "@backstage/dev-utils": "^1.0.15-next.2",
54
- "@backstage/plugin-catalog": "^1.11.0-next.2",
50
+ "@backstage/catalog-client": "^1.4.2-next.0",
51
+ "@backstage/cli": "^0.22.8-next.0",
52
+ "@backstage/core-app-api": "^1.8.0",
53
+ "@backstage/dev-utils": "^1.0.16-next.0",
54
+ "@backstage/plugin-catalog": "^1.11.1-next.0",
55
55
  "@backstage/plugin-permission-react": "^0.4.12",
56
- "@backstage/test-utils": "^1.3.1-next.2",
56
+ "@backstage/test-utils": "^1.4.0-next.0",
57
57
  "@backstage/types": "^1.0.2",
58
58
  "@testing-library/dom": "^8.0.0",
59
59
  "@testing-library/jest-dom": "^5.10.1",