@backstage/plugin-org 0.6.32 → 0.6.34-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 +13 -0
- package/dist/components/Cards/Group/GroupProfile/GroupProfileCard.esm.js +1 -1
- package/dist/components/Cards/Group/MembersList/MembersListCard.esm.js +1 -1
- package/dist/components/Cards/OwnershipCard/useGetEntities.esm.js +3 -3
- package/dist/components/MyGroupsSidebarItem/MyGroupsSidebarItem.esm.js +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.34-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-react@1.14.3-next.0
|
|
9
|
+
- @backstage/frontend-plugin-api@0.9.3-next.0
|
|
10
|
+
- @backstage/catalog-model@1.7.1
|
|
11
|
+
- @backstage/core-compat-api@0.3.4-next.0
|
|
12
|
+
- @backstage/core-components@0.16.2-next.0
|
|
13
|
+
- @backstage/core-plugin-api@1.10.1
|
|
14
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
15
|
+
|
|
3
16
|
## 0.6.32
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { stringifyEntityRef, RELATION_PARENT_OF, RELATION_CHILD_OF, ANNOTATION_LOCATION, ANNOTATION_EDIT_URL } from '@backstage/catalog-model';
|
|
2
|
-
import { InfoCard,
|
|
2
|
+
import { InfoCard, Avatar, Link } from '@backstage/core-components';
|
|
3
3
|
import Box from '@material-ui/core/Box';
|
|
4
4
|
import Grid from '@material-ui/core/Grid';
|
|
5
5
|
import IconButton from '@material-ui/core/IconButton';
|
|
@@ -8,7 +8,7 @@ import { makeStyles, createStyles } from '@material-ui/core/styles';
|
|
|
8
8
|
import Pagination from '@material-ui/lab/Pagination';
|
|
9
9
|
import React, { useState } from 'react';
|
|
10
10
|
import useAsync from 'react-use/esm/useAsync';
|
|
11
|
-
import { Progress, ResponseErrorPanel, Avatar, Link, OverflowTooltip
|
|
11
|
+
import { Progress, ResponseErrorPanel, InfoCard, Avatar, Link, OverflowTooltip } from '@backstage/core-components';
|
|
12
12
|
import { useApi } from '@backstage/core-plugin-api';
|
|
13
13
|
import { getAllDesendantMembersForGroupEntity, removeDuplicateEntitiesFrom } from '../../../../helpers/helpers.esm.js';
|
|
14
14
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { catalogApiRef,
|
|
1
|
+
import { parseEntityRef, stringifyEntityRef, RELATION_MEMBER_OF, RELATION_PARENT_OF } from '@backstage/catalog-model';
|
|
2
|
+
import { catalogApiRef, humanizeEntityRef, getEntityRelations } from '@backstage/plugin-catalog-react';
|
|
3
3
|
import limiterFactory from 'p-limit';
|
|
4
4
|
import { useApi } from '@backstage/core-plugin-api';
|
|
5
5
|
import useAsync from 'react-use/esm/useAsync';
|
|
6
6
|
import qs from 'qs';
|
|
7
|
-
import {
|
|
7
|
+
import { uniqBy, uniq } from 'lodash';
|
|
8
8
|
|
|
9
9
|
const limiter = limiterFactory(5);
|
|
10
10
|
const getQueryParams = (ownersEntityRef, selectedEntity) => {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import React from 'react';
|
|
2
|
-
import { getCompoundEntityRef,
|
|
2
|
+
import { getCompoundEntityRef, DEFAULT_NAMESPACE, stringifyEntityRef } from '@backstage/catalog-model';
|
|
3
3
|
import { SidebarItem, SidebarSubmenu, SidebarSubmenuItem } from '@backstage/core-components';
|
|
4
4
|
import { useApi, identityApiRef, useRouteRef } from '@backstage/core-plugin-api';
|
|
5
5
|
import useAsync from 'react-use/esm/useAsync';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-org",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.34-next.0",
|
|
4
4
|
"description": "A Backstage plugin that helps you create entity pages for your organization",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -60,13 +60,13 @@
|
|
|
60
60
|
"test": "backstage-cli package test"
|
|
61
61
|
},
|
|
62
62
|
"dependencies": {
|
|
63
|
-
"@backstage/catalog-model": "
|
|
64
|
-
"@backstage/core-compat-api": "
|
|
65
|
-
"@backstage/core-components": "
|
|
66
|
-
"@backstage/core-plugin-api": "
|
|
67
|
-
"@backstage/frontend-plugin-api": "
|
|
68
|
-
"@backstage/plugin-catalog-common": "
|
|
69
|
-
"@backstage/plugin-catalog-react": "
|
|
63
|
+
"@backstage/catalog-model": "1.7.1",
|
|
64
|
+
"@backstage/core-compat-api": "0.3.4-next.0",
|
|
65
|
+
"@backstage/core-components": "0.16.2-next.0",
|
|
66
|
+
"@backstage/core-plugin-api": "1.10.1",
|
|
67
|
+
"@backstage/frontend-plugin-api": "0.9.3-next.0",
|
|
68
|
+
"@backstage/plugin-catalog-common": "1.1.1",
|
|
69
|
+
"@backstage/plugin-catalog-react": "1.14.3-next.0",
|
|
70
70
|
"@material-ui/core": "^4.12.2",
|
|
71
71
|
"@material-ui/icons": "^4.9.1",
|
|
72
72
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -77,15 +77,15 @@
|
|
|
77
77
|
"react-use": "^17.2.4"
|
|
78
78
|
},
|
|
79
79
|
"devDependencies": {
|
|
80
|
-
"@backstage/catalog-client": "
|
|
81
|
-
"@backstage/cli": "
|
|
82
|
-
"@backstage/core-app-api": "
|
|
83
|
-
"@backstage/dev-utils": "
|
|
84
|
-
"@backstage/plugin-catalog": "
|
|
85
|
-
"@backstage/plugin-permission-common": "
|
|
86
|
-
"@backstage/plugin-permission-react": "
|
|
87
|
-
"@backstage/test-utils": "
|
|
88
|
-
"@backstage/types": "
|
|
80
|
+
"@backstage/catalog-client": "1.8.1-next.0",
|
|
81
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
82
|
+
"@backstage/core-app-api": "1.15.3-next.0",
|
|
83
|
+
"@backstage/dev-utils": "1.1.5-next.0",
|
|
84
|
+
"@backstage/plugin-catalog": "1.25.2-next.0",
|
|
85
|
+
"@backstage/plugin-permission-common": "0.8.2",
|
|
86
|
+
"@backstage/plugin-permission-react": "0.4.28",
|
|
87
|
+
"@backstage/test-utils": "1.7.3-next.0",
|
|
88
|
+
"@backstage/types": "1.2.0",
|
|
89
89
|
"@testing-library/dom": "^10.0.0",
|
|
90
90
|
"@testing-library/jest-dom": "^6.0.0",
|
|
91
91
|
"@testing-library/react": "^16.0.0",
|