@backstage-community/plugin-cicd-statistics-module-gitlab 0.3.0 → 0.5.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 +22 -0
- package/dist/alpha.d.ts +3 -3
- package/package.json +10 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,27 @@
|
|
|
1
1
|
# @backstage-community/plugin-cicd-statistics-module-gitlab
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6dce3f5: Backstage version bump to v1.37.0
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [6dce3f5]
|
|
12
|
+
- @backstage-community/plugin-cicd-statistics@0.5.0
|
|
13
|
+
|
|
14
|
+
## 0.4.0
|
|
15
|
+
|
|
16
|
+
### Minor Changes
|
|
17
|
+
|
|
18
|
+
- 5676828: Backstage version bump to v1.36.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies [5676828]
|
|
23
|
+
- @backstage-community/plugin-cicd-statistics@0.4.0
|
|
24
|
+
|
|
3
25
|
## 0.3.0
|
|
4
26
|
|
|
5
27
|
### Minor Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
|
-
import * as
|
|
2
|
+
import * as _backstage_core_plugin_api__ from '@backstage/core-plugin-api/*';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
5
|
* @alpha
|
|
@@ -9,10 +9,10 @@ declare const cicdStatisticsGitlabExtension: _backstage_frontend_plugin_api.Exte
|
|
|
9
9
|
name: "cicd-statistics-gitlab-api";
|
|
10
10
|
config: {};
|
|
11
11
|
configInput: {};
|
|
12
|
-
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<
|
|
12
|
+
output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api__.AnyApiFactory, "core.api.factory", {}>;
|
|
13
13
|
inputs: {};
|
|
14
14
|
params: {
|
|
15
|
-
factory:
|
|
15
|
+
factory: _backstage_core_plugin_api__.AnyApiFactory;
|
|
16
16
|
};
|
|
17
17
|
}>;
|
|
18
18
|
/**
|
package/package.json
CHANGED
|
@@ -1,11 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cicd-statistics-module-gitlab",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.0",
|
|
4
4
|
"description": "CI/CD Statistics plugin module; Gitlab CICD",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin-module",
|
|
7
7
|
"pluginId": "cicd-statistics",
|
|
8
|
-
"pluginPackage": "@backstage-community/plugin-cicd-statistics"
|
|
8
|
+
"pluginPackage": "@backstage-community/plugin-cicd-statistics",
|
|
9
|
+
"features": {
|
|
10
|
+
"./alpha": "@backstage/FrontendModule"
|
|
11
|
+
}
|
|
9
12
|
},
|
|
10
13
|
"publishConfig": {
|
|
11
14
|
"access": "public"
|
|
@@ -37,7 +40,7 @@
|
|
|
37
40
|
},
|
|
38
41
|
"typesVersions": {
|
|
39
42
|
"*": {
|
|
40
|
-
"
|
|
43
|
+
"*": [
|
|
41
44
|
"dist/index.d.ts"
|
|
42
45
|
],
|
|
43
46
|
"alpha": [
|
|
@@ -61,16 +64,16 @@
|
|
|
61
64
|
"test": "backstage-cli package test"
|
|
62
65
|
},
|
|
63
66
|
"dependencies": {
|
|
64
|
-
"@backstage-community/plugin-cicd-statistics": "^0.
|
|
67
|
+
"@backstage-community/plugin-cicd-statistics": "^0.5.0",
|
|
65
68
|
"@backstage/catalog-model": "^1.7.3",
|
|
66
|
-
"@backstage/core-plugin-api": "^1.10.
|
|
67
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
69
|
+
"@backstage/core-plugin-api": "^1.10.5",
|
|
70
|
+
"@backstage/frontend-plugin-api": "^0.10.0",
|
|
68
71
|
"@gitbeaker/browser": "^35.6.0",
|
|
69
72
|
"@gitbeaker/core": "^35.6.0",
|
|
70
73
|
"p-limit": "^3.1.0"
|
|
71
74
|
},
|
|
72
75
|
"devDependencies": {
|
|
73
|
-
"@backstage/cli": "^0.
|
|
76
|
+
"@backstage/cli": "^0.31.0",
|
|
74
77
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
75
78
|
"@types/react-dom": "^18.2.19",
|
|
76
79
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|