@backstage-community/plugin-cicd-statistics-module-github 0.10.1 → 0.11.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 +19 -0
- package/dist/alpha.d.ts +2 -3
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage-community/plugin-cicd-statistics-module-github
|
|
2
2
|
|
|
3
|
+
## 0.11.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 4e95de7: Remove unused dependencies
|
|
8
|
+
- Updated dependencies [4e95de7]
|
|
9
|
+
- @backstage-community/plugin-cicd-statistics@0.14.1
|
|
10
|
+
|
|
11
|
+
## 0.11.0
|
|
12
|
+
|
|
13
|
+
### Minor Changes
|
|
14
|
+
|
|
15
|
+
- 95bba81: Backstage version bump to v1.46.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- Updated dependencies [95bba81]
|
|
20
|
+
- @backstage-community/plugin-cicd-statistics@0.14.0
|
|
21
|
+
|
|
3
22
|
## 0.10.1
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
|
|
2
|
-
import * as _backstage_core_plugin_api from '@backstage/core-plugin-api';
|
|
3
2
|
|
|
4
3
|
/**
|
|
5
4
|
* @alpha
|
|
@@ -9,11 +8,11 @@ declare const cicdStatisticsGithubExtension: _backstage_frontend_plugin_api.Over
|
|
|
9
8
|
name: "cicd-statistics-github-api";
|
|
10
9
|
config: {};
|
|
11
10
|
configInput: {};
|
|
12
|
-
output: _backstage_frontend_plugin_api.ExtensionDataRef<
|
|
11
|
+
output: _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.AnyApiFactory, "core.api.factory", {}>;
|
|
13
12
|
inputs: {};
|
|
14
13
|
params: <TApi, TImpl extends TApi, TDeps extends {
|
|
15
14
|
[x: string]: unknown;
|
|
16
|
-
}>(params:
|
|
15
|
+
}>(params: _backstage_frontend_plugin_api.ApiFactory<TApi, TImpl, TDeps>) => _backstage_frontend_plugin_api.ExtensionBlueprintParams<_backstage_frontend_plugin_api.AnyApiFactory>;
|
|
17
16
|
}>;
|
|
18
17
|
/**
|
|
19
18
|
* @alpha
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cicd-statistics-module-github",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.11.1",
|
|
4
4
|
"description": "CI/CD Statistics plugin module; Github CICD",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin-module",
|
|
@@ -65,20 +65,20 @@
|
|
|
65
65
|
"test": "backstage-cli package test"
|
|
66
66
|
},
|
|
67
67
|
"dependencies": {
|
|
68
|
-
"@backstage-community/plugin-cicd-statistics": "^0.
|
|
68
|
+
"@backstage-community/plugin-cicd-statistics": "^0.14.1",
|
|
69
69
|
"@backstage/catalog-model": "^1.7.6",
|
|
70
|
-
"@backstage/core-plugin-api": "^1.12.
|
|
71
|
-
"@backstage/frontend-plugin-api": "^0.13.
|
|
72
|
-
"@backstage/integration": "^1.
|
|
70
|
+
"@backstage/core-plugin-api": "^1.12.1",
|
|
71
|
+
"@backstage/frontend-plugin-api": "^0.13.2",
|
|
72
|
+
"@backstage/integration": "^1.19.0",
|
|
73
73
|
"@octokit/rest": "^21.1.1",
|
|
74
74
|
"p-limit": "^3.1.0"
|
|
75
75
|
},
|
|
76
76
|
"devDependencies": {
|
|
77
|
-
"@backstage/cli": "^0.
|
|
78
|
-
"@backstage/dev-utils": "^1.1.
|
|
79
|
-
"@backstage/integration": "^1.
|
|
80
|
-
"@backstage/plugin-catalog": "^1.32.
|
|
81
|
-
"@backstage/plugin-catalog-react": "^1.21.
|
|
77
|
+
"@backstage/cli": "^0.35.1",
|
|
78
|
+
"@backstage/dev-utils": "^1.1.18",
|
|
79
|
+
"@backstage/integration": "^1.19.0",
|
|
80
|
+
"@backstage/plugin-catalog": "^1.32.1",
|
|
81
|
+
"@backstage/plugin-catalog-react": "^1.21.4",
|
|
82
82
|
"@types/react": "^16.13.1 || ^17.0.0",
|
|
83
83
|
"@types/react-dom": "^18.2.19",
|
|
84
84
|
"react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|