From f46c08255458d8a7986df041ffd8c280dc49d824 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agn=C3=A8s=20Toulet?= <35176601+AgnesToulet@users.noreply.github.com> Date: Tue, 20 Feb 2024 09:23:03 +0100 Subject: [PATCH 1/2] Release 3.10.0 --- CHANGELOG.md | 4 ++++ plugin.json | 4 ++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 55d74aad..d286b14f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 3.10.0 (2024-02-20) +- WaitingForPanels: Change waiting logic for Scenes [#496](https://github.com/grafana/grafana-image-renderer/pull/496), [torkelo](https://github.com/torkelo) +- Experimental: Support PDF rendering [#487](https://github.com/grafana/grafana-image-renderer/pull/487), [ryantxu](https://github.com/ryantxu) + ## 3.9.1 (2024-01-29) - Chore: Upgrade jimp and node [#492](https://github.com/grafana/grafana-image-renderer/pull/492), [AgnesToulet](https://github.com/AgnesToulet) - Bump follow-redirects from 1.15.3 to 1.15.4 [#489](https://github.com/grafana/grafana-image-renderer/pull/489), [dependabot[bot]](https://github.com/apps/dependabot) diff --git a/plugin.json b/plugin.json index 155e74d9..46cd6003 100644 --- a/plugin.json +++ b/plugin.json @@ -24,8 +24,8 @@ "url": "https://github.com/grafana/grafana-image-renderer/blob/master/LICENSE" } ], - "version": "3.9.1", - "updated": "2024-01-29" + "version": "3.10.0", + "updated": "2024-02-20" }, "dependencies": { "grafanaDependency": ">=8.3.11" From 715f8d621a320d51fcf5608b1b7f4d16d6b129b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Agn=C3=A8s=20Toulet?= <35176601+AgnesToulet@users.noreply.github.com> Date: Tue, 20 Feb 2024 09:41:53 +0100 Subject: [PATCH 2/2] fix chrome download --- scripts/download_chrome.js | 1 + 1 file changed, 1 insertion(+) diff --git a/scripts/download_chrome.js b/scripts/download_chrome.js index 753dca89..5821d563 100644 --- a/scripts/download_chrome.js +++ b/scripts/download_chrome.js @@ -30,6 +30,7 @@ async function download() { const buildId = await resolveBuildId(browserVersion, platform, 'latest'); console.log(`Installing ${browserVersion} into ${outputPath}`); return install({ + baseUrl: 'https://storage.googleapis.com/chrome-for-testing-public', cacheDir: outputPath, browser: browserVersion, platform,