@backstage/plugin-org 0.5.6-next.2 → 0.5.6
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 +34 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.5.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
|
|
8
|
+
- 306d0b4fdd: Added the ability to use an additional `filter` when fetching groups in `MyGroupsSidebarItem` component. Example:
|
|
9
|
+
|
|
10
|
+
```diff
|
|
11
|
+
// app/src/components/Root/Root.tsx
|
|
12
|
+
<SidebarPage>
|
|
13
|
+
<Sidebar>
|
|
14
|
+
//...
|
|
15
|
+
<SidebarGroup label="Menu" icon={<MenuIcon />}>
|
|
16
|
+
{/* Global nav, not org-specific */}
|
|
17
|
+
//...
|
|
18
|
+
<SidebarItem icon={HomeIcon} to="catalog" text="Home" />
|
|
19
|
+
<MyGroupsSidebarItem
|
|
20
|
+
singularTitle="My Squad"
|
|
21
|
+
pluralTitle="My Squads"
|
|
22
|
+
icon={GroupIcon}
|
|
23
|
+
+ filter={{ 'spec.type': 'team' }}
|
|
24
|
+
/>
|
|
25
|
+
//...
|
|
26
|
+
</SidebarGroup>
|
|
27
|
+
</ Sidebar>
|
|
28
|
+
</SidebarPage>
|
|
29
|
+
```
|
|
30
|
+
|
|
31
|
+
- Updated dependencies
|
|
32
|
+
- @backstage/plugin-catalog-react@1.1.1
|
|
33
|
+
- @backstage/core-components@0.9.5
|
|
34
|
+
- @backstage/core-plugin-api@1.0.3
|
|
35
|
+
- @backstage/catalog-model@1.0.3
|
|
36
|
+
|
|
3
37
|
## 0.5.6-next.2
|
|
4
38
|
|
|
5
39
|
### 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.5.6
|
|
4
|
+
"version": "0.5.6",
|
|
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
|
"clean": "backstage-cli package clean"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@backstage/catalog-model": "^1.0.3
|
|
33
|
-
"@backstage/core-components": "^0.9.5
|
|
34
|
-
"@backstage/core-plugin-api": "^1.0.3
|
|
35
|
-
"@backstage/plugin-catalog-react": "^1.1.1
|
|
32
|
+
"@backstage/catalog-model": "^1.0.3",
|
|
33
|
+
"@backstage/core-components": "^0.9.5",
|
|
34
|
+
"@backstage/core-plugin-api": "^1.0.3",
|
|
35
|
+
"@backstage/plugin-catalog-react": "^1.1.1",
|
|
36
36
|
"@backstage/theme": "^0.2.15",
|
|
37
37
|
"@material-ui/core": "^4.12.2",
|
|
38
38
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -48,11 +48,11 @@
|
|
|
48
48
|
"react": "^16.13.1 || ^17.0.0"
|
|
49
49
|
},
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@backstage/catalog-client": "^1.0.3
|
|
52
|
-
"@backstage/cli": "^0.17.2
|
|
53
|
-
"@backstage/core-app-api": "^1.0.3
|
|
54
|
-
"@backstage/dev-utils": "^1.0.3
|
|
55
|
-
"@backstage/test-utils": "^1.1.1
|
|
51
|
+
"@backstage/catalog-client": "^1.0.3",
|
|
52
|
+
"@backstage/cli": "^0.17.2",
|
|
53
|
+
"@backstage/core-app-api": "^1.0.3",
|
|
54
|
+
"@backstage/dev-utils": "^1.0.3",
|
|
55
|
+
"@backstage/test-utils": "^1.1.1",
|
|
56
56
|
"@testing-library/jest-dom": "^5.10.1",
|
|
57
57
|
"@testing-library/react": "^12.1.3",
|
|
58
58
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"files": [
|
|
65
65
|
"dist"
|
|
66
66
|
],
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee"
|
|
68
68
|
}
|