Skip to content

Commit 1bf2947

Browse files
Merge pull request #177 from grafadruid/release-ci-fix
Modernize to use official grafana release action
2 parents 78df597 + 134fa4f commit 1bf2947

File tree

6 files changed

+15
-6
lines changed

6 files changed

+15
-6
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
- uses: actions/checkout@v4
1818

1919
- uses: grafana/plugin-actions/build-plugin@main
20+
env:
21+
GRAFADRUID_USE_DOCKER: 0
2022
with:
2123
policy_token: ${{ secrets.GRAFANA_ACCESS_POLICY_TOKEN }}
2224
attestation: true

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright {yyyy} {name of copyright owner}
189+
Copyright 2025 Grafadruid
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Magefile.go

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -211,5 +211,8 @@ func (Backend) Test() error { return runToolboxCmd("./mage", "sdk:test") }
211211
// BuildAll builds the plugin (both frontend and backend)
212212
func BuildAll() { mg.SerialDeps(Frontend{}.Build, Backend{}.BuildAll) }
213213

214+
// Coverage runs backend tests and makes a coverage report (wrapper for backend:coverage)
215+
func Coverage() error { return Backend{}.Coverage() }
216+
214217
// Default configures the default target (build all plugin components)
215218
var Default = BuildAll

mage

62.4 KB
Binary file not shown.

package.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "druid-grafana",
3-
"version": "1.6.0",
3+
"version": "1.6.1",
44
"description": "Connects Grafana to Druid",
55
"scripts": {
66
"build": "webpack -c ./.config/webpack/webpack.config.ts --env production",
@@ -77,5 +77,9 @@
7777
"react": "18.3.1",
7878
"react-dom": "18.3.1"
7979
},
80+
"resolutions": {
81+
"eslint-plugin-jsdoc": "^46.8.0",
82+
"form-data": "^4.0.4"
83+
},
8084
"packageManager": "[email protected]"
8185
}

yarn.lock

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4113,10 +4113,10 @@ fork-ts-checker-webpack-plugin@^8.0.0:
41134113
semver "^7.3.5"
41144114
tapable "^2.2.1"
41154115

4116-
form-data@^4.0.0:
4117-
version "4.0.3"
4118-
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.3.tgz#608b1b3f3e28be0fccf5901fc85fb3641e5cf0ae"
4119-
integrity sha512-qsITQPfmvMOSAdeyZ+12I1c+CKSstAFAwu+97zrnWAbIr5u8wfsExUzCesVLC8NgHuRUqNN4Zy6UPWUTRGslcA==
4116+
form-data@^4.0.0, form-data@^4.0.4:
4117+
version "4.0.4"
4118+
resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
4119+
integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
41204120
dependencies:
41214121
asynckit "^0.4.0"
41224122
combined-stream "^1.0.8"

0 commit comments

Comments
 (0)