@backstage-community/plugin-cicd-statistics-module-github 0.9.0 → 0.10.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 CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage-community/plugin-cicd-statistics-module-github
2
2
 
3
+ ## 0.10.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.9.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.9.0
4
23
 
5
24
  ### 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/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 cicdStatisticsGithubExtension: _backstage_frontend_plugin_api.ExtensionDefinition<{
7
+ declare const cicdStatisticsGithubExtension: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
8
8
  kind: "api";
9
9
  name: "cicd-statistics-github-api";
10
10
  config: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-cicd-statistics-module-github",
3
- "version": "0.9.0",
3
+ "version": "0.10.0",
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.12.0",
69
- "@backstage/catalog-model": "^1.7.5",
70
- "@backstage/core-plugin-api": "^1.11.1",
71
- "@backstage/frontend-plugin-api": "^0.12.1",
72
- "@backstage/integration": "^1.18.1",
68
+ "@backstage-community/plugin-cicd-statistics": "^0.13.0",
69
+ "@backstage/catalog-model": "^1.7.6",
70
+ "@backstage/core-plugin-api": "^1.12.0",
71
+ "@backstage/frontend-plugin-api": "^0.13.1",
72
+ "@backstage/integration": "^1.18.2",
73
73
  "@octokit/rest": "^21.1.1",
74
74
  "p-limit": "^3.1.0"
75
75
  },
76
76
  "devDependencies": {
77
- "@backstage/cli": "^0.34.4",
78
- "@backstage/dev-utils": "^1.1.15",
79
- "@backstage/integration": "^1.18.1",
80
- "@backstage/plugin-catalog": "^1.31.4",
81
- "@backstage/plugin-catalog-react": "^1.21.2",
77
+ "@backstage/cli": "^0.34.5",
78
+ "@backstage/dev-utils": "^1.1.17",
79
+ "@backstage/integration": "^1.18.2",
80
+ "@backstage/plugin-catalog": "^1.32.0",
81
+ "@backstage/plugin-catalog-react": "^1.21.3",
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",