From b1c5b8a45bff512c26b78c5a939a8b3f894cb4bf Mon Sep 17 00:00:00 2001 From: Mikhail Volkov <47795110+mikhail-vl@users.noreply.github.com> Date: Wed, 2 Aug 2023 12:03:43 -0400 Subject: [PATCH] Remove root URL https://localhost:3000 added during migration to Plugin Tools (#58) * Remove root URL https://localhost:3000 added during migration to Plugin Tools * Update CHANGELOG.md --- CHANGELOG.md | 6 ++++++ package.json | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ad9427b..02278a7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 3.0.1 (2023-08-02) + +### Bugfix + +- Remove root URL http://localhost:3000 added during migration to Plugin Tools + ## 3.0.0 (2023-07-26) ### Breaking changes diff --git a/package.json b/package.json index 08451c8..9d7ff2b 100644 --- a/package.json +++ b/package.json @@ -62,12 +62,12 @@ "levitate": "npx @grafana/levitate@latest is-compatible --path src/module.ts --target @grafana/data,@grafana/runtime,@grafana/ui", "lint": "eslint --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .", "lint:fix": "eslint --fix --ignore-path ./.eslintignore --ext .js,.jsx,.ts,.tsx .", - "sign": "npx --yes @grafana/sign-plugin@latest --rootUrls http://localhost:3000/", + "sign": "npx --yes @grafana/sign-plugin@latest", "start": "docker-compose pull && docker-compose up", "stop": "docker-compose down", "test": "jest --watch --onlyChanged", "test:ci": "jest --maxWorkers 4 --coverage", "upgrade": "npm upgrade --save" }, - "version": "3.0.0" + "version": "3.0.1" }