From 4f1d8000b47aa3a3deadabfa4a863cb741227281 Mon Sep 17 00:00:00 2001 From: Orie Steele Date: Fri, 19 Dec 2025 08:38:07 -0600 Subject: [PATCH 1/6] Merge pull request #10135 from OR13/patch-1 fix: change title from 'IAB news we can use' to 'IESG Liaison News' --- ietf/iesg/agenda.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ietf/iesg/agenda.py b/ietf/iesg/agenda.py index 587713089f3..ace4c9ec402 100644 --- a/ietf/iesg/agenda.py +++ b/ietf/iesg/agenda.py @@ -133,7 +133,7 @@ def agenda_sections(): ('4.2', {'title':"WG rechartering"}), ('4.2.1', {'title':"Under evaluation for IETF review", 'docs':[]}), ('4.2.2', {'title':"Proposed for approval", 'docs':[]}), - ('5', {'title':"IAB news we can use"}), + ('5', {'title':"IESG Liaison News"}), ('6', {'title':"Management issues"}), ('7', {'title':"Any Other Business (WG News, New Proposals, etc.)"}), ]) From 7f566673abef2df32c8bf477fda1f6bf63fc0cf9 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 19 Dec 2025 12:15:11 -0600 Subject: [PATCH 2/6] feat: move base containers to trixie (#9535) (#10127) * Use latest release of yanglint, e.g. libyang3-tools. * Remove apt-utils, since apt-key is removed. Fixes: #8701 Co-authored-by: avtobiff Co-authored-by: Per Andersson --- docker/base.Dockerfile | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docker/base.Dockerfile b/docker/base.Dockerfile index 25016360494..1b1f5264b83 100644 --- a/docker/base.Dockerfile +++ b/docker/base.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-bookworm +FROM python:3.12-trixie LABEL maintainer="IETF Tools Team " ENV DEBIAN_FRONTEND=noninteractive @@ -7,7 +7,7 @@ ENV NODE_MAJOR=16 # Update system packages RUN apt-get update \ && apt-get -qy upgrade \ - && apt-get -y install --no-install-recommends apt-utils dialog 2>&1 + && apt-get -y install --no-install-recommends dialog 2>&1 # Add Node.js Source RUN apt-get install -y --no-install-recommends ca-certificates curl gnupg \ @@ -51,7 +51,6 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libgtk2.0-0 \ libgtk-3-0 \ libnotify-dev \ - libgconf-2-4 \ libgbm-dev \ libnss3 \ libxss1 \ @@ -60,7 +59,7 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libmagic-dev \ libmariadb-dev \ libmemcached-tools \ - libyang2-tools \ + libyang3-tools \ locales \ make \ mariadb-client \ From e510c8e4a9016c267a1b02557ebaa3656f7f13c4 Mon Sep 17 00:00:00 2001 From: rjsparks <10996692+rjsparks@users.noreply.github.com> Date: Fri, 19 Dec 2025 18:29:28 +0000 Subject: [PATCH 3/6] ci: update base image target version to 20251219T1815 --- dev/build/Dockerfile | 2 +- dev/build/TARGET_BASE | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/build/Dockerfile b/dev/build/Dockerfile index ae59ba1440f..d40a734f893 100644 --- a/dev/build/Dockerfile +++ b/dev/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/ietf-tools/datatracker-app-base:20251201T1548 +FROM ghcr.io/ietf-tools/datatracker-app-base:20251219T1815 LABEL maintainer="IETF Tools Team " ENV DEBIAN_FRONTEND=noninteractive diff --git a/dev/build/TARGET_BASE b/dev/build/TARGET_BASE index 726f080c678..8b107939b67 100644 --- a/dev/build/TARGET_BASE +++ b/dev/build/TARGET_BASE @@ -1 +1 @@ -20251201T1548 +20251219T1815 From 6ee56b52c1b412c0ba8cacd6421a3c8b529f5a4e Mon Sep 17 00:00:00 2001 From: Absit Iniuria Date: Fri, 19 Dec 2025 19:02:42 +0000 Subject: [PATCH 4/6] fix: adjust rendering of agenda sesh pop-up on mobile (#10134) * fix: adjust popup display on mobile * fix: adjust ui spacing --- client/agenda/AgendaDetailsModal.vue | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/client/agenda/AgendaDetailsModal.vue b/client/agenda/AgendaDetailsModal.vue index 2582bf21593..69c8ef8b532 100644 --- a/client/agenda/AgendaDetailsModal.vue +++ b/client/agenda/AgendaDetailsModal.vue @@ -274,6 +274,7 @@ async function fetchSessionMaterials () { From 3565d8427efdbefb2b36cd2fe0776ad67c55d130 Mon Sep 17 00:00:00 2001 From: Robert Sparks Date: Fri, 19 Dec 2025 15:51:47 -0600 Subject: [PATCH 5/6] fix: revert "feat: move base containers to trixie (#9535) (#10127)" (#10140) This reverts commit 7f566673abef2df32c8bf477fda1f6bf63fc0cf9. --- docker/base.Dockerfile | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docker/base.Dockerfile b/docker/base.Dockerfile index 1b1f5264b83..25016360494 100644 --- a/docker/base.Dockerfile +++ b/docker/base.Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.12-trixie +FROM python:3.12-bookworm LABEL maintainer="IETF Tools Team " ENV DEBIAN_FRONTEND=noninteractive @@ -7,7 +7,7 @@ ENV NODE_MAJOR=16 # Update system packages RUN apt-get update \ && apt-get -qy upgrade \ - && apt-get -y install --no-install-recommends dialog 2>&1 + && apt-get -y install --no-install-recommends apt-utils dialog 2>&1 # Add Node.js Source RUN apt-get install -y --no-install-recommends ca-certificates curl gnupg \ @@ -51,6 +51,7 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libgtk2.0-0 \ libgtk-3-0 \ libnotify-dev \ + libgconf-2-4 \ libgbm-dev \ libnss3 \ libxss1 \ @@ -59,7 +60,7 @@ RUN apt-get update --fix-missing && apt-get install -qy --no-install-recommends libmagic-dev \ libmariadb-dev \ libmemcached-tools \ - libyang3-tools \ + libyang2-tools \ locales \ make \ mariadb-client \ From c85ebbf326eb5dc6fa23e315e462ae4fefffb709 Mon Sep 17 00:00:00 2001 From: rjsparks <10996692+rjsparks@users.noreply.github.com> Date: Fri, 19 Dec 2025 22:04:33 +0000 Subject: [PATCH 6/6] ci: update base image target version to 20251219T2152 --- dev/build/Dockerfile | 2 +- dev/build/TARGET_BASE | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dev/build/Dockerfile b/dev/build/Dockerfile index d40a734f893..e05ad51d1b3 100644 --- a/dev/build/Dockerfile +++ b/dev/build/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/ietf-tools/datatracker-app-base:20251219T1815 +FROM ghcr.io/ietf-tools/datatracker-app-base:20251219T2152 LABEL maintainer="IETF Tools Team " ENV DEBIAN_FRONTEND=noninteractive diff --git a/dev/build/TARGET_BASE b/dev/build/TARGET_BASE index 8b107939b67..f8afdadf365 100644 --- a/dev/build/TARGET_BASE +++ b/dev/build/TARGET_BASE @@ -1 +1 @@ -20251219T1815 +20251219T2152