@backstage-community/plugin-cicd-statistics-module-github 0.9.0 → 0.9.1
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 +8 -0
- package/README.md +24 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage-community/plugin-cicd-statistics-module-github
|
|
2
2
|
|
|
3
|
+
## 0.9.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8202df6: Added documentation for the New Frontend System
|
|
8
|
+
- Updated dependencies [8202df6]
|
|
9
|
+
- @backstage-community/plugin-cicd-statistics@0.12.1
|
|
10
|
+
|
|
3
11
|
## 0.9.0
|
|
4
12
|
|
|
5
13
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -40,3 +40,27 @@ import { EntityCicdStatisticsContent } from '@backstage-community/plugin-cicd-st
|
|
|
40
40
|
<EntityCicdStatisticsContent />
|
|
41
41
|
</EntityLayout.Route>;
|
|
42
42
|
```
|
|
43
|
+
|
|
44
|
+
## New Frontend System
|
|
45
|
+
|
|
46
|
+
### Setup
|
|
47
|
+
|
|
48
|
+
If you're using [feature discovery](https://backstage.io/docs/frontend-system/architecture/app/#feature-discovery), the plugin should be automatically discovered and enabled. Otherwise, you can manually enable the plugin by adding it to your app:
|
|
49
|
+
|
|
50
|
+
```tsx
|
|
51
|
+
// packages/app/src/App.tsx
|
|
52
|
+
import cicdStatisticsPluginGithubModule from '@backstage-community/plugin-cicd-statistics-module-github/alpha';
|
|
53
|
+
|
|
54
|
+
const app = createApp({
|
|
55
|
+
features: [
|
|
56
|
+
// ...
|
|
57
|
+
cicdStatisticsPluginGithubModule,
|
|
58
|
+
],
|
|
59
|
+
});
|
|
60
|
+
```
|
|
61
|
+
|
|
62
|
+
### Extensions
|
|
63
|
+
|
|
64
|
+
The following extensions are available in the plugin:
|
|
65
|
+
|
|
66
|
+
- `api:cicd-statistics/cicd-statistics-github-api`
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cicd-statistics-module-github",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.1",
|
|
4
4
|
"description": "CI/CD Statistics plugin module; Github CICD",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin-module",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage-community/plugin-cicd-statistics": "^0.12.
|
|
68
|
+
"@backstage-community/plugin-cicd-statistics": "^0.12.1",
|
|
69
69
|
"@backstage/catalog-model": "^1.7.5",
|
|
70
70
|
"@backstage/core-plugin-api": "^1.11.1",
|
|
71
71
|
"@backstage/frontend-plugin-api": "^0.12.1",
|