Skip to content

Commit

Permalink
looks like we validated nothin need release again
Browse files Browse the repository at this point in the history
  • Loading branch information
Slach committed Jan 19, 2024
1 parent c6f0e0d commit 1425605
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,11 +95,14 @@ jobs:
- name: Validate plugin
run: |
git clone https://github.com/grafana/plugin-validator
pushd ./plugin-validator/pkg/cmd/plugincheck2
go install
VALIDATOR_VERSION=$(curl -sL https://github.com/grafana/plugin-validator/releases/latest -H "Accept: application/json" | jq -r .tag_name)
VALIDATOR_ARCH=$(dpkg --print-architecture)
mkdir -p ./plugin-validator/
pushd ./plugin-validator/
curl -L https://github.com/grafana/plugin-validator/releases/download/${VALIDATOR_VERSION}/plugin-validator_${VALIDATOR_VERSION//v/}_linux_${VALIDATOR_ARCH}.tar.gz | tar -xz -C .
curl -L https://github.com/grafana/plugin-validator/raw/main/config/strict.yaml -o strict.yaml
popd
plugincheck2 -config ./plugin-validator/config/default.yaml -strict ${{ steps.metadata.outputs.archive }}
./plugin-validator/plugincheck2 -config ./strict.yaml -strict ${{ steps.metadata.outputs.archive }}
- name: Create changelog
id: changelog
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 3.0.0 (2024-01-19)
## Enhancements:
* rewrite plugin from scratch for Grafana 10+ compatibility using react instead of angular
* if you provision datasource from YAML, now `xHeaderKey` move from `jsonData` to `secureJsonData`, and you need to add `dataSourceUrl` to `jsonData`, look https://github.com/Altinity/clickhouse-grafana/issues/348 and `docker/grafana/provisioning/datasources/clickhouse-x-auth.yaml` for details

# 2.5.4 (2023-09-13)
## Enhancements:
Expand Down
7 changes: 2 additions & 5 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
volumes:
- ./:/grafana-clickhouse
# for speedup npm install under WSL
# - "node_modules:/grafana-clickhouse/node_modules"
- "node_modules:/grafana-clickhouse/node_modules"
command: |
bash -xec '
if [[ "3" == `ls -la ./node_modules/ | wc -l` ]]; then npm install; fi && \
Expand Down Expand Up @@ -134,10 +134,7 @@ services:
# for speedup npm install
- "node_modules:/grafana-clickhouse/node_modules"
command: |
bash -xec "
if [[ ! -f ./node_modules/@grafana/sign-plugin/dist/bin/run.js ]]; then npm install; fi && \
npm run sign
"
npm run sign
volumes:
node_modules:

0 comments on commit 1425605

Please sign in to comment.