@backstage-community/plugin-lighthouse 0.7.0 → 0.8.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 +11 -0
- package/dist/index.d.ts +2 -2
- package/package.json +9 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,16 @@
|
|
|
1
1
|
# @backstage-community/plugin-lighthouse
|
|
2
2
|
|
|
3
|
+
## 0.8.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 1662ddc: Backstage version bump to v1.37.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [1662ddc]
|
|
12
|
+
- @backstage-community/plugin-lighthouse-common@0.5.0
|
|
13
|
+
|
|
3
14
|
## 0.7.0
|
|
4
15
|
|
|
5
16
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import * as
|
|
2
|
+
import * as _backstage_core_components__ from '@backstage/core-components/*';
|
|
3
3
|
import * as react from 'react';
|
|
4
4
|
import react__default from 'react';
|
|
5
5
|
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
@@ -19,7 +19,7 @@ declare const EntityLighthouseContent: () => react.JSX.Element;
|
|
|
19
19
|
/** @public */
|
|
20
20
|
declare const EntityLastLighthouseAuditCard: (props: {
|
|
21
21
|
dense?: boolean | undefined;
|
|
22
|
-
variant?:
|
|
22
|
+
variant?: _backstage_core_components__.InfoCardVariants | undefined;
|
|
23
23
|
}) => react.JSX.Element;
|
|
24
24
|
|
|
25
25
|
/** @public */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-lighthouse",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.8.0",
|
|
4
4
|
"description": "A Backstage plugin that integrates towards Lighthouse",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"test": "backstage-cli package test"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@backstage-community/plugin-lighthouse-common": "^0.
|
|
46
|
+
"@backstage-community/plugin-lighthouse-common": "^0.5.0",
|
|
47
47
|
"@backstage/catalog-model": "^1.7.3",
|
|
48
|
-
"@backstage/core-components": "^0.
|
|
49
|
-
"@backstage/core-plugin-api": "^1.10.
|
|
50
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
48
|
+
"@backstage/core-components": "^0.17.0",
|
|
49
|
+
"@backstage/core-plugin-api": "^1.10.5",
|
|
50
|
+
"@backstage/plugin-catalog-react": "^1.16.0",
|
|
51
51
|
"@material-ui/core": "^4.12.2",
|
|
52
52
|
"@material-ui/icons": "^4.9.1",
|
|
53
53
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -55,10 +55,10 @@
|
|
|
55
55
|
"react-use": "^17.2.4"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/cli": "^0.
|
|
59
|
-
"@backstage/core-app-api": "^1.
|
|
60
|
-
"@backstage/dev-utils": "^1.1.
|
|
61
|
-
"@backstage/test-utils": "^1.7.
|
|
58
|
+
"@backstage/cli": "^0.31.0",
|
|
59
|
+
"@backstage/core-app-api": "^1.16.0",
|
|
60
|
+
"@backstage/dev-utils": "^1.1.8",
|
|
61
|
+
"@backstage/test-utils": "^1.7.6",
|
|
62
62
|
"@testing-library/dom": "^10.0.0",
|
|
63
63
|
"@testing-library/jest-dom": "^6.0.0",
|
|
64
64
|
"@testing-library/react": "^15.0.0",
|
|
@@ -90,12 +90,5 @@
|
|
|
90
90
|
}
|
|
91
91
|
}
|
|
92
92
|
},
|
|
93
|
-
"typesVersions": {
|
|
94
|
-
"*": {
|
|
95
|
-
"index": [
|
|
96
|
-
"dist/index.d.ts"
|
|
97
|
-
]
|
|
98
|
-
}
|
|
99
|
-
},
|
|
100
93
|
"module": "./dist/index.esm.js"
|
|
101
94
|
}
|