@backstage-community/plugin-cicd-statistics-module-gitlab 0.11.0 → 0.12.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +19 -0
  2. package/README.md +24 -0
  3. package/package.json +5 -5
package/CHANGELOG.md CHANGED
@@ -1,5 +1,24 @@
1
1
  # @backstage-community/plugin-cicd-statistics-module-gitlab
2
2
 
3
+ ## 0.12.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
+
11
+ ## 0.12.0
12
+
13
+ ### Minor Changes
14
+
15
+ - c7fe950: Backstage version bump to v1.44.0
16
+
17
+ ### Patch Changes
18
+
19
+ - Updated dependencies [c7fe950]
20
+ - @backstage-community/plugin-cicd-statistics@0.12.0
21
+
3
22
  ## 0.11.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage-community/plugin-cicd-statistics-module-gitlab",
3
- "version": "0.11.0",
3
+ "version": "0.12.1",
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.11.0",
67
+ "@backstage-community/plugin-cicd-statistics": "^0.12.1",
68
68
  "@backstage/catalog-model": "^1.7.5",
69
- "@backstage/core-plugin-api": "^1.11.0",
70
- "@backstage/frontend-plugin-api": "^0.12.0",
69
+ "@backstage/core-plugin-api": "^1.11.1",
70
+ "@backstage/frontend-plugin-api": "^0.12.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.3",
76
+ "@backstage/cli": "^0.34.4",
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",