@backstage-community/plugin-cicd-statistics-module-buildkite 0.0.2 → 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 CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 0.0.2
4
10
 
5
11
  ### 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-name: 'org-name/some-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.2",
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",