@backstage/plugin-org 0.6.14-next.3 → 0.6.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.
- package/CHANGELOG.md +16 -0
- package/package.json +14 -14
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.6.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 482bb5c0bbf8: Moved `@types/react` to be a regular dependency
|
|
8
|
+
- 406b786a2a2c: Mark package as being free of side effects, allowing more optimized Webpack builds.
|
|
9
|
+
- 43a2137bb829: Ensure direct relations are shown for User entities while keeping support for aggregating closest parent group ownership
|
|
10
|
+
- dd9329caea1c: Entity relations toggle should by default be aggregated for User entities
|
|
11
|
+
- 8cec7664e146: Removed `@types/node` dependency
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/plugin-catalog-react@1.8.4
|
|
14
|
+
- @backstage/core-components@0.13.5
|
|
15
|
+
- @backstage/catalog-model@1.4.2
|
|
16
|
+
- @backstage/core-plugin-api@1.6.0
|
|
17
|
+
- @backstage/theme@0.4.2
|
|
18
|
+
|
|
3
19
|
## 0.6.14-next.3
|
|
4
20
|
|
|
5
21
|
### 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.14
|
|
4
|
+
"version": "0.6.14",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -30,11 +30,11 @@
|
|
|
30
30
|
"clean": "backstage-cli package clean"
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@backstage/catalog-model": "^1.4.2
|
|
34
|
-
"@backstage/core-components": "^0.13.5
|
|
35
|
-
"@backstage/core-plugin-api": "^1.6.0
|
|
36
|
-
"@backstage/plugin-catalog-react": "^1.8.4
|
|
37
|
-
"@backstage/theme": "^0.4.2
|
|
33
|
+
"@backstage/catalog-model": "^1.4.2",
|
|
34
|
+
"@backstage/core-components": "^0.13.5",
|
|
35
|
+
"@backstage/core-plugin-api": "^1.6.0",
|
|
36
|
+
"@backstage/plugin-catalog-react": "^1.8.4",
|
|
37
|
+
"@backstage/theme": "^0.4.2",
|
|
38
38
|
"@material-ui/core": "^4.12.2",
|
|
39
39
|
"@material-ui/icons": "^4.9.1",
|
|
40
40
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -50,14 +50,14 @@
|
|
|
50
50
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/catalog-client": "^1.4.4
|
|
54
|
-
"@backstage/cli": "^0.22.13
|
|
55
|
-
"@backstage/core-app-api": "^1.10.0
|
|
56
|
-
"@backstage/dev-utils": "^1.0.21
|
|
57
|
-
"@backstage/plugin-catalog": "^1.13.0
|
|
58
|
-
"@backstage/plugin-permission-react": "^0.4.15
|
|
59
|
-
"@backstage/test-utils": "^1.4.3
|
|
60
|
-
"@backstage/types": "^1.1.1
|
|
53
|
+
"@backstage/catalog-client": "^1.4.4",
|
|
54
|
+
"@backstage/cli": "^0.22.13",
|
|
55
|
+
"@backstage/core-app-api": "^1.10.0",
|
|
56
|
+
"@backstage/dev-utils": "^1.0.21",
|
|
57
|
+
"@backstage/plugin-catalog": "^1.13.0",
|
|
58
|
+
"@backstage/plugin-permission-react": "^0.4.15",
|
|
59
|
+
"@backstage/test-utils": "^1.4.3",
|
|
60
|
+
"@backstage/types": "^1.1.1",
|
|
61
61
|
"@testing-library/dom": "^8.0.0",
|
|
62
62
|
"@testing-library/jest-dom": "^5.10.1",
|
|
63
63
|
"@testing-library/react": "^12.1.3",
|