@backstage-community/plugin-cicd-statistics-module-buildkite 0.0.1 → 0.0.3
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 +13 -0
- package/README.md +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage-community/plugin-cicd-statistics-module-buildkite
|
|
2
2
|
|
|
3
|
+
## 0.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 14419ca: Correct README typos surrounding plugin setup and configuration.
|
|
8
|
+
|
|
9
|
+
## 0.0.2
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies [52fcd76]
|
|
14
|
+
- @backstage-community/plugin-cicd-statistics@0.1.40
|
|
15
|
+
|
|
3
16
|
## 0.0.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -28,7 +28,7 @@ export const apis: AnyApiFactory[] = [
|
|
|
28
28
|
fetchApiApi: fetchApiRef,
|
|
29
29
|
},
|
|
30
30
|
factory({ discoveryApi, fetchApi }) {
|
|
31
|
-
return new CicdStatisticsApiBuildkite(discoveryApi, fetchApi);
|
|
31
|
+
return new CicdStatisticsApiBuildkite({ discoveryApi, fetchApi });
|
|
32
32
|
},
|
|
33
33
|
}),
|
|
34
34
|
];
|
|
@@ -49,5 +49,5 @@ import { EntityCicdStatisticsContent } from '@backstage-community/plugin-cicd-st
|
|
|
49
49
|
|
|
50
50
|
```yaml
|
|
51
51
|
annotations:
|
|
52
|
-
buildkite.com/pipeline
|
|
52
|
+
buildkite.com/pipeline: 'org-name/some-pipeline'
|
|
53
53
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage-community/plugin-cicd-statistics-module-buildkite",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.3",
|
|
4
4
|
"description": "CI/CD Statistics plugin module; Buildkite CI/CD",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin-module",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"test": "backstage-cli package test"
|
|
40
40
|
},
|
|
41
41
|
"dependencies": {
|
|
42
|
-
"@backstage-community/plugin-cicd-statistics": "^0.1.
|
|
42
|
+
"@backstage-community/plugin-cicd-statistics": "^0.1.40",
|
|
43
43
|
"@backstage/catalog-model": "^1.4.5",
|
|
44
44
|
"@backstage/core-plugin-api": "^1.9.2",
|
|
45
45
|
"@backstage/test-utils": "^1.5.9",
|