From a3853d66584d347c1c435ebd6e665ca210da3463 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Thu, 7 May 2026 14:31:23 +0200 Subject: [PATCH 1/4] docs(changelog): fix up changelogs for latest releases --- CHANGELOG.md | 22 ++++++++++++++++++++-- packages/create-plugin/CHANGELOG.md | 14 +++++++++++++- packages/plugin-e2e/CHANGELOG.md | 14 ++++++++++++++ 3 files changed, 47 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e04db509d0..ff3b5601f3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,21 @@ +# (Wed May 06 2026) + +#### 🐛 Bug Fix + +- `@grafana/plugin-e2e@3.7.1` + - Chore: Update slider selector [#2604](https://github.com/grafana/plugin-tools/pull/2604) ([@ashharrison90](https://github.com/ashharrison90)) + - Plugin E2E: Fix addPanel timeout when dashboardNewLayouts is disabled [#2612](https://github.com/grafana/plugin-tools/pull/2612) ([@sunker](https://github.com/sunker)) +- `@grafana/create-plugin@7.3.1` + - fix: override moduleResolution in scaffolded ts-node config [#2610](https://github.com/grafana/plugin-tools/pull/2610) ([@tolzhabayev](https://github.com/tolzhabayev)) + +#### Authors: 3 + +- Ashley Harrison ([@ashharrison90](https://github.com/ashharrison90)) +- Erik Sundell ([@sunker](https://github.com/sunker)) +- Timur Olzhabayev ([@tolzhabayev](https://github.com/tolzhabayev)) + +--- + # (Thu Apr 30 2026) #### 🚀 Enhancement @@ -1315,7 +1333,7 @@ Thank you, Joonseo Lee ([@joonseolee](https://github.com/joonseolee)), for all y #### 🐛 Bug Fix - `@grafana/create-plugin@6.1.13` - - Create Plugin: remove types/testing-library__jest-dom [#2250](https://github.com/grafana/plugin-tools/pull/2250) ([@jackw](https://github.com/jackw)) + - Create Plugin: remove types/testing-library\_\_jest-dom [#2250](https://github.com/grafana/plugin-tools/pull/2250) ([@jackw](https://github.com/jackw)) #### Authors: 1 @@ -1437,7 +1455,7 @@ Thank you, Steffen Gebert ([@StephenKing](https://github.com/StephenKing)), for - Jack Westbrook ([@​jackw](https://redirect.github.com/jackw)) -*** +--- --- diff --git a/packages/create-plugin/CHANGELOG.md b/packages/create-plugin/CHANGELOG.md index b9dbd78bf5..238d3fe876 100644 --- a/packages/create-plugin/CHANGELOG.md +++ b/packages/create-plugin/CHANGELOG.md @@ -1,3 +1,15 @@ +# v7.3.1 (Wed May 06 2026) + +#### 🐛 Bug Fix + +- fix: override moduleResolution in scaffolded ts-node config [#2610](https://github.com/grafana/plugin-tools/pull/2610) ([@tolzhabayev](https://github.com/tolzhabayev)) + +#### Authors: 1 + +- Timur Olzhabayev ([@tolzhabayev](https://github.com/tolzhabayev)) + +--- + # v7.3.0 (Thu Apr 30 2026) #### 🐛 Bug Fix @@ -695,7 +707,7 @@ Thank you, Joonseo Lee ([@joonseolee](https://github.com/joonseolee)), for all y #### 🐛 Bug Fix -- Create Plugin: remove types/testing-library__jest-dom [#2250](https://github.com/grafana/plugin-tools/pull/2250) ([@jackw](https://github.com/jackw)) +- Create Plugin: remove types/testing-library\_\_jest-dom [#2250](https://github.com/grafana/plugin-tools/pull/2250) ([@jackw](https://github.com/jackw)) #### Authors: 1 diff --git a/packages/plugin-e2e/CHANGELOG.md b/packages/plugin-e2e/CHANGELOG.md index 2ca33a5d7f..eddeb4f4e5 100644 --- a/packages/plugin-e2e/CHANGELOG.md +++ b/packages/plugin-e2e/CHANGELOG.md @@ -1,3 +1,17 @@ +# v3.7.1 (Wed May 06 2026) + +#### 🐛 Bug Fix + +- Chore: Update slider selector [#2604](https://github.com/grafana/plugin-tools/pull/2604) ([@ashharrison90](https://github.com/ashharrison90)) +- Plugin E2E: Fix addPanel timeout when dashboardNewLayouts is disabled [#2612](https://github.com/grafana/plugin-tools/pull/2612) ([@sunker](https://github.com/sunker)) + +#### Authors: 2 + +- Ashley Harrison ([@ashharrison90](https://github.com/ashharrison90)) +- Erik Sundell ([@sunker](https://github.com/sunker)) + +--- + # v3.7.0 (Thu Apr 30 2026) #### 🐛 Bug Fix From 6b08eebd37d0bcf03465d8ebc0d864d7dca9052f Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Thu, 7 May 2026 14:32:29 +0200 Subject: [PATCH 2/4] chore: update package.json versions to match latest releases --- packages/create-plugin/package.json | 2 +- packages/plugin-e2e/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/create-plugin/package.json b/packages/create-plugin/package.json index 8a94b96fe2..e01adfaf3e 100644 --- a/packages/create-plugin/package.json +++ b/packages/create-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@grafana/create-plugin", - "version": "7.3.0", + "version": "7.3.1", "repository": { "directory": "packages/create-plugin", "url": "https://github.com/grafana/plugin-tools" diff --git a/packages/plugin-e2e/package.json b/packages/plugin-e2e/package.json index f443634e92..a0e3f570fb 100644 --- a/packages/plugin-e2e/package.json +++ b/packages/plugin-e2e/package.json @@ -1,6 +1,6 @@ { "name": "@grafana/plugin-e2e", - "version": "3.7.0", + "version": "3.7.1", "main": "./dist/index.js", "types": "./dist/index.d.ts", "files": [ From a60a55f59ad7792899dfa74bf9c04db0d247dff1 Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Thu, 7 May 2026 14:41:27 +0200 Subject: [PATCH 3/4] chore(npm): update lock file --- package-lock.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index 9f8039b553..d7f4e120ad 100644 --- a/package-lock.json +++ b/package-lock.json @@ -40405,7 +40405,7 @@ }, "packages/create-plugin": { "name": "@grafana/create-plugin", - "version": "7.3.0", + "version": "7.3.1", "license": "Apache-2.0", "dependencies": { "@babel/parser": "^7.28.5", @@ -40739,7 +40739,7 @@ }, "packages/plugin-e2e": { "name": "@grafana/plugin-e2e", - "version": "3.7.0", + "version": "3.7.1", "license": "Apache-2.0", "dependencies": { "@grafana/e2e-selectors": "13.1.0-24448182242", From faff98f72740009c6de34c3bdb910aef3a2fc61d Mon Sep 17 00:00:00 2001 From: Jack Westbrook Date: Thu, 7 May 2026 14:41:43 +0200 Subject: [PATCH 4/4] Potential fix for pull request finding Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> --- CHANGELOG.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff3b5601f3..fcb53be86f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1457,8 +1457,6 @@ Thank you, Steffen Gebert ([@StephenKing](https://github.com/StephenKing)), for --- ---- - #### 🐛 Bug Fix - `@grafana/create-plugin@6.1.6`