diff mbox series

[yocto-metrics] patch-status: add whinlatter

Message ID 20260124195614.1874743-1-peter.marko@siemens.com
State New
Headers show
Series [yocto-metrics] patch-status: add whinlatter | expand

Commit Message

Peter Marko Jan. 24, 2026, 7:56 p.m. UTC
From: Peter Marko <peter.marko@siemens.com>

See https://lists.yoctoproject.org/g/yocto-announce/message/366

Signed-off-by: Peter Marko <peter.marko@siemens.com>
---
 patch-status/index.html   | 12 +++++++++++-
 patch-status/releases.csv |  1 +
 2 files changed, 12 insertions(+), 1 deletion(-)

Comments

Ross Burton Jan. 26, 2026, 10:59 a.m. UTC | #1
I actually have a patch to drop the hardcoded names entirely and use the existing releases.json file, but that was pending on some patches that I believe have just merged.  If it’s good I’ll post what I have and see if I missed anything from your patches (I didn’t do meta-oe, for one).

Ross

> On 24 Jan 2026, at 19:56, Peter Marko via lists.yoctoproject.org <peter.marko=siemens.com@lists.yoctoproject.org> wrote:
>
> From: Peter Marko <peter.marko@siemens.com>
>
> See https://lists.yoctoproject.org/g/yocto-announce/message/366
>
> Signed-off-by: Peter Marko <peter.marko@siemens.com>
> ---
> patch-status/index.html   | 12 +++++++++++-
> patch-status/releases.csv |  1 +
> 2 files changed, 12 insertions(+), 1 deletion(-)
>
> diff --git a/patch-status/index.html b/patch-status/index.html
> index 9bdcd478..dd407502 100644
> --- a/patch-status/index.html
> +++ b/patch-status/index.html
> @@ -170,6 +170,10 @@ SPDX-License-Identifier: MIT
>           <summary>master</summary>
>           <div id="cve_status_master"></div>
>         </details>
> +        <details>
> +          <summary>whinlatter</summary>
> +          <div id="cve_status_whinlatter"></div>
> +        </details>
>         <details>
>           <summary>walnascar</summary>
>           <div id="cve_status_walnascar"></div>
> @@ -369,6 +373,12 @@ SPDX-License-Identifier: MIT
>         createCVEList('cve_status_master', data);
>       })
>
> +    fetch('cve-status-whinlatter.txt')
> +      .then(response => response.text())
> +      .then(data => {
> +        createCVEList('cve_status_whinlatter', data);
> +      })
> +
>     fetch('cve-status-walnascar.txt')
>       .then(response => response.text())
>       .then(data => {
> @@ -451,7 +461,7 @@ SPDX-License-Identifier: MIT
>       upstream_status: 'Malformed Upstream-Status',
>       inactive_upstream: 'Inactive-Upstream'
>     };
> -    const branches = ['master', 'walnascar', 'styhead', 'scarthgap', 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
> +    const branches = ['master', 'whinlatter', 'walnascar', 'styhead', 'scarthgap', 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
>
>     const general_options = {
>       tooltip: {
> diff --git a/patch-status/releases.csv b/patch-status/releases.csv
> index 91b94bd9..1e8d95f3 100644
> --- a/patch-status/releases.csv
> +++ b/patch-status/releases.csv
> @@ -1,4 +1,5 @@
> Name,Date
> +5.3 (Whinlatter),2025-12-16
> 5.2 (Walnascar),2025-05-08
> 5.1 (Styhead),2024-10-17
> 5.0 (Scarthgap),2024-04-30
>
>
> -=-=-=-=-=-=-=-=-=-=-=-
> Links: You receive all messages sent to this group.
> View/Reply Online (#3070): https://lists.yoctoproject.org/g/yocto-patches/message/3070
> Mute This Topic: https://lists.yoctoproject.org/mt/117440826/6875888
> Group Owner: yocto-patches+owner@lists.yoctoproject.org
> Unsubscribe: https://lists.yoctoproject.org/g/yocto-patches/leave/13162211/6875888/133974524/xyzzy [ross.burton@arm.com]
> -=-=-=-=-=-=-=-=-=-=-=-
>
>

IMPORTANT NOTICE: The contents of this email and any attachments are confidential and may also be privileged. If you are not the intended recipient, please notify the sender immediately and do not disclose the contents to any other person, use it for any purpose, or store or copy the information in any medium. Thank you.
Peter Marko Jan. 31, 2026, 8:18 p.m. UTC | #2
> -----Original Message-----
> From: Ross Burton <Ross.Burton@arm.com>
> Sent: Monday, January 26, 2026 11:59
> To: yocto-patches@lists.yoctoproject.org
> Cc: Marko, Peter (FT D EU SK BFS1) <Peter.Marko@siemens.com>
> Subject: Re: [yocto-patches] [yocto-metrics][PATCH] patch-status: add whinlatter
> 
> I actually have a patch to drop the hardcoded names entirely and use the existing
> releases.json file, but that was pending on some patches that I believe have just
> merged.  If it’s good I’ll post what I have and see if I missed anything from your
> patches (I didn’t do meta-oe, for one).

Looks like a generic patch will take a while.
Could we merge this meanwhile to finally show whinlatter in metrics?

Peter

> 
> Ross
> 
> > On 24 Jan 2026, at 19:56, Peter Marko via lists.yoctoproject.org
> <peter.marko=siemens.com@lists.yoctoproject.org> wrote:
> >
> > From: Peter Marko <peter.marko@siemens.com>
> >
> > See https://lists.yoctoproject.org/g/yocto-announce/message/366
> >
> > Signed-off-by: Peter Marko <peter.marko@siemens.com>
> > ---
> > patch-status/index.html   | 12 +++++++++++-
> > patch-status/releases.csv |  1 +
> > 2 files changed, 12 insertions(+), 1 deletion(-)
> >
> > diff --git a/patch-status/index.html b/patch-status/index.html
> > index 9bdcd478..dd407502 100644
> > --- a/patch-status/index.html
> > +++ b/patch-status/index.html
> > @@ -170,6 +170,10 @@ SPDX-License-Identifier: MIT
> >           <summary>master</summary>
> >           <div id="cve_status_master"></div>
> >         </details>
> > +        <details>
> > +          <summary>whinlatter</summary>
> > +          <div id="cve_status_whinlatter"></div>
> > +        </details>
> >         <details>
> >           <summary>walnascar</summary>
> >           <div id="cve_status_walnascar"></div>
> > @@ -369,6 +373,12 @@ SPDX-License-Identifier: MIT
> >         createCVEList('cve_status_master', data);
> >       })
> >
> > +    fetch('cve-status-whinlatter.txt')
> > +      .then(response => response.text())
> > +      .then(data => {
> > +        createCVEList('cve_status_whinlatter', data);
> > +      })
> > +
> >     fetch('cve-status-walnascar.txt')
> >       .then(response => response.text())
> >       .then(data => {
> > @@ -451,7 +461,7 @@ SPDX-License-Identifier: MIT
> >       upstream_status: 'Malformed Upstream-Status',
> >       inactive_upstream: 'Inactive-Upstream'
> >     };
> > -    const branches = ['master', 'walnascar', 'styhead', 'scarthgap', 'nanbield',
> 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
> > +    const branches = ['master', 'whinlatter', 'walnascar', 'styhead', 'scarthgap',
> 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth',
> 'dunfell']
> >
> >     const general_options = {
> >       tooltip: {
> > diff --git a/patch-status/releases.csv b/patch-status/releases.csv
> > index 91b94bd9..1e8d95f3 100644
> > --- a/patch-status/releases.csv
> > +++ b/patch-status/releases.csv
> > @@ -1,4 +1,5 @@
> > Name,Date
> > +5.3 (Whinlatter),2025-12-16
> > 5.2 (Walnascar),2025-05-08
> > 5.1 (Styhead),2024-10-17
> > 5.0 (Scarthgap),2024-04-30
> >
> >
> > -=-=-=-=-=-=-=-=-=-=-=-
> > Links: You receive all messages sent to this group.
> > View/Reply Online (#3070): https://lists.yoctoproject.org/g/yocto-
> patches/message/3070
> > Mute This Topic: https://lists.yoctoproject.org/mt/117440826/6875888
> > Group Owner: yocto-patches+owner@lists.yoctoproject.org
> > Unsubscribe: https://lists.yoctoproject.org/g/yocto-
> patches/leave/13162211/6875888/133974524/xyzzy [ross.burton@arm.com]
> > -=-=-=-=-=-=-=-=-=-=-=-
> >
> >
> 
> IMPORTANT NOTICE: The contents of this email and any attachments are
> confidential and may also be privileged. If you are not the intended recipient,
> please notify the sender immediately and do not disclose the contents to any other
> person, use it for any purpose, or store or copy the information in any medium.
> Thank you.
diff mbox series

Patch

diff --git a/patch-status/index.html b/patch-status/index.html
index 9bdcd478..dd407502 100644
--- a/patch-status/index.html
+++ b/patch-status/index.html
@@ -170,6 +170,10 @@  SPDX-License-Identifier: MIT
           <summary>master</summary>
           <div id="cve_status_master"></div>
         </details>
+        <details>
+          <summary>whinlatter</summary>
+          <div id="cve_status_whinlatter"></div>
+        </details>
         <details>
           <summary>walnascar</summary>
           <div id="cve_status_walnascar"></div>
@@ -369,6 +373,12 @@  SPDX-License-Identifier: MIT
         createCVEList('cve_status_master', data);
       })
 
+    fetch('cve-status-whinlatter.txt')
+      .then(response => response.text())
+      .then(data => {
+        createCVEList('cve_status_whinlatter', data);
+      })
+
     fetch('cve-status-walnascar.txt')
       .then(response => response.text())
       .then(data => {
@@ -451,7 +461,7 @@  SPDX-License-Identifier: MIT
       upstream_status: 'Malformed Upstream-Status',
       inactive_upstream: 'Inactive-Upstream'
     };
-    const branches = ['master', 'walnascar', 'styhead', 'scarthgap', 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
+    const branches = ['master', 'whinlatter', 'walnascar', 'styhead', 'scarthgap', 'nanbield', 'mickledore', 'langdale', 'kirkstone', 'honister', 'hardknott', 'gatesgarth', 'dunfell']
 
     const general_options = {
       tooltip: {
diff --git a/patch-status/releases.csv b/patch-status/releases.csv
index 91b94bd9..1e8d95f3 100644
--- a/patch-status/releases.csv
+++ b/patch-status/releases.csv
@@ -1,4 +1,5 @@ 
 Name,Date
+5.3 (Whinlatter),2025-12-16
 5.2 (Walnascar),2025-05-08
 5.1 (Styhead),2024-10-17
 5.0 (Scarthgap),2024-04-30