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