@backstage-community/plugin-cicd-statistics-module-gitlab 0.12.0 → 0.13.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 +19 -0
- package/README.md +24 -0
- package/dist/alpha.d.ts +1 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage-community/plugin-cicd-statistics-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.13.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 060f3b1: Backstage version bump to v1.45.1
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [060f3b1]
|
|
12
|
+
- @backstage-community/plugin-cicd-statistics@0.13.0
|
|
13
|
+
|
|
14
|
+
## 0.12.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- 8202df6: Added documentation for the New Frontend System
|
|
19
|
+
- Updated dependencies [8202df6]
|
|
20
|
+
- @backstage-community/plugin-cicd-statistics@0.12.1
|
|
21
|
+
|
|
3
22
|
## 0.12.0
|
|
4
23
|
|
|
5
24
|
### Minor Changes
|
package/README.md
CHANGED
|
@@ -37,3 +37,27 @@ import { EntityCicdStatisticsContent } from '@backstage-community/plugin-cicd-st
|
|
|
37
37
|
<EntityCicdStatisticsContent />
|
|
38
38
|
</EntityLayout.Route>;
|
|
39
39
|
```
|
|
40
|
+
|
|
41
|
+
## New Frontend System
|
|
42
|
+
|
|
43
|
+
### Setup
|
|
44
|
+
|
|
45
|
+
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:
|
|
46
|
+
|
|
47
|
+
```tsx
|
|
48
|
+
// packages/app/src/App.tsx
|
|
49
|
+
import cicdStatisticsPluginGitlabModule from '@backstage-community/plugin-cicd-statistics-module-gitlab/alpha';
|
|
50
|
+
|
|
51
|
+
const app = createApp({
|
|
52
|
+
features: [
|
|
53
|
+
// ...
|
|
54
|
+
cicdStatisticsPluginGitlabModule,
|
|
55
|
+
],
|
|
56
|
+
});
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
### Extensions
|
|
60
|
+
|
|
61
|
+
The following extensions are available in the plugin:
|
|
62
|
+
|
|
63
|
+
- `api:cicd-statistics/cicd-statistics-gitlab-api`
|
package/dist/alpha.d.ts
CHANGED
|
@@ -4,7 +4,7 @@ import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
|
4
4
|
/**
|
|
5
5
|
* @alpha
|
|
6
6
|
*/
|
|
7
|
-
declare const cicdStatisticsGitlabExtension: _backstage_frontend_plugin_api.
|
|
7
|
+
declare const cicdStatisticsGitlabExtension: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
8
8
|
kind: "api";
|
|
9
9
|
name: "cicd-statistics-gitlab-api";
|
|
10
10
|
config: {};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cicd-statistics-module-gitlab",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "CI/CD Statistics plugin module; Gitlab CICD",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin-module",
|
|
@@ -64,16 +64,16 @@
|
|
|
64
64
|
"test": "backstage-cli package test"
|
|
65
65
|
},
|
|
66
66
|
"dependencies": {
|
|
67
|
-
"@backstage-community/plugin-cicd-statistics": "^0.
|
|
68
|
-
"@backstage/catalog-model": "^1.7.
|
|
69
|
-
"@backstage/core-plugin-api": "^1.
|
|
70
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
67
|
+
"@backstage-community/plugin-cicd-statistics": "^0.13.0",
|
|
68
|
+
"@backstage/catalog-model": "^1.7.6",
|
|
69
|
+
"@backstage/core-plugin-api": "^1.12.0",
|
|
70
|
+
"@backstage/frontend-plugin-api": "^0.13.1",
|
|
71
71
|
"@gitbeaker/browser": "^35.6.0",
|
|
72
72
|
"@gitbeaker/core": "^35.6.0",
|
|
73
73
|
"p-limit": "^3.1.0"
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
|
-
"@backstage/cli": "^0.34.
|
|
76
|
+
"@backstage/cli": "^0.34.5",
|
|
77
77
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
78
78
|
"@types/react-dom": "^18.2.19",
|
|
79
79
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|