@backstage/plugin-org 0.5.9-next.3 → 0.5.9
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 +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-org
|
|
2
2
|
|
|
3
|
+
## 0.5.9
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 817f3196f6: Updated React Router dependencies to be peer dependencies.
|
|
8
|
+
- 7d47def9c4: Removed dependency on `@types/jest`.
|
|
9
|
+
- ab6650ede9: Added an edit button to the `UserProfileCard` that is enabled when the `backstage.io/edit-url` is present, this matches how the `GroupProfileCard` works
|
|
10
|
+
- 667d917488: Updated dependency `msw` to `^0.47.0`.
|
|
11
|
+
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
|
|
12
|
+
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/core-components@0.11.1
|
|
15
|
+
- @backstage/core-plugin-api@1.0.6
|
|
16
|
+
- @backstage/plugin-catalog-react@1.1.4
|
|
17
|
+
- @backstage/catalog-model@1.1.1
|
|
18
|
+
|
|
3
19
|
## 0.5.9-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.5.9
|
|
4
|
+
"version": "0.5.9",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
"clean": "backstage-cli package clean"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/catalog-model": "^1.1.1
|
|
32
|
-
"@backstage/core-components": "^0.11.1
|
|
33
|
-
"@backstage/core-plugin-api": "^1.0.6
|
|
34
|
-
"@backstage/plugin-catalog-react": "^1.1.4
|
|
31
|
+
"@backstage/catalog-model": "^1.1.1",
|
|
32
|
+
"@backstage/core-components": "^0.11.1",
|
|
33
|
+
"@backstage/core-plugin-api": "^1.0.6",
|
|
34
|
+
"@backstage/plugin-catalog-react": "^1.1.4",
|
|
35
35
|
"@backstage/theme": "^0.2.16",
|
|
36
36
|
"@material-ui/core": "^4.12.2",
|
|
37
37
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -47,11 +47,11 @@
|
|
|
47
47
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/catalog-client": "^1.1.0
|
|
51
|
-
"@backstage/cli": "^0.19.0
|
|
52
|
-
"@backstage/core-app-api": "^1.1.0
|
|
53
|
-
"@backstage/dev-utils": "^1.0.6
|
|
54
|
-
"@backstage/test-utils": "^1.2.0
|
|
50
|
+
"@backstage/catalog-client": "^1.1.0",
|
|
51
|
+
"@backstage/cli": "^0.19.0",
|
|
52
|
+
"@backstage/core-app-api": "^1.1.0",
|
|
53
|
+
"@backstage/dev-utils": "^1.0.6",
|
|
54
|
+
"@backstage/test-utils": "^1.2.0",
|
|
55
55
|
"@testing-library/jest-dom": "^5.10.1",
|
|
56
56
|
"@testing-library/react": "^12.1.3",
|
|
57
57
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"files": [
|
|
63
63
|
"dist"
|
|
64
64
|
],
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406"
|
|
66
66
|
}
|