From ee9aeab8b316c9541bf97dd532f32f5d653b74bc Mon Sep 17 00:00:00 2001 From: "mr. m" <91018726+mr-cheffy@users.noreply.github.com> Date: Fri, 24 Apr 2026 20:56:27 +0200 Subject: [PATCH] fix: improve security props handling in ReleaseNoteItem component (#918) * fix: improve security props handling in ReleaseNoteItem component * Update workflowId in stable.json Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> --------- Signed-off-by: mr. m <91018726+mr-cheffy@users.noreply.github.com> --- cspell.json | 1 + src/components/ReleaseNoteItem.astro | 2 +- src/release-notes/stable.json | 33 ++++++++++++++++++++++++++++ 3 files changed, 35 insertions(+), 1 deletion(-) diff --git a/cspell.json b/cspell.json index 7a31e2e0..e000fdea 100644 --- a/cspell.json +++ b/cspell.json @@ -19,6 +19,7 @@ "createdDefault", "createdDesc", "daniel", + "devs", "ferrocyante", "flatpaks", "FMPEG", diff --git a/src/components/ReleaseNoteItem.astro b/src/components/ReleaseNoteItem.astro index 206e55e4..603b442e 100644 --- a/src/components/ReleaseNoteItem.astro +++ b/src/components/ReleaseNoteItem.astro @@ -104,7 +104,7 @@ const generateItems = (items: any, type: string) => { } }) } -generateItems(props.security ? [props.security] : null, 'security') +generateItems(typeof props.security === 'string' ? [props.security] : props.security, 'security') generateItems(props.fixes, 'fix') generateItems(props.features, 'feature') generateItems(props.changes, 'change') diff --git a/src/release-notes/stable.json b/src/release-notes/stable.json index 15af33ad..1cb3c235 100644 --- a/src/release-notes/stable.json +++ b/src/release-notes/stable.json @@ -3850,5 +3850,38 @@ "workflowId": 70497878213, "image": false, "date": "09/04/2026" + }, + { + "version": "1.19.9b", + "extra": "", + "fixes": [ + { + "description": "Fixed halts / unresponsiveness happening every certain amount of time", + "issue": 10649 + }, + { + "description": "Fixed duplicate bookmarks appearing on startup", + "issue": 9540 + }, + "Fixed an issue on macOS where, when macOS Lockdown mode is enabled, emoji characters are not displayed in web content.", + "Fixed live folders not working with GitHub's new Pull Request UI", + "Windows users can now install updates without having to accept the User Account Control (UAC) prompt. It might need a re-install to work for existing users.", + "Other minor bug fixes and performance improvements." + ], + "changes": ["There's a new modal UI, thanks to @12th-devs on GitHub!"], + "features": [ + "Updated to Firefox 150.0", + "(alt or opt)+clicking a tab will now split it with the selected tab", + "Added a 'Move to folder...' context menu item for tabs to quickly move them to a different folder", + "Added a new loading progress animation when a page is loading", + "Safebrowsing and geo-location APIs should work more reliably now" + ], + "security": [ + "https://www.mozilla.org/en-US/security/advisories/mfsa2026-30/", + "https://github.com/zen-browser/desktop/security/advisories" + ], + "workflowId": 24884426227, + "image": false, + "date": "23/04/2026" } ]