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