@marble-sh/backstage-plugin-grafana-backend 1.0.0 → 1.0.2

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 (2) hide show
  1. package/CHANGELOG.md +72 -0
  2. package/package.json +10 -10
package/CHANGELOG.md ADDED
@@ -0,0 +1,72 @@
1
+ # @marble-sh/backstage-plugin-grafana-backend
2
+
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - d5daa0c: Fixed: `release:publish` now actually invokes `scripts/release-publish.mjs`.
8
+ The previous fix added the script but left the release script running
9
+ `changeset publish`, so 1.0.1 was published with the same raw `workspace:^`
10
+ and `backstage:^` ranges as 1.0.0 and remains uninstallable outside this
11
+ monorepo. This release is the first one packed with Yarn (materialized
12
+ dependency ranges).
13
+ - Updated dependencies [d5daa0c]
14
+ - @marble-sh/backstage-plugin-grafana-common@1.0.2
15
+ - @marble-sh/backstage-plugin-grafana-node@1.0.2
16
+
17
+ ## 1.0.1
18
+
19
+ ### Patch Changes
20
+
21
+ - 577eaca: Fixed: published manifests now carry real semver dependency ranges. Versions
22
+ 0.2.0 and 1.0.0 were published via `changeset publish` (plain `npm publish`),
23
+ which skips Yarn's pack hooks and leaked the raw `workspace:^` and
24
+ `backstage:^` protocols into the registry manifests, making the packages
25
+ uninstallable outside this monorepo. Releases now publish `yarn pack` tarballs
26
+ through the npm CLI.
27
+ - Updated dependencies [577eaca]
28
+ - @marble-sh/backstage-plugin-grafana-common@1.0.1
29
+ - @marble-sh/backstage-plugin-grafana-node@1.0.1
30
+
31
+ ## 1.0.0
32
+
33
+ ### Major Changes
34
+
35
+ - b179a8f: Bumping to version 1.0.0, General Release!
36
+
37
+ ### Patch Changes
38
+
39
+ - Updated dependencies [b179a8f]
40
+ - @marble-sh/backstage-plugin-grafana-common@1.0.0
41
+ - @marble-sh/backstage-plugin-grafana-node@1.0.0
42
+
43
+ ## 0.2.0
44
+
45
+ ### Minor Changes
46
+
47
+ - 72afd3d: Initial release of the Grafana plugin suite: a read-only, backend-centric
48
+ Grafana integration built on Backstage's new backend system, with a frontend
49
+ that supports both the legacy and the new frontend systems.
50
+
51
+ - `grafana-common` — shared entity annotations and data-transfer types.
52
+ - `grafana-node` — shared Grafana HTTP client (App Platform APIs, with folder
53
+ resolution), instance config reader + schema, and filters. Dashboard
54
+ selection supports comma-separated multi-value queries, and per-instance
55
+ flags can disable dashboards, alerts, or folder resolution.
56
+ - `grafana-backend` — read-only REST API with cache/database storage,
57
+ scheduled refresh, and `allowOnDemandRefresh` / `fetchOnDemand` flags to
58
+ make Grafana traffic fully deterministic. Discovery scoping and scaffolder
59
+ guard-rail options round out the configuration surface.
60
+ - `grafana` — entity dashboard/alert cards and content plus a standalone
61
+ instances page, for both frontend systems (new system via the `/alpha`
62
+ export).
63
+ - `catalog-backend-module-grafana` — discovers Grafana instances and dashboards
64
+ as catalog `Resource` entities with dependency relations.
65
+ - `scaffolder-backend-module-grafana` — a `grafana:dashboard:create` scaffolder
66
+ action.
67
+
68
+ ### Patch Changes
69
+
70
+ - Updated dependencies [72afd3d]
71
+ - @marble-sh/backstage-plugin-grafana-common@0.2.0
72
+ - @marble-sh/backstage-plugin-grafana-node@0.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@marble-sh/backstage-plugin-grafana-backend",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Backend for the Grafana Backstage plugin: reads dashboards and alerts from Grafana, caches them, and exposes a read-only REST API",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
@@ -33,19 +33,19 @@
33
33
  "test": "backstage-cli package test"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/backend-plugin-api": "backstage:^",
37
- "@backstage/config": "backstage:^",
38
- "@backstage/errors": "backstage:^",
39
- "@backstage/types": "backstage:^",
40
- "@marble-sh/backstage-plugin-grafana-common": "workspace:^",
41
- "@marble-sh/backstage-plugin-grafana-node": "workspace:^",
36
+ "@backstage/backend-plugin-api": "^1.10.0",
37
+ "@backstage/config": "^1.3.8",
38
+ "@backstage/errors": "^1.3.1",
39
+ "@backstage/types": "^1.2.2",
40
+ "@marble-sh/backstage-plugin-grafana-common": "^1.0.2",
41
+ "@marble-sh/backstage-plugin-grafana-node": "^1.0.2",
42
42
  "express": "^4.17.1",
43
43
  "express-promise-router": "^4.1.0",
44
44
  "knex": "^3.0.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@backstage/backend-test-utils": "backstage:^",
48
- "@backstage/cli": "backstage:^",
47
+ "@backstage/backend-test-utils": "^1.11.6",
48
+ "@backstage/cli": "^0.36.5",
49
49
  "@types/express": "^4.17.6",
50
50
  "@types/supertest": "^2.0.12",
51
51
  "supertest": "^6.2.4"
@@ -84,4 +84,4 @@
84
84
  ]
85
85
  }
86
86
  }
87
- }
87
+ }