From 7beb9b41df5f1da7585e4f8c7be140781f440d03 Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Sat, 9 Aug 2025 13:12:02 +0800 Subject: [PATCH 01/13] [build] Fix kdump build failure (Fixes 5097 17023) (#23648) #### Why I did it The build fails if kdump is enabled on the build host, even though the relevant build step is performed in a dockerized chroot. ``` + sudo LANG=C chroot ./fsroot-cisco-8000 kdump-config symlinks 5.10.0-23-2-amd64 Cannot change symbolic links when kdump is loaded ... failed! ``` Fixes #5097, Fixes #17023 ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it kdump installation checks if kdump is already running and aborts if so. This is good in most cases, but it's not relevant when installing into a chroot inside a docker container. This adds a basic patch to disable this check during build. Note that the kdump status of the build host is imported into the docker build container via the sysfs file system: ``` $ ls -id /sys/kernel/kexec_crash_loaded && cat /sys/kernel/kexec_crash_loaded 7824 /sys/kernel/kexec_crash_loaded 0 $ docker run --rm debian bash -c "ls -id /sys/kernel/kexec_crash_loaded && cat /sys/kernel/kexec_crash_loaded" 7824 /sys/kernel/kexec_crash_loaded 0 ``` The inodes and file content are identical inside and outside of the container. #### How to verify it 1. Enable kdump on the build host 2. Confirm baseline build fails with the "Cannot change symbolic links when kdump is loaded" error 3. Apply this change and build succeeds #### Which release branch to backport (provide reason below if selected) - [x] 202405 - [x] 202411 - [x] 202505 #### Tested branch (Please provide the tested image version) master (29752056ef87ace404d073901cba6179ab074a12) #### Description for the changelog [build] fix build failure on kdump-enabled hosts #### Link to config_db schema for YANG module changes #### A picture of a cute animal (not mandatory but encouraged) --- .../patch/0004-disable-kdump-load-check.patch | 16 ++++++++++++++++ src/kdump-tools/patch/series | 1 + 2 files changed, 17 insertions(+) create mode 100644 src/kdump-tools/patch/0004-disable-kdump-load-check.patch diff --git a/src/kdump-tools/patch/0004-disable-kdump-load-check.patch b/src/kdump-tools/patch/0004-disable-kdump-load-check.patch new file mode 100644 index 0000000000..24128d930b --- /dev/null +++ b/src/kdump-tools/patch/0004-disable-kdump-load-check.patch @@ -0,0 +1,16 @@ +diff --git a/debian/kdump-config.in b/debian/kdump-config.in +index ded079f..dcf2991 100755 +--- a/debian/kdump-config.in ++++ b/debian/kdump-config.in +@@ -487,11 +487,6 @@ kdump_create_symlinks() + { + kernel_version=$1 + +- if [ -e $sys_kexec_crash ] && [ "$(cat $sys_kexec_crash)" -eq 1 ] ; then +- log_failure_msg "Cannot change symbolic links when kdump is loaded" +- exit 1 +- fi +- + if [ -e "/boot/vmlinux-${kernel_version}" ] || [ -e "/boot/vmlinuz-${kernel_version}" ]; then + create_symlink vmlinuz "$kernel_version" + diff --git a/src/kdump-tools/patch/series b/src/kdump-tools/patch/series index 0af2c97602..369545368b 100644 --- a/src/kdump-tools/patch/series +++ b/src/kdump-tools/patch/series @@ -1,2 +1,3 @@ 0002-core-file-prefixed-by-kdump.patch 0003-Revert-the-MODULES-dep-optimization.patch +0004-disable-kdump-load-check.patch From 3ba0b9eef5130758c0044a9db93a70a5c27696bc Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Wed, 20 Aug 2025 05:12:10 +0800 Subject: [PATCH 02/13] [build] Fix sonic-utilities-data submodule dep (#23758) #### Why I did it The `sonic-utilities-data_1.0-1_all.deb` target depends on sources from the `src/sonic-utilities` submodule. However, the cache dependency file does not list this submodule as a dependency. So, when the build cache is used, updates to the `src/sonic-utilities` submodule pointer do not trigger the necessary rebuild of `sonic-utilities-data_1.0-1_all.deb`, leading to a stale build output. ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it Updated `rules/sonic-utilities-data.dep` to include the proper `SMDEP` rules. #### How to verify it 1. Perform a build with the dpkg cache enabled 2. Confirm the new output file `target/debs/bookworm/sonic-utilities-data_1.0-1_all.deb.smdep` is created, containing the submodule dependencies (smdeps) 3. Archive the `target/debs/bookworm/sonic-utilities-data_1.0-1_all.deb` output outside the build workspace 4. Clean the build workspace 5. Update the `src/sonic-utilities` submodule pointer to a new commit that contains different source code 6. Perform another build with the dpkg cache enabled 7. Extract the previous and current `sonic-utilities-data_1.0-1_all.deb` outputs. Confirm that the contents of the debian packages are distinct and contain the expected source based on the respective `src/sonic-utilities` submodule pointers #### Which release branch to backport (provide reason below if selected) - [x] 202405 - [x] 202411 - [x] 202505 This is a build bug which silently results in incorrect build outputs when the dpkg cache is used. As such, it should be double committed. #### Tested branch (Please provide the tested image version) - [x] 202405 (6fad19aff0cf0cc2132db1de92c20d27e1daabe9) #### Description for the changelog Fix submodule build dependency for sonic-utilities-data #### Link to config_db schema for YANG module changes #### A picture of a cute animal (not mandatory but encouraged) --- rules/sonic-utilities-data.dep | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/rules/sonic-utilities-data.dep b/rules/sonic-utilities-data.dep index b11d0a5544..abcddfaf02 100644 --- a/rules/sonic-utilities-data.dep +++ b/rules/sonic-utilities-data.dep @@ -1,9 +1,10 @@ SPATH := $($(SONIC_UTILITIES_DATA)_SRC_PATH) DEP_FILES := $(SONIC_COMMON_FILES_LIST) rules/sonic-utilities-data.mk rules/sonic-utilities-data.dep DEP_FILES += $(SONIC_COMMON_BASE_FILES_LIST) -DEP_FILES += $(shell git ls-files $(SPATH)) +SMDEP_FILES := $(addprefix $(SPATH)/,$(shell cd $(SPATH) && git ls-files)) $(SONIC_UTILITIES_DATA)_CACHE_MODE := GIT_CONTENT_SHA $(SONIC_UTILITIES_DATA)_DEP_FLAGS := $(SONIC_COMMON_FLAGS_LIST) $(SONIC_UTILITIES_DATA)_DEP_FILES := $(DEP_FILES) - +$(SONIC_UTILITIES_DATA)_SMDEP_FILES := $(SMDEP_FILES) +$(SONIC_UTILITIES_DATA)_SMDEP_PATHS := $(SPATH) From 5907a19d31b803a2252b49ca3fa1196dd4dc9d38 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Wed, 12 Nov 2025 17:05:28 +0800 Subject: [PATCH 03/13] [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 (#24503) Why I did it Migrate agent pool and update j2 accordingly. * [ci] Migrate agent pool from sonicbld-1es to sonicso1ES-amd64 signed-off-by: jianquanye@microsoft.com --- .azure-pipelines/azure-pipelines-Official.yml | 2 +- .azure-pipelines/azure-pipelines-UpgrateVersion.yml | 2 +- .azure-pipelines/azure-pipelines-build.yml | 10 +++++----- .azure-pipelines/build-template.yml | 5 ++--- .azure-pipelines/docker-sonic-mgmt-py3-only.yml | 2 +- .azure-pipelines/docker-sonic-mgmt.yml | 2 +- .azure-pipelines/docker-sonic-slave-template.yml | 8 ++++---- .azure-pipelines/docker-sonic-slave.yml | 4 ++-- .azure-pipelines/dpkg-cache-cleanup.yml | 6 +++--- .azure-pipelines/official-build-cache.yml | 4 ++-- .azure-pipelines/official-build-vs-with-test.yml | 2 +- .azure-pipelines/official-build.yml | 2 +- .azure-pipelines/template-commonlib.yml | 4 ++-- Makefile.work | 2 +- azure-pipelines.yml | 8 ++++---- 15 files changed, 31 insertions(+), 32 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-Official.yml b/.azure-pipelines/azure-pipelines-Official.yml index 56d88751f6..3a5f59dda8 100644 --- a/.azure-pipelines/azure-pipelines-Official.yml +++ b/.azure-pipelines/azure-pipelines-Official.yml @@ -14,7 +14,7 @@ schedules: - 202012 always: true -pool: sonicbld-1es +pool: sonicso1ES-amd64 stages: - stage: Build diff --git a/.azure-pipelines/azure-pipelines-UpgrateVersion.yml b/.azure-pipelines/azure-pipelines-UpgrateVersion.yml index b40a5d0333..81c13cb81e 100644 --- a/.azure-pipelines/azure-pipelines-UpgrateVersion.yml +++ b/.azure-pipelines/azure-pipelines-UpgrateVersion.yml @@ -26,7 +26,7 @@ resources: ref: master endpoint: sonic-net -pool: sonicbld-1es +pool: sonicso1ES-amd64 parameters: - name: 'jobFilters' diff --git a/.azure-pipelines/azure-pipelines-build.yml b/.azure-pipelines/azure-pipelines-build.yml index 941c30ecbe..5feecd12b7 100644 --- a/.azure-pipelines/azure-pipelines-build.yml +++ b/.azure-pipelines/azure-pipelines-build.yml @@ -72,7 +72,7 @@ jobs: - name: centec-arm64 ${{ if not(parameters.qemuOrCrossBuild) }}: - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 timeoutInMinutes: 2880 variables: PLATFORM_ARCH: arm64 @@ -87,7 +87,7 @@ jobs: - name: marvell-armhf ${{ if not(parameters.qemuOrCrossBuild) }}: - pool: sonicbld-armhf + pool: sonicso1ES-armhf timeoutInMinutes: 2880 variables: PLATFORM_NAME: marvell @@ -95,7 +95,7 @@ jobs: - name: marvell-arm64 ${{ if not(parameters.qemuOrCrossBuild) }}: - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 timeoutInMinutes: 2880 variables: PLATFORM_NAME: marvell @@ -117,12 +117,12 @@ jobs: platform_rpc: nephos - name: pensando - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 variables: PLATFORM_ARCH: arm64 - name: nvidia-bluefield - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 variables: PLATFORM_ARCH: arm64 diff --git a/.azure-pipelines/build-template.yml b/.azure-pipelines/build-template.yml index 813126792e..85d660f586 100644 --- a/.azure-pipelines/build-template.yml +++ b/.azure-pipelines/build-template.yml @@ -35,9 +35,8 @@ parameters: - name: pool type: string values: - - sonicbld-1es - - sonicbld_8c - default: sonicbld-1es + - sonicso1ES-amd64 + default: sonicso1ES-amd64 - name: dbg_image type: boolean diff --git a/.azure-pipelines/docker-sonic-mgmt-py3-only.yml b/.azure-pipelines/docker-sonic-mgmt-py3-only.yml index 8019e957fd..af913b300c 100644 --- a/.azure-pipelines/docker-sonic-mgmt-py3-only.yml +++ b/.azure-pipelines/docker-sonic-mgmt-py3-only.yml @@ -32,7 +32,7 @@ stages: - stage: Build jobs: - job: Build - pool: sonicbld-1es + pool: sonicso1ES-amd64 timeoutInMinutes: 360 steps: - template: cleanup.yml diff --git a/.azure-pipelines/docker-sonic-mgmt.yml b/.azure-pipelines/docker-sonic-mgmt.yml index 924e4230df..56c4034888 100644 --- a/.azure-pipelines/docker-sonic-mgmt.yml +++ b/.azure-pipelines/docker-sonic-mgmt.yml @@ -32,7 +32,7 @@ stages: - stage: Build jobs: - job: Build - pool: sonicbld-1es + pool: sonicso1ES-amd64 timeoutInMinutes: 360 steps: - template: cleanup.yml diff --git a/.azure-pipelines/docker-sonic-slave-template.yml b/.azure-pipelines/docker-sonic-slave-template.yml index 8bf7540e18..f47f5cddd9 100644 --- a/.azure-pipelines/docker-sonic-slave-template.yml +++ b/.azure-pipelines/docker-sonic-slave-template.yml @@ -29,11 +29,11 @@ parameters: default: sonicdev - name: pool type: string - default: sonicbld-1es + default: sonicso1ES-amd64 values: - - sonicbld-1es - - sonicbld-arm64 - - sonicbld-armhf + - sonicso1ES-amd64 + - sonicso1ES-arm64 + - sonicso1ES-armhf jobs: - job: sonic_slave_${{ parameters.dist }}${{ parameters.march }} diff --git a/.azure-pipelines/docker-sonic-slave.yml b/.azure-pipelines/docker-sonic-slave.yml index 9d8b30210a..ccad962df8 100644 --- a/.azure-pipelines/docker-sonic-slave.yml +++ b/.azure-pipelines/docker-sonic-slave.yml @@ -64,7 +64,7 @@ stages: - ${{ each arch in parameters.arches }}: - template: .azure-pipelines/docker-sonic-slave-template.yml@buildimage parameters: - pool: sonicbld-1es + pool: sonicso1ES-amd64 arch: ${{ arch }} dist: ${{ dist }} ${{ if ne(arch, 'amd64') }}: @@ -78,7 +78,7 @@ stages: - ${{ if ne(arch, 'amd64') }}: - template: .azure-pipelines/docker-sonic-slave-template.yml@buildimage parameters: - pool: sonicbld-${{ arch }} + pool: sonicso1ES-${{ arch }} arch: ${{ arch }} dist: ${{ dist }} march: _${{ arch }} diff --git a/.azure-pipelines/dpkg-cache-cleanup.yml b/.azure-pipelines/dpkg-cache-cleanup.yml index 7bac6997e4..ab1b7fa52a 100644 --- a/.azure-pipelines/dpkg-cache-cleanup.yml +++ b/.azure-pipelines/dpkg-cache-cleanup.yml @@ -16,7 +16,7 @@ pr: none jobs: - job: Amd - pool: sonicbld-1es + pool: sonicso1ES-amd64 timeoutInMinutes: 5 steps: - checkout: none @@ -26,7 +26,7 @@ jobs: df -h displayName: clean dpkg cache - job: Armhf - pool: sonicbld-armhf + pool: sonicso1ES-armhf timeoutInMinutes: 5 steps: - checkout: none @@ -36,7 +36,7 @@ jobs: df -h displayName: clean dpkg cache - job: Arm64 - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 timeoutInMinutes: 5 steps: - checkout: none diff --git a/.azure-pipelines/official-build-cache.yml b/.azure-pipelines/official-build-cache.yml index 0f7b34e9bd..07b759a5f6 100644 --- a/.azure-pipelines/official-build-cache.yml +++ b/.azure-pipelines/official-build-cache.yml @@ -24,7 +24,7 @@ pr: none stages: - stage: Build - pool: sonicbld-1es + pool: sonicso1ES-amd64 variables: - name: CACHE_MODE value: cache @@ -46,7 +46,7 @@ stages: docker_syncd_rpc_image: yes platform_rpc: mlnx - name: marvell-armhf - pool: sonicbld-armhf + pool: sonicso1ES-armhf timeoutInMinutes: 1200 variables: PLATFORM_NAME: marvell diff --git a/.azure-pipelines/official-build-vs-with-test.yml b/.azure-pipelines/official-build-vs-with-test.yml index 7325efbc7e..1f35ba3086 100644 --- a/.azure-pipelines/official-build-vs-with-test.yml +++ b/.azure-pipelines/official-build-vs-with-test.yml @@ -51,7 +51,7 @@ variables: stages: - stage: BuildVS - pool: sonicbld-1es + pool: sonicso1ES-amd64 jobs: - template: azure-pipelines-build.yml parameters: diff --git a/.azure-pipelines/official-build.yml b/.azure-pipelines/official-build.yml index a228529b4a..86aef8fc09 100644 --- a/.azure-pipelines/official-build.yml +++ b/.azure-pipelines/official-build.yml @@ -34,7 +34,7 @@ variables: stages: - stage: Build - pool: sonicbld-1es + pool: sonicso1ES-amd64 variables: - group: Container-Registry - name: CACHE_MODE diff --git a/.azure-pipelines/template-commonlib.yml b/.azure-pipelines/template-commonlib.yml index c821998ae8..da31470d40 100644 --- a/.azure-pipelines/template-commonlib.yml +++ b/.azure-pipelines/template-commonlib.yml @@ -11,9 +11,9 @@ jobs: - job: Build_${{ arch }} timeoutInMinutes: 120 ${{ if eq(arch,'amd64') }}: - pool: sonicbld-1es + pool: sonicso1ES-amd64 ${{ else }}: - pool: sonicbld-${{ arch }} + pool: sonicso1ES-${{ arch }} variables: - template: template-variables.yml steps: diff --git a/Makefile.work b/Makefile.work index 0a9b46cecb..b0bcdfdb3c 100644 --- a/Makefile.work +++ b/Makefile.work @@ -91,7 +91,7 @@ $(error Add your user account to docker group and use your user account to make. endif # Check for j2cli availability -J2_VER := $(shell j2 --version 2>&1 | grep j2cli | awk '{printf $$2}') +J2_VER := $(shell j2 --version 2>&1 | grep j2 | awk '{printf $$2}') ifeq ($(J2_VER),) $(error Please install j2cli (sudo pip install j2cli)) endif diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 0bb002b019..1160689d84 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -51,7 +51,7 @@ variables: stages: - stage: BuildVS - pool: sonicbld-1es + pool: sonicso1ES-amd64 jobs: - template: .azure-pipelines/azure-pipelines-build.yml parameters: @@ -60,7 +60,7 @@ stages: - name: vs - stage: Build - pool: sonicbld-1es + pool: sonicso1ES-amd64 dependsOn: [] jobs: - template: .azure-pipelines/azure-pipelines-build.yml @@ -77,12 +77,12 @@ stages: docker_syncd_rpc_image: yes platform_rpc: mlnx - name: marvell-arm64 - pool: sonicbld-arm64 + pool: sonicso1ES-arm64 variables: PLATFORM_NAME: marvell PLATFORM_ARCH: arm64 - name: marvell-armhf - pool: sonicbld-armhf + pool: sonicso1ES-armhf timeoutInMinutes: 1200 variables: PLATFORM_NAME: marvell From 3d887183f63dc47fca8099e52bfe09918b045ed9 Mon Sep 17 00:00:00 2001 From: Liu Shilong Date: Thu, 13 Nov 2025 10:09:06 +0800 Subject: [PATCH 04/13] [build] Fix Too many open file error after roll back docker-ce (#24514) Why I did it Fix too many open file error when building image --- Makefile.work | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.work b/Makefile.work index b0bcdfdb3c..f62d8288b9 100644 --- a/Makefile.work +++ b/Makefile.work @@ -307,6 +307,7 @@ DOCKER_RUN := docker run --rm=true --privileged --init \ -e "https_proxy=$(https_proxy)" \ -e "no_proxy=$(no_proxy)" \ -i$(shell { if [ -t 0 ]; then echo t; fi }) \ + --ulimit nofile=524288:524288 \ $(SONIC_BUILDER_EXTRA_CMDLINE) # Mount the $(DOCKER_ROOT) to /var/lib/docker in the slave container, the overlay fs is not supported as dockerd root folder. From 3b294420793d00a022b42526e52512852ab32479 Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Wed, 19 Nov 2025 17:12:31 +0800 Subject: [PATCH 05/13] [submodule] Update submodule sonic-dash-api to the latest HEAD automatically (#24571) #### Why I did it src/sonic-dash-api ``` * 3f67090 - (HEAD -> 202405, origin/202405) Automated agent pool migration for branch 202405 (#49) (35 minutes ago) [yijingyan2] ``` #### How I did it #### How to verify it #### Description for the changelog --- src/sonic-dash-api | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-dash-api b/src/sonic-dash-api index 1fd0b7dbd0..3f6709001e 160000 --- a/src/sonic-dash-api +++ b/src/sonic-dash-api @@ -1 +1 @@ -Subproject commit 1fd0b7dbd02f143dfa8c6dcc850514ca70628c3f +Subproject commit 3f6709001e8574743ecf1a44f4cc3eb26b6329d6 From 39017792fa7e636416d3281c2dc3a5a9a8f2c199 Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Tue, 2 Dec 2025 16:12:57 +0800 Subject: [PATCH 06/13] [submodule] Update submodule sonic-swss-common to the latest HEAD automatically (#24670) #### Why I did it src/sonic-swss-common ``` * 36f40a1 - (HEAD -> 202405, origin/202405) Automated agent pool migration for branch 202405 (#1107) (21 hours ago) [yijingyan2] ``` #### How I did it #### How to verify it #### Description for the changelog --- src/sonic-swss-common | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-swss-common b/src/sonic-swss-common index 39f31e2fa1..36f40a1bae 160000 --- a/src/sonic-swss-common +++ b/src/sonic-swss-common @@ -1 +1 @@ -Subproject commit 39f31e2fa1dff43542b88e7f4308ddad0a0a6b32 +Subproject commit 36f40a1bae12a4ff28314eaa8223a6fe1b636492 From fecd4ec81475cddba537cdb1e22938b08adaf570 Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Thu, 29 Jan 2026 17:13:12 +0800 Subject: [PATCH 07/13] [submodule] Update submodule sonic-linux-kernel to the latest HEAD automatically (#25238) #### Why I did it src/sonic-linux-kernel ``` * feaf559 - (HEAD -> 202405, origin/202405) [202405] PCIe AER printk ratelimiting backport (#529) (29 hours ago) [kenneth-arista] * 0c948bf - Automated agent pool migration for branch 202405 (#518) (8 days ago) [yijingyan2] ``` #### How I did it #### How to verify it #### Description for the changelog --- src/sonic-linux-kernel | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-linux-kernel b/src/sonic-linux-kernel index d10d26cd64..feaf559f38 160000 --- a/src/sonic-linux-kernel +++ b/src/sonic-linux-kernel @@ -1 +1 @@ -Subproject commit d10d26cd640cd0bbc313a2506c1e5382c8712c0d +Subproject commit feaf559f38133c9fa649a468c5e589641c77de76 From 0d9299402bad30699329960aa14293da46d262ed Mon Sep 17 00:00:00 2001 From: yijingyan2 Date: Thu, 26 Feb 2026 19:24:31 +1100 Subject: [PATCH 08/13] [202405] fix upgrateVersion pipeline file (#24989) Signed-off-by: yijingyan2 Signed-off-by: Yijing Yan --- .../azure-pipelines-UpgrateVersion.yml | 13 ++++--------- dockers/docker-base-bullseye/Dockerfile.j2 | 2 +- files/build/versions/default/versions-mirror | 4 ++-- platform/vs/docker-sonic-vs/Dockerfile.j2 | 2 +- rules/snmpd.mk | 4 ++-- sonic-slave-bookworm/Dockerfile.j2 | 1 - sonic-slave-bullseye/Dockerfile.j2 | 1 - sonic-slave-buster/Dockerfile.j2 | 16 +--------------- 8 files changed, 11 insertions(+), 32 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-UpgrateVersion.yml b/.azure-pipelines/azure-pipelines-UpgrateVersion.yml index 81c13cb81e..2fd7e739f6 100644 --- a/.azure-pipelines/azure-pipelines-UpgrateVersion.yml +++ b/.azure-pipelines/azure-pipelines-UpgrateVersion.yml @@ -34,14 +34,9 @@ parameters: default: - vs - broadcom - - centec - - centec-arm64 - - generic - marvell-armhf - marvell-arm64 - mellanox - - pensando - - nvidia-bluefield stages: - stage: Prepare @@ -50,8 +45,8 @@ stages: steps: - script: | DEFAULT_MIRROR_URL_PREFIX=http://packages.trafficmanager.net - DEBIAN_TIMESTAMP=$(curl $DEFAULT_MIRROR_URL_PREFIX/snapshot/debian/latest/timestamp) - DEBIAN_SECURITY_TIMESTAMP=$(curl $DEFAULT_MIRROR_URL_PREFIX/snapshot/debian-security/latest/timestamp) + DEBIAN_TIMESTAMP=$(curl $DEFAULT_MIRROR_URL_PREFIX/debian-snapshot/debian/latest) + DEBIAN_SECURITY_TIMESTAMP=$(curl $DEFAULT_MIRROR_URL_PREFIX/debian-snapshot/debian-security/latest) echo "DEBIAN_TIMESTAMP=$DEBIAN_TIMESTAMP, DEBIAN_SECURITY_TIMESTAMP=$DEBIAN_SECURITY_TIMESTAMP" echo "##vso[task.setvariable variable=DEBIAN_TIMESTAMP;isOutput=true]$DEBIAN_TIMESTAMP" echo "##vso[task.setvariable variable=DEBIAN_SECURITY_TIMESTAMP;isOutput=true]$DEBIAN_SECURITY_TIMESTAMP" @@ -97,7 +92,7 @@ stages: jobs: - job: UpgradeVersions pool: - vmImage: 'ubuntu-20.04' + vmImage: 'ubuntu-22.04' steps: - script: | if [ -z "$(which gh)" ]; then @@ -156,7 +151,7 @@ stages: git config user.name $GIT_USER git config credential.https://github.com.username $GIT_USER git add files/build/versions - git commit -m "[ci/build]: Upgrade SONiC package versions" + git commit -s -m "[ci/build]: Upgrade SONiC package versions" git checkout -b $BRANCH_NAME git remote add remote https://github.com/$GIT_USER/$GIT_REPO git push remote HEAD:refs/heads/$BRANCH_NAME -f diff --git a/dockers/docker-base-bullseye/Dockerfile.j2 b/dockers/docker-base-bullseye/Dockerfile.j2 index 0ec093c901..4bf0a1687f 100644 --- a/dockers/docker-base-bullseye/Dockerfile.j2 +++ b/dockers/docker-base-bullseye/Dockerfile.j2 @@ -62,7 +62,7 @@ RUN apt-get update && \ # default rsyslog version is 8.2110.0 which has a bug on log rate limit, # use backport version 8.2206.0-1~bpo11+1 -RUN apt-get -t bullseye-backports -y install rsyslog +RUN apt-get -y install rsyslog # Upgrade pip via PyPI and uninstall the Debian version RUN pip3 install --upgrade pip diff --git a/files/build/versions/default/versions-mirror b/files/build/versions/default/versions-mirror index 9f4a015c6d..323783f5fe 100644 --- a/files/build/versions/default/versions-mirror +++ b/files/build/versions/default/versions-mirror @@ -4,8 +4,8 @@ archive.ubuntu.com_ubuntu_dists_focal-updates==2025-02-19T07:06:04Z deb.nodesource.com_node%5f14.x_dists_bookworm==2023-02-17T00:35:29Z deb.nodesource.com_node%5f14.x_dists_bullseye==2023-02-17T00:35:28Z deb.nodesource.com_node%5f14.x_dists_buster==2023-02-17T00:35:28Z -debian==20250217T063943Z -debian-security==20250218T000849Z +debian==20260216T001359Z +debian-security==20260216T001506Z download.docker.com_linux_debian_dists_bookworm==2025-02-18T23:03:46Z download.docker.com_linux_debian_dists_bullseye==2025-02-18T23:03:46Z download.docker.com_linux_debian_dists_buster==2024-06-17T16:53:50Z diff --git a/platform/vs/docker-sonic-vs/Dockerfile.j2 b/platform/vs/docker-sonic-vs/Dockerfile.j2 index 6caa69b301..c910f33796 100644 --- a/platform/vs/docker-sonic-vs/Dockerfile.j2 +++ b/platform/vs/docker-sonic-vs/Dockerfile.j2 @@ -69,7 +69,7 @@ RUN apt-get install -y net-tools \ libgssrpc4 \ libkdb5-10 -RUN apt-get install -y -t bullseye-backports iproute2 +RUN apt-get install -y iproute2 # For sonic-config-engine Python 3 package # Install pyangbind here, outside sonic-config-engine dependencies, as pyangbind causes enum34 to be installed. diff --git a/rules/snmpd.mk b/rules/snmpd.mk index c70f30a4ca..0b6db371e0 100644 --- a/rules/snmpd.mk +++ b/rules/snmpd.mk @@ -2,10 +2,10 @@ ifeq ($(BLDENV),bookworm) SNMPD_VERSION = 5.9.3+dfsg -SNMPD_VERSION_FULL = $(SNMPD_VERSION)-2 +SNMPD_VERSION_FULL = $(SNMPD_VERSION)-2+deb12u1 else ifeq ($(BLDENV),bullseye) SNMPD_VERSION = 5.9+dfsg -SNMPD_VERSION_FULL = $(SNMPD_VERSION)-4+deb11u1 +SNMPD_VERSION_FULL = $(SNMPD_VERSION)-4+deb11u3 else SNMPD_VERSION = 5.7.3+dfsg SNMPD_VERSION_FULL = $(SNMPD_VERSION)-5 diff --git a/sonic-slave-bookworm/Dockerfile.j2 b/sonic-slave-bookworm/Dockerfile.j2 index ed1b664c68..85268a1b80 100644 --- a/sonic-slave-bookworm/Dockerfile.j2 +++ b/sonic-slave-bookworm/Dockerfile.j2 @@ -640,7 +640,6 @@ RUN pip3 install git+https://github.com/aristanetworks/swi-tools.git@bead66bf261 {% if CONFIGURED_ARCH != "amd64" -%} # Install node.js for azure pipeline -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN eatmydata apt-get install -y nodejs {%- if CROSS_BUILD_ENVIRON == "y" %} diff --git a/sonic-slave-bullseye/Dockerfile.j2 b/sonic-slave-bullseye/Dockerfile.j2 index 67a0b5ea2b..f242ef3824 100644 --- a/sonic-slave-bullseye/Dockerfile.j2 +++ b/sonic-slave-bullseye/Dockerfile.j2 @@ -664,7 +664,6 @@ RUN pip3 install git+https://github.com/aristanetworks/swi-tools.git@bead66bf261 {% if CONFIGURED_ARCH != "amd64" -%} # Install node.js for azure pipeline -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN eatmydata apt-get install -y nodejs {%- if CROSS_BUILD_ENVIRON == "y" %} diff --git a/sonic-slave-buster/Dockerfile.j2 b/sonic-slave-buster/Dockerfile.j2 index a6fe68ee17..78af7abe2f 100644 --- a/sonic-slave-buster/Dockerfile.j2 +++ b/sonic-slave-buster/Dockerfile.j2 @@ -473,20 +473,7 @@ RUN eatmydata apt-get install -y kernel-wedge {%- endif %} # For gobgp and telemetry build -RUN export VERSION=1.15.15 \ -{%- if CONFIGURED_ARCH == "armhf" and CROSS_BUILD_ENVIRON != "y" %} - && wget https://storage.googleapis.com/golang/go$VERSION.linux-armv6l.tar.gz \ - && tar -C /usr/local -xzf go$VERSION.linux-armv6l.tar.gz \ -{%- elif CONFIGURED_ARCH == "arm64" and CROSS_BUILD_ENVIRON != "y" %} - && wget https://storage.googleapis.com/golang/go$VERSION.linux-arm64.tar.gz \ - && tar -C /usr/local -xzf go$VERSION.linux-arm64.tar.gz \ -{%- else %} - && wget https://storage.googleapis.com/golang/go$VERSION.linux-amd64.tar.gz \ - && tar -C /usr/local -xzf go$VERSION.linux-amd64.tar.gz \ -{%- endif %} - && echo 'export GOROOT=/usr/local/go' >> /etc/bash.bashrc \ - && echo 'export PATH=$PATH:$GOROOT/bin' >> /etc/bash.bashrc \ - && rm go$VERSION.linux-*.tar.gz +RUN eatmydata apt-get install -y golang golang-go RUN pip3 install --upgrade pip RUN pip2 install --upgrade 'pip<21' @@ -639,7 +626,6 @@ RUN pip3 install git+https://github.com/aristanetworks/swi-tools.git@bead66bf261 {% if CONFIGURED_ARCH != "amd64" -%} # Install node.js for azure pipeline -RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - RUN eatmydata apt-get install -y nodejs {%- if CROSS_BUILD_ENVIRON == "y" %} From bf9c54375c569ded86deb5712caec5a393faa84d Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Fri, 27 Feb 2026 18:12:27 +0800 Subject: [PATCH 09/13] [submodule] Update submodule sonic-platform-daemons to the latest HEAD automatically (#25721) #### Why I did it src/sonic-platform-daemons ``` * 5d2cfce - (HEAD -> 202405, origin/202405) [ci][202405] refine pipeline to download necessary artifacts (#764) (11 hours ago) [yijingyan2] ``` #### How I did it #### How to verify it #### Description for the changelog --- src/sonic-platform-daemons | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sonic-platform-daemons b/src/sonic-platform-daemons index 291d3bbbc3..5d2cfcef18 160000 --- a/src/sonic-platform-daemons +++ b/src/sonic-platform-daemons @@ -1 +1 @@ -Subproject commit 291d3bbbc3cb63a121a59fa0cd0057d92b8ba4c8 +Subproject commit 5d2cfcef1897bf09596685398a4bfa8b47e27378 From 776ad9b5271c5973baeead1400cf2f05f26b59ae Mon Sep 17 00:00:00 2001 From: Xin Wang Date: Wed, 4 Mar 2026 10:28:14 +0800 Subject: [PATCH 10/13] Disable CICD for 202405 branch (#23241) Support for release 202405 has ended. This PR disables pipeline CICD triggers for the 202405 branch. Signed-off-by: Xin Wang --- azure-pipelines.yml | 18 ++---------------- 1 file changed, 2 insertions(+), 16 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 1160689d84..f76ff241e5 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -3,23 +3,9 @@ # Add steps that build, run tests, deploy, and more: # https://aka.ms/yaml -trigger: - branches: - include: - - master - - 202??? - paths: - exclude: - - .github +trigger: none -pr: - branches: - include: - - master - - 202??? - paths: - exclude: - - .github +pr: none name: $(TeamProject)_$(Build.DefinitionName)_$(SourceBranchName)_$(Date:yyyyMMdd)$(Rev:.r) From 86a9a7b1a4bd1446edd17237b6c420d31f26478d Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Mon, 30 Mar 2026 14:39:17 +0800 Subject: [PATCH 11/13] [ci/build]: Upgrade SONiC package versions (#25954) [202405] Upgrade SONiC package Versions --- .../versions-deb-bookworm | 43 +- .../versions-deb-bookworm-arm64 | 5 + .../versions-deb-bookworm-armhf | 6 +- .../build-sonic-slave-bookworm/versions-py3 | 10 - .../versions-py3-all-arm64 | 10 + .../versions-py3-all-armhf | 10 + .../versions-deb-bullseye | 6 - .../build-sonic-slave-bullseye/versions-py3 | 1 - files/build/versions/default/versions-docker | 19 +- files/build/versions/default/versions-git | 30 +- files/build/versions/default/versions-mirror | 41 +- files/build/versions/default/versions-web | 254 +------ .../versions-deb-bookworm | 56 +- .../versions-deb-bullseye | 42 +- .../versions-deb-bookworm | 18 +- .../versions-deb-bookworm-arm64 | 14 + .../versions-deb-bookworm-armhf | 14 + .../versions-deb-bullseye | 17 +- .../docker-dash-engine/versions-deb-focal | 50 +- .../docker-database/versions-deb-bookworm | 20 +- .../docker-dhcp-relay/versions-deb-bookworm | 18 +- .../docker-eventd/versions-deb-bookworm | 18 +- .../docker-fpm-frr/versions-deb-bookworm | 22 +- .../versions-deb-bullseye | 18 +- .../versions-deb-bullseye | 12 +- .../docker-gbsyncd-vs/versions-deb-bookworm | 88 +-- .../dockers/docker-lldp/versions-deb-bookworm | 24 +- .../docker-macsec/versions-deb-bookworm | 18 +- .../dockers/docker-mux/versions-deb-bookworm | 18 +- .../dockers/docker-nat/versions-deb-bookworm | 18 +- .../docker-orchagent/versions-deb-bookworm | 18 +- .../versions-deb-bookworm | 46 +- .../docker-platform-monitor/versions-py3 | 2 +- .../dockers/docker-ptf/versions-deb-buster | 139 ++++ .../versions/dockers/docker-ptf/versions-py2 | 2 + .../versions-deb-bookworm | 18 +- .../docker-sflow/versions-deb-bookworm | 18 +- .../dockers/docker-snmp/versions-deb-bookworm | 36 +- .../docker-sonic-gnmi/versions-deb-bookworm | 18 +- .../versions-deb-bookworm | 26 +- .../docker-sonic-vs/versions-deb-bullseye | 71 +- .../versions-deb-bullseye | 36 +- .../versions-deb-bullseye | 12 +- .../versions-deb-bullseye | 36 +- .../docker-syncd-brcm/versions-deb-bullseye | 12 +- .../versions-deb-bookworm | 14 +- .../docker-syncd-mlnx/versions-deb-bookworm | 56 +- .../dockers/docker-syncd-mlnx/versions-py3 | 2 +- .../versions-deb-bookworm-arm64 | 6 +- .../versions-deb-bookworm-armhf | 6 +- .../docker-syncd-vs/versions-deb-bookworm | 88 +-- .../docker-teamd/versions-deb-bookworm | 18 +- .../versions-deb-bookworm | 622 ++++++++---------- .../versions-deb-bookworm-arm64 | 39 +- .../versions-deb-bookworm-armhf | 17 +- .../versions-deb-bullseye | 500 +++++++------- .../versions-deb-bullseye-arm64 | 27 + .../versions-deb-bullseye-armhf | 16 +- .../dockers/sonic-slave-bullseye/versions-py3 | 6 +- .../versions-py3-all-arm64 | 1 + .../versions-py3-all-armhf | 1 + .../sonic-slave-buster/versions-deb-buster | 14 +- .../versions-deb-buster-arm64 | 8 + .../versions-deb-buster-armhf | 7 + .../dockers/sonic-slave-buster/versions-py2 | 1 - .../dockers/sonic-slave-buster/versions-py3 | 1 - .../host-base-image/versions-deb-bookworm | 58 +- .../versions/host-image/versions-deb-bookworm | 178 +++-- .../host-image/versions-deb-bookworm-arm64 | 14 + .../host-image/versions-deb-bookworm-armhf | 13 +- 70 files changed, 1569 insertions(+), 1554 deletions(-) create mode 100644 files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-arm64 create mode 100644 files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-arm64 create mode 100644 files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-armhf create mode 100644 files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-arm64 create mode 100644 files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-armhf create mode 100644 files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-arm64 create mode 100644 files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-armhf diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm index 003d871691..78e44de9db 100644 --- a/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm @@ -1,17 +1,13 @@ -applibs==1.mlnx.4.7.2164 -applibs-dev==1.mlnx.4.7.2164 +applibs==1.mlnx.4.7.2202 +applibs-dev==1.mlnx.4.7.2202 kernel-mft-dkms==4.28.0-96 libdashapi==1.0.0 -libnl-3-200==3.5.0-1 -libnl-3-dev==3.5.0-1 libnl-cli-3-200==3.5.0-1 libnl-cli-3-dev==3.5.0-1 libnl-genl-3-200==3.5.0-1 libnl-genl-3-dev==3.5.0-1 libnl-nf-3-200==3.5.0-1 libnl-nf-3-dev==3.5.0-1 -libnl-route-3-200==3.5.0-1 -libnl-route-3-dev==3.5.0-1 libsai==1.0.0 libsaimetadata==1.0.0 libsaimetadata-dev==1.0.0 @@ -30,9 +26,8 @@ libteamdctl0==1.31-1 libyang==1.0.73 libyang-cpp==1.0.73 libyang-dev==1.0.73 -linux-headers-6.1.0-22-2-amd64==6.1.94-1 -linux-headers-6.1.0-22-2-arm64==6.1.94-1 -linux-headers-6.1.0-22-2-common==6.1.94-1 +linux-headers-6.1.0-29-2-amd64==6.1.123-1 +linux-headers-6.1.0-29-2-common==6.1.123-1 p4lang-bmv2==1.15.0-7 p4lang-p4c==1.2.4.2-2 p4lang-pi==0.1.0-15 @@ -42,18 +37,18 @@ sonic-mgmt-common==1.0.0 sonic-mgmt-common-codegen==1.0.0 sonic-platform-pddf==1.1 sonic-platform-pddf-sym==1.1 -sx-acl-helper==1.mlnx.4.7.2164 -sx-acl-helper-dev==1.mlnx.4.7.2164 -sx-complib==1.mlnx.4.7.2164 -sx-complib-dev==1.mlnx.4.7.2164 -sx-examples==1.mlnx.4.7.2164 -sx-examples-dev==1.mlnx.4.7.2164 -sx-gen-utils==1.mlnx.4.7.2164 -sx-gen-utils-dev==1.mlnx.4.7.2164 -sx-hash-calc==1.mlnx.4.7.2164 -sx-obj-desc-lib==1.mlnx.4.7.2164 -sx-obj-desc-lib-dev==1.mlnx.4.7.2164 -sxd-libs==1.mlnx.4.7.2164 -sxd-libs-dev==1.mlnx.4.7.2164 -wjh-libs==1.mlnx.4.7.2164 -wjh-libs-dev==1.mlnx.4.7.2164 +sx-acl-helper==1.mlnx.4.7.2202 +sx-acl-helper-dev==1.mlnx.4.7.2202 +sx-complib==1.mlnx.4.7.2202 +sx-complib-dev==1.mlnx.4.7.2202 +sx-examples==1.mlnx.4.7.2202 +sx-examples-dev==1.mlnx.4.7.2202 +sx-gen-utils==1.mlnx.4.7.2202 +sx-gen-utils-dev==1.mlnx.4.7.2202 +sx-hash-calc==1.mlnx.4.7.2202 +sx-obj-desc-lib==1.mlnx.4.7.2202 +sx-obj-desc-lib-dev==1.mlnx.4.7.2202 +sxd-libs==1.mlnx.4.7.2202 +sxd-libs-dev==1.mlnx.4.7.2202 +wjh-libs==1.mlnx.4.7.2202 +wjh-libs-dev==1.mlnx.4.7.2202 diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-arm64 b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-arm64 new file mode 100644 index 0000000000..fa982362e0 --- /dev/null +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-arm64 @@ -0,0 +1,5 @@ +libnl-3-200==3.5.0-1 +libnl-3-dev==3.5.0-1 +libnl-route-3-200==3.5.0-1 +libnl-route-3-dev==3.5.0-1 +linux-headers-6.1.0-29-2-arm64==6.1.123-1 diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-armhf b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-armhf index 7c9c07cd20..1a06d5afcd 100644 --- a/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-armhf +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-deb-bookworm-armhf @@ -1 +1,5 @@ -linux-headers-6.1.0-22-2-armmp==6.1.94-1 +libnl-3-200==3.5.0-1 +libnl-3-dev==3.5.0-1 +libnl-route-3-200==3.5.0-1 +libnl-route-3-dev==3.5.0-1 +linux-headers-6.1.0-29-2-armmp==6.1.123-1 diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-py3 b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3 index 2d993a8831..ddc951dc90 100644 --- a/files/build/versions/build/build-sonic-slave-bookworm/versions-py3 +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3 @@ -1,7 +1,5 @@ -bitarray==2.8.1 blessed==1.20.0 cffi==1.17.1 -click==7.0 click-log==0.4.0 colorful==0.5.6 deepdiff==6.2.2 @@ -18,29 +16,21 @@ jsondiff==2.0.0 jsonpatch==1.33 jsonpointer==3.0.0 jsonschema==2.6.0 -lxml==4.9.1 natsort==6.2.1 netaddr==0.8.0 netifaces==0.11.0 ordered-set==4.1.0 paramiko==2.11.0 -pexpect==4.9.0 prefixed==0.9.0 prettyprinter==0.18.0 -ptyprocess==0.7.0 pycairo==1.26.1 pycparser==2.22 pynacl==1.5.0 -pyroute2==0.7.12 python-arptable==0.0.2 -pyyaml==6.0.1 scp==0.14.5 semantic-version==2.10.0 systemd-python==235 tabulate==0.9.0 toposort==1.6 -urllib3==2.2.1 -wcwidth==0.2.13 www-authenticate==0.9.2 xmltodict==0.12.0 -zipp==1.2.0 diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-arm64 b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-arm64 new file mode 100644 index 0000000000..21b0fc6308 --- /dev/null +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-arm64 @@ -0,0 +1,10 @@ +bitarray==2.8.1 +click==7.0 +lxml==4.9.1 +pexpect==4.9.0 +ptyprocess==0.7.0 +pyroute2==0.7.12 +pyyaml==6.0.1 +urllib3==2.2.1 +wcwidth==0.2.13 +zipp==1.2.0 diff --git a/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-armhf b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-armhf new file mode 100644 index 0000000000..21b0fc6308 --- /dev/null +++ b/files/build/versions/build/build-sonic-slave-bookworm/versions-py3-all-armhf @@ -0,0 +1,10 @@ +bitarray==2.8.1 +click==7.0 +lxml==4.9.1 +pexpect==4.9.0 +ptyprocess==0.7.0 +pyroute2==0.7.12 +pyyaml==6.0.1 +urllib3==2.2.1 +wcwidth==0.2.13 +zipp==1.2.0 diff --git a/files/build/versions/build/build-sonic-slave-bullseye/versions-deb-bullseye b/files/build/versions/build/build-sonic-slave-bullseye/versions-deb-bullseye index 1a89e443ed..17bdd7abef 100644 --- a/files/build/versions/build/build-sonic-slave-bullseye/versions-deb-bullseye +++ b/files/build/versions/build/build-sonic-slave-bullseye/versions-deb-bullseye @@ -1,20 +1,14 @@ libdashapi==1.0.0 -libnl-3-200==3.5.0-1 -libnl-3-dev==3.5.0-1 libnl-cli-3-200==3.5.0-1 libnl-cli-3-dev==3.5.0-1 libnl-genl-3-200==3.5.0-1 libnl-genl-3-dev==3.5.0-1 libnl-nf-3-200==3.5.0-1 libnl-nf-3-dev==3.5.0-1 -libnl-route-3-200==3.5.0-1 -libnl-route-3-dev==3.5.0-1 libprotobuf-dev==3.21.12-3 libprotobuf-lite32==3.21.12-3 libprotobuf32==3.21.12-3 libprotoc32==3.21.12-3 -libsai==1.13.0-1 -libsai-dev==1.13.0-1 libsaimetadata==1.0.0 libsaimetadata-dev==1.0.0 libsairedis==1.0.0 diff --git a/files/build/versions/build/build-sonic-slave-bullseye/versions-py3 b/files/build/versions/build/build-sonic-slave-bullseye/versions-py3 index daa0a22aee..78ec299b1e 100644 --- a/files/build/versions/build/build-sonic-slave-bullseye/versions-py3 +++ b/files/build/versions/build/build-sonic-slave-bullseye/versions-py3 @@ -1,4 +1,3 @@ -bitarray==2.8.1 blessed==1.20.0 cffi==1.16.0 charset-normalizer==3.3.2 diff --git a/files/build/versions/default/versions-docker b/files/build/versions/default/versions-docker index a83ad7c008..f4469d798a 100644 --- a/files/build/versions/default/versions-docker +++ b/files/build/versions/default/versions-docker @@ -1,15 +1,14 @@ -amd64:amd64/debian:bookworm==sha256:bda78cde0d4088e50a7d0808f25ab74acfccb85399bf76ecd423d3b8311a3535 +amd64:amd64/debian:bookworm==sha256:270b5f6cc46f9524caaf66085f9ace4036f74bd2dd8f9e66b5b50a36ca137ce4 amd64:amd64/debian:bullseye==sha256:da5c2dc5e036efbfa25b4a0abfb41e497a44c3e9ab630e8ef6699600790511e7 -amd64:debian:bookworm==sha256:4abf773f2a570e6873259c4e3ba16de6c6268fb571fd46ec80be7c67822823b3 -amd64:debian:bullseye==sha256:63904b1442dc0bb1e7a7a7065b3ba0d10d4e300f984115a40d371827fe4e3a85 +amd64:debian:bookworm==sha256:bc960ef50e6feed90686c593361df158517556ed1d2d98e5d1df3724024e0f49 +amd64:debian:bullseye==sha256:f58b816c2acc96e3e1dfe6b6c166c3d52b5541571ac4fa72a64a0bb5beaf25a3 amd64:debian:buster==sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 amd64:p4lang/behavioral-model@sha256:ce45720e28a96a50f275c1b511cd84c2558b62f2cf7a7e506765183bc3fb2e32==sha256:ce45720e28a96a50f275c1b511cd84c2558b62f2cf7a7e506765183bc3fb2e32 -arm64:arm64v8/debian:bookworm==sha256:05756ae01444c0375b552f4c32cb045e363539ecca6ddca095cc72e857597fb1 -arm64:arm64v8/debian:bullseye==sha256:07d5f21f56183e3d6cb776e71c01be68e0b925ff890cc5802bfc0d3abc1168a2 -arm64:debian:bookworm==sha256:4abf773f2a570e6873259c4e3ba16de6c6268fb571fd46ec80be7c67822823b3 -arm64:debian:bullseye==sha256:63904b1442dc0bb1e7a7a7065b3ba0d10d4e300f984115a40d371827fe4e3a85 +arm64:arm64v8/debian:bookworm==sha256:aaa40f164e34010e35cee8937aca52d56406ba71f79cf78102479661b98ce2b8 +arm64:debian:bookworm==sha256:bc960ef50e6feed90686c593361df158517556ed1d2d98e5d1df3724024e0f49 +arm64:debian:bullseye==sha256:f58b816c2acc96e3e1dfe6b6c166c3d52b5541571ac4fa72a64a0bb5beaf25a3 arm64:debian:buster==sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 -armhf:arm32v7/debian:bookworm==sha256:115f4e607d4b100a1632d68d3ecf096ca5c0be75b54b7be094a0417f79c6347b -armhf:debian:bookworm==sha256:4abf773f2a570e6873259c4e3ba16de6c6268fb571fd46ec80be7c67822823b3 -armhf:debian:bullseye==sha256:63904b1442dc0bb1e7a7a7065b3ba0d10d4e300f984115a40d371827fe4e3a85 +armhf:arm32v7/debian:bookworm==sha256:4f36f3cd29a211a615dfec6f878cf621dfe8708ab1dad3aef3c688b0dd01262d +armhf:debian:bookworm==sha256:bc960ef50e6feed90686c593361df158517556ed1d2d98e5d1df3724024e0f49 +armhf:debian:bullseye==sha256:f58b816c2acc96e3e1dfe6b6c166c3d52b5541571ac4fa72a64a0bb5beaf25a3 armhf:debian:buster==sha256:58ce6f1271ae1c8a2006ff7d3e54e9874d839f573d8009c20154ad0f2fb0a225 diff --git a/files/build/versions/default/versions-git b/files/build/versions/default/versions-git index 9db419ff5b..a2d83cc1a3 100644 --- a/files/build/versions/default/versions-git +++ b/files/build/versions/default/versions-git @@ -1,23 +1,23 @@ -https://chromium.googlesource.com/chromium/tools/depot_tools.git==ee429f3694c51421c8b2f2af52049102ef43bca9 -https://github.com/aristanetworks/swi-tools.git==989aec67105f565836364b4167c9566c132d0b54 -https://github.com/CESNET/libyang.git==03e294d83b610f89e8ba7b2156a80dc0ad534443 +https://chromium.googlesource.com/chromium/tools/depot_tools.git==f5c816648d9488daa15d8bbf937e57173d68a666 +https://github.com/aristanetworks/swi-tools.git==6db86f5983426d272e541a61e0add79b3fec5b1e +https://github.com/CESNET/libyang.git==3d07c3a71534a580c3960907da17568eff7e5c64 https://github.com/daveolson53/audisp-tacplus.git==559c9f22edd4f2dea0ecedffb3ad9502b12a75b6 https://github.com/daveolson53/libnss-tacplus.git==19008ab68d9d504aa58eb34d5f564755a1613b8b https://github.com/dyninc/OpenBFDD.git==e35f43ad8d2b3f084e96a84c392528a90d05a287 -https://github.com/flashrom/flashrom.git==971ea27d16650fa092963af70b18beb48a5c45f2 -https://github.com/FreeRADIUS/freeradius-server.git==3455a28039ed4bf1dcff3e84668fba0e94f1e69b -https://github.com/FreeRADIUS/pam_radius.git==00db27a1ec4cc16e6bdce4e8bbbab4484ac1318c +https://github.com/flashrom/flashrom.git==870b2622194eddb0888e71a94cf348ede6d67d62 +https://github.com/FreeRADIUS/freeradius-server.git==9cbcc0fc6278c78dd66ff165bc47584c8cfd6bdf +https://github.com/FreeRADIUS/pam_radius.git==d17fc655f0007728b67d0d25c0ca20b6048aa7a1 +https://github.com/google/gnxi.git==612869a62faaaf2956ed60296ad801513ab62d29 https://github.com/jeroennijhof/pam_tacplus.git==b839c440e33c36eced9dcbc287fcfe6237c4c4ce -https://github.com/lguohan/gnxi.git==3adf8b97755b49947e465b5a14645f11e79fa0cd https://github.com/Mellanox/libpsample.git==62bb27d9a49424e45191eee81df7ce0d8c74e774 -https://github.com/openconfig/oc-pyang.git==4607fd1987d4f586aba03b40f222015cb3ef8161 -https://github.com/p4lang/ptf.git==d016cdfe99f2d609cc9c7fd7f8c414b56d5b3c5c +https://github.com/openconfig/oc-pyang.git==a116b53b1c1a149bc9a5d42dc26f3d0ab797846a +https://github.com/p4lang/ptf.git==46da7eb9373216c72bbb4342894416f5448559a0 https://github.com/p4lang/scapy-vxlan.git==85ffe83da156568ee47a0750f638227e6e1d7479 -https://github.com/redis/librdb.git==daa7e33e7334f5efbe9d0f8076f9a612089bb662 -https://github.com/sflow/host-sflow==9cea724e67186c8bc3e4e6257363e1c6610b7229 -https://github.com/sflow/sflowtool==0214abc75db159e11584c5400c80c0dc38ab4bb7 -https://github.com/sonic-net/DASH.git==abd0d1a591adbd18c0586776fab741aa2a857660 -https://github.com/thom311/libnl==dd0889f0077c05e9799c207c900526378046ef03 -https://salsa.debian.org/kernel-team/initramfs-tools.git==fe0846fea0879e7f7b206409eb0420a9e4fa2d68 +https://github.com/redis/librdb.git==a7065962cf434da1a909aa45107dafa7e45b5057 +https://github.com/sflow/host-sflow==05be6bd61bd9926cd8a0e0d837a69165fd8add71 +https://github.com/sflow/sflowtool==b843dce0e1ff447675506aa4c316cba1b6378af4 +https://github.com/sonic-net/DASH.git==62f9f0530609cc3420570f8f82c82f9bdeff1c32 +https://github.com/thom311/libnl==655a638d4e1f74be9256a3108ae2abb84827a9ce +https://salsa.debian.org/kernel-team/initramfs-tools.git==d9bf9bd591fdb90042e1626e8d3d3a9030161e4a https://salsa.debian.org/sk-guest/monit.git==c9da7ebb1f35dfba17b50b5969a6e75e29cbec0d https://salsa.debian.org/tai271828/rasdaemon.git==51a7f485f8b2e2ae43e613f19c5a387595174132 diff --git a/files/build/versions/default/versions-mirror b/files/build/versions/default/versions-mirror index 323783f5fe..45cb27f003 100644 --- a/files/build/versions/default/versions-mirror +++ b/files/build/versions/default/versions-mirror @@ -1,24 +1,21 @@ archive.ubuntu.com_ubuntu_dists_focal==2020-04-23T17:33:17Z -archive.ubuntu.com_ubuntu_dists_focal-backports==2025-02-19T04:19:13Z -archive.ubuntu.com_ubuntu_dists_focal-updates==2025-02-19T07:06:04Z -deb.nodesource.com_node%5f14.x_dists_bookworm==2023-02-17T00:35:29Z -deb.nodesource.com_node%5f14.x_dists_bullseye==2023-02-17T00:35:28Z -deb.nodesource.com_node%5f14.x_dists_buster==2023-02-17T00:35:28Z -debian==20260216T001359Z -debian-security==20260216T001506Z -download.docker.com_linux_debian_dists_bookworm==2025-02-18T23:03:46Z -download.docker.com_linux_debian_dists_bullseye==2025-02-18T23:03:46Z +archive.ubuntu.com_ubuntu_dists_focal-backports==2026-03-29T01:33:55Z +archive.ubuntu.com_ubuntu_dists_focal-updates==2026-03-29T01:29:18Z +debian==20260328T001452Z +debian-security==20260328T001523Z +download.docker.com_linux_debian_dists_bookworm==2026-03-26T16:16:51Z +download.docker.com_linux_debian_dists_bullseye==2026-03-26T16:16:51Z download.docker.com_linux_debian_dists_buster==2024-06-17T16:53:50Z -packages.trafficmanager.net_snapshot_debian-security_20250218T000849Z_dists_bookworm-security==2025-02-17T20:09:16Z -packages.trafficmanager.net_snapshot_debian-security_20250218T000849Z_dists_bullseye-security==2025-02-17T20:09:16Z -packages.trafficmanager.net_snapshot_debian-security_20250218T000849Z_dists_buster_updates==2024-12-29T19:56:34Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bookworm==2025-01-11T10:25:55Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bookworm-backports==2025-02-17T02:14:39Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bookworm-updates==2025-02-17T02:14:39Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bullseye==2024-08-31T11:02:15Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bullseye-backports==2025-02-17T02:14:39Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_bullseye-updates==2025-02-17T02:14:39Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_buster==2023-06-10T08:53:33Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_buster-backports==2024-03-09T20:54:54Z -packages.trafficmanager.net_snapshot_debian_20250217T063943Z_dists_buster-updates==2023-06-10T08:55:10Z -security.ubuntu.com_ubuntu_dists_focal-security==2025-02-19T10:11:46Z +packages.trafficmanager.net_snapshot_debian-security_20260328T001523Z_dists_bookworm-security==2026-03-27T22:37:19Z +packages.trafficmanager.net_snapshot_debian-security_20260328T001523Z_dists_bullseye-security==2026-03-27T22:37:19Z +packages.trafficmanager.net_snapshot_debian-security_20260328T001523Z_dists_buster_updates==2024-12-29T19:56:34Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bookworm==2026-01-10T22:28:35Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bookworm-backports==2026-03-27T20:11:22Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bookworm-updates==2026-03-27T20:11:22Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bullseye==2025-08-09T09:16:30Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bullseye-backports==2025-07-21T20:10:09Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_bullseye-updates==2025-08-09T08:55:05Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_buster==2023-06-10T08:53:33Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_buster-backports==2024-03-09T20:54:54Z +packages.trafficmanager.net_snapshot_debian_20260328T001452Z_dists_buster-updates==2023-06-10T08:55:10Z +security.ubuntu.com_ubuntu_dists_focal-security==2026-03-29T01:25:48Z diff --git a/files/build/versions/default/versions-web b/files/build/versions/default/versions-web index 3daacc70e4..2d237bb718 100644 --- a/files/build/versions/default/versions-web +++ b/files/build/versions/default/versions-web @@ -15,13 +15,13 @@ http://deb.debian.org/debian/pool/main/p/protobuf/protobuf_3.21.12-3.debian.tar. http://deb.debian.org/debian/pool/main/p/protobuf/protobuf_3.21.12-3.dsc==d8e34e7b07473c6903f9d245934524fb http://deb.debian.org/debian/pool/main/p/protobuf/protobuf_3.21.12.orig.tar.gz==d38562490234d8080bdbe8eb7baf937a http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-bmv2_1.15.0-7.debian.tar.xz==f4d249b77d4f8d120b229834aac02df5 -http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-bmv2_1.15.0-7.dsc==38011efbe33e6a461d36ca2c683e2019 +http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-bmv2_1.15.0-7.dsc==a57d0145fc829c3e2ca96fb024907909 http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-bmv2_1.15.0.orig.tar.gz==cbbb4a0d5b1e17dca0532c3ca761e05c http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-p4c_1.2.4.2-2.debian.tar.xz==7ea7d64c9147bd93a790af57693ce36f -http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-p4c_1.2.4.2-2.dsc==dfbdeaac367213500bfe65111a955d0f +http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-p4c_1.2.4.2-2.dsc==052c052d86fd586c98cc16be943c0afa http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-p4c_1.2.4.2.orig.tar.gz==b1008dffbe236d065c5557f2d4629aa9 http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-pi_0.1.0-15.debian.tar.xz==b9d8e4ce4cb66385250cf6dded0ef57a -http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-pi_0.1.0-15.dsc==ee4f5c84d621a5dbfbe368baad031af4 +http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-pi_0.1.0-15.dsc==cd7bf9a55f61578b7ec69adabb584200 http://download.opensuse.org/repositories/home:/p4lang/Debian_11/p4lang-pi_0.1.0.orig.tar.gz==551d3780d615557674e93fa11210499d http://www.mellanox.com/downloads/MFT/mft-4.28.0-96-x86_64-deb.tgz==f552e1faddc8f76fe4eb0b8902606c2a https://archive.apache.org/dist/thrift/0.14.1/thrift-0.14.1.tar.gz==c64434548438df2cb1e53fb27c600e85 @@ -31,232 +31,48 @@ https://deb.debian.org/debian/pool/main/k/kdump-tools/kdump-tools_1.8.1.tar.xz== https://deb.debian.org/debian/pool/main/libt/libteam/libteam_1.31-1.debian.tar.xz==26fef506b62eb28e3356781a707c2440 https://deb.debian.org/debian/pool/main/libt/libteam/libteam_1.31-1.dsc==f27b8eee722b8595ab45344e4bd3cbe7 https://deb.debian.org/debian/pool/main/libt/libteam/libteam_1.31.orig.tar.xz==eec2e9c38e9a4c2cdb7e4954d110a118 -https://deb.nodesource.com/gpgkey/nodesource.gpg.key==003b51a89a133b5db4cca98b2dea3117 -https://deb.nodesource.com/node_14.x/dists/bookworm/Release==249bac8daff55b81a1b40c2c283e317d -https://deb.nodesource.com/node_14.x/dists/bullseye/Release==6b7d50c433d129d4c6fd95bdf56070fa -https://deb.nodesource.com/node_14.x/dists/buster/Release==42875141604382f0abb4d047f645dfe1 -https://deb.nodesource.com/setup_14.x==c30873f4a513bb935afaf8f65e7de9e1 https://download.docker.com/linux/debian/gpg==1afae06b34a13c1b3d9cb61a26285a15 https://github.com/aristanetworks/sonic-firmware/raw/24716c4e03f223d8e18afff786ac427f6ac77fe0/phy/phy-credo_1.0_amd64.deb==14e233cd68bc5db22eb8c9e177242851 -https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64==438eb187c83e0cf08b5fb017c8c14bf9 -https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-arm64==b447192f4a103b1e927af9c65ffd6c8a -https://github.com/CentecNetworks/sonic-binaries/raw/master/amd64/sai/libsaictc-dev_1.13.0-1_amd64.deb==b2e4b33541d4ab5de4c1b8eb4a783761 -https://github.com/CentecNetworks/sonic-binaries/raw/master/amd64/sai/libsaictc_1.13.0-1_amd64.deb==fd5f2ddc1d9bc12c0e612154c63634cf -https://github.com/CentecNetworks/sonic-binaries/raw/master/amd64/third_party/advantech/_Susi4.so==5e1b8daef522c9da00af400abe25810b -https://github.com/CentecNetworks/sonic-binaries/raw/master/amd64/third_party/advantech/libSUSI-4.00.so.1==393a94b0abba146777e276e1febe0cb0 +https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64==2dc74b7ad6bdd6b6b08f6802d14fc1fd +https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-arm64==94415d08ed2f86a49375f25a7f2f9cca https://github.com/CumulusNetworks/ifupdown2/archive/3.0.0-1.tar.gz==755459b3a58fbc11625336846cea7420 https://github.com/Mellanox/sonic-bluefield-packages/releases/download/rshim-2.0.29-bookworm-amd64/rshim_2.0.29_amd64.deb==f78f52c7e36ddeb04602c11c95b10181 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2164/fw-SPC-rel-13_2014_2164-EVB.mfa==16dcbc2712a084428131c3d8b10d9bcb -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2164/fw-SPC2-rel-29_2014_2164-EVB.mfa==5444267d3ab7e443606e748bb0811294 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2164/fw-SPC3-rel-30_2014_2164-EVB.mfa==a4bf309c65aa842ceb53ea6c93de43b5 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2164/fw-SPC4-rel-34_2014_2164-EVB.mfa==d86794d3bbb8634ee58765b9aec481a3 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2202/fw-SPC-rel-13_2014_2202-EVB.mfa==b1065b3578a12bb6bd705bd5f394ca9c +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2202/fw-SPC2-rel-29_2014_2202-EVB.mfa==f0c0652522f528652c5d87c2457be1b6 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2202/fw-SPC3-rel-30_2014_2202-EVB.mfa==4699c47455b64c69f247c5795595211b +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/fw-2014.2202/fw-SPC4-rel-34_2014_2202-EVB.mfa==212724adb9050b5ba383395a930e79f8 https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sai-SAIBuild2405.30.0.12-bookworm-amd64/mlnx-sai-dbgsym_1.mlnx.SAIBuild2405.30.0.12_amd64.deb==a75a3df2d586b99a82ac9d82898e4293 https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sai-SAIBuild2405.30.0.12-bookworm-amd64/mlnx-sai_1.mlnx.SAIBuild2405.30.0.12_amd64.deb==734c26e367dd94f4be46185ab995e760 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/applibs-dev_1.mlnx.4.7.2164_amd64.deb==da4ba7876eb77ff31e4242dc341c13c9 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/applibs_1.mlnx.4.7.2164_amd64.deb==fa3700d128151fb71a0ec3aa998deaf4 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/python-sdk-api_1.mlnx.4.7.2164_amd64.deb==98b9e67c93bcbcc4e452267c6da29f25 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-acl-helper-dev_1.mlnx.4.7.2164_amd64.deb==01c38aa80b86d9566411fe7f8ed8da79 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-acl-helper_1.mlnx.4.7.2164_amd64.deb==bb66eb6bb8460cebed20cacd2b92d9b3 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-complib-dev_1.mlnx.4.7.2164_amd64.deb==8b45eb49a52f2ee6f6f6218afaece783 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-complib_1.mlnx.4.7.2164_amd64.deb==4998353a565d7a11d32ffbf3b089af80 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-examples-dev_1.mlnx.4.7.2164_amd64.deb==3bd3cb0e1a35a8b098ba9db00f8857c2 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-examples_1.mlnx.4.7.2164_amd64.deb==320c3e85f987fceadbabbdf41056fa56 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-gen-utils-dev_1.mlnx.4.7.2164_amd64.deb==00144b184353b0b85155aff806a02b0c -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-gen-utils_1.mlnx.4.7.2164_amd64.deb==367c5cc135be8a2dfb422b08b21e9fb1 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-hash-calc_1.mlnx.4.7.2164_amd64.deb==364194d729d33d6492123913930c737c -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-obj-desc-lib-dev_1.mlnx.4.7.2164_amd64.deb==e71f9ca977fa2c3f79d810af092f0c0e -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sx-obj-desc-lib_1.mlnx.4.7.2164_amd64.deb==bc009d9d0d25f2b0e8635ff5fbdbb33b -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sxd-libs-dev_1.mlnx.4.7.2164_amd64.deb==0d2175ee2f5e5aae751d0787a13f17f2 -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/sxd-libs_1.mlnx.4.7.2164_amd64.deb==422f22c34ad7c7d7f758763054563eed -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/wjh-libs-dev_1.mlnx.4.7.2164_amd64.deb==93fac32e682b70cb51e44db2d6f14e6c -https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2164-bookworm-amd64/wjh-libs_1.mlnx.4.7.2164_amd64.deb==c275627d17a68e0608f3d47dab72ee8c -https://github.com/Mellanox/Spectrum-SDK-Drivers/archive/refs/heads/4.7.2164.zip==b0e3bae4d4df64ff71e375bc6523f02d +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/applibs-dev_1.mlnx.4.7.2202_amd64.deb==d0e4b5d6c2e62649d735038f2aa8e202 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/applibs_1.mlnx.4.7.2202_amd64.deb==26c502187f80fff2abc6baba2dd7d9c9 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/python-sdk-api_1.mlnx.4.7.2202_amd64.deb==0afd8272a6d5ba97985a214eef973290 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-acl-helper-dev_1.mlnx.4.7.2202_amd64.deb==325771e8b6b19eecd3a0807fa71a58fc +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-acl-helper_1.mlnx.4.7.2202_amd64.deb==8b254fc2eea63c0dd944c3471ab1dac6 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-complib-dev_1.mlnx.4.7.2202_amd64.deb==3cc78b94ec5714858f5e6f831043b8a8 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-complib_1.mlnx.4.7.2202_amd64.deb==f524d359587a969b6671090f835e3aa1 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-examples-dev_1.mlnx.4.7.2202_amd64.deb==564cfe060d9e8ed9fddd68a65bb867bd +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-examples_1.mlnx.4.7.2202_amd64.deb==d286e722b34647c397d202907e9a5c23 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-gen-utils-dev_1.mlnx.4.7.2202_amd64.deb==790027ecb6dde692641651631c5ebe7c +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-gen-utils_1.mlnx.4.7.2202_amd64.deb==841f99e7687ab5d3a92fbd3ade47b250 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-hash-calc_1.mlnx.4.7.2202_amd64.deb==38a954afc630249c639ebf2003e2efeb +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-obj-desc-lib-dev_1.mlnx.4.7.2202_amd64.deb==cdcaf9a6d511c47b0a88e9e5431e34b5 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sx-obj-desc-lib_1.mlnx.4.7.2202_amd64.deb==30c811fca4439628a4db8b47bc765aa5 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sxd-libs-dev_1.mlnx.4.7.2202_amd64.deb==3f5ad2e3b2b052e23e8481ad9a95cc01 +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/sxd-libs_1.mlnx.4.7.2202_amd64.deb==706dc9d5a0485b3c759fcc215c807bdc +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/wjh-libs-dev_1.mlnx.4.7.2202_amd64.deb==c1af50f3a7532547e3d8a1c890577e1f +https://github.com/Mellanox/Spectrum-SDK-Drivers-SONiC-Bins/releases/download/sdk-4.7.2202-bookworm-amd64/wjh-libs_1.mlnx.4.7.2202_amd64.deb==edbdd74eb092e3d48278c8d153a6fdc2 +https://github.com/Mellanox/Spectrum-SDK-Drivers/archive/refs/heads/4.7.2202.zip==7e008a9fd42ec1506d936dfe6c88a9d3 https://github.com/nanomsg/nanomsg/archive/1.0.0.tar.gz==6f56ef28c93cee644e8c4aaaef7cfb55 -https://github.com/pensando/dsc-artifacts/blob/main/docker-dpu-base.gz?raw=true==26caa959af69bc5f895dce0cd02557a8 -https://github.com/pensando/dsc-artifacts/blob/main/libsai_1.10.1-0_arm64.deb?raw=true==f6f9619ecb727c0491431f3f019ac5b3 https://launchpad.net/debian/+archive/primary/+sourcefiles/bash/5.1-2/bash_5.1-2.debian.tar.xz==9d0cbd5f463f461c840c95f62a64d61b https://launchpad.net/debian/+archive/primary/+sourcefiles/bash/5.1-2/bash_5.1-2.dsc==be44c5a9fc12fb567a486f54b842dd9e https://launchpad.net/debian/+archive/primary/+sourcefiles/bash/5.1-2/bash_5.1.orig.tar.xz==6ddb13b6111f601db08fc7c72afa0263 https://raw.githubusercontent.com/p4lang/ptf/master/ptf_nn/ptf_nn_agent.py==b16e05ede6aed78f7abadae1185f487d https://repo1.maven.org/maven2/org/openapitools/openapi-generator-cli/4.2.3/openapi-generator-cli-4.2.3.jar==cda48eb414c8b4585e280c3fb2656e24 -https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1-2+deb12u3.debian.tar.xz==d964cfd6d26adb608cd507af3007831a -https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1-2+deb12u3.dsc==d72fe6644fab4225d7ca09c4e43446a3 +https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1-2+deb12u5.debian.tar.xz==5b7453ca259106ec2cfe413482f51ed2 +https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1-2+deb12u5.dsc==4598828e248aa58052ed6ae9509ca9f2 https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1.orig.tar.gz==f78b2acac4bb299629a8c58ddc3fac63 -https://sh.rustup.rs==803438f3247334c786f7ad7efebf662e -https://packages.trafficmanager.net/public/debian-security/pool/updates/main/l/linux/linux_6.1.94-1.debian.tar.xz==d56c205bc0c7cf511619540631c58ab7 -https://packages.trafficmanager.net/public/debian-security/pool/updates/main/l/linux/linux_6.1.94-1.dsc==0fbe62084fd643bd0b67446bc5f14fcb -https://packages.trafficmanager.net/public/debian-security/pool/updates/main/l/linux/linux_6.1.94.orig.tar.xz==eb98947ccae11f6bcd33e835b05a932f -https://packages.trafficmanager.net/public/debian/pool/main/l/lldpd/lldpd_1.0.16-1+deb12u1.debian.tar.xz==d909b30dc9442dee628fccc1c2a99ae1 -https://packages.trafficmanager.net/public/debian/pool/main/l/lldpd/lldpd_1.0.16-1+deb12u1.dsc==d566d5f5ff64eaff40c2013468919c73 -https://packages.trafficmanager.net/public/debian/pool/main/l/lldpd/lldpd_1.0.16.orig.tar.gz==3b8aa604d32a4acc34345987d2d7d631 -https://packages.trafficmanager.net/public/debian/pool/main/l/lldpd/lldpd_1.0.16.orig.tar.gz.asc==273f3e4f9f68314c3e59f694adf08024 -https://packages.trafficmanager.net/public/debian/pool/main/liby/libyang/libyang2_2.0.112-6.debian.tar.xz==aa798a069f506a243d337c18600477e5 -https://packages.trafficmanager.net/public/debian/pool/main/liby/libyang/libyang2_2.0.112-6.dsc==da4924086edc4911c6fca21ca46fdb1d -https://packages.trafficmanager.net/public/debian/pool/main/liby/libyang/libyang2_2.0.112.orig.tar.gz==4ac414ef27f3c4d14f96c2f49c58c2be -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.7.3+dfsg-5.debian.tar.xz==ad957e90207d0669beb2109e4e325def -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.7.3+dfsg-5.dsc==2443e4dffbdb020e7ab4f947a7904912 -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.7.3+dfsg.orig.tar.xz==6391ae27eb1ae34ff5530712bb1c4209 -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9+dfsg-4+deb11u1.debian.tar.xz==a3e626b1ed5adc26430e1727d81641df -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9+dfsg-4+deb11u1.dsc==a36ed553b5034b7400d9e9a8d529b27e -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9+dfsg.orig.tar.xz==6c2d346ce3320e8999500497e9bacc99 -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9.3+dfsg-2.debian.tar.xz==a0561270faa298995d7106ff5c0de3bb -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9.3+dfsg-2.dsc==2f4fdd92831f79763efbc96457949f6b -https://packages.trafficmanager.net/public/debian/pool/main/n/net-snmp/net-snmp_5.9.3+dfsg.orig.tar.xz==cb1dd152d16ea204e7b026937f152b38 -https://packages.trafficmanager.net/public/20190307/bcmcmd==b8aefc751bdf93218716bca6797460ff -https://packages.trafficmanager.net/public/20190307/dsserve==f9d4b815ebb9be9f755dedca8a51170d -https://packages.trafficmanager.net/public/credosai/libsaicredo-blackhawk_0.9.9_amd64.deb==182675ac51a6991518970235a4a54e97 -https://packages.trafficmanager.net/public/credosai/libsaicredo-owl_0.9.9_amd64.deb==4ca8424702c340dd7186c5246b2479c3 -https://packages.trafficmanager.net/public/credosai/libsaicredo_0.9.9_amd64.deb==f5d57e2b88110f7dcfbf4dfb4a4d1335 -https://packages.trafficmanager.net/public/debian/socat_1.7.4.1-3.debian.tar.xz==e8d1e99b4b9e93f5dde860f6d55f42e3 -https://packages.trafficmanager.net/public/debian/socat_1.7.4.1-3.dsc==df3ed0dd965589fd09bf6a2920bc273e -https://packages.trafficmanager.net/public/debian/socat_1.7.4.1.orig.tar.gz==780d14908dc1a6aa2790de376ab56b7a -https://packages.trafficmanager.net/public/debian/thrift_0.11.0-4.debian.tar.xz==52ad383b97ad051f4d1d25b54aaad569 -https://packages.trafficmanager.net/public/debian/thrift_0.11.0-4.dsc==6917fe7b3ada9313be94713dd50fee7b -https://packages.trafficmanager.net/public/debian/thrift_0.11.0.orig.tar.gz==0be59730ebce071eceaf6bfdb8d3a20e -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/golang-1.19-doc_1.19.8-2+fips_all.deb==8d04d49c27e4e66fdeed7f332d5fa1fb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/golang-1.19-go_1.19.8-2+fips_amd64.deb==0dfdcc063eab209c229a210311d40fcd -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/golang-1.19-src_1.19.8-2+fips_all.deb==a22c0fd6d7e121c0e835bf657c8c017c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/golang-1.19_1.19.8-2+fips_all.deb==f9f022be39abe8dd4311ed7fc6444b23 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/krb5-multidev_1.20.1-2+deb12u1+fips_amd64.deb==89be2bb2c171185756935fca6d1e1bae -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libgssapi-krb5-2_1.20.1-2+deb12u1+fips_amd64.deb==e8721ccead7f45a573173af84578a7ec -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libgssrpc4_1.20.1-2+deb12u1+fips_amd64.deb==cce1932e25c8f6c5bb9f1e82663efded -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libk5crypto3_1.20.1-2+deb12u1+fips_amd64.deb==8ee1850d5e215a1f97133a051d2e7e01 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libkadm5clnt-mit12_1.20.1-2+deb12u1+fips_amd64.deb==bf24d179a8ee26686e0c555b064b6357 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libkadm5srv-mit12_1.20.1-2+deb12u1+fips_amd64.deb==57bc0414beffb0949801cc5fab146cce -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libkrb5-3_1.20.1-2+deb12u1+fips_amd64.deb==a4b3f945bf8f9a3ed316207cbddae11b -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libkrb5-dev_1.20.1-2+deb12u1+fips_amd64.deb==7bf44b5d4f0dbdd91a14d80a82176c2c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libkrb5support0_1.20.1-2+deb12u1+fips_amd64.deb==6cad2b8416f023cee7909ab1c6744d2c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libpython3.11-minimal_3.11.2-6+fips_amd64.deb==cb51139b976ceef6a5ea23d1831b180f -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libpython3.11-stdlib_3.11.2-6+fips_amd64.deb==d0dc5cfbde7047f4b0e14ac647df3acb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libpython3.11_3.11.2-6+fips_amd64.deb==ec02a205e74aaae3c4810d15e45b74c0 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libssl-dev_3.0.11-1~deb12u2+fips_amd64.deb==d4bf4601aee5d87dc82b22f302df4e55 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libssl-doc_3.0.11-1~deb12u2+fips_all.deb==8d8f1e277a3ca66f8c0c2ec6d78c91dc -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/libssl3_3.0.11-1~deb12u2+fips_amd64.deb==ac996125962b57c9fa46f775c5cf352c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/openssh-client_9.2p1-2+deb12u3+fips_amd64.deb==44bfa5e5955dd04b5febce6440e8b99a -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/openssh-server_9.2p1-2+deb12u3+fips_amd64.deb==59dcd185ad5f0e501a716b3a5d5dca3f -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/openssh-sftp-server_9.2p1-2+deb12u3+fips_amd64.deb==891b8b70a67bb10cfeb2ab9f12bc23fb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/openssl_3.0.11-1~deb12u2+fips_amd64.deb==878fb280d5caf22ab3f3342d277c83da -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/python3.11-minimal_3.11.2-6+fips_amd64.deb==d7552b6281fa8fdab00e59f9ed60b046 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/python3.11_3.11.2-6+fips_amd64.deb==03e9bd8c303e27a5d0c879bc49ea7b5e -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/ssh_9.2p1-2+deb12u3+fips_all.deb==bced861a53845b3d3a45e48a032a3ca1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/amd64/symcrypt-openssl_1.5.2_amd64.deb==d42089fb21fb35823b46335cde2a9e3c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/golang-1.19-doc_1.19.8-2+fips_all.deb==8d04d49c27e4e66fdeed7f332d5fa1fb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/golang-1.19-go_1.19.8-2+fips_arm64.deb==52a872e19f52398ce5eb11d7be896b23 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/golang-1.19-src_1.19.8-2+fips_all.deb==a22c0fd6d7e121c0e835bf657c8c017c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/golang-1.19_1.19.8-2+fips_all.deb==f9f022be39abe8dd4311ed7fc6444b23 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/krb5-multidev_1.20.1-2+deb12u1+fips_arm64.deb==8341ce97f8bd2f7f9d2432fd3cdc5947 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libgssapi-krb5-2_1.20.1-2+deb12u1+fips_arm64.deb==4d4ea806d1fc78686db6eab735dfc298 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libgssrpc4_1.20.1-2+deb12u1+fips_arm64.deb==ff5828c04c4459ad0fb8927ad1820ec2 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libk5crypto3_1.20.1-2+deb12u1+fips_arm64.deb==64be0c39eeca71710ede0506da03a8b9 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libkadm5clnt-mit12_1.20.1-2+deb12u1+fips_arm64.deb==d78e0160dcadd47b8e1d0bc71b85ba60 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libkadm5srv-mit12_1.20.1-2+deb12u1+fips_arm64.deb==e975f668a37b70b5affa10d80da9ffed -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libkrb5-3_1.20.1-2+deb12u1+fips_arm64.deb==2cd148e12a4d777951f5d05330c746b2 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libkrb5-dev_1.20.1-2+deb12u1+fips_arm64.deb==ace9bf091b269f6e511f672aa2a9981d -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libkrb5support0_1.20.1-2+deb12u1+fips_arm64.deb==3aa024e10ae78c3635b869a18336dcc4 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libpython3.11-minimal_3.11.2-6+fips_arm64.deb==2cea19de4dcf96a9a64d39978ed6e12f -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libpython3.11-stdlib_3.11.2-6+fips_arm64.deb==1a273b4741fbfe0b5c40e6b119281f8a -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libpython3.11_3.11.2-6+fips_arm64.deb==3746564f0fe3b6fc36013a3e804976f0 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libssl-dev_3.0.11-1~deb12u2+fips_arm64.deb==9e92e45ec063264e97aefa7608d70484 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libssl-doc_3.0.11-1~deb12u2+fips_all.deb==8d8f1e277a3ca66f8c0c2ec6d78c91dc -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/libssl3_3.0.11-1~deb12u2+fips_arm64.deb==5cab90da7ed5c580fd268c699f2cb7d8 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/openssh-client_9.2p1-2+deb12u3+fips_arm64.deb==7e3d382fcaad9d32851cf9ad46a5b338 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/openssh-server_9.2p1-2+deb12u3+fips_arm64.deb==c4f44546f000c694e1fcd91c330703f1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/openssh-sftp-server_9.2p1-2+deb12u3+fips_arm64.deb==20c59007a55f9cbf52e2a41fa68e03dd -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/openssl_3.0.11-1~deb12u2+fips_arm64.deb==ab50eb9adb15022854cbcfd899c63795 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/python3.11-minimal_3.11.2-6+fips_arm64.deb==ebfcee1b19ef42f14b2630460bcff2dd -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/python3.11_3.11.2-6+fips_arm64.deb==78386bb5b012dc8eb57781be41a0bd3e -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/ssh_9.2p1-2+deb12u3+fips_all.deb==bced861a53845b3d3a45e48a032a3ca1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/arm64/symcrypt-openssl_1.5.2_arm64.deb==06067de5bb32a65f5f72340e265d26ff -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/golang-1.19-doc_1.19.8-2+fips_all.deb==8d04d49c27e4e66fdeed7f332d5fa1fb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/golang-1.19-go_1.19.8-2+fips_armhf.deb==f365e2ec1ec60abebee33eb9b3dcd380 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/golang-1.19-src_1.19.8-2+fips_all.deb==a22c0fd6d7e121c0e835bf657c8c017c -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/golang-1.19_1.19.8-2+fips_all.deb==f9f022be39abe8dd4311ed7fc6444b23 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/krb5-multidev_1.20.1-2+deb12u1+fips_armhf.deb==b295653312b2abc93989aeb7dbb7f39d -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libgssapi-krb5-2_1.20.1-2+deb12u1+fips_armhf.deb==5cacd503b63742869e4aad1d8e369624 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libgssrpc4_1.20.1-2+deb12u1+fips_armhf.deb==65074127d51365a3c53d7647aa5ffab1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libk5crypto3_1.20.1-2+deb12u1+fips_armhf.deb==d9e70bcd1c510df543bb95ed4acf9e2a -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libkadm5clnt-mit12_1.20.1-2+deb12u1+fips_armhf.deb==16255322d48b422191e7c2819882db19 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libkadm5srv-mit12_1.20.1-2+deb12u1+fips_armhf.deb==65f3fd49882d9675e41089ff2783c9eb -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libkrb5-3_1.20.1-2+deb12u1+fips_armhf.deb==39f8c0284559e9a8af01985db6346195 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libkrb5-dev_1.20.1-2+deb12u1+fips_armhf.deb==f6a3a165388d1781152c2bc8dfdf71fd -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libkrb5support0_1.20.1-2+deb12u1+fips_armhf.deb==afadb629c44242b2d4b90f5c2f0fd2f1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libpython3.11-minimal_3.11.2-6+fips_armhf.deb==a107f4d8fe43dfd63c71ff349fa2613b -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libpython3.11-stdlib_3.11.2-6+fips_armhf.deb==e8161e5933d3334e22799ec575956a10 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libpython3.11_3.11.2-6+fips_armhf.deb==96ff5a5bd171f62c16d324f38ece1c93 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libssl-dev_3.0.11-1~deb12u2+fips_armhf.deb==76e7ec8db99b3d7ec9edb1f10c1929a4 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libssl-doc_3.0.11-1~deb12u2+fips_all.deb==8d8f1e277a3ca66f8c0c2ec6d78c91dc -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/libssl3_3.0.11-1~deb12u2+fips_armhf.deb==ed173a0484f2ba8dc906965c54932e9a -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/openssh-client_9.2p1-2+deb12u3+fips_armhf.deb==71a3fdd9163a406f5e3136d27fe70a13 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/openssh-server_9.2p1-2+deb12u3+fips_armhf.deb==4156b567df1e62f37419833e478f786f -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/openssh-sftp-server_9.2p1-2+deb12u3+fips_armhf.deb==c66d06358d595d36047d9de91e8e8289 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/openssl_3.0.11-1~deb12u2+fips_armhf.deb==16fabc4d46070e429b0468e248e62de2 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/python3.11-minimal_3.11.2-6+fips_armhf.deb==1b90ab24ec9605d8e59532260bf2f568 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/python3.11_3.11.2-6+fips_armhf.deb==d173b9f1e9f49f40b637e13ee9ba9b5a -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/ssh_9.2p1-2+deb12u3+fips_all.deb==bced861a53845b3d3a45e48a032a3ca1 -https://packages.trafficmanager.net/public/fips/bookworm/1.5.2/armhf/symcrypt-openssl_1.5.2_armhf.deb==3df48bba3ff30a021454e715bb730faa -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/golang-1.15-doc_1.15.15-1~deb11u4+fips_all.deb==72ead09139135d4ecd91b76c89128567 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/golang-1.15-go_1.15.15-1~deb11u4+fips_amd64.deb==145e103357a915cc759cc93de602b631 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/golang-1.15-src_1.15.15-1~deb11u4+fips_amd64.deb==1c1a46d5599be92777702643c37d5751 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/golang-1.15_1.15.15-1~deb11u4+fips_all.deb==847bc1fc5ce9c8ebae5176947ab34d30 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/krb5-multidev_1.18.3-6+deb11u5+fips_amd64.deb==9eb0c26c9c7bd9eec9add9ddb6a57bf1 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libgssapi-krb5-2_1.18.3-6+deb11u5+fips_amd64.deb==d0d9c85b296b5563a429ed064e1cc257 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libgssrpc4_1.18.3-6+deb11u5+fips_amd64.deb==67f3f55fdd10e5a624bb5a845c33b1cb -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libk5crypto3_1.18.3-6+deb11u5+fips_amd64.deb==2ed232b59a46f7b6738e025a65b8c010 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libkadm5clnt-mit12_1.18.3-6+deb11u5+fips_amd64.deb==86acef261636d537fd8ebf6ce28f7dc0 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libkadm5srv-mit12_1.18.3-6+deb11u5+fips_amd64.deb==646b68e63a5b6f8330b04fab114f99cd -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libkrb5-3_1.18.3-6+deb11u5+fips_amd64.deb==ea7e4a309d6ed97ca1c4a48d5ddfb9a3 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libkrb5-dev_1.18.3-6+deb11u5+fips_amd64.deb==401f015291cd9e3a2c345eebddf34721 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libkrb5support0_1.18.3-6+deb11u5+fips_amd64.deb==b71b54d0955d6c80a50b003b72361bb5 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libpython3.9-minimal_3.9.2-1+fips_amd64.deb==12667ba9da299c70ee70b77a3a64abe9 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libpython3.9-stdlib_3.9.2-1+fips_amd64.deb==e4210ec6ad5c77c135963476e4ca987b -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libpython3.9_3.9.2-1+fips_amd64.deb==c405132eacaf059c7c903f853d48be7e -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libssl-dev_1.1.1n-0+deb11u5+fips_amd64.deb==7deccb6cb0197bd9dc257d54505533cf -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libssl-doc_1.1.1n-0+deb11u5+fips_all.deb==3ac7462c370d85e42c03b11d26f35016 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/libssl1.1_1.1.1n-0+deb11u5+fips_amd64.deb==6a4505b82957d711e983e03364275521 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/openssh-client_8.4p1-5+deb11u2+fips_amd64.deb==1fb734b040398b0fb9c674385253b993 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/openssh-server_8.4p1-5+deb11u2+fips_amd64.deb==8ec9f1fbfedd6c36312c5181d9950b58 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/openssh-sftp-server_8.4p1-5+deb11u2+fips_amd64.deb==02e8be0633aff33497655261256eadca -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/openssl_1.1.1n-0+deb11u5+fips_amd64.deb==ee086d7e1fb0cfd36513ec242381af53 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/python3.9-minimal_3.9.2-1+fips_amd64.deb==f32fecabfdf2fd63a089af8a369d6595 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/python3.9_3.9.2-1+fips_amd64.deb==30be224443931a2a3428aa270b87384a -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/ssh_8.4p1-5+deb11u2+fips_all.deb==d1f50482046b4b4e39fd2a0273f5ecef -https://packages.trafficmanager.net/public/fips/bullseye/0.13/amd64/symcrypt-openssl_0.13_amd64.deb==e834c681609b5cf1ab4707083185831d -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/golang-1.15-doc_1.15.15-1~deb11u4+fips_all.deb==72ead09139135d4ecd91b76c89128567 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/golang-1.15-go_1.15.15-1~deb11u4+fips_arm64.deb==b59f315800ca2ec31de79136dfb8979d -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/golang-1.15-src_1.15.15-1~deb11u4+fips_arm64.deb==0038c68ed1e3adb1b43434af81cff678 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/golang-1.15_1.15.15-1~deb11u4+fips_all.deb==847bc1fc5ce9c8ebae5176947ab34d30 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/krb5-multidev_1.18.3-6+deb11u5+fips_arm64.deb==d43272032d876de0b89b46733d2c3175 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libgssapi-krb5-2_1.18.3-6+deb11u5+fips_arm64.deb==4ed07c27af219c18252afb76edc29f71 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libgssrpc4_1.18.3-6+deb11u5+fips_arm64.deb==97103b9f05d5146716a2daaee86a0630 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libk5crypto3_1.18.3-6+deb11u5+fips_arm64.deb==e91928ddd8a6a421977bc2795d51e18a -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libkadm5clnt-mit12_1.18.3-6+deb11u5+fips_arm64.deb==9804ba8c37b4c19f010f8098c25fab31 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libkadm5srv-mit12_1.18.3-6+deb11u5+fips_arm64.deb==5a8c6911a733213c525ce53259f2c9c6 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libkrb5-3_1.18.3-6+deb11u5+fips_arm64.deb==8a58b2ea63935c87c1d2002704288f90 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libkrb5-dev_1.18.3-6+deb11u5+fips_arm64.deb==ace98b760ba3dda467c8d9c82f8c1226 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libkrb5support0_1.18.3-6+deb11u5+fips_arm64.deb==53b0013f0dd89dd9b5a5fa06ff260dbc -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libpython3.9-minimal_3.9.2-1+fips_arm64.deb==c6f2c45ed249e385993bd173ba1da5ed -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libpython3.9-stdlib_3.9.2-1+fips_arm64.deb==848ac1cd3b379f99da90da095a98212d -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libpython3.9_3.9.2-1+fips_arm64.deb==edae5c269e2c401873e7cff3d4f93a7a -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libssl-dev_1.1.1n-0+deb11u5+fips_arm64.deb==2116b0e949a521b02098f01aee5a33d4 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libssl-doc_1.1.1n-0+deb11u5+fips_all.deb==3ac7462c370d85e42c03b11d26f35016 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/libssl1.1_1.1.1n-0+deb11u5+fips_arm64.deb==a6a6a6f2d23d91398f44570da6e2e80c -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/openssh-client_8.4p1-5+deb11u2+fips_arm64.deb==b30c745ca94e392740c67225802e9068 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/openssh-server_8.4p1-5+deb11u2+fips_arm64.deb==8ab6d9e3bac9d486bda5664e40f634ef -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/openssh-sftp-server_8.4p1-5+deb11u2+fips_arm64.deb==73c51fa8f165a014571c2bdbd843c517 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/openssl_1.1.1n-0+deb11u5+fips_arm64.deb==5c16b501e97678e7f55c616afa6423bb -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/python3.9-minimal_3.9.2-1+fips_arm64.deb==146da01b9364f54ec022b77f2502cb1c -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/python3.9_3.9.2-1+fips_arm64.deb==4d6307dabcd3060235d6188cfa0346b8 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/ssh_8.4p1-5+deb11u2+fips_all.deb==d1f50482046b4b4e39fd2a0273f5ecef -https://packages.trafficmanager.net/public/fips/bullseye/0.13/arm64/symcrypt-openssl_0.13_arm64.deb==596652c7d5df5981844f5236d5615d40 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/armhf/golang-1.15-go_1.15.15-1~deb11u4+fips_armhf.deb==62c200bd7bf79df11cfdace12a351a73 -https://packages.trafficmanager.net/public/fips/bullseye/0.13/armhf/golang-1.15-src_1.15.15-1~deb11u4+fips_armhf.deb==644145b4473d863edc1aaf98dfc92acf -https://packages.trafficmanager.net/public/onie/onie-recovery-x86_64-kvm_x86_64-r0.iso==54e11e450a461b1f4ae39c3ce3f15eff -https://packages.trafficmanager.net/public/onie/onie-recovery-x86_64-kvm_x86_64_4_asic-r0.iso==1d8b8d3fa37f842d0184b5205be22be9 -https://packages.trafficmanager.net/public/onie/onie-recovery-x86_64-kvm_x86_64_6_asic-r0.iso==58494305d4ac201daedf9364a1018a1b -https://packages.trafficmanager.net/public/sai/bcmpai/REL_3.11/3.11/libsaibroncos_3.11_amd64.deb==6e21a16126e833516a9659d4c35c284e -https://static.rust-lang.org/rustup/dist/aarch64-unknown-linux-gnu/rustup-init==21b27f4a24c066ff3c4158998d4f794b -https://static.rust-lang.org/rustup/dist/armv7-unknown-linux-gnueabihf/rustup-init==13b8d6e5edef35414c2e28db31576656 -https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init==eedd8a5a6ebbc921301660acb99646a5 -https://storage.googleapis.com/golang/go1.15.15.linux-amd64.tar.gz==b75227438c6129b5013da053b3aa3f38 -https://storage.googleapis.com/golang/go1.15.15.linux-arm64.tar.gz==6d721146a9195592d92a80cf27d475f9 -https://storage.googleapis.com/golang/go1.15.15.linux-armv6l.tar.gz==23d140bbeedc978b954de1a199a22bdb +https://security.debian.org/pool/updates/main/o/openssh/openssh_9.2p1.orig.tar.gz.asc==4b8baeab4dd1ff732a02e94c227cf788 +https://sh.rustup.rs==f5b23855b2cbe6b44a3f82433e979992 +https://static.rust-lang.org/rustup/dist/aarch64-unknown-linux-gnu/rustup-init==c37eeefaa45bbf75ada591d3c641a6f0 +https://static.rust-lang.org/rustup/dist/armv7-unknown-linux-gnueabihf/rustup-init==6c66f99d772fc8522706535cc66195b1 +https://static.rust-lang.org/rustup/dist/x86_64-unknown-linux-gnu/rustup-init==a13dde59a1295a966c41031b1e7faa32 diff --git a/files/build/versions/dockers/docker-base-bookworm/versions-deb-bookworm b/files/build/versions/dockers/docker-base-bookworm/versions-deb-bookworm index 04c3aa1f26..9a3f8a4948 100644 --- a/files/build/versions/dockers/docker-base-bookworm/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-base-bookworm/versions-deb-bookworm @@ -1,30 +1,30 @@ -ca-certificates==20230311 -curl==7.88.1-10+deb12u8 +ca-certificates==20230311+deb12u1 +curl==7.88.1-10+deb12u14 iproute2==6.1.0-3 -jq==1.6-2.1 +jq==1.6-2.1+deb12u1 less==590-2.1~deb12u2 -libatomic1==12.2.0-14 -libbpf1==1:1.1.0-1 +libatomic1==12.2.0-14+deb12u1 +libbpf1==1:1.1.2-0+deb12u1 libbrotli1==1.0.9-2+b6 libbsd0==0.11.7-2 -libcap2-bin==1:2.66-4 -libcurl4==7.88.1-10+deb12u8 +libcap2-bin==1:2.66-4+deb12u2+b2 +libcurl4==7.88.1-10+deb12u14 libdaemon0==0.14-7.1 libdbus-1-3==1.14.10-1~deb12u1 libelf1==0.188-2.1 libestr0==0.1.11-1 -libexpat1==2.5.0-1+deb12u1 +libexpat1==2.5.0-1+deb12u2 libfastjson4==1.2304.0-1 libgdbm-compat4==1.23-3 libgdbm6==1.23-3 -libgssapi-krb5-2==1.20.1-2+deb12u2 +libgssapi-krb5-2==1.20.1-2+deb12u4 libjansson4==2.14-2 libjemalloc2==5.3.0-1 -libjq1==1.6-2.1 +libjq1==1.6-2.1+deb12u1 libk5crypto3==1.20.1-2+deb12u1+fips libkeyutils1==1.6.3-2 -libkrb5-3==1.20.1-2+deb12u2 -libkrb5support0==1.20.1-2+deb12u2 +libkrb5-3==1.20.1-2+deb12u4 +libkrb5support0==1.20.1-2+deb12u4 libldap-2.5-0==2.5.13+dfsg-5 liblognorm5==2.0.6-4 liblzf1==3.6-3 @@ -34,19 +34,19 @@ libnghttp2-14==1.52.0-1+deb12u2 libnorm1==1.5.9+dfsg-2 libnsl2==1.3.0-2 libonig5==6.9.8-1 -libperl5.36==5.36.0-7+deb12u1 +libperl5.36==5.36.0-7+deb12u3 libpgm-5.3-0==5.3.128~dfsg-2 libproc2-0==2:4.0.2-3 libpsl5==0.21.2-1 libpython3-stdlib==3.11.2-1+b1 -libpython3.11-minimal==3.11.2-6+deb12u5 -libpython3.11-stdlib==3.11.2-6+deb12u5 +libpython3.11-minimal==3.11.2-6+deb12u6 +libpython3.11-stdlib==3.11.2-6+deb12u6 libreadline8==8.2-1.3 librtmp1==2.4+20151223.gitfa8646d.1-2+b2 libsasl2-2==2.1.28+dfsg-10 libsasl2-modules-db==2.1.28+dfsg-10 -libsodium23==1.0.18-1 -libsqlite3-0==3.40.1-2+deb12u1 +libsodium23==1.0.18-1+deb12u1 +libsqlite3-0==3.40.1-2+deb12u2 libssh2-1==1.10.0-3+b1 libssl-dev==3.0.11-1~deb12u2+fips libssl3==3.0.11-1~deb12u2+fips @@ -56,25 +56,25 @@ libwrap0==7.6.q-32 libxtables12==1.8.9-2 libzmq5==4.3.4-6 media-types==10.0.0 -net-tools==2.10-0.1 +net-tools==2.10-0.1+deb12u2 openssl==3.0.11-1~deb12u2+fips -perl==5.36.0-7+deb12u1 -perl-modules-5.36==5.36.0-7+deb12u1 +perl==5.36.0-7+deb12u3 +perl-modules-5.36==5.36.0-7+deb12u3 procps==2:4.0.2-3 python-is-python3==3.11.2-1+deb12u1 python3==3.11.2-1+b1 python3-distutils==3.11.2-3 python3-lib2to3==3.11.2-3 python3-minimal==3.11.2-1+b1 -python3-pkg-resources==66.1.1-1+deb12u1 -python3-setuptools==66.1.1-1+deb12u1 +python3-pkg-resources==66.1.1-1+deb12u2 +python3-setuptools==66.1.1-1+deb12u2 python3-wheel==0.38.4-2 -python3.11==3.11.2-6+deb12u5 -python3.11-minimal==3.11.2-6+deb12u5 +python3.11==3.11.2-6+deb12u6 +python3.11-minimal==3.11.2-6+deb12u6 readline-common==8.2-1.3 -redis-tools==5:7.0.15-1~deb12u3 -rsyslog==8.2302.0-1 +redis-tools==5:7.0.15-1~deb12u6 +rsyslog==8.2302.0-1+deb12u1 socat==1.7.4.1-3 symcrypt-openssl==0.1 -vim-common==2:9.0.1378-2 -vim-tiny==2:9.0.1378-2 +vim-common==2:9.0.1378-2+deb12u2 +vim-tiny==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-base-bullseye/versions-deb-bullseye b/files/build/versions/dockers/docker-base-bullseye/versions-deb-bullseye index 918861773e..b0645b167e 100644 --- a/files/build/versions/dockers/docker-base-bullseye/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-base-bullseye/versions-deb-bullseye @@ -1,26 +1,26 @@ -ca-certificates==20210119 -curl==7.74.0-1.3+deb11u14 +ca-certificates==20230311+deb12u1~deb11u1 +curl==7.74.0-1.3+deb11u16 iproute2==5.10.0-4 -jq==1.6-2.1 +jq==1.6-2.1+deb11u1 less==551-2+deb11u2 libatomic1==10.2.1-6 -libbpf0==1:0.3-2 +libbpf0==1:0.3-2+deb11u1 libbrotli1==1.0.9-2+b2 libbsd0==0.11.3-1+deb11u1 -libcap2==1:2.44-1 -libcap2-bin==1:2.44-1 -libcurl4==7.74.0-1.3+deb11u14 +libcap2==1:2.44-1+deb11u1 +libcap2-bin==1:2.44-1+deb11u1 +libcurl4==7.74.0-1.3+deb11u16 libdaemon0==0.14-7.1 libdbus-1-3==1.12.28-0+deb11u1 libelf1==0.183-1 libestr0==0.1.10-2.1+b1 -libexpat1==2.2.10-2+deb11u6 -libfastjson4==0.99.9-1 +libexpat1==2.2.10-2+deb11u7 +libfastjson4==0.99.9-1+deb11u1 libgdbm-compat4==1.19-2 libgdbm6==1.19-2 libjansson4==2.13.1-1.1 libjemalloc2==5.2.1-3 -libjq1==1.6-2.1 +libjq1==1.6-2.1+deb11u1 libk5crypto3==1.18.3-6+deb11u5+fips libldap-2.4-2==2.4.57+dfsg-3+deb11u1 liblognorm5==2.0.5-1.1 @@ -39,13 +39,13 @@ libpgm-5.3-0==5.3.128~dfsg-2 libprocps8==2:3.3.17-5 libpsl5==0.21.0-1.2 libpython3-stdlib==3.9.2-3 -libpython3.9-minimal==3.9.2-1+deb11u2 -libpython3.9-stdlib==3.9.2-1+deb11u2 +libpython3.9-minimal==3.9.2-1+deb11u5 +libpython3.9-stdlib==3.9.2-1+deb11u5 libreadline8==8.1-1 librtmp1==2.4+20151223.gitfa8646d.1-2+b2 libsasl2-2==2.1.27+dfsg-2.1+deb11u1 libsasl2-modules-db==2.1.27+dfsg-2.1+deb11u1 -libsodium23==1.0.18-1 +libsodium23==1.0.18-1+deb11u1 libsqlite3-0==3.34.1-3+deb11u1 libssh2-1==1.9.0-2+deb11u1 libssl-dev==1.1.1n-0+deb11u5+fips @@ -56,7 +56,7 @@ libzmq5==4.3.4-1+deb11u1 lua-bitop==1.0.2-5 lua-cjson==2.1.0+dfsg-2.1 media-types==4.0.0 -net-tools==1.60+git20181103.0eebece-1+deb11u1 +net-tools==1.60+git20181103.0eebece-1+deb11u2 openssl==1.1.1n-0+deb11u5+fips perl==5.32.1-4+deb11u4 perl-modules-5.32==5.32.1-4+deb11u4 @@ -66,13 +66,13 @@ python3==3.9.2-3 python3-distutils==3.9.2-1 python3-lib2to3==3.9.2-1 python3-minimal==3.9.2-3 -python3.9==3.9.2-1+deb11u2 -python3.9-minimal==3.9.2-1+deb11u2 +python3.9==3.9.2-1+deb11u5 +python3.9-minimal==3.9.2-1+deb11u5 readline-common==8.1-1 -redis-tools==5:6.0.16-1+deb11u5 -rsyslog==8.2302.0-1~bpo11+1 +redis-tools==5:6.0.16-1+deb11u8 +rsyslog==8.2102.0-2+deb11u1 socat==1.7.4.1-3 symcrypt-openssl==0.1 -vim-common==2:8.2.2434-3+deb11u1 -vim-tiny==2:8.2.2434-3+deb11u1 -xxd==2:8.2.2434-3+deb11u1 +vim-common==2:8.2.2434-3+deb11u3 +vim-tiny==2:8.2.2434-3+deb11u3 +xxd==2:8.2.2434-3+deb11u3 diff --git a/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm index 75fdaefd2c..0f0b94991a 100644 --- a/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm @@ -1,38 +1,24 @@ apt-utils==2.6.1 binutils-common==2.40-2 dpkg-dev==1.21.22 -icu-devtools==72.1-3 libboost-serialization1.74.0==1.74.0+ds1-21 -libc-dev-bin==2.36-9+deb12u9 -libc6-dev==2.36-9+deb12u9 libcrypt-dev==1:4.4.33-2 libhiredis0.14==0.14.1-3 -libicu-dev==72.1-3 -libicu72==72.1-3 libjs-jquery==3.6.1+dfsg+~3.5.14-1 -libk5crypto3==1.20.1-2+deb12u2 +libk5crypto3==1.20.1-2+deb12u4 libnl-3-200==3.5.0-1 libnl-cli-3-200==3.5.0-1 libnl-genl-3-200==3.5.0-1 libnl-nf-3-200==3.5.0-1 libnl-route-3-200==3.5.0-1 -libnsl-dev==1.3.0-2 libpcre3==2:8.39-15 -libpython3.11==3.11.2-6+deb12u5 +libpython3.11==3.11.2-6+deb12u6 libswsscommon==1.0.0 -libtirpc-dev==1.3.3+ds-1 -libxml2==2.9.14+dfsg-1.3~deb12u1 -libxml2-dev==2.9.14+dfsg-1.3~deb12u1 -libxslt1-dev==1.1.35-1 -libxslt1.1==1.1.35-1 libyaml-0-2==0.2.5-1 libyang==1.0.73 libyang-cpp==1.0.73 -linux-libc-dev==6.1.128-1 python3-swsscommon==1.0.0 python3-yaml==6.0-3+b2 python3-yang==1.0.73 -rpcsvc-proto==1.4.3-1 sonic-db-cli==1.0.0 sonic-eventd==1.0.0-0 -zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-arm64 b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-arm64 new file mode 100644 index 0000000000..5099a3225e --- /dev/null +++ b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-arm64 @@ -0,0 +1,14 @@ +icu-devtools==72.1-3+deb12u1 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 +libicu-dev==72.1-3+deb12u1 +libicu72==72.1-3+deb12u1 +libnsl-dev==1.3.0-2 +libtirpc-dev==1.3.3+ds-1 +libxml2==2.9.14+dfsg-1.3~deb12u5 +libxml2-dev==2.9.14+dfsg-1.3~deb12u5 +libxslt1-dev==1.1.35-1+deb12u3 +libxslt1.1==1.1.35-1+deb12u3 +linux-libc-dev==6.1.164-1 +rpcsvc-proto==1.4.3-1 +zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-armhf b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-armhf new file mode 100644 index 0000000000..5099a3225e --- /dev/null +++ b/files/build/versions/dockers/docker-config-engine-bookworm/versions-deb-bookworm-armhf @@ -0,0 +1,14 @@ +icu-devtools==72.1-3+deb12u1 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 +libicu-dev==72.1-3+deb12u1 +libicu72==72.1-3+deb12u1 +libnsl-dev==1.3.0-2 +libtirpc-dev==1.3.3+ds-1 +libxml2==2.9.14+dfsg-1.3~deb12u5 +libxml2-dev==2.9.14+dfsg-1.3~deb12u5 +libxslt1-dev==1.1.35-1+deb12u3 +libxslt1.1==1.1.35-1+deb12u3 +linux-libc-dev==6.1.164-1 +rpcsvc-proto==1.4.3-1 +zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-config-engine-bullseye/versions-deb-bullseye b/files/build/versions/dockers/docker-config-engine-bullseye/versions-deb-bullseye index 5ae8ed05c5..ffcdd2fad5 100644 --- a/files/build/versions/dockers/docker-config-engine-bullseye/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-config-engine-bullseye/versions-deb-bullseye @@ -1,32 +1,19 @@ apt-utils==2.2.4 dpkg-dev==1.20.13 -icu-devtools==67.1-7 libboost-serialization1.74.0==1.74.0-9 -libc-dev-bin==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 -libcrypt-dev==1:4.4.18-4 +libc6==2.31-13+deb11u13 libhiredis0.14==0.14.1-1 -libicu-dev==67.1-7 -libicu67==67.1-7 libjs-jquery==3.5.1+dfsg+~3.5.5-7 libnl-3-200==3.5.0-1 libnl-cli-3-200==3.5.0-1 libnl-genl-3-200==3.5.0-1 libnl-nf-3-200==3.5.0-1 libnl-route-3-200==3.5.0-1 -libnsl-dev==1.3.0-2 -libpython3.9==3.9.2-1+deb11u2 +libpython3.9==3.9.2-1+deb11u5 libswsscommon==1.0.0 -libtirpc-dev==1.3.1-1+deb11u1 -libxml2==2.9.10+dfsg-6.7+deb11u5 -libxml2-dev==2.9.10+dfsg-6.7+deb11u5 -libxslt1-dev==1.1.34-4+deb11u1 -libxslt1.1==1.1.34-4+deb11u1 libyang==1.0.73 libyang-cpp==1.0.73 -linux-libc-dev==5.10.226-1 python3-swsscommon==1.0.0 python3-yang==1.0.73 sonic-db-cli==1.0.0 sonic-eventd==1.0.0-0 -zlib1g-dev==1:1.2.11.dfsg-2+deb11u2 diff --git a/files/build/versions/dockers/docker-dash-engine/versions-deb-focal b/files/build/versions/dockers/docker-dash-engine/versions-deb-focal index 79b6ed652a..1243b80692 100644 --- a/files/build/versions/dockers/docker-dash-engine/versions-deb-focal +++ b/files/build/versions/dockers/docker-dash-engine/versions-deb-focal @@ -1,12 +1,12 @@ -binutils==2.34-6ubuntu1.9 -binutils-common==2.34-6ubuntu1.9 -binutils-x86-64-linux-gnu==2.34-6ubuntu1.9 +binutils==2.34-6ubuntu1.11 +binutils-common==2.34-6ubuntu1.11 +binutils-x86-64-linux-gnu==2.34-6ubuntu1.11 build-essential==12.8ubuntu1.1 ca-certificates==20240203~20.04.1 cpp==4:9.3.0-1ubuntu2 cpp-9==9.4.0-1ubuntu1~20.04.2 cron==3.0pl1-136ubuntu1 -dirmngr==2.2.19-3ubuntu2.2 +dirmngr==2.2.19-3ubuntu2.5 dpkg-dev==1.19.7ubuntu3.2 fakeroot==1.24-1 g++==4:9.3.0-1ubuntu2 @@ -15,16 +15,16 @@ gcc==4:9.3.0-1ubuntu2 gcc-10-base==10.5.0-1ubuntu1~20.04 gcc-9==9.4.0-1ubuntu1~20.04.2 gcc-9-base==9.4.0-1ubuntu1~20.04.2 -gnupg==2.2.19-3ubuntu2.2 -gnupg-l10n==2.2.19-3ubuntu2.2 -gnupg-utils==2.2.19-3ubuntu2.2 -gpg==2.2.19-3ubuntu2.2 -gpg-agent==2.2.19-3ubuntu2.2 -gpg-wks-client==2.2.19-3ubuntu2.2 -gpg-wks-server==2.2.19-3ubuntu2.2 -gpgconf==2.2.19-3ubuntu2.2 -gpgsm==2.2.19-3ubuntu2.2 -gpgv==2.2.19-3ubuntu2.2 +gnupg==2.2.19-3ubuntu2.5 +gnupg-l10n==2.2.19-3ubuntu2.5 +gnupg-utils==2.2.19-3ubuntu2.5 +gpg==2.2.19-3ubuntu2.5 +gpg-agent==2.2.19-3ubuntu2.5 +gpg-wks-client==2.2.19-3ubuntu2.5 +gpg-wks-server==2.2.19-3ubuntu2.5 +gpgconf==2.2.19-3ubuntu2.5 +gpgsm==2.2.19-3ubuntu2.5 +gpgv==2.2.19-3ubuntu2.5 libalgorithm-diff-perl==1.19.03-2 libalgorithm-diff-xs-perl==0.04-6 libalgorithm-merge-perl==0.08-3 @@ -32,10 +32,10 @@ libasan5==9.4.0-1ubuntu1~20.04.2 libasn1-8-heimdal==7.7.0+dfsg-1ubuntu1.4 libassuan0==2.5.3-7ubuntu2 libatomic1==10.5.0-1ubuntu1~20.04 -libbinutils==2.34-6ubuntu1.9 +libbinutils==2.34-6ubuntu1.11 libcc1-0==10.5.0-1ubuntu1~20.04 -libctf-nobfd0==2.34-6ubuntu1.9 -libctf0==2.34-6ubuntu1.9 +libctf-nobfd0==2.34-6ubuntu1.11 +libctf0==2.34-6ubuntu1.11 libdpkg-perl==1.19.7ubuntu3.2 libestr0==0.1.10-2.1 libexpat1==2.2.9-1ubuntu0.8 @@ -67,10 +67,10 @@ libnpth0==1.6-1 libperl5.30==5.30.0-9ubuntu0.5 libpopt0==1.16-14 libpython3-dev==3.8.2-0ubuntu2 -libpython3.8==3.8.10-0ubuntu1~20.04.14 -libpython3.8-dev==3.8.10-0ubuntu1~20.04.14 -libpython3.8-minimal==3.8.10-0ubuntu1~20.04.14 -libpython3.8-stdlib==3.8.10-0ubuntu1~20.04.14 +libpython3.8==3.8.10-0ubuntu1~20.04.18 +libpython3.8-dev==3.8.10-0ubuntu1~20.04.18 +libpython3.8-minimal==3.8.10-0ubuntu1~20.04.18 +libpython3.8-stdlib==3.8.10-0ubuntu1~20.04.18 libquadmath0==10.5.0-1ubuntu1~20.04 libroken18-heimdal==7.7.0+dfsg-1ubuntu1.4 libstdc++-9-dev==9.4.0-1ubuntu1~20.04.2 @@ -81,7 +81,7 @@ libwind0-heimdal==7.7.0+dfsg-1ubuntu1.4 logrotate==3.14.0-4ubuntu3 make==4.2.1-1.2 netbase==6.1 -openssl==1.1.1f-1ubuntu2.23 +openssl==1.1.1f-1ubuntu2.24 patch==2.7.6-6 perl==5.30.0-9ubuntu0.5 perl-base==5.30.0-9ubuntu0.5 @@ -91,9 +91,9 @@ python-pip-whl==20.0.2-5ubuntu1.11 python3-dev==3.8.2-0ubuntu2 python3-pip==20.0.2-5ubuntu1.11 python3-wheel==0.34.2-1ubuntu0.1 -python3.8==3.8.10-0ubuntu1~20.04.14 -python3.8-dev==3.8.10-0ubuntu1~20.04.14 -python3.8-minimal==3.8.10-0ubuntu1~20.04.14 +python3.8==3.8.10-0ubuntu1~20.04.18 +python3.8-dev==3.8.10-0ubuntu1~20.04.18 +python3.8-minimal==3.8.10-0ubuntu1~20.04.18 rsyslog==8.2001.0-1ubuntu1.3 supervisor==4.1.0-1ubuntu1 ucf==3.0038+nmu1 diff --git a/files/build/versions/dockers/docker-database/versions-deb-bookworm b/files/build/versions/dockers/docker-database/versions-deb-bookworm index f4c2645ccf..9f261119f5 100644 --- a/files/build/versions/dockers/docker-database/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-database/versions-deb-bookworm @@ -3,32 +3,32 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdashapi==1.0.0 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libprotobuf-lite32==3.21.12-3 libprotobuf32==3.21.12-3 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 -redis-server==5:7.0.15-1~deb12u3 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 +redis-server==5:7.0.15-1~deb12u6 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-dhcp-relay/versions-deb-bookworm b/files/build/versions/dockers/docker-dhcp-relay/versions-deb-bookworm index b3e60ca36d..7cac6c4a66 100644 --- a/files/build/versions/dockers/docker-dhcp-relay/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-dhcp-relay/versions-deb-bookworm @@ -5,7 +5,7 @@ isc-dhcp-relay-dbgsym==4.4.3-P1-2 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 @@ -13,9 +13,9 @@ libedit2==3.1-20221030-2 libevent-2.1-7==2.1.12-stable-8 libexplain51==1.4.D001-12+b1 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libjsoncpp-dev==1.9.5-4 libjsoncpp25==1.9.5-4 @@ -23,13 +23,13 @@ liblua5.1-0==5.1.5-9 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 lsof==4.95.0-1 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sonic-dhcp6relay==1.0.0-0 sonic-dhcp6relay-dbgsym==1.0.0-0 @@ -39,5 +39,5 @@ sonic-rsyslog-plugin==1.0.0-0 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-eventd/versions-deb-bookworm b/files/build/versions/dockers/docker-eventd/versions-deb-bookworm index 07c80f1e81..23863a2ecd 100644 --- a/files/build/versions/dockers/docker-eventd/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-eventd/versions-deb-bookworm @@ -3,29 +3,29 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sonic-eventd-dbgsym==1.0.0-0 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-fpm-frr/versions-deb-bookworm b/files/build/versions/dockers/docker-fpm-frr/versions-deb-bookworm index 65ace687c6..f7985fa520 100644 --- a/files/build/versions/dockers/docker-fpm-frr/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-fpm-frr/versions-deb-bookworm @@ -10,15 +10,15 @@ libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libc-ares2==1.18.1-3 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libjson-c5==0.16-2 liblua5.1-0==5.1.5-9 @@ -27,20 +27,20 @@ libpci3==1:3.9.0-4 libpopt0==1.19+dfsg-1 libsensors-config==1:3.6.0-7.1 libsensors5==1:3.6.0-7.1 -libsnmp-base==5.9.3+dfsg-2 -libsnmp40==5.9.3+dfsg-2 +libsnmp-base==5.9.3+dfsg-2+deb12u1 +libsnmp40==5.9.3+dfsg-2+deb12u1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 libyang2==2.0.112-6 libyang2-dbgsym==2.0.112-6 logrotate==3.21.0-1 lsof==4.95.0-1 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 pci.ids==0.0~2023.04.11-1 sensible-utils==0.0.17+nmu1 sonic-rsyslog-plugin==1.0.0-0 @@ -48,5 +48,5 @@ sshpass==1.09-1+b1 strace==6.1-0.1 swss-dbg==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-gbsyncd-broncos/versions-deb-bullseye b/files/build/versions/dockers/docker-gbsyncd-broncos/versions-deb-bullseye index fe9596db1a..2e84c551cf 100644 --- a/files/build/versions/dockers/docker-gbsyncd-broncos/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-gbsyncd-broncos/versions-deb-bullseye @@ -2,18 +2,18 @@ gdb==10.1-1.7 gdbserver==10.1-1.7 libbabeltrace1==1.5.8-1+b3 libboost-regex1.74.0==1.74.0-9 -libc-dev-bin==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 +libc-dev-bin==2.31-13+deb11u13 +libc6-dev==2.31-13+deb11u13 libcbor0==0.5.0+dfsg-2 libcrypt-dev==1:4.4.18-4 -libcurl3-gnutls==7.74.0-1.3+deb11u14 +libcurl3-gnutls==7.74.0-1.3+deb11u16 libdebuginfod1==0.183-1 libdw1==0.183-1 libedit2==3.1-20191231-2+b1 libfido2-1==1.6.0-2 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgpm2==1.20.7-8 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libipt2==2.0.3-1 libmpfr6==4.1.0-3 libnsl-dev==1.3.0-2 @@ -28,11 +28,11 @@ libsource-highlight4v5==3.1.9-3+b1 libswsscommon-dbgsym==1.0.0 libtirpc-dev==1.3.1-1+deb11u1 libunwind8==1.3.2-2 -linux-libc-dev==5.10.226-1 -openssh-client==1:8.4p1-5+deb11u3 +linux-libc-dev==5.10.251-1 +openssh-client==1:8.4p1-5+deb11u5 sshpass==1.09-1+b1 strace==5.10-1 syncd==1.0.0 -vim==2:8.2.2434-3+deb11u1 -vim-runtime==2:8.2.2434-3+deb11u1 +vim==2:8.2.2434-3+deb11u3 +vim-runtime==2:8.2.2434-3+deb11u3 zlib1g-dev==1:1.2.11.dfsg-2+deb11u2 diff --git a/files/build/versions/dockers/docker-gbsyncd-credo/versions-deb-bullseye b/files/build/versions/dockers/docker-gbsyncd-credo/versions-deb-bullseye index cd6fdfa436..39c9ad069d 100644 --- a/files/build/versions/dockers/docker-gbsyncd-credo/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-gbsyncd-credo/versions-deb-bullseye @@ -3,14 +3,14 @@ gdbserver==10.1-1.7 libbabeltrace1==1.5.8-1+b3 libboost-regex1.74.0==1.74.0-9 libcbor0==0.5.0+dfsg-2 -libcurl3-gnutls==7.74.0-1.3+deb11u14 +libcurl3-gnutls==7.74.0-1.3+deb11u16 libdebuginfod1==0.183-1 libdw1==0.183-1 libedit2==3.1-20191231-2+b1 libfido2-1==1.6.0-2 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgpm2==1.20.7-8 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libipt2==2.0.3-1 libmpfr6==4.1.0-3 libsaicredo==0.9.9 @@ -22,9 +22,9 @@ libsource-highlight-common==3.1.9-3 libsource-highlight4v5==3.1.9-3+b1 libswsscommon-dbgsym==1.0.0 libunwind8==1.3.2-2 -openssh-client==1:8.4p1-5+deb11u3 +openssh-client==1:8.4p1-5+deb11u5 sshpass==1.09-1+b1 strace==5.10-1 syncd==1.0.0 -vim==2:8.2.2434-3+deb11u1 -vim-runtime==2:8.2.2434-3+deb11u1 +vim==2:8.2.2434-3+deb11u3 +vim-runtime==2:8.2.2434-3+deb11u3 diff --git a/files/build/versions/dockers/docker-gbsyncd-vs/versions-deb-bookworm b/files/build/versions/dockers/docker-gbsyncd-vs/versions-deb-bookworm index f0b849d5c2..41a9c5e1e5 100644 --- a/files/build/versions/dockers/docker-gbsyncd-vs/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-gbsyncd-vs/versions-deb-bookworm @@ -6,19 +6,19 @@ binutils-x86-64-linux-gnu==2.40-2 clang==1:14.0-55.7~deb12u1 clang-14==1:14.0.6-12 cpp==4:12.2.0-3 -cpp-12==12.2.0-14 +cpp-12==12.2.0-14+deb12u1 file==1:5.44-3 flex==2.6.4-8.2 gcc==4:12.2.0-3 -gcc-12==12.2.0-14 +gcc-12==12.2.0-14+deb12u1 gdb==13.1-3 gdbserver==13.1-3 -gfortran-12==12.2.0-14 +gfortran-12==12.2.0-14+deb12u1 ibverbs-providers==44.0-2 -icu-devtools==72.1-3 -libabsl-dev==20220623.1-1 -libabsl20220623==20220623.1-1 -libasan8==12.2.0-14 +icu-devtools==72.1-3+deb12u1 +libabsl-dev==20220623.1-1+deb12u2 +libabsl20220623==20220623.1-1+deb12u2 +libasan8==12.2.0-14+deb12u1 libbabeltrace1==1.5.11-1+b2 libbinutils==2.40-2 libboost-all-dev==1.74.0.3 @@ -117,20 +117,20 @@ libboost-wave1.74-dev==1.74.0+ds1-21 libboost-wave1.74.0==1.74.0+ds1-21 libboost1.74-dev==1.74.0+ds1-21 libboost1.74-tools-dev==1.74.0+ds1-21 -libbpf-dev==1:1.1.0-1 +libbpf-dev==1:1.1.2-0+deb12u1 libc-ares-dev==1.18.1-3 libc-ares2==1.18.1-3 -libc-dev-bin==2.36-9+deb12u9 -libc6-dev==2.36-9+deb12u9 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 libcbor0.8==0.8.0-2+b1 -libcc1-0==12.2.0-14 +libcc1-0==12.2.0-14+deb12u1 libclang-common-14-dev==1:14.0.6-12 libclang-cpp14==1:14.0.6-12 libclang1-14==1:14.0.6-12 libctf-nobfd0==2.40-2 libctf0==2.40-2 -libcurl3-gnutls==7.88.1-10+deb12u8 -libcurl3-nss==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 +libcurl3-nss==7.88.1-10+deb12u14 libdbus-1-dev==1.14.10-1~deb12u1 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 @@ -144,20 +144,20 @@ libevent-dev==2.1.12-stable-8 libevent-extra-2.1-7==2.1.12-stable-8 libevent-openssl-2.1-7==2.1.12-stable-8 libevent-pthreads-2.1-7==2.1.12-stable-8 -libexpat1-dev==2.5.0-1+deb12u1 +libexpat1-dev==2.5.0-1+deb12u2 libfabric1==1.17.0-3 libfido2-1==1.12.0-2+b1 libfl-dev==2.6.4-8.2 libfl2==2.6.4-8.2 libgc-dev==1:8.2.2-3 libgc1==1:8.2.2-3 -libgcc-12-dev==12.2.0-14 -libgfortran-12-dev==12.2.0-14 -libgfortran5==12.2.0-14 -libglib2.0-0==2.74.6-2+deb12u5 +libgcc-12-dev==12.2.0-14+deb12u1 +libgfortran-12-dev==12.2.0-14+deb12u1 +libgfortran5==12.2.0-14+deb12u1 +libglib2.0-0==2.74.6-2+deb12u8 libgmp-dev==2:6.2.1+dfsg1-1.1 libgmpxx4ldbl==2:6.2.1+dfsg1-1.1 -libgomp1==12.2.0-14 +libgomp1==12.2.0-14+deb12u1 libgpm2==1.20.7-10+b1 libgprofng0==2.40-2 libgrpc++-dev==1.51.1-3+b1 @@ -169,34 +169,34 @@ libhwloc-plugins==2.9.0-1 libhwloc15==2.9.0-1 libibverbs-dev==44.0-2 libibverbs1==44.0-2 -libicu-dev==72.1-3 -libicu72==72.1-3 +libicu-dev==72.1-3+deb12u1 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libisl23==0.25-1.1 -libitm1==12.2.0-14 +libitm1==12.2.0-14+deb12u1 libjs-jquery-ui==1.13.2+dfsg-1 libjs-sphinxdoc==5.3.0-4 libjs-underscore==1.13.4~dfsg+~1.11.4-3 libllvm14==1:14.0.6-12 -liblsan0==12.2.0-14 +liblsan0==12.2.0-14+deb12u1 libltdl-dev==2.4.7-7~deb12u1 libltdl7==2.4.7-7~deb12u1 libmagic-mgc==1:5.44-3 libmagic1==1:5.44-3 libmpc3==1.3.1-1 libmpfr6==4.2.0-1 -libmunge2==0.5.15-2 +libmunge2==0.5.15-2+deb12u1 libnanomsg-dev==1.1.5+dfsg-1.1+b1 libnanomsg5==1.1.5+dfsg-1.1+b1 libnl-3-dev==3.5.0-1 libnl-route-3-dev==3.5.0-1 libnsl-dev==1.3.0-2 libnspr4==2:4.35-1 -libnss3==2:3.87.1-1+deb12u1 +libnss3==2:3.87.1-1+deb12u2 libnuma-dev==2.0.16-1 libnuma1==2.0.16-1 -libobjc-12-dev==12.2.0-14 -libobjc4==12.2.0-14 +libobjc-12-dev==12.2.0-14+deb12u1 +libobjc4==12.2.0-14+deb12u1 libopenmpi-dev==4.1.4-3+b1 libopenmpi3==4.1.4-3+b1 libpcap-dev==1.10.3-1 @@ -216,11 +216,11 @@ libprotoc32==3.21.12-3 libpsm-infinipath1==3.3+20.604758e7-6.2 libpsm2-2==11.2.185-2 libpython3-dev==3.11.2-1+b1 -libpython3.11-dev==3.11.2-6+deb12u5 -libqt5core5a==5.15.8+dfsg-11+deb12u2 -libqt5dbus5==5.15.8+dfsg-11+deb12u2 -libqt5network5==5.15.8+dfsg-11+deb12u2 -libquadmath0==12.2.0-14 +libpython3.11-dev==3.11.2-6+deb12u6 +libqt5core5a==5.15.8+dfsg-11+deb12u3 +libqt5dbus5==5.15.8+dfsg-11+deb12u3 +libqt5network5==5.15.8+dfsg-11+deb12u3 +libquadmath0==12.2.0-14+deb12u1 librdmacm1==44.0-2 libre2-9==20220601+dfsg-1+b1 libre2-dev==20220601+dfsg-1+b1 @@ -233,16 +233,16 @@ libsaivs==1.0.0 libsaivs-dbgsym==1.0.0 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 -libstdc++-12-dev==12.2.0-14 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 +libstdc++-12-dev==12.2.0-14+deb12u1 libswsscommon-dbgsym==1.0.0 libthrift-0.17.0==0.17.0-2+b2 libthrift-dev==0.17.0-2+b2 libtirpc-dev==1.3.3+ds-1 libtool==2.4.7-7~deb12u1 -libtsan2==12.2.0-14 -libubsan1==12.2.0-14 +libtsan2==12.2.0-14+deb12u1 +libubsan1==12.2.0-14+deb12u1 libucx0==1.13.1-1 libunwind8==1.6.2-3 libx11-6==2:1.8.4-2+deb12u2 @@ -251,10 +251,10 @@ libxau6==1:1.0.9-1 libxcb1==1.15-1 libxdmcp6==1:1.1.2-3 libxext6==2:1.3.4-1+b1 -libxml2==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 libxnvctrl0==525.85.05-3~deb12u1 libz3-4==4.8.12-3.1 -linux-libc-dev==6.1.128-1 +linux-libc-dev==6.1.164-1 llvm==1:14.0-55.7~deb12u1 llvm-14==1:14.0.6-12 llvm-14-linker-tools==1:14.0.6-12 @@ -268,8 +268,8 @@ nss-plugin-pem==1.0.8+1-1 ocl-icd-libopencl1==2.3.1-1 openmpi-bin==4.1.4-3+b1 openmpi-common==4.1.4-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 p4lang-bmv2==1.15.0-7 p4lang-p4c==1.2.4.2-2 p4lang-pi==0.1.0-15 @@ -287,7 +287,7 @@ python3-pyroute2==0.7.2-2 python3-scapy==2.5.0+dfsg-2 python3-six==1.16.0-4 python3-thrift==0.17.0-2+b2 -python3.11-dev==3.11.2-6+deb12u5 +python3.11-dev==3.11.2-6+deb12u6 rpcsvc-proto==1.4.3-1 sensible-utils==0.0.17+nmu1 sgml-base==1.31 @@ -299,7 +299,7 @@ syncd-vs-dbgsym==1.0.0 tcpdump==4.99.3-1 thrift-compiler==0.17.0-2+b2 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 xml-core==0.18+nmu1 zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-lldp/versions-deb-bookworm b/files/build/versions/dockers/docker-lldp/versions-deb-bookworm index 8a45c23a95..960ae81cb7 100644 --- a/files/build/versions/dockers/docker-lldp/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-lldp/versions-deb-bookworm @@ -3,38 +3,38 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libevent-2.1-7==2.1.12-stable-8 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libpci3==1:3.9.0-4 libsensors-config==1:3.6.0-7.1 libsensors5==1:3.6.0-7.1 -libsnmp-base==5.9.3+dfsg-2 -libsnmp40==5.9.3+dfsg-2 +libsnmp-base==5.9.3+dfsg-2+deb12u1 +libsnmp40==5.9.3+dfsg-2+deb12u1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -libxml2==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 lldpd==1.0.16-1+deb12u1 lldpd-dbgsym==1.0.16-1+deb12u1 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 pci.ids==0.0~2023.04.11-1 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-macsec/versions-deb-bookworm b/files/build/versions/dockers/docker-macsec/versions-deb-bookworm index 4375c80f9d..0114cf4cb9 100644 --- a/files/build/versions/dockers/docker-macsec/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-macsec/versions-deb-bookworm @@ -3,32 +3,32 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libpcsclite1==1.9.9-2 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 swss-dbg==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 wpasupplicant==2:2.9.0-14 wpasupplicant-dbgsym==2:2.9.0-14 diff --git a/files/build/versions/dockers/docker-mux/versions-deb-bookworm b/files/build/versions/dockers/docker-mux/versions-deb-bookworm index 6bf075969d..a1bd05b246 100644 --- a/files/build/versions/dockers/docker-mux/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-mux/versions-deb-bookworm @@ -7,30 +7,30 @@ libboost-program-options1.74.0==1.74.0+ds1-21 libboost-regex1.74.0==1.74.0+ds1-21 libboost-thread1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sonic-linkmgrd==1.0.0-1 sonic-linkmgrd-dbgsym==1.0.0-1 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-nat/versions-deb-bookworm b/files/build/versions/dockers/docker-nat/versions-deb-bookworm index e27658ff28..131e414e7d 100644 --- a/files/build/versions/dockers/docker-nat/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-nat/versions-deb-bookworm @@ -6,15 +6,15 @@ iptables==1.8.9-2 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libip4tc2==1.8.9-2 libip6tc2==1.8.9-2 libipt2==2.0.5-1 @@ -25,17 +25,17 @@ libnfnetlink0==1.0.2-2 libnftnl11==1.2.4-2 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 netbase==6.4 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 swss-dbg==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-orchagent/versions-deb-bookworm b/files/build/versions/dockers/docker-orchagent/versions-deb-bookworm index b86ffd5d45..021b2ed165 100644 --- a/files/build/versions/dockers/docker-orchagent/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-orchagent/versions-deb-bookworm @@ -7,15 +7,15 @@ ifupdown==0.8.41 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libkmod2==30+20221128-1 liblua5.1-0==5.1.5-9 @@ -28,14 +28,14 @@ libpci3==1:3.9.0-4 libsairedis-dbgsym==1.0.0 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 ndisc6==1.0.5-1+b2 ndppd==0.2.5-6 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 pci.ids==0.0~2023.04.11-1 pciutils==1:3.9.0-4 python3-protobuf==3.21.12-3 @@ -47,5 +47,5 @@ strace==6.1-0.1 swss-dbg==1.0.0 tcpdump==4.99.3-1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-platform-monitor/versions-deb-bookworm b/files/build/versions/dockers/docker-platform-monitor/versions-deb-bookworm index fda5673563..9a3f1635c5 100644 --- a/files/build/versions/dockers/docker-platform-monitor/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-platform-monitor/versions-deb-bookworm @@ -1,5 +1,5 @@ -applibs==1.mlnx.4.7.2164 -applibs-dev==1.mlnx.4.7.2164 +applibs==1.mlnx.4.7.2202 +applibs-dev==1.mlnx.4.7.2202 dmidecode==3.4-1 ethtool==1:6.1-1 fancontrol==1:3.6.0-7.1 @@ -14,7 +14,7 @@ libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcairo2==1.16.0-7 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdatrie1==0.2.13-2+b1 libdbi1==0.9.0-6 libdebuginfod-common==0.188-2.1 @@ -23,14 +23,14 @@ libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 libfontconfig1==2.14.1-4 -libfreetype6==2.12.1+dfsg-5+deb12u3 +libfreetype6==2.12.1+dfsg-5+deb12u4 libfribidi0==1.0.8-2.1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 libgraphite2-3==1.3.14-1 libharfbuzz0b==6.0.0+dfsg-3 libi2c0==4.3-2+b3 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libjson-c5==0.16-2 libkmod2==30+20221128-1 @@ -41,7 +41,7 @@ libpangocairo-1.0-0==1.50.12+ds-1 libpangoft2-1.0-0==1.50.12+ds-1 libpci3==1:3.9.0-4 libpixman-1-0==0.42.2-1 -libpng16-16==1.6.39-2 +libpng16-16==1.6.39-2+deb12u3 librrd-dev==1.7.2-4+b8 librrd8==1.7.2-4+b8 libsensors-config==1:3.6.0-7.1 @@ -49,8 +49,8 @@ libsensors5==1:3.6.0-7.1 libsensors5-dbgsym==1:3.6.0-7.1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libthai-data==0.1.29-1 libthai0==0.1.29-1 @@ -63,17 +63,17 @@ libxcb-shm0==1.15-1 libxcb1==1.15-1 libxdmcp6==1:1.1.2-3 libxext6==2:1.3.4-1+b1 -libxml2==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 libxrender1==1:0.9.10-1.1 lm-sensors==1:3.6.0-7.1 lm-sensors-dbgsym==1:3.6.0-7.1 nvme-cli==2.4+really2.3-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 pci.ids==0.0~2023.04.11-1 pciutils==1:3.9.0-4 psmisc==23.6-1 -python-sdk-api==1.mlnx.4.7.2164 +python-sdk-api==1.mlnx.4.7.2202 python3-attr==22.2.0-1 python3-jsonschema==4.10.3-1 python3-pyrsistent==0.18.1-1+b3 @@ -85,15 +85,15 @@ sensord-dbgsym==1:3.6.0-7.1 smartmontools==7.4-2~bpo12+1 sshpass==1.09-1+b1 strace==6.1-0.1 -sx-complib==1.mlnx.4.7.2164 -sx-complib-dev==1.mlnx.4.7.2164 -sx-gen-utils==1.mlnx.4.7.2164 -sx-gen-utils-dev==1.mlnx.4.7.2164 -sxd-libs==1.mlnx.4.7.2164 -sxd-libs-dev==1.mlnx.4.7.2164 +sx-complib==1.mlnx.4.7.2202 +sx-complib-dev==1.mlnx.4.7.2202 +sx-gen-utils==1.mlnx.4.7.2202 +sx-gen-utils-dev==1.mlnx.4.7.2202 +sxd-libs==1.mlnx.4.7.2202 +sxd-libs-dev==1.mlnx.4.7.2202 ucf==3.0043+nmu1+deb12u1 -udev==252.33-1~deb12u1 +udev==252.39-1~deb12u1 uuid-runtime==2.38.1-5+deb12u3 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 -xxd==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 +xxd==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-platform-monitor/versions-py3 b/files/build/versions/dockers/docker-platform-monitor/versions-py3 index 906d1b263e..1fd543341e 100644 --- a/files/build/versions/dockers/docker-platform-monitor/versions-py3 +++ b/files/build/versions/dockers/docker-platform-monitor/versions-py3 @@ -15,7 +15,7 @@ nose==1.3.7 protobuf==4.25.3 psutil==5.9.8 pyrsistent==0.18.1 -python-sdk-api==4.7.2164 +python-sdk-api==4.7.2202 requests==2.31.0 thrift==0.13.0 urllib3==2.2.1 diff --git a/files/build/versions/dockers/docker-ptf/versions-deb-buster b/files/build/versions/dockers/docker-ptf/versions-deb-buster index 225391ea8b..a489ddd2a9 100644 --- a/files/build/versions/dockers/docker-ptf/versions-deb-buster +++ b/files/build/versions/dockers/docker-ptf/versions-deb-buster @@ -10,11 +10,15 @@ binutils-x86-64-linux-gnu==2.31.1-16 blt==2.5.3+dfsg-4 bridge-utils==1.6-2 bsd-mailx==8.1.2-0.20180807cvs-1 +bsdmainutils==11.1.2+b1 build-essential==12.6 bzip2==1.0.6-9.2~deb10u2 ca-certificates==20200601~deb10u2 +ca-certificates-java==20190405 cmake==3.13.4-1 cmake-data==3.13.4-1 +collectd==5.8.1-1.3 +collectd-core==5.8.1-1.3 cpp==4:8.3.0-1 cpp-8==8.3.0-6 cron==3.0pl1-134+deb10u1 @@ -24,8 +28,11 @@ dbus-user-session==1.12.28-0+deb10u1 dconf-gsettings-backend==0.30.1-2 dconf-service==0.30.1-2 debian-archive-keyring==2019.1+deb10u2 +default-jre-headless==2:1.11-71 dh-python==3.20190308 +diffstat==1.62-1 dirmngr==2.2.12-1+deb10u2 +dmeventd==2:1.02.155-3 dmsetup==2:1.02.155-3 dpkg-dev==1.19.8 ethtool==1:4.19-1 @@ -41,11 +48,18 @@ fonts-liberation==1:1.07.4-9 fonts-lmodern==2.004.5-6 fonts-lyx==2.3.2-1 fonts-noto-mono==20181227-1 +freeradius==3.0.17+dfsg-1.1+deb10u2 +freeradius-common==3.0.17+dfsg-1.1+deb10u2 +freeradius-config==3.0.17+dfsg-1.1+deb10u2 +freeradius-utils==3.0.17+dfsg-1.1+deb10u2 +freetds-common==1.00.104-1+deb10u1 g++==4:8.3.0-1 g++-8==8.3.0-6 gcc==4:8.3.0-1 gcc-8==8.3.0-6 gdb==8.2.1-2+b3 +gettext==0.19.8.1-9 +gettext-base==0.19.8.1-9 gir1.2-glib-2.0==1.58.3-2 git==1:2.20.1-2+deb10u9 git-man==1:2.20.1-2+deb10u9 @@ -67,15 +81,19 @@ gstreamer1.0-plugins-base==1.14.4-2+deb10u3 gtk-update-icon-cache==3.24.5-1 hicolor-icon-theme==0.17-2 hping3==3.a2.ds2-7 +intel-cmt-cat==2.1.0-1 ipython3==5.8.0-1+deb10u1 iso-codes==4.2-1 +java-common==0.71 javascript-common==11 krb5-locales==1.17-3+deb10u6 less==487-0.1+deb10u1 +libaio1==0.3.112-3 libalgorithm-diff-perl==1.19.03-2 libalgorithm-diff-xs-perl==0.04-5+b1 libalgorithm-merge-perl==0.08-3 libapparmor1==2.13.2-10 +libapr1==1.6.5-1+b1 libarchive13==3.3.3-4+deb10u3 libargon2-1==0~20171227-0.2 libasan5==8.3.0-6 @@ -83,6 +101,7 @@ libasound2==1.1.8-1 libasound2-data==1.1.8-1 libassuan0==2.5.2-1 libasyncns0==0.8-6 +libatasmart4==0.19-5 libatk-bridge2.0-0==2.30.0-5 libatk1.0-0==2.30.0-2 libatk1.0-data==2.30.0-2 @@ -95,6 +114,7 @@ libavahi-common3==0.7-4+deb10u3 libbabeltrace1==1.5.6-2+deb10u1 libbinutils==2.31.1-16 libblas3==3.8.0-2 +libbluetooth3==5.50-1.2~deb10u5 libboost-atomic1.71.0==1.71.0-6~bpo10+1 libbrotli1==1.0.7-2+deb10u1 libbsd0==0.9.1-2+deb10u1 @@ -110,9 +130,13 @@ libcc1-0==8.3.0-6 libcdparanoia0==3.10.2+debian-13 libcdt5==2.40.1-6+deb10u1 libcgraph6==2.40.1-6+deb10u1 +libcollectdclient1==5.8.1-1.3 libcolord2==1.4.3-4 +libconfuse-common==3.2.2+dfsg-1 +libconfuse2==3.2.2+dfsg-1 libcroco3==0.6.12-3 libcryptsetup12==2:2.1.0-5+deb10u2 +libct4==1.00.104-1+deb10u1 libcups2==2.2.10-6+deb10u10 libcupsfilters1==1.21.6-5+deb10u1 libcupsimage2==2.2.10-6+deb10u10 @@ -121,8 +145,11 @@ libcurl4==7.64.0-4+deb10u9 libdaemon0==0.14-7 libdata-dump-perl==1.23-1 libdatrie1==0.2.12-2 +libdbi-perl==1.642-1+deb10u2 +libdbi1==0.9.0-5 libdbus-1-3==1.12.28-0+deb10u1 libdconf1==0.30.1-2 +libdevmapper-event1.02.1==2:1.02.155-3 libdevmapper1.02.1==2:1.02.155-3 libdouble-conversion1==3.1.0-3 libdpkg-perl==1.19.8 @@ -140,6 +167,7 @@ libelf1==0.176-1.1+deb10u1 libencode-locale-perl==1.05-1 libepoxy0==1.5.3-0.1 liberror-perl==0.17027-2 +libesmtp6==1.0.6-4.3 libestr0==0.1.10-2.1 libevdev2==1.6.0+dfsg-1 libevent-2.1-6==2.1.8-stable-4 @@ -159,8 +187,11 @@ libflac8==1.3.2-3+deb10u3 libfont-afm-perl==1.20-2 libfontconfig1==2.13.1-2 libfontenc1==1:1.1.3-1+b2 +libfreeradius3==3.0.17+dfsg-1.1+deb10u2 libfreetype6==2.9.1-3+deb10u3 libfribidi0==1.0.5-3.1+deb10u2 +libftdi1-2==1.4-1+b2 +libganglia1==3.6.0-7+b2 libgbm1==18.3.6-2+deb10u1 libgcc-8-dev==8.3.0-6 libgd3==2.2.5-5.2+deb10u1 @@ -182,8 +213,12 @@ libglx0==1.1.0-1 libgnutls-dane0==3.6.7-4+deb10u12 libgnutls30==3.6.7-4+deb10u10 libgomp1==8.3.0-6 +libgoogle-perftools4==2.7-1 libgpm2==1.20.7-5 +libgps23==3.17-7 libgraphite2-3==1.3.13-7 +libgrpc++1==1.16.1-1 +libgrpc6==1.16.1-1 libgs9==9.27~dfsg-2+deb10u9 libgs9-common==9.27~dfsg-2+deb10u9 libgssapi-krb5-2==1.17-3+deb10u6 @@ -199,6 +234,7 @@ libgvc6==2.40.1-6+deb10u1 libgvpr2==2.40.1-6+deb10u1 libharfbuzz-icu0==2.3.1-1 libharfbuzz0b==2.3.1-1 +libhiredis0.14==0.14.0-3 libhtml-form-perl==6.03-1 libhtml-format-perl==2.12-1 libhtml-parser-perl==3.72-3+b3 @@ -209,6 +245,7 @@ libhttp-daemon-perl==6.01-3+deb10u1 libhttp-date-perl==6.02-1 libhttp-message-perl==6.18-1 libhttp-negotiate-perl==6.01-1 +libi2c0==4.1-1 libice6==2:1.0.9-2 libicu63==63.1-6+deb10u3 libidn11==1.33-2.2 @@ -220,6 +257,7 @@ libio-html-perl==1.001-1 libio-socket-ssl-perl==2.060-3 libio-stringy-perl==2.111-3 libip4tc0==1.8.2-4 +libip6tc0==1.8.2-4 libipc-system-simple-perl==1.25-4 libipt2==2.0-2 libisl19==0.20-2 @@ -253,13 +291,21 @@ liblockfile1==1.14-1.1 liblognorm5==2.0.5-1 liblsan0==8.3.0-6 libltdl7==2.4.6-9 +liblua5.1-0==5.1.5-8.1+b2 liblua5.2-0==5.2.4-1.1+b2 +liblua5.3-0==5.3.3-1.1+deb10u1 +liblvm2cmd2.03==2.03.02-3 liblwp-mediatypes-perl==6.02-1 liblwp-protocol-https-perl==6.07-2 libmagic-mgc==1:5.35-4+deb10u2 libmagic1==1:5.35-4+deb10u2 libmailtools-perl==2.18-1 +libmariadb3==1:10.3.39-0+deb10u2 libmaxminddb0==1.3.2-1+deb10u1 +libmemcached11==1.0.18-4.2 +libmicrohttpd12==0.9.62-1+deb10u1 +libmodbus5==3.1.4-2+deb10u2 +libmosquitto1==1.5.7-1+deb10u1 libmpc3==1.1.0-1 libmpdec2==2.4.2-2 libmpfr6==4.0.2-1 @@ -277,13 +323,21 @@ libnl-cli-3-200==3.4.0-1 libnl-genl-3-200==3.4.0-1 libnl-nf-3-200==3.4.0-1 libnl-route-3-200==3.4.0-1 +libnotify4==0.7.7-4 libnpth0==1.6-1 +libnspr4==2:4.20-1 libnss-systemd==241-7~deb10u10 +libnss3==2:3.42.1-1+deb10u8 +libnuma1==2.0.12-1 libogg0==1.3.2-1+b1 +libopenipmi0==2.0.25-2.1 libopenjp2-7==2.3.0-2+deb10u2 +liboping0==1.10.0-2.1+b1 libopts25==1:5.18.12-4 libopus0==1.3-1 liborc-0.4-0==1:0.4.28-3.1 +libow-3.2-3==3.2p3+dfsg1-2+deb10u1 +libowcapi-3.2-3==3.2p3+dfsg1-2+deb10u1 libpam-systemd==241-7~deb10u10 libpango-1.0-0==1.42.4-8~deb10u1 libpangocairo-1.0-0==1.42.4-8~deb10u1 @@ -294,15 +348,20 @@ libpathplan4==2.40.1-6+deb10u1 libpcap-dev==1.8.1-6+deb10u1 libpcap0.8==1.8.1-6+deb10u1 libpcap0.8-dev==1.8.1-6+deb10u1 +libpci3==1:3.5.2-1 libpciaccess0==0.14-1 libpcre2-16-0==10.32-5+deb10u1 libpcre2-8-0==10.32-5+deb10u1 +libpcsclite1==1.8.24-1 libperl5.28==5.28.1-6+deb10u1 libpixman-1-0==0.36.0-1+deb10u1 libpng16-16==1.6.36-6 libpopt0==1.16-12 libpotrace0==1.15-1 +libpq5==11.22-0+deb10u2 libprocps7==2:3.3.15-2 +libprotobuf-c1==1.3.1-1+b1 +libprotobuf17==3.6.1.3-2+deb10u1 libproxy1v5==0.4.15-5+deb10u1 libpsl5==0.20.2-2 libptexenc1==2018.20181218.49446-1+deb10u2 @@ -334,11 +393,59 @@ libqt5printsupport5==5.11.3+dfsg1-1+deb10u6 libqt5svg5==5.11.3-2 libqt5widgets5==5.11.3+dfsg1-1+deb10u6 libquadmath0==8.3.0-6 +librabbitmq4==0.9.0-0.2 +librdkafka1==0.11.6-1.1 +libreadline5==5.2+dfsg-3+b13 libreadline7==7.0-5 librest-0.7-0==0.8.1-1 librhash0==1.3.8-1 +libriemann-client0==1.10.4-2 +librrd8==1.7.1-2 librsvg2-2==2.44.10-2.1+deb10u3 librsvg2-common==2.44.10-2.1+deb10u3 +librte-acl18.11==18.11.11-1~deb10u2 +librte-bbdev18.11==18.11.11-1~deb10u2 +librte-bitratestats18.11==18.11.11-1~deb10u2 +librte-bpf18.11==18.11.11-1~deb10u2 +librte-cfgfile18.11==18.11.11-1~deb10u2 +librte-cmdline18.11==18.11.11-1~deb10u2 +librte-compressdev18.11==18.11.11-1~deb10u2 +librte-cryptodev18.11==18.11.11-1~deb10u2 +librte-distributor18.11==18.11.11-1~deb10u2 +librte-eal18.11==18.11.11-1~deb10u2 +librte-efd18.11==18.11.11-1~deb10u2 +librte-ethdev18.11==18.11.11-1~deb10u2 +librte-eventdev18.11==18.11.11-1~deb10u2 +librte-flow-classify18.11==18.11.11-1~deb10u2 +librte-gro18.11==18.11.11-1~deb10u2 +librte-gso18.11==18.11.11-1~deb10u2 +librte-hash18.11==18.11.11-1~deb10u2 +librte-ip-frag18.11==18.11.11-1~deb10u2 +librte-jobstats18.11==18.11.11-1~deb10u2 +librte-kni18.11==18.11.11-1~deb10u2 +librte-kvargs18.11==18.11.11-1~deb10u2 +librte-latencystats18.11==18.11.11-1~deb10u2 +librte-lpm18.11==18.11.11-1~deb10u2 +librte-mbuf18.11==18.11.11-1~deb10u2 +librte-member18.11==18.11.11-1~deb10u2 +librte-mempool18.11==18.11.11-1~deb10u2 +librte-meter18.11==18.11.11-1~deb10u2 +librte-metrics18.11==18.11.11-1~deb10u2 +librte-net18.11==18.11.11-1~deb10u2 +librte-pci18.11==18.11.11-1~deb10u2 +librte-pdump18.11==18.11.11-1~deb10u2 +librte-pipeline18.11==18.11.11-1~deb10u2 +librte-port18.11==18.11.11-1~deb10u2 +librte-power18.11==18.11.11-1~deb10u2 +librte-rawdev18.11==18.11.11-1~deb10u2 +librte-reorder18.11==18.11.11-1~deb10u2 +librte-ring18.11==18.11.11-1~deb10u2 +librte-sched18.11==18.11.11-1~deb10u2 +librte-security18.11==18.11.11-1~deb10u2 +librte-table18.11==18.11.11-1~deb10u2 +librte-telemetry18.11==18.11.11-1~deb10u2 +librte-timer18.11==18.11.11-1~deb10u2 +librte-vhost18.11==18.11.11-1~deb10u2 librtmp1==2.4+20151223.gitfa8646d.1-2 libsasl2-2==2.1.27+dfsg-1+deb10u2 libsasl2-modules==2.1.27+dfsg-1+deb10u2 @@ -351,6 +458,8 @@ libsm6==2:1.2.3-1 libsmi2ldbl==0.4.8+dfsg2-16 libsnappy1v5==1.1.7-1 libsndfile1==1.0.28-6+deb10u2 +libsnmp-base==5.7.3+dfsg-5+deb10u4 +libsnmp30==5.7.3+dfsg-5+deb10u4 libsoup-gnome2.4-1==2.64.2-2 libsoup2.4-1==2.64.2-2 libspandsp2==0.0.6+dfsg-2 @@ -363,7 +472,9 @@ libstdc++-8-dev==8.3.0-6 libsynctex2==2018.20181218.49446-1+deb10u2 libsystemd0==241-7~deb10u10 libtacacs+1==4.0.4.27a-3 +libtalloc2==2.1.14-2 libtcl8.6==8.6.9+dfsg-2 +libtcmalloc-minimal4==2.7-1 libteam-utils==1.28-1 libteam5==1.28-1 libteamdctl0==1.28-1 @@ -380,14 +491,21 @@ libtie-ixhash-perl==1.23-2 libtiff5==4.1.0+git191117-2~deb10u9 libtimedate-perl==2.3000-2+deb10u1 libtk8.6==8.6.9-2 +libtokyocabinet9==1.4.48-12 +libtokyotyrant3==1.1.40-4.2+b1 libtry-tiny-perl==0.30-1 libtsan0==8.3.0-6 libubsan1==8.3.0-6 libudev1==241-7~deb10u10 libunbound8==1.9.0-2+deb10u4 +libunwind8==1.2.1-10~deb10u1 +libupsclient4==2.7.4-8 liburi-perl==1.76-1 +libusb-1.0-0==2:1.0.22-2 libutempter0==1.1.6-3 libuv1==1.24.1-1+deb10u2 +libvarnishapi2==6.1.1-1+deb10u4 +libvirt0==5.0.0-4+deb10u2 libvisual-0.4-0==0.4.0-15 libvorbis0a==1.3.6-2 libvorbisenc2==1.3.6-2 @@ -398,6 +516,7 @@ libwayland-client0==1.16.0-1 libwayland-cursor0==1.16.0-1 libwayland-egl1==1.16.0-1 libwayland-server0==1.16.0-1 +libwbclient0==2:4.9.5+dfsg-5+deb10u5 libwebp6==0.6.1-2+deb10u3 libwebpdemux2==0.6.1-2+deb10u3 libwebpmux3==0.6.1-2+deb10u3 @@ -439,6 +558,15 @@ libxcursor1==1:1.1.15-2 libxdamage1==1:1.1.4-3+b3 libxdmcp6==1:1.1.2-3 libxdot4==2.40.1-6+deb10u1 +libxencall1==4.11.4+107-gef32c7afa2-1 +libxendevicemodel1==4.11.4+107-gef32c7afa2-1 +libxenevtchn1==4.11.4+107-gef32c7afa2-1 +libxenforeignmemory1==4.11.4+107-gef32c7afa2-1 +libxengnttab1==4.11.4+107-gef32c7afa2-1 +libxenmisc4.11==4.11.4+107-gef32c7afa2-1 +libxenstore3.0==4.11.4+107-gef32c7afa2-1 +libxentoolcore1==4.11.4+107-gef32c7afa2-1 +libxentoollog1==4.11.4+107-gef32c7afa2-1 libxext6==2:1.3.3-1+b2 libxfixes3==1:5.0.3-1 libxft2==2.3.2-2 @@ -463,27 +591,34 @@ libxv1==2:1.0.11-1 libxxf86dga1==2:1.1.4-1+b3 libxxf86vm1==1:1.1.4-1+b2 libxxhash0==0.6.5-2 +libyajl2==2.1.0-3+deb10u2 libzzip-0-13==0.13.62-3.2+deb10u1 linux-libc-dev==4.19.316-1 lmodern==2.004.5-6 logrotate==3.14.0-4 lsb-base==10.2019051400 lsof==4.91+dfsg-1 +lvm2==2.03.02-3 m4==1.4.18-2 make==4.2.1-1.2 manpages==4.16-2 manpages-dev==4.16-2 +mariadb-common==1:10.3.39-0+deb10u2 mime-support==3.62 +mysql-common==5.8+1.0.5 ncurses-term==6.1+20181013-2+deb10u5 net-tools==1.60+git20180626.aebd88e-1 netbase==5.6 +notification-daemon==3.20.0-4 ntp==1:4.2.8p12+dfsg-4 ntpdate==1:4.2.8p12+dfsg-4 ntpstat==0.0.0.1-2 +openjdk-11-jre-headless==11.0.23+9-1~deb10u1 openssh-client==1:7.9p1-10+deb10u4 openssh-server==1:7.9p1-10+deb10u4 openssh-sftp-server==1:7.9p1-10+deb10u4 openssl==1.1.1n-0+deb10u6 +owfs-common==3.2p3+dfsg1-2+deb10u1 patch==2.7.6-3+deb10u1 perl==5.28.1-6+deb10u1 perl-modules-5.28==5.28.1-6+deb10u1 @@ -561,12 +696,15 @@ python3.7-minimal==3.7.3-2+deb10u7 python3.7-venv==3.7.3-2+deb10u7 qt5-gtk-platformtheme==5.11.3+dfsg1-1+deb10u6 qttranslations5-l10n==5.11.3-2 +quilt==0.65-3 readline-common==7.0-5 +rrdtool==1.7.1-2 rsync==3.1.3-6 rsyslog==8.1901.0-1+deb10u2 sensible-utils==0.0.12 shared-mime-info==1.10-1 sntp==1:4.2.8p12+dfsg-4 +ssl-cert==1.0.39 systemd==241-7~deb10u10 systemd-sysv==241-7~deb10u10 t1utils==1.41-3 @@ -577,6 +715,7 @@ tex-common==6.11 texlive-base==2018.20190227-2 texlive-binaries==2018.20181218.49446-1+deb10u2 texlive-latex-base==2018.20190227-2 +thin-provisioning-tools==0.7.6-2.1 tk8.6-blt2.5==2.5.3+dfsg-4 tmux==2.8-3+deb10u1 traceroute==1:2.1.0-2 diff --git a/files/build/versions/dockers/docker-ptf/versions-py2 b/files/build/versions/dockers/docker-ptf/versions-py2 index 0ed7234236..74e7b01003 100644 --- a/files/build/versions/dockers/docker-ptf/versions-py2 +++ b/files/build/versions/dockers/docker-ptf/versions-py2 @@ -1,3 +1,4 @@ +backports-abc==0.5 backports.functools-lru-cache==1.6.6 backports.shutil-get-terminal-size==1.0.0 bcrypt==3.1.7 @@ -60,6 +61,7 @@ six==1.12.0 stevedore==1.32.0 supervisor==4.2.5 thrift==0.11.0 +tornado==5.1.1 traitlets==4.3.3 twisted==16.0.0 typing==3.10.0.0 diff --git a/files/build/versions/dockers/docker-router-advertiser/versions-deb-bookworm b/files/build/versions/dockers/docker-router-advertiser/versions-deb-bookworm index 03e35cab0a..742ce28199 100644 --- a/files/build/versions/dockers/docker-router-advertiser/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-router-advertiser/versions-deb-bookworm @@ -3,29 +3,29 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 radvd==1:2.19-1+b1 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-sflow/versions-deb-bookworm b/files/build/versions/dockers/docker-sflow/versions-deb-bookworm index 1600941bd0..d2faffe401 100644 --- a/files/build/versions/dockers/docker-sflow/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-sflow/versions-deb-bookworm @@ -6,25 +6,25 @@ hsflowd-dbgsym==2.0.51-26 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 psample==1.1-1 sensible-utils==0.0.17+nmu1 sflowtool==5.04 @@ -32,5 +32,5 @@ sshpass==1.09-1+b1 strace==6.1-0.1 swss-dbg==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-snmp/versions-deb-bookworm b/files/build/versions/dockers/docker-snmp/versions-deb-bookworm index 3bf740cdd5..600d277346 100644 --- a/files/build/versions/dockers/docker-snmp/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-snmp/versions-deb-bookworm @@ -4,43 +4,43 @@ gdbserver==13.1-3 ipmitool==1.8.19-4+deb12u2 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 -libc-l10n==2.36-9+deb12u9 +libc-l10n==2.36-9+deb12u13 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 libfreeipmi17==1.6.10-1+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libpci3==1:3.9.0-4 libsensors-config==1:3.6.0-7.1 libsensors5==1:3.6.0-7.1 -libsnmp-base==5.9.3+dfsg-2 -libsnmp40==5.9.3+dfsg-2 -libsnmp40-dbgsym==5.9.3+dfsg-2 +libsnmp-base==5.9.3+dfsg-2+deb12u1 +libsnmp40==5.9.3+dfsg-2+deb12u1 +libsnmp40-dbgsym==5.9.3+dfsg-2+deb12u1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -locales==2.36-9+deb12u9 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +locales==2.36-9+deb12u13 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 pci.ids==0.0~2023.04.11-1 sensible-utils==0.0.17+nmu1 -snmp==5.9.3+dfsg-2 -snmp-dbgsym==5.9.3+dfsg-2 -snmpd==5.9.3+dfsg-2 -snmpd-dbgsym==5.9.3+dfsg-2 +snmp==5.9.3+dfsg-2+deb12u1 +snmp-dbgsym==5.9.3+dfsg-2+deb12u1 +snmpd==5.9.3+dfsg-2+deb12u1 +snmpd-dbgsym==5.9.3+dfsg-2+deb12u1 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-sonic-gnmi/versions-deb-bookworm b/files/build/versions/dockers/docker-sonic-gnmi/versions-deb-bookworm index 3247ce828e..7c6e152321 100644 --- a/files/build/versions/dockers/docker-sonic-gnmi/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-sonic-gnmi/versions-deb-bookworm @@ -3,30 +3,30 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sonic-gnmi==0.1 sonic-mgmt-common==1.0.0 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-sonic-mgmt-framework/versions-deb-bookworm b/files/build/versions/dockers/docker-sonic-mgmt-framework/versions-deb-bookworm index 3f664a4d83..af7ab88554 100644 --- a/files/build/versions/dockers/docker-sonic-mgmt-framework/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-sonic-mgmt-framework/versions-deb-bookworm @@ -3,29 +3,29 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcjson-dev==1.7.15-1+deb12u2 -libcjson1==1.7.15-1+deb12u2 -libcurl3-gnutls==7.88.1-10+deb12u8 -libcurl4-openssl-dev==7.88.1-10+deb12u8 +libcjson-dev==1.7.15-1+deb12u4 +libcjson1==1.7.15-1+deb12u4 +libcurl3-gnutls==7.88.1-10+deb12u14 +libcurl4-openssl-dev==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libunwind8==1.6.2-3 -libxml2==2.9.14+dfsg-1.3~deb12u1 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sonic-mgmt-common==1.0.0 sonic-mgmt-framework==1.0-01 @@ -33,5 +33,5 @@ sonic-mgmt-framework-dbg==1.0-01 sshpass==1.09-1+b1 strace==6.1-0.1 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/docker-sonic-vs/versions-deb-bullseye b/files/build/versions/dockers/docker-sonic-vs/versions-deb-bullseye index 8a0c760727..a1d3be6922 100644 --- a/files/build/versions/dockers/docker-sonic-vs/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-sonic-vs/versions-deb-bullseye @@ -6,7 +6,7 @@ comerr-dev==2.1-1.46.2-2+deb11u1 conntrack==1:1.4.6-2 cron==3.0pl1-137 dbus==1.12.28-0+deb11u1 -dirmngr==2.2.27-2+deb11u2 +dirmngr==2.2.27-2+deb11u3 dmsetup==2:1.02.175-2.1 ethtool==1:5.9-1 fontconfig-config==2.13.1-4.2 @@ -16,18 +16,19 @@ fonts-lato==2.0-2.1 frr==8.5.4-sonic-0 gettext-base==0.21-4 gir1.2-glib-2.0==1.66.1-1+b1 -gnupg==2.2.27-2+deb11u2 -gnupg-l10n==2.2.27-2+deb11u2 -gnupg-utils==2.2.27-2+deb11u2 -gpg==2.2.27-2+deb11u2 -gpg-agent==2.2.27-2+deb11u2 -gpg-wks-client==2.2.27-2+deb11u2 -gpg-wks-server==2.2.27-2+deb11u2 -gpgconf==2.2.27-2+deb11u2 -gpgsm==2.2.27-2+deb11u2 +gnupg==2.2.27-2+deb11u3 +gnupg-l10n==2.2.27-2+deb11u3 +gnupg-utils==2.2.27-2+deb11u3 +gpg==2.2.27-2+deb11u3 +gpg-agent==2.2.27-2+deb11u3 +gpg-wks-client==2.2.27-2+deb11u3 +gpg-wks-server==2.2.27-2+deb11u3 +gpgconf==2.2.27-2+deb11u3 +gpgsm==2.2.27-2+deb11u3 +gpgv==2.2.27-2+deb11u3 grub-common==2.06-3~deb11u6 grub2-common==2.06-3~deb11u6 -icu-devtools==67.1-7 +icu-devtools==67.1-7+deb11u1 ifupdown==0.8.36 iproute2==6.1.0-3~bpo11+1 iptables==1.8.7-1 @@ -38,8 +39,8 @@ libblkid-dev==2.36.1-8+deb11u2 libblkid1==2.36.1-8+deb11u2 libbsd-dev==0.11.3-1+deb11u1 libc-ares2==1.17.1-1+deb11u3 -libc-dev-bin==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 +libc-dev-bin==2.31-13+deb11u13 +libc6-dev==2.31-13+deb11u13 libcbor0==0.5.0+dfsg-2 libcrypt-dev==1:4.4.18-4 libdevmapper1.02.1==2:1.02.175-2.1 @@ -48,16 +49,16 @@ libedit2==3.1-20191231-2+b1 libefiboot1==37-6 libefivar1==37-6 libfido2-1==1.6.0-2 -libfreetype6==2.10.4+dfsg-1+deb11u1 -libfreetype6-dev==2.10.4+dfsg-1+deb11u1 +libfreetype6==2.10.4+dfsg-1+deb11u2 +libfreetype6-dev==2.10.4+dfsg-1+deb11u2 libfuse2==2.9.9-5 libgirepository-1.0-1==1.66.1-1+b1 -libglib2.0-0==2.66.8-1+deb11u5 -libglib2.0-data==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 +libglib2.0-data==2.66.8-1+deb11u8 libgssapi-krb5-2==1.18.3-6+deb11u5+fips libgssrpc4==1.18.3-6+deb11u5+fips -libicu-dev==67.1-7 -libicu67==67.1-7 +libicu-dev==67.1-7+deb11u1 +libicu67==67.1-7+deb11u1 libip4tc2==1.8.7-1 libip6tc2==1.8.7-1 libjs-sphinxdoc==3.4.3-2 @@ -67,7 +68,7 @@ libjudydebian1==1.0.5-5+b2 libk5crypto3==1.18.3-6+deb11u4 libkadm5clnt-mit12==1.18.3-6+deb11u5+fips libkadm5srv-mit12==1.18.3-6+deb11u5+fips -libkdb5-10==1.18.3-6+deb11u5 +libkdb5-10==1.18.3-6+deb11u7 libkrb5-3==1.18.3-6+deb11u5+fips libkrb5-dev==1.18.3-6+deb11u5+fips libkrb5support0==1.18.3-6+deb11u5+fips @@ -84,37 +85,37 @@ libnsl-dev==1.3.0-2 libpcap0.8==1.10.0-2 libpcre2-16-0==10.36-2+deb11u1 libpgm-dev==5.3.128~dfsg-2 -libpng16-16==1.6.37-3 +libpng16-16==1.6.37-3+deb11u2 libpopt0==1.18-2 libpython2-stdlib==2.7.18-3 libpython2.7-minimal==2.7.18-8+deb11u1 libpython2.7-stdlib==2.7.18-8+deb11u1 -libqt5core5a==5.15.2+dfsg-9+deb11u1 -libqt5dbus5==5.15.2+dfsg-9+deb11u1 -libqt5network5==5.15.2+dfsg-9+deb11u1 +libqt5core5a==5.15.2+dfsg-9+deb11u2 +libqt5dbus5==5.15.2+dfsg-9+deb11u2 +libqt5network5==5.15.2+dfsg-9+deb11u2 libsaivs==1.0.0 -libsodium-dev==1.0.18-1 -libssl1.1==1.1.1w-0+deb11u2 -libsystemd0==247.3-7+deb11u2 +libsodium-dev==1.0.18-1+deb11u1 +libssl1.1==1.1.1w-0+deb11u5 +libsystemd0==247.3-7+deb11u7 libteam-utils==1.31-1 libtirpc-dev==1.3.1-1+deb11u1 libunwind8==1.3.2-2 libuuid1==2.36.1-8+deb11u2 -libxml2==2.9.10+dfsg-6.7+deb11u5 -libxml2-dev==2.9.10+dfsg-6.7+deb11u5 +libxml2==2.9.10+dfsg-6.7+deb11u9 +libxml2-dev==2.9.10+dfsg-6.7+deb11u9 libyang2==2.0.112-6 libzmq3-dev==4.3.4-1+deb11u1 -linux-libc-dev==5.10.226-1 +linux-libc-dev==5.10.251-1 logrotate==3.18.0-2+deb11u2 lsof==4.93.2+dfsg-1.1 mailcap==3.69 mime-support==3.66 ndisc6==1.0.4-2 netbase==6.3 -openssh-client==1:8.4p1-5+deb11u3 -openssh-server==1:8.4p1-5+deb11u3 -openssh-sftp-server==1:8.4p1-5+deb11u3 -openssl==1.1.1w-0+deb11u2 +openssh-client==1:8.4p1-5+deb11u5 +openssh-server==1:8.4p1-5+deb11u5 +openssh-sftp-server==1:8.4p1-5+deb11u5 +openssl==1.1.1w-0+deb11u5 pinentry-curses==1.1.0-4 psmisc==23.4-2 python-ply==3.11-4 @@ -123,7 +124,7 @@ python2-minimal==2.7.18-3 python2.7==2.7.18-8+deb11u1 python2.7-minimal==2.7.18-8+deb11u1 python3-scapy==2.4.4-4 -redis-server==5:6.0.16-1+deb11u5 +redis-server==5:6.0.16-1+deb11u8 runit-helper==2.10.3 sensible-utils==0.0.14 shared-mime-info==2.0-1 diff --git a/files/build/versions/dockers/docker-syncd-brcm-dnx-rpc/versions-deb-bullseye b/files/build/versions/dockers/docker-syncd-brcm-dnx-rpc/versions-deb-bullseye index 006a33aef2..80c0d573a8 100644 --- a/files/build/versions/dockers/docker-syncd-brcm-dnx-rpc/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-syncd-brcm-dnx-rpc/versions-deb-bullseye @@ -11,24 +11,24 @@ g++==4:10.2.1-1 g++-10==10.2.1-6 gcc==4:10.2.1-1 gcc-10==10.2.1-6 -libarchive13==3.4.3-2+deb11u2 +libarchive13==3.4.3-2+deb11u3 libasan6==10.2.1-6 libbinutils==2.35.2-2 libboost-atomic1.74.0==1.74.0-9 -libc-dev-bin==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 +libc-dev-bin==2.31-13+deb11u13 +libc6-dev==2.31-13+deb11u13 libcc1-0==10.2.1-6 libcrypt-dev==1:4.4.18-4 libctf-nobfd0==2.35.2-2 libctf0==2.35.2-2 libdouble-conversion3==3.1.5-6.1 libdpkg-perl==1.20.13 -libexpat1-dev==2.2.10-2+deb11u6 +libexpat1-dev==2.2.10-2+deb11u7 libffi-dev==3.3-6 libgcc-10-dev==10.2.1-6 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgomp1==10.2.1-6 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libisl23==0.23-1 libitm1==10.2.1-6 libjsoncpp24==1.9.4-4 @@ -43,28 +43,28 @@ libpython2.7==2.7.18-8+deb11u1 libpython2.7-dev==2.7.18-8+deb11u1 libpython2.7-minimal==2.7.18-8+deb11u1 libpython2.7-stdlib==2.7.18-8+deb11u1 -libqt5core5a==5.15.2+dfsg-9+deb11u1 -libqt5dbus5==5.15.2+dfsg-9+deb11u1 -libqt5network5==5.15.2+dfsg-9+deb11u1 +libqt5core5a==5.15.2+dfsg-9+deb11u2 +libqt5dbus5==5.15.2+dfsg-9+deb11u2 +libqt5network5==5.15.2+dfsg-9+deb11u2 libquadmath0==10.2.1-6 librhash0==1.4.1-2 -libssl-dev==1.1.1w-0+deb11u2 -libssl1.1==1.1.1w-0+deb11u2 +libssl-dev==1.1.1w-0+deb11u5 +libssl1.1==1.1.1w-0+deb11u5 libstdc++-10-dev==10.2.1-6 libthrift-0.11.0==0.11.0-4 libtirpc-dev==1.3.1-1+deb11u1 libtsan0==10.2.1-6 libubsan1==10.2.1-6 libuv1==1.40.0-2+deb11u1 -libxml2==2.9.10+dfsg-6.7+deb11u5 -linux-libc-dev==5.10.226-1 +libxml2==2.9.10+dfsg-6.7+deb11u9 +linux-libc-dev==5.10.251-1 mailcap==3.69 make==4.3-4.1 mime-support==3.66 patch==2.7.6-7 python-dev-is-python2==2.7.18-9 python-is-python2==2.7.18-9 -python-pip-whl==20.3.4-4+deb11u1 +python-pip-whl==20.3.4-4+deb11u2 python-pkg-resources==44.1.1-1 python-setuptools==44.1.1-1 python2==2.7.18-3 @@ -73,11 +73,11 @@ python2-minimal==2.7.18-3 python2.7==2.7.18-8+deb11u1 python2.7-dev==2.7.18-8+deb11u1 python2.7-minimal==2.7.18-8+deb11u1 -python3-pip==20.3.4-4+deb11u1 -python3-pkg-resources==52.0.0-4+deb11u1 -python3-setuptools==52.0.0-4+deb11u1 +python3-pip==20.3.4-4+deb11u2 +python3-pkg-resources==52.0.0-4+deb11u2 +python3-setuptools==52.0.0-4+deb11u2 python3-wheel==0.34.2-1 shared-mime-info==2.0-1 syncd-rpc==1.0.0 -wget==1.21-1+deb11u1 +wget==1.21-1+deb11u2 xz-utils==5.2.5-2.1~deb11u1 diff --git a/files/build/versions/dockers/docker-syncd-brcm-dnx/versions-deb-bullseye b/files/build/versions/dockers/docker-syncd-brcm-dnx/versions-deb-bullseye index 06039a669d..98a9a7887c 100644 --- a/files/build/versions/dockers/docker-syncd-brcm-dnx/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-syncd-brcm-dnx/versions-deb-bullseye @@ -5,14 +5,14 @@ kmod==28-1 libbabeltrace1==1.5.8-1+b3 libboost-regex1.74.0==1.74.0-9 libcbor0==0.5.0+dfsg-2 -libcurl3-gnutls==7.74.0-1.3+deb11u14 +libcurl3-gnutls==7.74.0-1.3+deb11u16 libdebuginfod1==0.183-1 libdw1==0.183-1 libedit2==3.1-20191231-2+b1 libfido2-1==1.6.0-2 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgpm2==1.20.7-8 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libipt2==2.0.3-1 libkmod2==28-1 libmpfr6==4.1.0-3 @@ -25,10 +25,10 @@ libsource-highlight4v5==3.1.9-3+b1 libswsscommon-dbgsym==1.0.0 libunwind8==1.3.2-2 lz4==1.9.3-2 -openssh-client==1:8.4p1-5+deb11u3 +openssh-client==1:8.4p1-5+deb11u5 sshpass==1.09-1+b1 strace==5.10-1 syncd==1.0.0 syncd-dbgsym==1.0.0 -vim==2:8.2.2434-3+deb11u1 -vim-runtime==2:8.2.2434-3+deb11u1 +vim==2:8.2.2434-3+deb11u3 +vim-runtime==2:8.2.2434-3+deb11u3 diff --git a/files/build/versions/dockers/docker-syncd-brcm-rpc/versions-deb-bullseye b/files/build/versions/dockers/docker-syncd-brcm-rpc/versions-deb-bullseye index 006a33aef2..80c0d573a8 100644 --- a/files/build/versions/dockers/docker-syncd-brcm-rpc/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-syncd-brcm-rpc/versions-deb-bullseye @@ -11,24 +11,24 @@ g++==4:10.2.1-1 g++-10==10.2.1-6 gcc==4:10.2.1-1 gcc-10==10.2.1-6 -libarchive13==3.4.3-2+deb11u2 +libarchive13==3.4.3-2+deb11u3 libasan6==10.2.1-6 libbinutils==2.35.2-2 libboost-atomic1.74.0==1.74.0-9 -libc-dev-bin==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 +libc-dev-bin==2.31-13+deb11u13 +libc6-dev==2.31-13+deb11u13 libcc1-0==10.2.1-6 libcrypt-dev==1:4.4.18-4 libctf-nobfd0==2.35.2-2 libctf0==2.35.2-2 libdouble-conversion3==3.1.5-6.1 libdpkg-perl==1.20.13 -libexpat1-dev==2.2.10-2+deb11u6 +libexpat1-dev==2.2.10-2+deb11u7 libffi-dev==3.3-6 libgcc-10-dev==10.2.1-6 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgomp1==10.2.1-6 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libisl23==0.23-1 libitm1==10.2.1-6 libjsoncpp24==1.9.4-4 @@ -43,28 +43,28 @@ libpython2.7==2.7.18-8+deb11u1 libpython2.7-dev==2.7.18-8+deb11u1 libpython2.7-minimal==2.7.18-8+deb11u1 libpython2.7-stdlib==2.7.18-8+deb11u1 -libqt5core5a==5.15.2+dfsg-9+deb11u1 -libqt5dbus5==5.15.2+dfsg-9+deb11u1 -libqt5network5==5.15.2+dfsg-9+deb11u1 +libqt5core5a==5.15.2+dfsg-9+deb11u2 +libqt5dbus5==5.15.2+dfsg-9+deb11u2 +libqt5network5==5.15.2+dfsg-9+deb11u2 libquadmath0==10.2.1-6 librhash0==1.4.1-2 -libssl-dev==1.1.1w-0+deb11u2 -libssl1.1==1.1.1w-0+deb11u2 +libssl-dev==1.1.1w-0+deb11u5 +libssl1.1==1.1.1w-0+deb11u5 libstdc++-10-dev==10.2.1-6 libthrift-0.11.0==0.11.0-4 libtirpc-dev==1.3.1-1+deb11u1 libtsan0==10.2.1-6 libubsan1==10.2.1-6 libuv1==1.40.0-2+deb11u1 -libxml2==2.9.10+dfsg-6.7+deb11u5 -linux-libc-dev==5.10.226-1 +libxml2==2.9.10+dfsg-6.7+deb11u9 +linux-libc-dev==5.10.251-1 mailcap==3.69 make==4.3-4.1 mime-support==3.66 patch==2.7.6-7 python-dev-is-python2==2.7.18-9 python-is-python2==2.7.18-9 -python-pip-whl==20.3.4-4+deb11u1 +python-pip-whl==20.3.4-4+deb11u2 python-pkg-resources==44.1.1-1 python-setuptools==44.1.1-1 python2==2.7.18-3 @@ -73,11 +73,11 @@ python2-minimal==2.7.18-3 python2.7==2.7.18-8+deb11u1 python2.7-dev==2.7.18-8+deb11u1 python2.7-minimal==2.7.18-8+deb11u1 -python3-pip==20.3.4-4+deb11u1 -python3-pkg-resources==52.0.0-4+deb11u1 -python3-setuptools==52.0.0-4+deb11u1 +python3-pip==20.3.4-4+deb11u2 +python3-pkg-resources==52.0.0-4+deb11u2 +python3-setuptools==52.0.0-4+deb11u2 python3-wheel==0.34.2-1 shared-mime-info==2.0-1 syncd-rpc==1.0.0 -wget==1.21-1+deb11u1 +wget==1.21-1+deb11u2 xz-utils==5.2.5-2.1~deb11u1 diff --git a/files/build/versions/dockers/docker-syncd-brcm/versions-deb-bullseye b/files/build/versions/dockers/docker-syncd-brcm/versions-deb-bullseye index 01881f925b..bfa25f027d 100644 --- a/files/build/versions/dockers/docker-syncd-brcm/versions-deb-bullseye +++ b/files/build/versions/dockers/docker-syncd-brcm/versions-deb-bullseye @@ -5,14 +5,14 @@ kmod==28-1 libbabeltrace1==1.5.8-1+b3 libboost-regex1.74.0==1.74.0-9 libcbor0==0.5.0+dfsg-2 -libcurl3-gnutls==7.74.0-1.3+deb11u14 +libcurl3-gnutls==7.74.0-1.3+deb11u16 libdebuginfod1==0.183-1 libdw1==0.183-1 libedit2==3.1-20191231-2+b1 libfido2-1==1.6.0-2 -libglib2.0-0==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 libgpm2==1.20.7-8 -libicu67==67.1-7 +libicu67==67.1-7+deb11u1 libipt2==2.0.3-1 libkmod2==28-1 libmpfr6==4.1.0-3 @@ -26,10 +26,10 @@ libswsscommon-dbgsym==1.0.0 libunwind8==1.3.2-2 libyaml-0-2==0.2.2-1 lz4==1.9.3-2 -openssh-client==1:8.4p1-5+deb11u3 +openssh-client==1:8.4p1-5+deb11u5 sshpass==1.09-1+b1 strace==5.10-1 syncd==1.0.0 syncd-dbgsym==1.0.0 -vim==2:8.2.2434-3+deb11u1 -vim-runtime==2:8.2.2434-3+deb11u1 +vim==2:8.2.2434-3+deb11u3 +vim-runtime==2:8.2.2434-3+deb11u3 diff --git a/files/build/versions/dockers/docker-syncd-mlnx-rpc/versions-deb-bookworm b/files/build/versions/dockers/docker-syncd-mlnx-rpc/versions-deb-bookworm index 77f6b7e2f5..6f2a7c39d5 100644 --- a/files/build/versions/dockers/docker-syncd-mlnx-rpc/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-syncd-mlnx-rpc/versions-deb-bookworm @@ -1,21 +1,21 @@ cmake-data==3.25.1-1 libboost-atomic1.74.0==1.74.0+ds1-21 libdouble-conversion3==3.2.1-1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libnanomsg-dev==1.1.5+dfsg-1.1+b1 libnanomsg5==1.1.5+dfsg-1.1+b1 libpcre2-16-0==10.42-1 -libqt5core5a==5.15.8+dfsg-11+deb12u2 -libqt5dbus5==5.15.8+dfsg-11+deb12u2 -libqt5network5==5.15.8+dfsg-11+deb12u2 -libssl3==3.0.15-1~deb12u1 +libqt5core5a==5.15.8+dfsg-11+deb12u3 +libqt5dbus5==5.15.8+dfsg-11+deb12u3 +libqt5network5==5.15.8+dfsg-11+deb12u3 +libssl3==3.0.18-1~deb12u2 libthrift-0.17.0==0.17.0-2+b2 netbase==6.4 -openssl==3.0.15-1~deb12u1 +openssl==3.0.18-1~deb12u2 python3-pip==23.0.1+dfsg-1 python3-scapy==2.5.0+dfsg-2 python3-thrift==0.17.0-2+b2 shared-mime-info==2.2-1 syncd-rpc==1.0.0 thrift-compiler==0.17.0-2+b2 -wget==1.21.3-1+b2 +wget==1.21.3-1+deb12u1 diff --git a/files/build/versions/dockers/docker-syncd-mlnx/versions-deb-bookworm b/files/build/versions/dockers/docker-syncd-mlnx/versions-deb-bookworm index 67d642e8a2..f0923ff953 100644 --- a/files/build/versions/dockers/docker-syncd-mlnx/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-syncd-mlnx/versions-deb-bookworm @@ -1,5 +1,5 @@ -applibs==1.mlnx.4.7.2164 -applibs-dev==1.mlnx.4.7.2164 +applibs==1.mlnx.4.7.2202 +applibs-dev==1.mlnx.4.7.2202 gdb==13.1-3 gdbserver==13.1-3 iproute2-mlnx==6.1.0-3 @@ -8,16 +8,16 @@ libboost-regex1.74.0==1.74.0+ds1-21 libc-dev-bin==2.36-9+deb12u7 libc6-dev==2.36-9+deb12u7 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libexpat1-dev==2.5.0-1 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libjs-sphinxdoc==5.3.0-4 libjs-underscore==1.13.4~dfsg+~1.11.4-3 @@ -31,19 +31,19 @@ libsairedis==1.0.0 libsairedis-dbgsym==1.0.0 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libtirpc-dev==1.3.3+ds-1 libunwind8==1.6.2-3 -libxml2==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 linux-libc-dev==6.1.99-1 mft==4.28.0-96 mft-fwtrace-cfg==1.0.0 mlnx-sai==1.mlnx.SAIBuild2405.30.0.12 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 -python-sdk-api==1.mlnx.4.7.2164 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 +python-sdk-api==1.mlnx.4.7.2202 python3-attr==22.2.0-1 python3-dev==3.11.2-1+b1 python3-jsonschema==4.10.3-1 @@ -54,24 +54,24 @@ rpcsvc-proto==1.4.3-1 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 -sx-acl-helper==1.mlnx.4.7.2164 -sx-acl-helper-dev==1.mlnx.4.7.2164 -sx-complib==1.mlnx.4.7.2164 -sx-complib-dev==1.mlnx.4.7.2164 -sx-examples==1.mlnx.4.7.2164 -sx-examples-dev==1.mlnx.4.7.2164 -sx-gen-utils==1.mlnx.4.7.2164 -sx-gen-utils-dev==1.mlnx.4.7.2164 -sx-hash-calc==1.mlnx.4.7.2164 -sx-obj-desc-lib==1.mlnx.4.7.2164 -sx-obj-desc-lib-dev==1.mlnx.4.7.2164 -sxd-libs==1.mlnx.4.7.2164 -sxd-libs-dev==1.mlnx.4.7.2164 +sx-acl-helper==1.mlnx.4.7.2202 +sx-acl-helper-dev==1.mlnx.4.7.2202 +sx-complib==1.mlnx.4.7.2202 +sx-complib-dev==1.mlnx.4.7.2202 +sx-examples==1.mlnx.4.7.2202 +sx-examples-dev==1.mlnx.4.7.2202 +sx-gen-utils==1.mlnx.4.7.2202 +sx-gen-utils-dev==1.mlnx.4.7.2202 +sx-hash-calc==1.mlnx.4.7.2202 +sx-obj-desc-lib==1.mlnx.4.7.2202 +sx-obj-desc-lib-dev==1.mlnx.4.7.2202 +sxd-libs==1.mlnx.4.7.2202 +sxd-libs-dev==1.mlnx.4.7.2202 syncd==1.0.0 syncd-dbgsym==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 -wjh-libs==1.mlnx.4.7.2164 -wjh-libs-dev==1.mlnx.4.7.2164 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 +wjh-libs==1.mlnx.4.7.2202 +wjh-libs-dev==1.mlnx.4.7.2202 zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-syncd-mlnx/versions-py3 b/files/build/versions/dockers/docker-syncd-mlnx/versions-py3 index a79ab9f1ee..5c52131715 100644 --- a/files/build/versions/dockers/docker-syncd-mlnx/versions-py3 +++ b/files/build/versions/dockers/docker-syncd-mlnx/versions-py3 @@ -3,6 +3,6 @@ importlib-metadata==1.6.0 jsonschema==4.10.3 more-itertools==4.2.0 pyrsistent==0.18.1 -python-sdk-api==4.7.2164 +python-sdk-api==4.7.2202 python_sdk_api==4.6.3064 zipp==1.0.0 diff --git a/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-arm64 b/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-arm64 index 1499ae171b..35bd5da995 100644 --- a/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-arm64 +++ b/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-arm64 @@ -1,6 +1,6 @@ iputils-ping==3:20221126-1+deb12u1 libdbus-1-dev==1.14.10-1~deb12u1 -libexpat1-dev==2.5.0-1+deb12u1 +libexpat1-dev==2.5.0-1+deb12u2 libjs-sphinxdoc==5.3.0-4 libjs-underscore==1.13.4~dfsg+~1.11.4-3 libpcap-dev==1.10.3-1 @@ -8,7 +8,7 @@ libpcap0.8==1.10.3-1 libpcap0.8-dev==1.10.3-1 libpkgconf3==1.8.1-1 libpython3-dev==3.11.2-1+b1 -libpython3.11-dev==3.11.2-6+deb12u5 +libpython3.11-dev==3.11.2-6+deb12u6 libsaimetadata==1.0.0 libsairedis==1.0.0 mrvllibsai==1.14.0-3 @@ -16,7 +16,7 @@ pkg-config==1.8.1-1 pkgconf==1.8.1-1 pkgconf-bin==1.8.1-1 python3-dev==3.11.2-1+b1 -python3.11-dev==3.11.2-6+deb12u5 +python3.11-dev==3.11.2-6+deb12u6 sgml-base==1.31 swig==4.1.0-0.2 swig4.0==4.1.0-0.2 diff --git a/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-armhf b/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-armhf index 1499ae171b..35bd5da995 100644 --- a/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-armhf +++ b/files/build/versions/dockers/docker-syncd-mrvl/versions-deb-bookworm-armhf @@ -1,6 +1,6 @@ iputils-ping==3:20221126-1+deb12u1 libdbus-1-dev==1.14.10-1~deb12u1 -libexpat1-dev==2.5.0-1+deb12u1 +libexpat1-dev==2.5.0-1+deb12u2 libjs-sphinxdoc==5.3.0-4 libjs-underscore==1.13.4~dfsg+~1.11.4-3 libpcap-dev==1.10.3-1 @@ -8,7 +8,7 @@ libpcap0.8==1.10.3-1 libpcap0.8-dev==1.10.3-1 libpkgconf3==1.8.1-1 libpython3-dev==3.11.2-1+b1 -libpython3.11-dev==3.11.2-6+deb12u5 +libpython3.11-dev==3.11.2-6+deb12u6 libsaimetadata==1.0.0 libsairedis==1.0.0 mrvllibsai==1.14.0-3 @@ -16,7 +16,7 @@ pkg-config==1.8.1-1 pkgconf==1.8.1-1 pkgconf-bin==1.8.1-1 python3-dev==3.11.2-1+b1 -python3.11-dev==3.11.2-6+deb12u5 +python3.11-dev==3.11.2-6+deb12u6 sgml-base==1.31 swig==4.1.0-0.2 swig4.0==4.1.0-0.2 diff --git a/files/build/versions/dockers/docker-syncd-vs/versions-deb-bookworm b/files/build/versions/dockers/docker-syncd-vs/versions-deb-bookworm index f0b849d5c2..41a9c5e1e5 100644 --- a/files/build/versions/dockers/docker-syncd-vs/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-syncd-vs/versions-deb-bookworm @@ -6,19 +6,19 @@ binutils-x86-64-linux-gnu==2.40-2 clang==1:14.0-55.7~deb12u1 clang-14==1:14.0.6-12 cpp==4:12.2.0-3 -cpp-12==12.2.0-14 +cpp-12==12.2.0-14+deb12u1 file==1:5.44-3 flex==2.6.4-8.2 gcc==4:12.2.0-3 -gcc-12==12.2.0-14 +gcc-12==12.2.0-14+deb12u1 gdb==13.1-3 gdbserver==13.1-3 -gfortran-12==12.2.0-14 +gfortran-12==12.2.0-14+deb12u1 ibverbs-providers==44.0-2 -icu-devtools==72.1-3 -libabsl-dev==20220623.1-1 -libabsl20220623==20220623.1-1 -libasan8==12.2.0-14 +icu-devtools==72.1-3+deb12u1 +libabsl-dev==20220623.1-1+deb12u2 +libabsl20220623==20220623.1-1+deb12u2 +libasan8==12.2.0-14+deb12u1 libbabeltrace1==1.5.11-1+b2 libbinutils==2.40-2 libboost-all-dev==1.74.0.3 @@ -117,20 +117,20 @@ libboost-wave1.74-dev==1.74.0+ds1-21 libboost-wave1.74.0==1.74.0+ds1-21 libboost1.74-dev==1.74.0+ds1-21 libboost1.74-tools-dev==1.74.0+ds1-21 -libbpf-dev==1:1.1.0-1 +libbpf-dev==1:1.1.2-0+deb12u1 libc-ares-dev==1.18.1-3 libc-ares2==1.18.1-3 -libc-dev-bin==2.36-9+deb12u9 -libc6-dev==2.36-9+deb12u9 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 libcbor0.8==0.8.0-2+b1 -libcc1-0==12.2.0-14 +libcc1-0==12.2.0-14+deb12u1 libclang-common-14-dev==1:14.0.6-12 libclang-cpp14==1:14.0.6-12 libclang1-14==1:14.0.6-12 libctf-nobfd0==2.40-2 libctf0==2.40-2 -libcurl3-gnutls==7.88.1-10+deb12u8 -libcurl3-nss==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 +libcurl3-nss==7.88.1-10+deb12u14 libdbus-1-dev==1.14.10-1~deb12u1 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 @@ -144,20 +144,20 @@ libevent-dev==2.1.12-stable-8 libevent-extra-2.1-7==2.1.12-stable-8 libevent-openssl-2.1-7==2.1.12-stable-8 libevent-pthreads-2.1-7==2.1.12-stable-8 -libexpat1-dev==2.5.0-1+deb12u1 +libexpat1-dev==2.5.0-1+deb12u2 libfabric1==1.17.0-3 libfido2-1==1.12.0-2+b1 libfl-dev==2.6.4-8.2 libfl2==2.6.4-8.2 libgc-dev==1:8.2.2-3 libgc1==1:8.2.2-3 -libgcc-12-dev==12.2.0-14 -libgfortran-12-dev==12.2.0-14 -libgfortran5==12.2.0-14 -libglib2.0-0==2.74.6-2+deb12u5 +libgcc-12-dev==12.2.0-14+deb12u1 +libgfortran-12-dev==12.2.0-14+deb12u1 +libgfortran5==12.2.0-14+deb12u1 +libglib2.0-0==2.74.6-2+deb12u8 libgmp-dev==2:6.2.1+dfsg1-1.1 libgmpxx4ldbl==2:6.2.1+dfsg1-1.1 -libgomp1==12.2.0-14 +libgomp1==12.2.0-14+deb12u1 libgpm2==1.20.7-10+b1 libgprofng0==2.40-2 libgrpc++-dev==1.51.1-3+b1 @@ -169,34 +169,34 @@ libhwloc-plugins==2.9.0-1 libhwloc15==2.9.0-1 libibverbs-dev==44.0-2 libibverbs1==44.0-2 -libicu-dev==72.1-3 -libicu72==72.1-3 +libicu-dev==72.1-3+deb12u1 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libisl23==0.25-1.1 -libitm1==12.2.0-14 +libitm1==12.2.0-14+deb12u1 libjs-jquery-ui==1.13.2+dfsg-1 libjs-sphinxdoc==5.3.0-4 libjs-underscore==1.13.4~dfsg+~1.11.4-3 libllvm14==1:14.0.6-12 -liblsan0==12.2.0-14 +liblsan0==12.2.0-14+deb12u1 libltdl-dev==2.4.7-7~deb12u1 libltdl7==2.4.7-7~deb12u1 libmagic-mgc==1:5.44-3 libmagic1==1:5.44-3 libmpc3==1.3.1-1 libmpfr6==4.2.0-1 -libmunge2==0.5.15-2 +libmunge2==0.5.15-2+deb12u1 libnanomsg-dev==1.1.5+dfsg-1.1+b1 libnanomsg5==1.1.5+dfsg-1.1+b1 libnl-3-dev==3.5.0-1 libnl-route-3-dev==3.5.0-1 libnsl-dev==1.3.0-2 libnspr4==2:4.35-1 -libnss3==2:3.87.1-1+deb12u1 +libnss3==2:3.87.1-1+deb12u2 libnuma-dev==2.0.16-1 libnuma1==2.0.16-1 -libobjc-12-dev==12.2.0-14 -libobjc4==12.2.0-14 +libobjc-12-dev==12.2.0-14+deb12u1 +libobjc4==12.2.0-14+deb12u1 libopenmpi-dev==4.1.4-3+b1 libopenmpi3==4.1.4-3+b1 libpcap-dev==1.10.3-1 @@ -216,11 +216,11 @@ libprotoc32==3.21.12-3 libpsm-infinipath1==3.3+20.604758e7-6.2 libpsm2-2==11.2.185-2 libpython3-dev==3.11.2-1+b1 -libpython3.11-dev==3.11.2-6+deb12u5 -libqt5core5a==5.15.8+dfsg-11+deb12u2 -libqt5dbus5==5.15.8+dfsg-11+deb12u2 -libqt5network5==5.15.8+dfsg-11+deb12u2 -libquadmath0==12.2.0-14 +libpython3.11-dev==3.11.2-6+deb12u6 +libqt5core5a==5.15.8+dfsg-11+deb12u3 +libqt5dbus5==5.15.8+dfsg-11+deb12u3 +libqt5network5==5.15.8+dfsg-11+deb12u3 +libquadmath0==12.2.0-14+deb12u1 librdmacm1==44.0-2 libre2-9==20220601+dfsg-1+b1 libre2-dev==20220601+dfsg-1+b1 @@ -233,16 +233,16 @@ libsaivs==1.0.0 libsaivs-dbgsym==1.0.0 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 -libstdc++-12-dev==12.2.0-14 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 +libstdc++-12-dev==12.2.0-14+deb12u1 libswsscommon-dbgsym==1.0.0 libthrift-0.17.0==0.17.0-2+b2 libthrift-dev==0.17.0-2+b2 libtirpc-dev==1.3.3+ds-1 libtool==2.4.7-7~deb12u1 -libtsan2==12.2.0-14 -libubsan1==12.2.0-14 +libtsan2==12.2.0-14+deb12u1 +libubsan1==12.2.0-14+deb12u1 libucx0==1.13.1-1 libunwind8==1.6.2-3 libx11-6==2:1.8.4-2+deb12u2 @@ -251,10 +251,10 @@ libxau6==1:1.0.9-1 libxcb1==1.15-1 libxdmcp6==1:1.1.2-3 libxext6==2:1.3.4-1+b1 -libxml2==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 libxnvctrl0==525.85.05-3~deb12u1 libz3-4==4.8.12-3.1 -linux-libc-dev==6.1.128-1 +linux-libc-dev==6.1.164-1 llvm==1:14.0-55.7~deb12u1 llvm-14==1:14.0.6-12 llvm-14-linker-tools==1:14.0.6-12 @@ -268,8 +268,8 @@ nss-plugin-pem==1.0.8+1-1 ocl-icd-libopencl1==2.3.1-1 openmpi-bin==4.1.4-3+b1 openmpi-common==4.1.4-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 p4lang-bmv2==1.15.0-7 p4lang-p4c==1.2.4.2-2 p4lang-pi==0.1.0-15 @@ -287,7 +287,7 @@ python3-pyroute2==0.7.2-2 python3-scapy==2.5.0+dfsg-2 python3-six==1.16.0-4 python3-thrift==0.17.0-2+b2 -python3.11-dev==3.11.2-6+deb12u5 +python3.11-dev==3.11.2-6+deb12u6 rpcsvc-proto==1.4.3-1 sensible-utils==0.0.17+nmu1 sgml-base==1.31 @@ -299,7 +299,7 @@ syncd-vs-dbgsym==1.0.0 tcpdump==4.99.3-1 thrift-compiler==0.17.0-2+b2 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 xml-core==0.18+nmu1 zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/dockers/docker-teamd/versions-deb-bookworm b/files/build/versions/dockers/docker-teamd/versions-deb-bookworm index 950f931eb5..9b1ae8d395 100644 --- a/files/build/versions/dockers/docker-teamd/versions-deb-bookworm +++ b/files/build/versions/dockers/docker-teamd/versions-deb-bookworm @@ -3,32 +3,32 @@ gdbserver==13.1-3 libbabeltrace1==1.5.11-1+b2 libboost-regex1.74.0==1.74.0+ds1-21 libcbor0.8==0.8.0-2+b1 -libcurl3-gnutls==7.88.1-10+deb12u8 +libcurl3-gnutls==7.88.1-10+deb12u14 libdebuginfod-common==0.188-2.1 libdebuginfod1==0.188-2.1 libdw1==0.188-2.1 libedit2==3.1-20221030-2 libfido2-1==1.12.0-2+b1 -libglib2.0-0==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 libgpm2==1.20.7-10+b1 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libipt2==2.0.5-1 libmpfr6==4.2.0-1 libsource-highlight-common==3.1.9-4.2 libsource-highlight4v5==3.1.9-4.2+b3 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 libswsscommon-dbgsym==1.0.0 libteam-utils==1.31-1 libteam-utils-dbgsym==1.31-1 libteamdctl0-dbgsym==1.31-1 libunwind8==1.6.2-3 -openssh-client==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 sensible-utils==0.0.17+nmu1 sshpass==1.09-1+b1 strace==6.1-0.1 swss-dbg==1.0.0 ucf==3.0043+nmu1+deb12u1 -vim==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 diff --git a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm index 2c30a89bcf..5853243cc7 100644 --- a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm +++ b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm @@ -26,12 +26,10 @@ autopoint==0.21-12 autotools-dev==20220109.1 bash-completion==1:2.11-6 bc==1.07.1-3+b1 -bind9-dnsutils==1:9.18.33-1~deb12u2 -bind9-host==1:9.18.33-1~deb12u2 -bind9-libs==1:9.18.33-1~deb12u2 +bind9-dnsutils==1:9.18.47-1~deb12u1 +bind9-host==1:9.18.47-1~deb12u1 +bind9-libs==1:9.18.47-1~deb12u1 binutils==2.40-2 -binutils-aarch64-linux-gnu==2.40-2 -binutils-arm-linux-gnueabihf==2.40-2 binutils-common==2.40-2 binutils-x86-64-linux-gnu==2.40-2 bison==2:3.8.2+dfsg-1+b1 @@ -42,7 +40,7 @@ build-essential==12.9 byacc==1:2.0.20221106-1 bzip2==1.0.8-5+b1 bzip2-doc==1.0.8-5 -ca-certificates==20230311 +ca-certificates==20230311+deb12u1 ca-certificates-java==20230710~deb12u1 cdbs==0.4.166 check==0.15.2-2+b1 @@ -53,20 +51,18 @@ cm-super-minimal==0.3.4-17 cmake==3.25.1-1 cmake-data==3.25.1-1 cmocka-doc==1.1.5-2.1 -comerr-dev==2.1-1.47.0-2 +comerr-dev==2.1-1.47.0-2+b2 containerd.io==1.6.21-1 cowbuilder==0.89 cowdancer==0.89 cpio==2.13+dfsg-7.1 cpp==4:12.2.0-3 -cpp-12==12.2.0-14 -cpp-12-arm-linux-gnueabihf==12.2.0-14cross1 -cpp-arm-linux-gnueabihf==4:12.2.0-3 +cpp-12==12.2.0-14+deb12u1 cppcheck==2.10-2 cppzmq-dev==4.9.0-1 cron==3.0pl1-162 cron-daemon-common==3.0pl1-162 -curl==7.88.1-10+deb12u8 +curl==7.88.1-10+deb12u14 cython3==0.29.32-2+b1 dbus==1.14.10-1~deb12u1 dbus-bin==1.14.10-1~deb12u1 @@ -96,12 +92,12 @@ dh-runit==2.15.2 dh-strip-nondeterminism==1.13.1-1 dictionaries-common==1.29.5 diffstat==1.65-1 -dirmngr==2.2.40-1.1 -distro-info-data==0.58+deb12u3 +dirmngr==2.2.40-1.1+deb12u2 +distro-info-data==0.58+deb12u6 dkms==3.0.10-8+deb12u1 dmidecode==3.4-1 dmsetup==2:1.02.185-2 -dnsutils==1:9.18.33-1~deb12u2 +dnsutils==1:9.18.47-1~deb12u1 docbook==4.5-10 docbook-dsssl==1.79-10 docbook-to-man==1:2.0.0-45 @@ -110,7 +106,7 @@ docbook-xml==4.5-12 docker-buildx-plugin==0.10.5-1~debian.12~bookworm docker-ce==5:24.0.2-1~debian.12~bookworm docker-ce-cli==5:24.0.2-1~debian.12~bookworm -docker-ce-rootless-extras==5:27.5.1-1~debian.12~bookworm +docker-ce-rootless-extras==5:29.3.1-1~debian.12~bookworm docker-compose-plugin==2.18.1-1~debian.12~bookworm docutils-common==0.19+dfsg-6 dosfstools==4.2-1 @@ -126,12 +122,12 @@ efibootmgr==17-2 emacsen-common==3.0.5 enchant-2==2.3.3-2 equivs==2.3.1 -exim4-base==4.96-15+deb12u6 -exim4-config==4.96-15+deb12u6 -exim4-daemon-light==4.96-15+deb12u6 -expat==2.5.0-1+deb12u1 +exim4-base==4.96-15+deb12u7 +exim4-config==4.96-15+deb12u7 +exim4-daemon-light==4.96-15+deb12u7 +expat==2.5.0-1+deb12u2 fakeroot==1.31-1.2 -fig2dev==1:3.2.8b-3 +fig2dev==1:3.2.8b-3+deb12u2 file==1:5.44-3 flex==2.6.4-8.2 fontconfig==2.14.1-4 @@ -149,15 +145,11 @@ fonts-texgyre==20180621-6 fonts-texgyre-math==20180621-6 fonts-urw-base35==20200910-7 g++==4:12.2.0-3 -g++-12==12.2.0-14 +g++-12==12.2.0-14+deb12u1 gawk==1:5.2.1-2 gcc==4:12.2.0-3 -gcc-12==12.2.0-14 -gcc-12-arm-linux-gnueabihf==12.2.0-14cross1 -gcc-12-arm-linux-gnueabihf-base==12.2.0-14cross1 -gcc-12-cross-base==12.2.0-14cross1 -gcc-12-multilib==12.2.0-14 -gcc-arm-linux-gnueabihf==4:12.2.0-3 +gcc-12==12.2.0-14+deb12u1 +gcc-12-multilib==12.2.0-14+deb12u1 gcc-multilib==4:12.2.0-3 gcovr==5.2-1 gdb==13.1-3 @@ -166,27 +158,27 @@ gem2deb-test-runner==2.1 gettext==0.21-12 gettext-base==0.21-12 gfortran==4:12.2.0-3 -gfortran-12==12.2.0-14 -ghostscript==10.0.0~dfsg-11+deb12u6 +gfortran-12==12.2.0-14+deb12u1 +ghostscript==10.0.0~dfsg-11+deb12u8 gir1.2-atk-1.0==2.46.0-5 gir1.2-atspi-2.0==2.46.0-5 gir1.2-freedesktop==1.74.0-3 -gir1.2-gdkpixbuf-2.0==2.42.10+dfsg-1+deb12u1 +gir1.2-gdkpixbuf-2.0==2.42.10+dfsg-1+deb12u3 gir1.2-glib-2.0==1.74.0-3 gir1.2-gtk-3.0==3.24.38-2~deb12u3 gir1.2-harfbuzz-0.0==6.0.0+dfsg-3 gir1.2-packagekitglib-1.0==1.2.6-5 gir1.2-pango-1.0==1.50.12+ds-1 -git==1:2.39.5-0+deb12u2 +git==1:2.39.5-0+deb12u3 git-buildpackage==0.9.30 -git-man==1:2.39.5-0+deb12u2 +git-man==1:2.39.5-0+deb12u3 glib-networking==2.74.0-4 glib-networking-common==2.74.0-4 glib-networking-services==2.74.0-4 -gnupg==2.2.40-1.1 -gnupg-l10n==2.2.40-1.1 -gnupg-utils==2.2.40-1.1 -gnupg2==2.2.40-1.1 +gnupg==2.2.40-1.1+deb12u2 +gnupg-l10n==2.2.40-1.1+deb12u2 +gnupg-utils==2.2.40-1.1+deb12u2 +gnupg2==2.2.40-1.1+deb12u2 gobject-introspection==1.74.0-3 golang==2:1.19~1 golang-1.19==1.19.8-2 @@ -197,25 +189,21 @@ golang-doc==2:1.19~1 golang-go==2:1.19~1 golang-src==2:1.19~1 googletest==1.12.1-0.2 -gpg==2.2.40-1.1 -gpg-agent==2.2.40-1.1 -gpg-wks-client==2.2.40-1.1 -gpg-wks-server==2.2.40-1.1 -gpgconf==2.2.40-1.1 -gpgsm==2.2.40-1.1 +gpg==2.2.40-1.1+deb12u2 +gpg-agent==2.2.40-1.1+deb12u2 +gpg-wks-client==2.2.40-1.1+deb12u2 +gpg-wks-server==2.2.40-1.1+deb12u2 +gpgconf==2.2.40-1.1+deb12u2 +gpgsm==2.2.40-1.1+deb12u2 graphviz==2.42.2-7+deb12u1 groff==1.22.4-10 groff-base==1.22.4-10 -grub-common==2.06-13+deb12u1 -grub-efi-arm64-bin==2.06-13+deb12u1 -grub-efi-arm64-signed==1+2.06+13+deb12u1 -grub2-common==2.06-13+deb12u1 gsettings-desktop-schemas==43.0-1 gsfonts==2:20200910-7 gstreamer1.0-libav==1.22.0-2 -gstreamer1.0-plugins-base==1.22.0-3+deb12u4 -gstreamer1.0-plugins-good==1.22.0-5+deb12u2 -gstreamer1.0-x==1.22.0-3+deb12u4 +gstreamer1.0-plugins-base==1.22.0-3+deb12u6 +gstreamer1.0-plugins-good==1.22.0-5+deb12u3 +gstreamer1.0-x==1.22.0-3+deb12u6 gtk-update-icon-cache==3.24.38-2~deb12u3 guile-3.0-libs==3.0.8-2 hicolor-icon-theme==0.17-2 @@ -224,11 +212,11 @@ hwdata==0.368-1 i965-va-driver==2.4.1+dfsg1-1 ibverbs-providers==44.0-2 icc-profiles-free==2.0.1+dfsg-1.1 -icu-devtools==72.1-3 -imagemagick==8:6.9.11.60+dfsg-1.6+deb12u2 -imagemagick-6-common==8:6.9.11.60+dfsg-1.6+deb12u2 -imagemagick-6.q16==8:6.9.11.60+dfsg-1.6+deb12u2 -inetutils-telnet==2:2.4-2+deb12u1 +icu-devtools==72.1-3+deb12u1 +imagemagick==8:6.9.11.60+dfsg-1.6+deb12u7 +imagemagick-6-common==8:6.9.11.60+dfsg-1.6+deb12u7 +imagemagick-6.q16==8:6.9.11.60+dfsg-1.6+deb12u7 +inetutils-telnet==2:2.4-2+deb12u2 inkscape==1.2.2-2+b1 install-info==6.8-6+b1 intel-media-va-driver==23.1.1+dfsg1-1 @@ -245,29 +233,29 @@ java-common==0.74 java-wrappers==0.4 javahelper==0.78 javascript-common==11+nmu1 -jq==1.6-2.1 +jq==1.6-2.1+deb12u1 junit4==4.13.2-3 junit5==5.9.2-1 kernel-wedge==2.104 kmod==30+20221128-1 -krb5-locales==1.20.1-2+deb12u2 -krb5-multidev==1.20.1-2+deb12u2 +krb5-locales==1.20.1-2+deb12u4 +krb5-multidev==1.20.1-2+deb12u4 lcov==1.16-1 less==590-2.1~deb12u2 lib2geom1.2.0==1.2.2-3 -lib32asan8==12.2.0-14 -lib32atomic1==12.2.0-14 -lib32gcc-12-dev==12.2.0-14 -lib32gcc-s1==12.2.0-14 -lib32gomp1==12.2.0-14 -lib32itm1==12.2.0-14 -lib32quadmath0==12.2.0-14 -lib32stdc++6==12.2.0-14 -lib32ubsan1==12.2.0-14 +lib32asan8==12.2.0-14+deb12u1 +lib32atomic1==12.2.0-14+deb12u1 +lib32gcc-12-dev==12.2.0-14+deb12u1 +lib32gcc-s1==12.2.0-14+deb12u1 +lib32gomp1==12.2.0-14+deb12u1 +lib32itm1==12.2.0-14+deb12u1 +lib32quadmath0==12.2.0-14+deb12u1 +lib32stdc++6==12.2.0-14+deb12u1 +lib32ubsan1==12.2.0-14+deb12u1 libaa1==1.4p5-50 libaacs0==0.11.1-2 -libabsl-dev==20220623.1-1 -libabsl20220623==20220623.1-1 +libabsl-dev==20220623.1-1+deb12u2 +libabsl20220623==20220623.1-1+deb12u2 libacl1-dev==2.3.1-3 libaio1==0.3.113-4 libalgorithm-c3-perl==0.11-2 @@ -276,7 +264,7 @@ libalgorithm-diff-xs-perl==0.04-8+b1 libalgorithm-merge-perl==0.08-5 libaliased-perl==0.34-3 libann0==1.1.2+doc-9+b1 -libaom3==3.6.0-1+deb12u1 +libaom3==3.6.0-1+deb12u2 libaopalliance-java==20070526-7 libapache-pom-java==29-2 libapiguardian-java==1.1.2-1 @@ -286,11 +274,10 @@ libappstream4==0.16.1-2 libapt-pkg-perl==0.1.40+b2 libarchive-cpio-perl==0.10-3 libarchive-zip-perl==1.68-1 -libarchive13==3.6.2-1+deb12u2 +libarchive13==3.6.2-1+deb12u3 libargon2-1==0~20171227-0.3+deb12u1 libarray-intspan-perl==2.004-2 -libasan8==12.2.0-14 -libasan8-armhf-cross==12.2.0-14cross1 +libasan8==12.2.0-14+deb12u1 libasm-java==9.4-1 libasound2==1.2.8-1+b1 libasound2-data==1.2.8-1 @@ -308,8 +295,7 @@ libatk1.0-dev==2.46.0-5 libatkmm-1.6-1v5==2.28.3-1 libatm1==1:2.5.1-4+b2 libatm1-dev==1:2.5.1-4+b2 -libatomic1==12.2.0-14 -libatomic1-armhf-cross==12.2.0-14cross1 +libatomic1==12.2.0-14+deb12u1 libatspi2.0-0==2.46.0-5 libatspi2.0-dev==2.46.0-5 libattr1-dev==1:2.5.1-4 @@ -322,11 +308,11 @@ libavahi-client3==0.8-10+deb12u1 libavahi-common-data==0.8-10+deb12u1 libavahi-common3==0.8-10+deb12u1 libavc1394-0==0.5.4-5 -libavcodec59==7:5.1.6-0+deb12u1 -libavfilter8==7:5.1.6-0+deb12u1 -libavformat59==7:5.1.6-0+deb12u1 -libavif15==0.11.1-1 -libavutil57==7:5.1.6-0+deb12u1 +libavcodec59==7:5.1.8-0+deb12u1 +libavfilter8==7:5.1.8-0+deb12u1 +libavformat59==7:5.1.8-0+deb12u1 +libavif15==0.11.1-1+deb12u1 +libavutil57==7:5.1.8-0+deb12u1 libb-hooks-endofscope-perl==0.26-1 libb-hooks-op-check-perl==0.22-2+b1 libbabeltrace-dev==1.5.11-1+b2 @@ -439,8 +425,8 @@ libboost-wave1.74-dev==1.74.0+ds1-21 libboost-wave1.74.0==1.74.0+ds1-21 libboost1.74-dev==1.74.0+ds1-21 libboost1.74-tools-dev==1.74.0+ds1-21 -libbpf-dev==1:1.1.0-1 -libbpf1==1:1.1.0-1 +libbpf-dev==1:1.1.2-0+deb12u1 +libbpf1==1:1.1.2-0+deb12u1 libbrlapi0.8==6.5-7+deb12u1 libbrotli-dev==1.0.9-2+b6 libbrotli1==1.0.9-2+b6 @@ -451,16 +437,15 @@ libbsh-java==2.0b4-20 libbz2-dev==1.0.8-5+b1 libc-ares-dev==1.18.1-3 libc-ares2==1.18.1-3 -libc-dev-bin==2.36-9+deb12u9 -libc-devtools==2.36-9+deb12u9 -libc-l10n==2.36-9+deb12u9 -libc6-armhf-cross==2.36-8cross1 -libc6-dbg==2.36-9+deb12u9 -libc6-dev==2.36-9+deb12u9 -libc6-dev-i386==2.36-9+deb12u9 -libc6-dev-x32==2.36-9+deb12u9 -libc6-i386==2.36-9+deb12u9 -libc6-x32==2.36-9+deb12u9 +libc-dev-bin==2.36-9+deb12u13 +libc-devtools==2.36-9+deb12u13 +libc-l10n==2.36-9+deb12u13 +libc6-dbg==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 +libc6-dev-i386==2.36-9+deb12u13 +libc6-dev-x32==2.36-9+deb12u13 +libc6-i386==2.36-9+deb12u13 +libc6-x32==2.36-9+deb12u13 libcaca0==0.99.beta20-3 libcacard0==1:2.8.0-3 libcaf-openmpi-3==2.10.1-1+b1 @@ -469,14 +454,14 @@ libcairo-script-interpreter2==1.16.0-7 libcairo2==1.16.0-7 libcairo2-dev==1.16.0-7 libcairomm-1.0-1v5==1.14.4-2 -libcap-dev==1:2.66-4 +libcap-dev==1:2.66-4+deb12u2+b2 libcap-ng-dev==0.8.3-1+b3 -libcap2-bin==1:2.66-4 +libcap2-bin==1:2.66-4+deb12u2+b2 libcapstone4==4.0.2-5 libcapture-tiny-perl==0.48-2 libcarp-clan-perl==6.08-2 libcbor0.8==0.8.0-2+b1 -libcc1-0==12.2.0-14 +libcc1-0==12.2.0-14+deb12u1 libcdi-api-java==1.2-3 libcdparanoia0==3.10.2+debian-14 libcdr-0.1-1==0.1.6-2+b2 @@ -485,8 +470,8 @@ libcgi-fast-perl==1:2.15-1 libcgi-pm-perl==4.55-1 libcgraph6==2.42.2-7+deb12u1 libchromaprint1==1.5.1-2+b1 -libcjson-dev==1.7.15-1+deb12u2 -libcjson1==1.7.15-1+deb12u2 +libcjson-dev==1.7.15-1+deb12u4 +libcjson1==1.7.15-1+deb12u4 libclang-common-14-dev==1:14.0.6-12 libclang-cpp14==1:14.0.6-12 libclang-rt-14-dev==1:14.0.6-12 @@ -509,7 +494,7 @@ libcoarrays-openmpi-dev==2.10.1-1+b1 libcodec2-1.0==1.0.5-1 libcolord2==1.4.6-2.2 libcommon-sense-perl==3.75-3 -libcommons-beanutils-java==1.9.4-1 +libcommons-beanutils-java==1.9.4-1+deb12u1 libcommons-cli-java==1.5.0-1 libcommons-codec-java==1.15-1 libcommons-collections3-java==3.2.2-2 @@ -517,8 +502,8 @@ libcommons-compress-java==1.22-1 libcommons-configuration-java==1.10-6 libcommons-digester-java==1.8.1-5 libcommons-io-java==2.11.0-2 -libcommons-lang-java==2.6-10 -libcommons-lang3-java==3.12.0-2 +libcommons-lang-java==2.6-10+deb12u1 +libcommons-lang3-java==3.12.0-2+deb12u1 libcommons-logging-java==1.2-3 libcommons-parent-java==56-1 libcommons-text-java==1.10.0-1 @@ -527,7 +512,7 @@ libconfig-tiny-perl==2.28-2 libconst-fast-perl==0.014-2 libcontextual-return-perl==0.004014-4 libconvert-binhex-perl==1.125-3 -libcpanel-json-xs-perl==4.35-1 +libcpanel-json-xs-perl==4.35-1+deb12u1 libcrypt-dev==1:4.4.33-2 libcrypt-rc4-perl==2.02-5 libcryptsetup12==2:2.6.1-4~deb12u2 @@ -535,11 +520,11 @@ libctf-nobfd0==2.40-2 libctf0==2.40-2 libcunit1==2.1-3-dfsg-2.6 libcunit1-dev==2.1-3-dfsg-2.6 -libcups2==2.4.2-3+deb12u8 -libcurl3-gnutls==7.88.1-10+deb12u8 -libcurl3-nss==7.88.1-10+deb12u8 -libcurl4==7.88.1-10+deb12u8 -libcurl4-openssl-dev==7.88.1-10+deb12u8 +libcups2==2.4.2-3+deb12u9 +libcurl3-gnutls==7.88.1-10+deb12u14 +libcurl3-nss==7.88.1-10+deb12u14 +libcurl4==7.88.1-10+deb12u14 +libcurl4-openssl-dev==7.88.1-10+deb12u14 libdaemon-dev==0.14-7.1 libdaemon0==0.14-7.1 libdata-dpath-perl==0.58-2 @@ -585,8 +570,8 @@ libdevmapper1.02.1==2:1.02.185-2 libdigest-perl-md5-perl==1.9-5 libdist-checkconflicts-perl==0.11-2 libdistro-info-perl==1.5+deb12u1 -libdjvulibre-text==3.5.28-2 -libdjvulibre21==3.5.28-2+b1 +libdjvulibre-text==3.5.28-2.2~deb12u1 +libdjvulibre21==3.5.28-2.2~deb12u1 libdom4j-java==2.1.3-2 libdouble-conversion3==3.2.1-1 libdoxia-core-java==1.12.0-1 @@ -634,17 +619,17 @@ libevent-openssl-2.1-7==2.1.12-stable-8 libevent-pthreads-2.1-7==2.1.12-stable-8 libexception-class-perl==1.45-1 libexecs0==1.3-2 -libexpat1==2.5.0-1+deb12u1 -libexpat1-dev==2.5.0-1+deb12u1 +libexpat1==2.5.0-1+deb12u2 +libexpat1-dev==2.5.0-1+deb12u2 libexplain-dev==1.4.D001-12+b1 libexplain51==1.4.D001-12+b1 libexporter-tiny-perl==1.006000-1 libfabric1==1.17.0-3 libfakeroot==1.31-1.2 libfastjson4==1.2304.0-1 -libfcgi-bin==2.4.2-2 +libfcgi-bin==2.4.2-2+deb12u1 libfcgi-perl==0.82+ds-2 -libfcgi0ldbl==2.4.2-2 +libfcgi0ldbl==2.4.2-2+deb12u1 libfdisk1==2.38.1-5+deb12u3 libfdt1==1.6.1-4+b1 libfeature-compat-class-perl==0.05-1 @@ -659,7 +644,7 @@ libfile-copy-recursive-perl==0.45-4 libfile-desktopentry-perl==0.22-3 libfile-dirlist-perl==0.05-3 libfile-fcntllock-perl==0.22-4+b1 -libfile-find-rule-perl==0.34-3 +libfile-find-rule-perl==0.34-4~deb12u1 libfile-homedir-perl==1.006-2 libfile-listing-perl==6.15-1 libfile-mimeinfo-perl==0.33-1 @@ -680,8 +665,8 @@ libfontconfig-dev==2.14.1-4 libfontconfig1==2.14.1-4 libfontenc1==1:1.1.4-1 libfop-java==1:2.8-2 -libfreetype-dev==2.12.1+dfsg-5+deb12u3 -libfreetype6==2.12.1+dfsg-5+deb12u3 +libfreetype-dev==2.12.1+dfsg-5+deb12u4 +libfreetype6==2.12.1+dfsg-5+deb12u4 libfreezethaw-perl==0.5001-3 libfribidi-dev==1.0.8-2.1 libfribidi0==1.0.8-2.1 @@ -695,25 +680,23 @@ libgav1-1==0.18.0-1+b1 libgbm1==22.3.6-1+deb12u1 libgc-dev==1:8.2.2-3 libgc1==1:8.2.2-3 -libgcc-12-dev==12.2.0-14 -libgcc-12-dev-armhf-cross==12.2.0-14cross1 -libgcc-s1-armhf-cross==12.2.0-14cross1 +libgcc-12-dev==12.2.0-14+deb12u1 libgd-perl==2.76-4+b1 libgd3==2.3.3-9 libgdbm-compat4==1.23-3 libgdbm6==1.23-3 -libgdk-pixbuf-2.0-0==2.42.10+dfsg-1+deb12u1 -libgdk-pixbuf-2.0-dev==2.42.10+dfsg-1+deb12u1 -libgdk-pixbuf2.0-bin==2.42.10+dfsg-1+deb12u1 -libgdk-pixbuf2.0-common==2.42.10+dfsg-1+deb12u1 +libgdk-pixbuf-2.0-0==2.42.10+dfsg-1+deb12u3 +libgdk-pixbuf-2.0-dev==2.42.10+dfsg-1+deb12u3 +libgdk-pixbuf2.0-bin==2.42.10+dfsg-1+deb12u3 +libgdk-pixbuf2.0-common==2.42.10+dfsg-1+deb12u3 libgeronimo-annotation-1.3-spec-java==1.3-1 libgeronimo-interceptor-3.0-spec-java==1.0.1-4 libgetopt-long-descriptive-perl==0.111-1 libgettextpo-dev==0.21-12 libgettextpo0==0.21-12 libgfapi0==10.3-5 -libgfortran-12-dev==12.2.0-14 -libgfortran5==12.2.0-14 +libgfortran-12-dev==12.2.0-14+deb12u1 +libgfortran5==12.2.0-14+deb12u1 libgfrpc0==10.3-5 libgfxdr0==10.3-5 libgif7==5.2.1-2.5 @@ -728,11 +711,11 @@ libglapi-mesa==22.3.6-1+deb12u1 libgles-dev==1.6.0-1 libgles1==1.6.0-1 libgles2==1.6.0-1 -libglib2.0-0==2.74.6-2+deb12u5 -libglib2.0-bin==2.74.6-2+deb12u5 -libglib2.0-data==2.74.6-2+deb12u5 -libglib2.0-dev==2.74.6-2+deb12u5 -libglib2.0-dev-bin==2.74.6-2+deb12u5 +libglib2.0-0==2.74.6-2+deb12u8 +libglib2.0-bin==2.74.6-2+deb12u8 +libglib2.0-data==2.74.6-2+deb12u8 +libglib2.0-dev==2.74.6-2+deb12u8 +libglib2.0-dev-bin==2.74.6-2+deb12u8 libglibmm-2.4-1v5==2.66.5-2 libglu1-mesa==9.0.2-1.1 libglu1-mesa-dev==9.0.2-1.1 @@ -747,10 +730,8 @@ libgme0==0.6.3-6 libgmock-dev==1.12.1-0.2 libgmp-dev==2:6.2.1+dfsg1-1.1 libgmpxx4ldbl==2:6.2.1+dfsg1-1.1 -libgnutls-dane0==3.7.9-2+deb12u4 -libgnutls30==3.7.9-2+deb12u4 -libgomp1==12.2.0-14 -libgomp1-armhf-cross==12.2.0-14cross1 +libgnutls-dane0==3.7.9-2+deb12u6 +libgomp1==12.2.0-14+deb12u1 libgoogle-perftools4==2.10-1 libgpgme11==1.18.0-3+b1 libgpm2==1.20.7-10+b1 @@ -761,17 +742,17 @@ libgrpc++-dev==1.51.1-3+b1 libgrpc++1.51==1.51.1-3+b1 libgrpc-dev==1.51.1-3+b1 libgrpc29==1.51.1-3+b1 -libgs-common==10.0.0~dfsg-11+deb12u6 -libgs10==10.0.0~dfsg-11+deb12u6 -libgs10-common==10.0.0~dfsg-11+deb12u6 +libgs-common==10.0.0~dfsg-11+deb12u8 +libgs10==10.0.0~dfsg-11+deb12u8 +libgs10-common==10.0.0~dfsg-11+deb12u8 libgsl27==2.7.1+dfsg-5+deb12u1 libgslcblas0==2.7.1+dfsg-5+deb12u1 libgsm1==1.0.22-1 libgspell-1-2==1.12.0-1+b2 libgspell-1-common==1.12.0-1 -libgssapi-krb5-2==1.20.1-2+deb12u2 -libgssrpc4==1.20.1-2+deb12u2 -libgstreamer-plugins-base1.0-0==1.22.0-3+deb12u4 +libgssapi-krb5-2==1.20.1-2+deb12u4 +libgssrpc4==1.20.1-2+deb12u4 +libgstreamer-plugins-base1.0-0==1.22.0-3+deb12u6 libgstreamer1.0-0==1.22.0-2+deb12u1 libgtest-dev==1.12.1-0.2 libgtk-3-0==3.24.38-2~deb12u3 @@ -815,7 +796,6 @@ libhttp-tiny-multipart-perl==0.08-2 libhttpclient-java==4.5.14-1 libhttpcore-java==4.4.16-1 libhunspell-1.7-0==1.7.1-1 -libhwasan0==12.2.0-14 libhwloc-dev==2.9.0-1 libhwloc-plugins==2.9.0-1 libhwloc15==2.9.0-1 @@ -825,14 +805,14 @@ libibverbs-dev==44.0-2 libibverbs1==44.0-2 libice-dev==2:1.0.10-1 libice6==2:1.0.10-1 -libicu-dev==72.1-3 -libicu72==72.1-3 +libicu-dev==72.1-3+deb12u1 +libicu72==72.1-3+deb12u1 libidn12==1.41-1 libiec61883-0==1.2.0-6+b1 libigdgmm12==22.3.3+ds1-1 libijs-0.35==0.35-15 -libimage-magick-perl==8:6.9.11.60+dfsg-1.6+deb12u2 -libimage-magick-q16-perl==8:6.9.11.60+dfsg-1.6+deb12u2 +libimage-magick-perl==8:6.9.11.60+dfsg-1.6+deb12u7 +libimage-magick-q16-perl==8:6.9.11.60+dfsg-1.6+deb12u7 libimagequant0==2.17.0-1 libimath-3-1-29==3.1.6-1 libimport-into-perl==1.002005-2 @@ -861,7 +841,7 @@ libisl23==0.25-1.1 libiterator-perl==0.03+ds1-2 libiterator-util-perl==0.02+ds1-2 libitext1-java==1.4-7 -libitm1==12.2.0-14 +libitm1==12.2.0-14+deb12u1 libjack-jackd2-0==1.9.21~dfsg-3 libjansi-java==2.4.0-2 libjansson-dev==2.14-2 @@ -874,12 +854,12 @@ libjbig2dec0==0.19-3 libjcode-pm-perl==2.06-1.1 libjemalloc-dev==5.3.0-1 libjemalloc2==5.3.0-1 -libjetty9-java==9.4.50-4+deb12u3 +libjetty9-java==9.4.57-1.1~deb12u1 libjpeg-dev==1:2.1.5-2 libjpeg62-turbo==1:2.1.5-2 libjpeg62-turbo-dev==1:2.1.5-2 -libjq1==1.6-2.1 -libjs-bootstrap4==4.6.1+dfsg1-4 +libjq1==1.6-2.1+deb12u1 +libjs-bootstrap4==4.6.1+dfsg1-4+deb12u1 libjs-d3==3.5.17-4 libjs-jquery==3.6.1+dfsg+~3.5.14-1 libjs-jquery-hotkeys==0~20130707+git2d51e3a9+dfsg-2.1 @@ -896,7 +876,7 @@ libjson-c-dev==0.16-2 libjson-c5==0.16-2 libjson-maybexs-perl==1.004004-1 libjson-perl==4.10000-1 -libjson-xs-perl==4.030-2+b1 +libjson-xs-perl==4.040-1~deb12u1 libjsoncpp-dev==1.9.5-4 libjsoncpp25==1.9.5-4 libjsoup-java==1.15.3-1 @@ -905,19 +885,19 @@ libjsr305-java==0.1~+svn49-11 libjtidy-java==7+svn20110807-5 libjudy-dev==1.0.5-5+b2 libjudydebian1==1.0.5-5+b2 -libjxl0.7==0.7.0-10 +libjxl0.7==0.7.0-10+deb12u1 libjxr-tools==1.2~git20170615.f752187-5 libjxr0==1.2~git20170615.f752187-5 -libk5crypto3==1.20.1-2+deb12u2 -libkadm5clnt-mit12==1.20.1-2+deb12u2 -libkadm5srv-mit12==1.20.1-2+deb12u2 -libkdb5-10==1.20.1-2+deb12u2 +libk5crypto3==1.20.1-2+deb12u4 +libkadm5clnt-mit12==1.20.1-2+deb12u4 +libkadm5srv-mit12==1.20.1-2+deb12u4 +libkdb5-10==1.20.1-2+deb12u4 libkeyutils1==1.6.3-2 libkmod2==30+20221128-1 libkpathsea6==2022.20220321.62855-5.1+deb12u2 -libkrb5-3==1.20.1-2+deb12u2 -libkrb5-dev==1.20.1-2+deb12u2 -libkrb5support0==1.20.1-2+deb12u2 +libkrb5-3==1.20.1-2+deb12u4 +libkrb5-dev==1.20.1-2+deb12u4 +libkrb5support0==1.20.1-2+deb12u4 libksba8==1.6.3-2 liblab-gamut1==2.42.2-7+deb12u1 liblapack3==3.11.0-2 @@ -944,7 +924,7 @@ liblog-any-adapter-screen-perl==0.140-2 liblog-any-perl==1.713-1 liblognorm5==2.0.6-4 liblqr-1-0==0.4.2-2.1 -liblsan0==12.2.0-14 +liblsan0==12.2.0-14+deb12u1 libltdl-dev==2.4.7-7~deb12u1 libltdl7==2.4.7-7~deb12u1 liblua5.1-0==5.1.5-9 @@ -953,20 +933,20 @@ liblua5.3-0==5.3.6-2 liblwp-mediatypes-perl==6.04-2 liblwp-protocol-https-perl==6.10-1 liblz1==1.13-5 -liblzma-dev==5.4.1-0.2 +liblzma-dev==5.4.1-1 liblzo2-2==2.10-2 liblzo2-dev==2.10-2 libmagic-mgc==1:5.44-3 libmagic1==1:5.44-3 -libmagick++-6.q16-8==8:6.9.11.60+dfsg-1.6+deb12u2 -libmagickcore-6.q16-6==8:6.9.11.60+dfsg-1.6+deb12u2 -libmagickcore-6.q16-6-extra==8:6.9.11.60+dfsg-1.6+deb12u2 -libmagickwand-6.q16-6==8:6.9.11.60+dfsg-1.6+deb12u2 +libmagick++-6.q16-8==8:6.9.11.60+dfsg-1.6+deb12u7 +libmagickcore-6.q16-6==8:6.9.11.60+dfsg-1.6+deb12u7 +libmagickcore-6.q16-6-extra==8:6.9.11.60+dfsg-1.6+deb12u7 +libmagickwand-6.q16-6==8:6.9.11.60+dfsg-1.6+deb12u7 libmail-sendmail-perl==0.80-3 libmailtools-perl==2.21-2 -libmariadb-dev==1:10.11.6-0+deb12u1 -libmariadb-dev-compat==1:10.11.6-0+deb12u1 -libmariadb3==1:10.11.6-0+deb12u1 +libmariadb-dev==1:10.11.14-0+deb12u2 +libmariadb-dev-compat==1:10.11.14-0+deb12u2 +libmariadb3==1:10.11.14-0+deb12u2 libmarkdown2==2.2.7-2 libmath-base85-perl==0.5+dfsg-2 libmaven-archiver-java==3.6.0-1 @@ -1013,7 +993,7 @@ libmpg123-0==1.31.2-1+deb12u1 libmro-compat-perl==0.15-2 libmtdev1==1.1.6-1 libmujs2==1.3.2-1 -libmunge2==0.5.15-2 +libmunge2==0.5.15-2+deb12u1 libmysofa1==1.3.1~dfsg0-1 libnamespace-autoclean-perl==0.29-2 libnamespace-clean-perl==0.27-2 @@ -1035,7 +1015,7 @@ libnetaddr-ip-perl==4.079+dfsg-2+b1 libnetfilter-conntrack-dev==1.0.9-3 libnetfilter-conntrack3==1.0.9-3 libnetpbm11==2:11.01.00-2 -libnetsnmptrapd40==5.9.3+dfsg-2 +libnetsnmptrapd40==5.9.3+dfsg-2+deb12u1 libnewt-dev==0.52.23-1+b1 libnewt0.52==0.52.23-1+b1 libnfnetlink-dev==1.0.2-2 @@ -1049,20 +1029,19 @@ libnl-3-200==3.7.0-0.2+b1 libnl-3-dev==3.7.0-0.2+b1 libnl-route-3-200==3.7.0-0.2+b1 libnl-route-3-dev==3.7.0-0.2+b1 -libnode108==18.19.0+dfsg-6~deb12u2 libnorm-dev==1.5.9+dfsg-2 libnorm1==1.5.9+dfsg-2 libnpth0==1.6-3 libnsl-dev==1.3.0-2 libnsl2==1.3.0-2 libnspr4==2:4.35-1 -libnss-systemd==252.33-1~deb12u1 -libnss3==2:3.87.1-1+deb12u1 +libnss-systemd==252.39-1~deb12u1 +libnss3==2:3.87.1-1+deb12u2 libnuma-dev==2.0.16-1 libnuma1==2.0.16-1 libnumber-compare-perl==0.03-3 -libobjc-12-dev==12.2.0-14 -libobjc4==12.2.0-14 +libobjc-12-dev==12.2.0-14+deb12u1 +libobjc4==12.2.0-14+deb12u1 libobject-pad-perl==0.78-1 libogg0==1.3.5-3 libole-storage-lite-perl==0.20-2 @@ -1076,7 +1055,7 @@ libopencsd1==1.3.3-1 libopenexr-3-1-30==3.1.5-5 libopengl-dev==1.6.0-1 libopengl0==1.6.0-1 -libopenjp2-7==2.5.0-2+deb12u1 +libopenjp2-7==2.5.0-2+deb12u2 libopenmpi-dev==4.1.4-3+b1 libopenmpi3==4.1.4-3+b1 libopenmpt0==0.6.9-1 @@ -1094,9 +1073,9 @@ libpackage-stash-perl==0.40-1 libpackage-stash-xs-perl==0.30-1+b1 libpackagekit-glib2-18==1.2.6-5 libpadwalker-perl==2.5-1+b3 -libpam-cap==1:2.66-4 -libpam-systemd==252.33-1~deb12u1 -libpam0g-dev==1.5.2-6+deb12u1 +libpam-cap==1:2.66-4+deb12u2+b2 +libpam-systemd==252.39-1~deb12u1 +libpam0g-dev==1.5.2-6+deb12u2 libpango-1.0-0==1.50.12+ds-1 libpango1.0-dev==1.50.12+ds-1 libpangocairo-1.0-0==1.50.12+ds-1 @@ -1130,8 +1109,8 @@ libpcrecpp0v5==2:8.39-15 libpcsclite-dev==1.9.9-2 libpcsclite1==1.9.9-2 libpdfbox-java==1:1.8.16-2 -libperl-dev==5.36.0-7+deb12u1 -libperl5.36==5.36.0-7+deb12u1 +libperl-dev==5.36.0-7+deb12u3 +libperl5.36==5.36.0-7+deb12u3 libperlio-gzip-perl==0.20-1+b1 libperlio-utf8-strict-perl==0.010-1 libpfm4==4.13.0-1 @@ -1163,19 +1142,19 @@ libplexus-velocity-java==1.2-3.1 libpmem1==1.12.1-2 libpmix-dev==4.2.2-1+deb12u1 libpmix2==4.2.2-1+deb12u1 -libpng-dev==1.6.39-2 -libpng-tools==1.6.39-2 -libpng16-16==1.6.39-2 +libpng-dev==1.6.39-2+deb12u3 +libpng-tools==1.6.39-2+deb12u3 +libpng16-16==1.6.39-2+deb12u3 libpocketsphinx3==0.8+5prealpha+1-15 libpod-constants-perl==0.19-2 libpod-parser-perl==1.65-1 libpolkit-agent-1-0==122-3 libpolkit-gobject-1-0==122-3 -libpoppler-glib8==22.12.0-2+b1 -libpoppler126==22.12.0-2+b1 +libpoppler-glib8==22.12.0-2+deb12u1 +libpoppler126==22.12.0-2+deb12u1 libpopt-dev==1.19+dfsg-1 libpopt0==1.19+dfsg-1 -libpostproc56==7:5.1.6-0+deb12u1 +libpostproc56==7:5.1.8-0+deb12u1 libpotrace0==1.16-2 libproc-processtable-perl==0.634-1+b2 libproc2-0==2:4.0.2-3 @@ -1197,35 +1176,35 @@ libpython3-all-dev==3.11.2-1+b1 libpython3-dbg==3.11.2-1+b1 libpython3-dev==3.11.2-1+b1 libpython3-stdlib==3.11.2-1+b1 -libpython3.11==3.11.2-6+deb12u5 -libpython3.11-dbg==3.11.2-6+deb12u5 -libpython3.11-dev==3.11.2-6+deb12u5 -libpython3.11-minimal==3.11.2-6+deb12u5 -libpython3.11-stdlib==3.11.2-6+deb12u5 +libpython3.11==3.11.2-6+deb12u6 +libpython3.11-dbg==3.11.2-6+deb12u6 +libpython3.11-dev==3.11.2-6+deb12u6 +libpython3.11-minimal==3.11.2-6+deb12u6 +libpython3.11-stdlib==3.11.2-6+deb12u6 libqdox-java==1.12.1-3 libqdox2-java==2.0.3-1 libqhull-r8.0==2020.2-5 -libqt5concurrent5==5.15.8+dfsg-11+deb12u2 -libqt5core5a==5.15.8+dfsg-11+deb12u2 -libqt5dbus5==5.15.8+dfsg-11+deb12u2 -libqt5gui5==5.15.8+dfsg-11+deb12u2 -libqt5network5==5.15.8+dfsg-11+deb12u2 -libqt5opengl5==5.15.8+dfsg-11+deb12u2 -libqt5opengl5-dev==5.15.8+dfsg-11+deb12u2 -libqt5printsupport5==5.15.8+dfsg-11+deb12u2 +libqt5concurrent5==5.15.8+dfsg-11+deb12u3 +libqt5core5a==5.15.8+dfsg-11+deb12u3 +libqt5dbus5==5.15.8+dfsg-11+deb12u3 +libqt5gui5==5.15.8+dfsg-11+deb12u3 +libqt5network5==5.15.8+dfsg-11+deb12u3 +libqt5opengl5==5.15.8+dfsg-11+deb12u3 +libqt5opengl5-dev==5.15.8+dfsg-11+deb12u3 +libqt5printsupport5==5.15.8+dfsg-11+deb12u3 libqt5qml5==5.15.8+dfsg-3 libqt5qmlmodels5==5.15.8+dfsg-3 libqt5quick5==5.15.8+dfsg-3 -libqt5sql5==5.15.8+dfsg-11+deb12u2 -libqt5sql5-sqlite==5.15.8+dfsg-11+deb12u2 +libqt5sql5==5.15.8+dfsg-11+deb12u3 +libqt5sql5-sqlite==5.15.8+dfsg-11+deb12u3 libqt5svg5==5.15.8-3 -libqt5test5==5.15.8+dfsg-11+deb12u2 +libqt5test5==5.15.8+dfsg-11+deb12u3 libqt5waylandclient5==5.15.8-2 libqt5waylandcompositor5==5.15.8-2 -libqt5widgets5==5.15.8+dfsg-11+deb12u2 -libqt5xml5==5.15.8+dfsg-11+deb12u2 -libquadmath0==12.2.0-14 -librabbitmq4==0.11.0-1+b1 +libqt5widgets5==5.15.8+dfsg-11+deb12u3 +libqt5xml5==5.15.8+dfsg-11+deb12u3 +libquadmath0==12.2.0-14+deb12u1 +librabbitmq4==0.11.0-1+deb12u1 librados2==16.2.15+ds-0+deb12u1 libraqm0==0.7.0-4.1 librav1e0==0.5.1-6 @@ -1293,16 +1272,16 @@ libsm6==2:1.2.3-1 libsnappy-java==1.1.8.3-1 libsnappy-jni==1.1.8.3-1 libsnappy1v5==1.1.9-3 -libsndfile1==1.2.0-1 +libsndfile1==1.2.0-1+deb12u1 libsndio7.0==1.9.0-0.3+b2 -libsnmp-base==5.9.3+dfsg-2 -libsnmp-dev==5.9.3+dfsg-2 -libsnmp-perl==5.9.3+dfsg-2 -libsnmp40==5.9.3+dfsg-2 +libsnmp-base==5.9.3+dfsg-2+deb12u1 +libsnmp-dev==5.9.3+dfsg-2+deb12u1 +libsnmp-perl==5.9.3+dfsg-2+deb12u1 +libsnmp40==5.9.3+dfsg-2+deb12u1 libsoap-lite-perl==1.27-3 libsocket6-perl==0.29-3 -libsodium-dev==1.0.18-1 -libsodium23==1.0.18-1 +libsodium-dev==1.0.18-1+deb12u1 +libsodium23==1.0.18-1+deb12u1 libsord-0-0==0.16.14+git221008-1 libsort-versions-perl==1.62-3 libsoup2.4-1==2.74.3-1+deb12u1 @@ -1315,17 +1294,16 @@ libsphinxbase3==0.8+5prealpha+1-16 libspice-server1==0.15.1-1 libspreadsheet-parseexcel-perl==0.6500-4~deb12u1 libspreadsheet-writeexcel-perl==2.40-4 -libsqlite3-0==3.40.1-2+deb12u1 -libsqlite3-dev==3.40.1-2+deb12u1 +libsqlite3-0==3.40.1-2+deb12u2 +libsqlite3-dev==3.40.1-2+deb12u2 libsratom-0-0==0.6.14-1 libsrt1.5-gnutls==1.5.1-1+deb12u1 -libssh-4==0.10.6-0+deb12u1 -libssh-gcrypt-4==0.10.6-0+deb12u1 +libssh-4==0.10.6-0+deb12u2 +libssh-gcrypt-4==0.10.6-0+deb12u2 libssh2-1==1.10.0-3+b1 -libssl-dev==3.0.15-1~deb12u1 -libssl3==3.0.15-1~deb12u1 -libstdc++-12-dev==12.2.0-14 -libstdc++6-armhf-cross==12.2.0-14cross1 +libssl-dev==3.0.18-1~deb12u2 +libssl3==3.0.18-1~deb12u2 +libstdc++-12-dev==12.2.0-14+deb12u1 libstemmer0d==2.2.0-2 libstrictures-perl==2.000006-1 libstring-copyright-perl==0.003014-1 @@ -1344,18 +1322,17 @@ libsubunit0==1.4.0-3 libsurefire-java==2.22.3-2 libsvtav1enc1==1.4.1+dfsg-1 libswitch-perl==2.17-3 -libswresample4==7:5.1.6-0+deb12u1 -libswscale6==7:5.1.6-0+deb12u1 +libswresample4==7:5.1.8-0+deb12u1 +libswscale6==7:5.1.8-0+deb12u1 libsynctex2==2022.20220321.62855-5.1+deb12u2 libsyntax-keyword-try-perl==0.28-1 libsys-cpuaffinity-perl==1.13~03-2+b1 libsys-hostname-long-perl==1.5-3 -libsystemd-dev==252.33-1~deb12u1 -libsystemd-shared==252.33-1~deb12u1 +libsystemd-dev==252.39-1~deb12u1 +libsystemd-shared==252.39-1~deb12u1 libtag1v5==1.13-2 libtag1v5-vanilla==1.13-2 libtask-weaken-perl==1.06-2 -libtasn1-6==4.19.0-2+deb12u1 libtcl8.6==8.6.13+dfsg-2 libtcmalloc-minimal4==2.10-1 libteckit0==2.5.11+ds1-1+b1 @@ -1376,13 +1353,13 @@ libtext-xslate-perl==3.5.9-1+b2 libthai-data==0.1.29-1 libthai-dev==0.1.29-1 libthai0==0.1.29-1 -libtheora0==1.1.1+dfsg.1-16.1+b1 +libtheora0==1.1.1+dfsg.1-16.1+deb12u1 libthrift-0.17.0==0.17.0-2+b2 libthrift-dev==0.17.0-2+b2 libtie-ixhash-perl==1.23-4 -libtiff-dev==4.5.0-6+deb12u2 -libtiff6==4.5.0-6+deb12u2 -libtiffxx6==4.5.0-6+deb12u2 +libtiff-dev==4.5.0-6+deb12u3 +libtiff6==4.5.0-6+deb12u3 +libtiffxx6==4.5.0-6+deb12u3 libtime-duration-perl==1.21-2 libtime-moment-perl==0.44-2+b1 libtimedate-perl==2.3300-2 @@ -1399,18 +1376,17 @@ libtraceevent1==1:1.7.1-1 libtracefs-dev==1.6.4-1 libtracefs1==1.6.4-1 libtry-tiny-perl==0.31-2 -libtsan2==12.2.0-14 +libtsan2==12.2.0-14+deb12u1 libtwolame0==0.4.0-2 libtype-tiny-perl==2.002001-1 libtype-tiny-xs-perl==0.025-1 libtypes-serialiser-perl==1.01-1 -libubsan1==12.2.0-14 -libubsan1-armhf-cross==12.2.0-14cross1 +libubsan1==12.2.0-14+deb12u1 libuchardet0==0.0.7-1 libucx0==1.13.1-1 -libudev-dev==252.33-1~deb12u1 +libudev-dev==252.39-1~deb12u1 libudfread0==1.1.2-1 -libunbound8==1.17.1-2+deb12u2 +libunbound8==1.17.1-2+deb12u4 libunicode-map-perl==0.112-13+b1 libunicode-utf8-perl==0.62-2 libunivocity-parsers-java==2.9.1-1 @@ -1445,7 +1421,7 @@ libvisual-0.4-0==0.4.0-19 libvorbis0a==1.3.7-1 libvorbisenc2==1.3.7-1 libvorbisfile3==1.3.7-1 -libvpx7==1.12.0-1+deb12u3 +libvpx7==1.12.0-1+deb12u5 libvte-2.91-0==0.70.6-2~deb12u1 libvte-2.91-common==0.70.6-2~deb12u1 libvulkan-dev==1.3.239.0-1 @@ -1486,15 +1462,15 @@ libx11-protocol-perl==0.56-9 libx11-xcb1==2:1.8.4-2+deb12u2 libx264-164==2:0.164.3095+gitbaee400-3 libx265-199==3.5-2+b1 -libx32asan8==12.2.0-14 -libx32atomic1==12.2.0-14 -libx32gcc-12-dev==12.2.0-14 -libx32gcc-s1==12.2.0-14 -libx32gomp1==12.2.0-14 -libx32itm1==12.2.0-14 -libx32quadmath0==12.2.0-14 -libx32stdc++6==12.2.0-14 -libx32ubsan1==12.2.0-14 +libx32asan8==12.2.0-14+deb12u1 +libx32atomic1==12.2.0-14+deb12u1 +libx32gcc-12-dev==12.2.0-14+deb12u1 +libx32gcc-s1==12.2.0-14+deb12u1 +libx32gomp1==12.2.0-14+deb12u1 +libx32itm1==12.2.0-14+deb12u1 +libx32quadmath0==12.2.0-14+deb12u1 +libx32stdc++6==12.2.0-14+deb12u1 +libx32ubsan1==12.2.0-14+deb12u1 libxalan2-java==2.7.2-4 libxapian30==1.4.22-1 libxau-dev==1:1.0.9-1 @@ -1558,9 +1534,9 @@ libxml-sax-perl==1.02+dfsg-3 libxml-simple-perl==2.25-2 libxml-twig-perl==1:3.52-2 libxml-xpathengine-perl==0.14-2 -libxml2==2.9.14+dfsg-1.3~deb12u1 -libxml2-dev==2.9.14+dfsg-1.3~deb12u1 -libxml2-utils==2.9.14+dfsg-1.3~deb12u1 +libxml2==2.9.14+dfsg-1.3~deb12u5 +libxml2-dev==2.9.14+dfsg-1.3~deb12u5 +libxml2-utils==2.9.14+dfsg-1.3~deb12u5 libxmlb2==0.3.10-2 libxmlgraphics-commons-java==2.8-2 libxmlrpc-lite-perl==0.717-5 @@ -1576,8 +1552,7 @@ libxs-parse-keyword-perl==0.33-1 libxs-parse-sublike-perl==0.16-1+b2 libxshmfence1==1.3-1 libxsimd-dev==8.1.0-7 -libxslt1-dev==1.1.35-1 -libxslt1.1==1.1.35-1 +libxslt1.1==1.1.35-1+deb12u3 libxss1==1:1.2.3-1 libxstring-perl==0.005-2+b1 libxt-dev==1:1.2.1-1.1 @@ -1596,7 +1571,7 @@ libyaml-0-2==0.2.5-1 libyaml-cpp-dev==0.7.0+dfsg-8+b1 libyaml-cpp0.7==0.7.0+dfsg-8+b1 libyaml-dev==0.2.5-1 -libyaml-libyaml-perl==0.86+ds-1 +libyaml-libyaml-perl==0.86+ds-1+deb12u1 libyuv0==0.0~git20230123.b2528b0-1 libz3-4==4.8.12-3.1 libz3-dev==4.8.12-3.1 @@ -1610,15 +1585,13 @@ libzvbi-common==0.2.41-1 libzvbi0==0.2.41-1 libzzip-0-13==0.13.72+dfsg.1-1.1 licensecheck==3.3.5-1 -lintian==2.116.3 -linux-compiler-gcc-12-x86==6.1.128-1 -linux-headers-6.1.0-31-amd64==6.1.128-1 -linux-headers-6.1.0-31-arm64==6.1.128-1 -linux-headers-6.1.0-31-common==6.1.128-1 -linux-headers-amd64==6.1.128-1 -linux-headers-arm64==6.1.128-1 -linux-kbuild-6.1==6.1.128-1 -linux-libc-dev==6.1.128-1 +lintian==2.116.3+deb12u1 +linux-compiler-gcc-12-x86==6.1.164-1 +linux-headers-6.1.0-44-amd64==6.1.164-1 +linux-headers-6.1.0-44-common==6.1.164-1 +linux-headers-amd64==6.1.164-1 +linux-kbuild-6.1==6.1.164-1 +linux-libc-dev==6.1.164-1 linuxdoc-tools==0.9.82-1 llvm==1:14.0-55.7~deb12u1 llvm-14==1:14.0.6-12 @@ -1628,7 +1601,7 @@ llvm-14-runtime==1:14.0.6-12 llvm-14-tools==1:14.0.6-12 llvm-runtime==1:14.0-55.7~deb12u1 lmodern==2.005-1 -locales==2.36-9+deb12u9 +locales==2.36-9+deb12u13 logrotate==3.21.0-1 lsb-release==12.0-1 lsof==4.95.0-1 @@ -1647,7 +1620,7 @@ man-db==2.11.2-2 man2html-base==1.6g-14 manpages==6.03-2 manpages-dev==6.03-2 -mariadb-common==1:10.11.6-0+deb12u1 +mariadb-common==1:10.11.14-0+deb12u2 maven==3.8.7-1 maven-debian-helper==2.6.3 maven-repo-helper==1.11 @@ -1658,42 +1631,33 @@ mesa-vulkan-drivers==22.3.6-1+deb12u1 meson==1.0.1-5 mime-support==3.66 module-assistant==0.11.11 -mokutil==0.6.0-2 mpi-default-bin==1.14 mpi-default-dev==1.14 mupdf-tools==1.21.1+ds2-1+b4 mysql-common==5.8+1.1.0 ncurses-term==6.4-4 -net-tools==2.10-0.1 +net-tools==2.10-0.1+deb12u2 netbase==6.4 netpbm==2:11.01.00-2 nftables==1.0.6-2+deb12u2 ninja-build==1.11.1-2~deb12u1 nlohmann-json3-dev==3.11.2-2 -node-acorn==8.8.1+ds+~cs25.17.7-2 -node-busboy==1.6.0+~cs2.6.0-2 -node-cjs-module-lexer==1.2.2+dfsg-5 node-jquery==3.6.1+dfsg+~3.5.14-1 -node-undici==5.15.0+dfsg1+~cs20.10.9.3-1+deb12u4 -node-xtend==4.0.2-3 -nodejs==18.19.0+dfsg-6~deb12u2 -nodejs-doc==18.19.0+dfsg-6~deb12u2 nss-plugin-pem==1.0.8+1-1 ocl-icd-libopencl1==2.3.1-1 openjade==1.4devel1-22 -openjdk-17-jdk==17.0.14+7-1~deb12u1 -openjdk-17-jdk-headless==17.0.14+7-1~deb12u1 -openjdk-17-jre==17.0.14+7-1~deb12u1 -openjdk-17-jre-headless==17.0.14+7-1~deb12u1 +openjdk-17-jdk==17.0.18+8-1~deb12u1 +openjdk-17-jdk-headless==17.0.18+8-1~deb12u1 +openjdk-17-jre==17.0.18+8-1~deb12u1 +openjdk-17-jre-headless==17.0.18+8-1~deb12u1 openmpi-bin==4.1.4-3+b1 openmpi-common==4.1.4-3 opensp==1.5.2-13+b2 -openssh-client==1:9.2p1-2+deb12u4 -openssh-server==1:9.2p1-2+deb12u4 -openssh-sftp-server==1:9.2p1-2+deb12u4 -openssl==3.0.15-1~deb12u1 -os-prober==1.81 -ovmf==2022.11-6+deb12u1 +openssh-client==1:9.2p1-2+deb12u7 +openssh-server==1:9.2p1-2+deb12u7 +openssh-sftp-server==1:9.2p1-2+deb12u7 +openssl==3.0.18-1~deb12u2 +ovmf==2022.11-6+deb12u2 packagekit==1.2.6-5 packagekit-tools==1.2.6-5 pahole==1.24-4.1 @@ -1706,8 +1670,8 @@ pbuilder==0.231 pbzip2==1.1.13-1 pci.ids==0.0~2023.04.11-1 pciutils==1:3.9.0-4 -perl==5.36.0-7+deb12u1 -perl-modules-5.36==5.36.0-7+deb12u1 +perl==5.36.0-7+deb12u3 +perl-modules-5.36==5.36.0-7+deb12u3 perl-openssl-defaults==7+b1 php-cli==2:8.2+93 php-codecoverage==9.2.26+dfsg-1 @@ -1725,12 +1689,12 @@ php-text-template==2.0.4-2 php-timer==5.0.3-3 php-tokenizer==1.2.1-1 php-xml==2:8.2+93 -php8.2-cli==8.2.26-1~deb12u1 -php8.2-common==8.2.26-1~deb12u1 -php8.2-mbstring==8.2.26-1~deb12u1 -php8.2-opcache==8.2.26-1~deb12u1 -php8.2-readline==8.2.26-1~deb12u1 -php8.2-xml==8.2.26-1~deb12u1 +php8.2-cli==8.2.30-1~deb12u1 +php8.2-common==8.2.30-1~deb12u1 +php8.2-mbstring==8.2.30-1~deb12u1 +php8.2-opcache==8.2.30-1~deb12u1 +php8.2-readline==8.2.30-1~deb12u1 +php8.2-xml==8.2.30-1~deb12u1 phpunit==9.6.7-1 phpunit-cli-parser==1.0.1-3 phpunit-code-unit==1.0.8-3 @@ -1835,7 +1799,7 @@ python3-iniconfig==1.1.1-2 python3-ipython==8.5.0-4 python3-isort==5.6.4-1 python3-jedi==0.18.2-1 -python3-jinja2==3.1.2-1+deb12u1 +python3-jinja2==3.1.2-1+deb12u3 python3-jwt==2.6.0-1 python3-kiwisolver==1.4.4-1+b1 python3-lazr.restfulclient==0.14.5-1 @@ -1872,7 +1836,7 @@ python3-pickleshare==0.7.5-5 python3-pil==9.4.0-1.1+deb12u1 python3-pil.imagetk==9.4.0-1.1+deb12u1 python3-pip-whl==23.0.1+dfsg-1 -python3-pkg-resources==66.1.1-1+deb12u1 +python3-pkg-resources==66.1.1-1+deb12u2 python3-platformdirs==2.6.0-1 python3-pluggy==1.0.0+repack-1 python3-ply==3.11-5 @@ -1882,7 +1846,7 @@ python3-psutil==5.9.4-1+b1 python3-ptyprocess==0.7.0-5 python3-pure-eval==0.2.2-1 python3-py==1.11.0-1 -python3-pyasn1==0.4.8-3 +python3-pyasn1==0.4.8-3+deb12u1 python3-pyasn1-modules==0.2.8-1 python3-pyelftools==0.29-1 python3-pygments==2.14.0+dfsg-1 @@ -1897,8 +1861,8 @@ python3-scapy==2.5.0+dfsg-2 python3-scipy==1.10.1-2 python3-scour==0.38.2-2 python3-service-identity==18.1.0-8 -python3-setuptools==66.1.1-1+deb12u1 -python3-setuptools-whl==66.1.1-1+deb12u1 +python3-setuptools==66.1.1-1+deb12u2 +python3-setuptools-whl==66.1.1-1+deb12u2 python3-six==1.16.0-4 python3-snowballstemmer==2.2.0-2 python3-software-properties==0.99.30-4.1~deb12u1 @@ -1919,7 +1883,7 @@ python3-typing-extensions==4.4.0-1 python3-tz==2022.7.1-4 python3-ufolib2==0.14.0+dfsg1-1 python3-unidiff==0.7.3-1 -python3-urllib3==1.26.12-1+deb12u1 +python3-urllib3==1.26.12-1+deb12u3 python3-venv==3.11.2-1+b1 python3-wadllib==1.3.6-4 python3-wcwidth==0.2.5+dfsg1-1.1 @@ -1928,24 +1892,24 @@ python3-wheel==0.38.4-2 python3-wrapt==1.14.1-2+b2 python3-xdg==0.28-2 python3-yaml==6.0-3+b2 -python3-zipp==1.0.0-6 +python3-zipp==1.0.0-6+deb12u1 python3-zope.interface==5.5.2-1+b1 -python3.11==3.11.2-6+deb12u5 -python3.11-dbg==3.11.2-6+deb12u5 -python3.11-dev==3.11.2-6+deb12u5 -python3.11-minimal==3.11.2-6+deb12u5 -python3.11-venv==3.11.2-6+deb12u5 -qemu-block-extra==1:7.2+dfsg-7+deb12u12 -qemu-system-common==1:7.2+dfsg-7+deb12u12 -qemu-system-data==1:7.2+dfsg-7+deb12u12 -qemu-system-gui==1:7.2+dfsg-7+deb12u12 -qemu-system-x86==1:7.2+dfsg-7+deb12u12 -qemu-utils==1:7.2+dfsg-7+deb12u12 -qt5-gtk-platformtheme==5.15.8+dfsg-11+deb12u2 -qt5-qmake==5.15.8+dfsg-11+deb12u2 -qt5-qmake-bin==5.15.8+dfsg-11+deb12u2 -qtbase5-dev==5.15.8+dfsg-11+deb12u2 -qtbase5-dev-tools==5.15.8+dfsg-11+deb12u2 +python3.11==3.11.2-6+deb12u6 +python3.11-dbg==3.11.2-6+deb12u6 +python3.11-dev==3.11.2-6+deb12u6 +python3.11-minimal==3.11.2-6+deb12u6 +python3.11-venv==3.11.2-6+deb12u6 +qemu-block-extra==1:7.2+dfsg-7+deb12u18 +qemu-system-common==1:7.2+dfsg-7+deb12u18 +qemu-system-data==1:7.2+dfsg-7+deb12u18 +qemu-system-gui==1:7.2+dfsg-7+deb12u18 +qemu-system-x86==1:7.2+dfsg-7+deb12u18 +qemu-utils==1:7.2+dfsg-7+deb12u18 +qt5-gtk-platformtheme==5.15.8+dfsg-11+deb12u3 +qt5-qmake==5.15.8+dfsg-11+deb12u3 +qt5-qmake-bin==5.15.8+dfsg-11+deb12u3 +qtbase5-dev==5.15.8+dfsg-11+deb12u3 +qtbase5-dev-tools==5.15.8+dfsg-11+deb12u3 qtchooser==66-2 qttranslations5-l10n==5.15.8-2 qtwayland5==5.15.8-2 @@ -1957,13 +1921,13 @@ rpcsvc-proto==1.4.3-1 rpm-common==4.18.0+dfsg-1+deb12u1 rpm2cpio==4.18.0+dfsg-1+deb12u1 rrdtool==1.7.2-4+b8 -rsync==3.2.7-1+deb12u2 -rsyslog==8.2302.0-1 +rsync==3.2.7-1+deb12u4 +rsyslog==8.2302.0-1+deb12u1 ruby==1:3.1 ruby-all-dev==1:3.1 ruby-asciidoctor==2.0.18-2 ruby-net-telnet==0.2.0-1 -ruby-rubygems==3.3.15-2 +ruby-rubygems==3.3.15-2+deb12u1 ruby-sdbm==1.0.0-5+b1 ruby-webrick==1.8.1-1 ruby-xmlrpc==0.3.2-2 @@ -1982,10 +1946,6 @@ sgmlspl==1.03ii-38 shared-mime-info==2.2-1 sharutils==1:4.15.2-9 shellcheck==0.9.0-1 -shim-helpers-arm64-signed==1+15.8+1~deb12u1 -shim-signed==1.44~1+deb12u1+15.8-1~deb12u1 -shim-signed-common==1.44~1+deb12u1+15.8-1~deb12u1 -shim-unsigned==15.8-1~deb12u1 slirp4netns==1.2.0-1 software-properties-common==0.99.30-4.1~deb12u1 sphinx-common==5.3.0-4 @@ -1993,18 +1953,18 @@ sphinx-rtd-theme-common==1.2.0+dfsg-1 squashfs-tools==1:4.5.1-1 stgit==0.19-1.1 strace==6.1-0.1 -sudo==1.9.13p3-1+deb12u1 +sudo==1.9.13p3-1+deb12u3 swig==4.1.0-0.2 swig4.0==4.1.0-0.2 -systemd==252.33-1~deb12u1 -systemd-sysv==252.33-1~deb12u1 -systemd-timesyncd==252.33-1~deb12u1 +systemd==252.39-1~deb12u1 +systemd-sysv==252.39-1~deb12u1 +systemd-timesyncd==252.39-1~deb12u1 t1utils==1.41-4 tcl==8.6.13 tcl8.6==8.6.13+dfsg-2 tcpdump==4.99.3-1 teckit==2.5.11+ds1-1+b1 -telnet==0.17+2.4-2+deb12u1 +telnet==0.17+2.4-2+deb12u2 tex-common==6.18 tex-gyre==20180621-6 texi2html==1.82+dfsg1-7 @@ -2026,23 +1986,23 @@ tk==8.6.13 tk8.6==8.6.13-2 tk8.6-blt2.5==2.5.3+dfsg-4.1 ucf==3.0043+nmu1+deb12u1 -udev==252.33-1~deb12u1 +udev==252.39-1~deb12u1 unicode-data==15.0.0-1 unzip==6.0-28 -usb.ids==2024.07.04-0+deb12u1 +usb.ids==2025.07.26-0+deb12u1 uuid-dev==2.38.1-5+deb12u3 va-driver-all==2.17.0-1 valgrind==1:3.19.0-1 valgrind-dbg==1:3.19.0-1 vdpau-driver-all==1.5-2 velocity==1.7-6 -vim==2:9.0.1378-2 -vim-common==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 +vim==2:9.0.1378-2+deb12u2 +vim-common==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 watchdog==5.16-1+b2 wayland-protocols==1.31-1 wdiff==1.2.2-5 -wget==1.21.3-1+b2 +wget==1.21.3-1+deb12u1 x11-common==1:7.7+23 x11-utils==7.7+5 x11-xserver-utils==7.7+9+b1 @@ -2057,10 +2017,10 @@ xfonts-utils==1:7.7+6 xkb-data==2.35.1-1 xml-core==0.18+nmu1 xorg-sgml-doctools==1:1.11-1.1 -xsltproc==1.1.35-1 +xsltproc==1.1.35-1+deb12u3 xtrans-dev==1.4.0-1 -xxd==2:9.0.1378-2 -xz-utils==5.4.1-0.2 +xxd==2:9.0.1378-2+deb12u2 +xz-utils==5.4.1-1 zip==3.0-13 zlib1g-dev==1:1.2.13.dfsg-1 zstd==1.5.4+dfsg2-5 diff --git a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-arm64 b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-arm64 index 3b6c4c0923..d1bbff179e 100644 --- a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-arm64 +++ b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-arm64 @@ -1,7 +1,44 @@ bc==1.07.1-3 +binutils-aarch64-linux-gnu==2.40-2 +binutils-arm-linux-gnueabihf==2.40-2 +cpp-12-arm-linux-gnueabihf==12.2.0-14cross1 +cpp-arm-linux-gnueabihf==4:12.2.0-3 dctrl-tools==2.24-3 dvipng==1.15-1.1 +gcc-12-arm-linux-gnueabihf==12.2.0-14cross1 +gcc-12-arm-linux-gnueabihf-base==12.2.0-14cross1 +gcc-12-cross-base==12.2.0-14cross1 +gcc-arm-linux-gnueabihf==4:12.2.0-3 +grub-common==2.06-13+deb12u1 +grub-efi-arm64-bin==2.06-13+deb12u1 +grub-efi-arm64-signed==1+2.06+13+deb12u1 +grub2-common==2.06-13+deb12u1 +libasan8-armhf-cross==12.2.0-14cross1 +libatomic1-armhf-cross==12.2.0-14cross1 +libc6-armhf-cross==2.36-8cross1 +libgcc-12-dev-armhf-cross==12.2.0-14cross1 +libgcc-s1-armhf-cross==12.2.0-14cross1 +libgomp1-armhf-cross==12.2.0-14cross1 +libhwasan0==12.2.0-14+deb12u1 libnanomsg-dev==1.1.5+dfsg-1.1 libnanomsg5==1.1.5+dfsg-1.1 +libnode108==18.20.4+dfsg-1~deb12u1 +libstdc++6-armhf-cross==12.2.0-14cross1 +libubsan1-armhf-cross==12.2.0-14cross1 +libxslt1-dev==1.1.35-1+deb12u3 +linux-headers-6.1.0-44-arm64==6.1.164-1 +linux-headers-arm64==6.1.164-1 +mokutil==0.6.0-2 +node-acorn==8.8.1+ds+~cs25.17.7-2 +node-busboy==1.6.0+~cs2.6.0-2 +node-cjs-module-lexer==1.2.2+dfsg-5 +node-undici==5.15.0+dfsg1+~cs20.10.9.3-1+deb12u4 +node-xtend==4.0.2-3 +nodejs==18.20.4+dfsg-1~deb12u1 +nodejs-doc==18.20.4+dfsg-1~deb12u1 +os-prober==1.81 +shim-helpers-arm64-signed==1+15.8+1~deb12u1 +shim-signed==1.44~1+deb12u1+15.8-1~deb12u1 +shim-signed-common==1.44~1+deb12u1+15.8-1~deb12u1 +shim-unsigned==15.8-1~deb12u1 watchdog==5.16-1+b1 -wget==1.21.3-1+b1 diff --git a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-armhf b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-armhf index 70293d8faf..50763a8485 100644 --- a/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-armhf +++ b/files/build/versions/dockers/sonic-slave-bookworm/versions-deb-bookworm-armhf @@ -1,10 +1,19 @@ bc==1.07.1-3 +binutils-arm-linux-gnueabihf==2.40-2 dctrl-tools==2.24-3 dvipng==1.15-1.1 libnanomsg-dev==1.1.5+dfsg-1.1 libnanomsg5==1.1.5+dfsg-1.1 -linux-compiler-gcc-12-arm==6.1.128-1 -linux-headers-6.1.0-31-armmp==6.1.128-1 -linux-headers-armmp==6.1.128-1 +libnode108==18.20.4+dfsg-1~deb12u1 +libxslt1-dev==1.1.35-1+deb12u3 +linux-compiler-gcc-12-arm==6.1.164-1 +linux-headers-6.1.0-44-armmp==6.1.164-1 +linux-headers-armmp==6.1.164-1 +node-acorn==8.8.1+ds+~cs25.17.7-2 +node-busboy==1.6.0+~cs2.6.0-2 +node-cjs-module-lexer==1.2.2+dfsg-5 +node-undici==5.15.0+dfsg1+~cs20.10.9.3-1+deb12u4 +node-xtend==4.0.2-3 +nodejs==18.20.4+dfsg-1~deb12u1 +nodejs-doc==18.20.4+dfsg-1~deb12u1 watchdog==5.16-1+b1 -wget==1.21.3-1+b1 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye index cc8644075c..08ebb2282e 100644 --- a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye @@ -24,13 +24,11 @@ autopoint==0.21-4 autotools-dev==20180224.1+nmu1 bash-completion==1:2.11-2 bc==1.07.1-2+b2 -bind9-dnsutils==1:9.16.50-1~deb11u3 -bind9-host==1:9.16.50-1~deb11u3 -bind9-libs==1:9.16.50-1~deb11u3 +bind9-dnsutils==1:9.16.50-1~deb11u4 +bind9-host==1:9.16.50-1~deb11u4 +bind9-libs==1:9.16.50-1~deb11u4 binfmt-support==2.2.1-1+deb11u1 binutils==2.35.2-2 -binutils-aarch64-linux-gnu==2.35.2-2 -binutils-arm-linux-gnueabihf==2.35.2-2 binutils-common==2.35.2-2 binutils-x86-64-linux-gnu==2.35.2-2 bison==2:3.7.5+dfsg-1 @@ -40,8 +38,8 @@ build-essential==12.9 byacc==20140715-1+b1 bzip2==1.0.8-4 bzip2-doc==1.0.8-4 -ca-certificates==20210119 -ca-certificates-java==20190909+deb11u1 +ca-certificates==20230311+deb12u1~deb11u1 +ca-certificates-java==20230710~deb12u1~deb11u1 cdbs==0.4.163 check==0.15.2-2 chrpath==0.16-2+b1 @@ -58,11 +56,9 @@ cowdancer==0.89 cpio==2.13+dfsg-7.1~deb11u1 cpp==4:10.2.1-1 cpp-10==10.2.1-6 -cpp-10-arm-linux-gnueabihf==10.2.1-6cross1 -cpp-arm-linux-gnueabihf==4:10.2.1-1 cppcheck==2.3-1 cron==3.0pl1-137 -curl==7.74.0-1.3+deb11u14 +curl==7.74.0-1.3+deb11u16 cython3==0.29.21-3+b1 dblatex==0.3.12py3-1 dblatex-doc==0.3.12py3-1 @@ -91,12 +87,12 @@ dh-runit==2.10.3 dh-strip-nondeterminism==1.12.0-1 dictionaries-common==1.28.4 diffstat==1.64-1 -dirmngr==2.2.27-2+deb11u2 -distro-info-data==0.51+deb11u7 +dirmngr==2.2.27-2+deb11u3 +distro-info-data==0.51+deb11u10 dkms==2.8.4-3 dmeventd==2:1.02.175-2.1 dmsetup==2:1.02.175-2.1 -dnsutils==1:9.16.50-1~deb11u3 +dnsutils==1:9.16.50-1~deb11u4 docbook==4.5-6 docbook-dsssl==1.79-9.2 docbook-to-man==1:2.0.0-45 @@ -106,7 +102,7 @@ docbook-xsl==1.79.2+dfsg-1 docker-buildx-plugin==0.10.5-1~debian.11~bullseye docker-ce==5:24.0.2-1~debian.11~bullseye docker-ce-cli==5:24.0.2-1~debian.11~bullseye -docker-ce-rootless-extras==5:27.5.1-1~debian.11~bullseye +docker-ce-rootless-extras==5:29.3.1-1~debian.11~bullseye docker-compose-plugin==2.18.1-1~debian.11~bullseye docutils-common==0.16+dfsg-4 dosfstools==4.2-1 @@ -120,16 +116,16 @@ dwarves==1.20-1 dwz==0.13+20210201-1 eatmydata==105-9 ed==1.17-1 -emacs-bin-common==1:27.1+1-3.1+deb11u5 -emacs-common==1:27.1+1-3.1+deb11u5 -emacs-el==1:27.1+1-3.1+deb11u5 -emacs-nox==1:27.1+1-3.1+deb11u5 +emacs-bin-common==1:27.1+1-3.1+deb11u6 +emacs-common==1:27.1+1-3.1+deb11u6 +emacs-el==1:27.1+1-3.1+deb11u6 +emacs-nox==1:27.1+1-3.1+deb11u6 emacsen-common==3.0.4 equivs==2.3.1 exim4-base==4.94.2-7+deb11u4 exim4-config==4.94.2-7+deb11u4 exim4-daemon-light==4.94.2-7+deb11u4 -expat==2.2.10-2+deb11u6 +expat==2.2.10-2+deb11u7 fakeroot==1.25.3-1.1 file==1:5.39-3+deb11u1 flex==2.6.4-8 @@ -152,11 +148,7 @@ g++-10==10.2.1-6 gawk==1:5.1.0-1 gcc==4:10.2.1-1 gcc-10==10.2.1-6 -gcc-10-arm-linux-gnueabihf==10.2.1-6cross1 -gcc-10-arm-linux-gnueabihf-base==10.2.1-6cross1 -gcc-10-cross-base==10.2.1-6cross1 gcc-10-multilib==10.2.1-6 -gcc-arm-linux-gnueabihf==4:10.2.1-1 gcc-multilib==4:10.2.1-1 gcovr==4.2-1 gdb==10.1-1.7 @@ -166,38 +158,39 @@ gettext==0.21-4 gettext-base==0.21-4 gfortran==4:10.2.1-1 gfortran-10==10.2.1-6 -ghostscript==9.53.3~dfsg-7+deb11u9 +ghostscript==9.53.3~dfsg-7+deb11u11 gir1.2-atk-1.0==2.36.0-2 gir1.2-atspi-2.0==2.38.0-4+deb11u1 gir1.2-freedesktop==1.66.1-1+b1 -gir1.2-gdkpixbuf-2.0==2.42.2+dfsg-1+deb11u2 +gir1.2-gdkpixbuf-2.0==2.42.2+dfsg-1+deb11u4 gir1.2-glib-2.0==1.66.1-1+b1 gir1.2-gtk-3.0==3.24.24-4+deb11u4 gir1.2-harfbuzz-0.0==2.7.4-1 gir1.2-packagekitglib-1.0==1.2.2-2 gir1.2-pango-1.0==1.46.2-3 -git==1:2.30.2-1+deb11u4 +git==1:2.30.2-1+deb11u5 git-buildpackage==0.9.22 -git-man==1:2.30.2-1+deb11u4 +git-man==1:2.30.2-1+deb11u5 glib-networking==2.66.0-2 glib-networking-common==2.66.0-2 glib-networking-services==2.66.0-2 -gnupg==2.2.27-2+deb11u2 -gnupg-l10n==2.2.27-2+deb11u2 -gnupg-utils==2.2.27-2+deb11u2 -gnupg2==2.2.27-2+deb11u2 +gnupg==2.2.27-2+deb11u3 +gnupg-l10n==2.2.27-2+deb11u3 +gnupg-utils==2.2.27-2+deb11u3 +gnupg2==2.2.27-2+deb11u3 gobject-introspection==1.66.1-1+b1 golang-1.15==1.15.15-1~deb11u4 golang-1.15-doc==1.15.15-1~deb11u4 golang-1.15-go==1.15.15-1~deb11u4+fips golang-1.15-src==1.15.15-1~deb11u4+fips googletest==1.10.0.20201025-1.1 -gpg==2.2.27-2+deb11u2 -gpg-agent==2.2.27-2+deb11u2 -gpg-wks-client==2.2.27-2+deb11u2 -gpg-wks-server==2.2.27-2+deb11u2 -gpgconf==2.2.27-2+deb11u2 -gpgsm==2.2.27-2+deb11u2 +gpg==2.2.27-2+deb11u3 +gpg-agent==2.2.27-2+deb11u3 +gpg-wks-client==2.2.27-2+deb11u3 +gpg-wks-server==2.2.27-2+deb11u3 +gpgconf==2.2.27-2+deb11u3 +gpgsm==2.2.27-2+deb11u3 +gpgv==2.2.27-2+deb11u3 graphviz==2.42.2-5+deb11u1 groff==1.22.4-6 groff-base==1.22.4-6 @@ -205,9 +198,9 @@ gsasl-common==1.10.0-4+deb11u1 gsettings-desktop-schemas==3.38.0-2 gsfonts==1:8.11+urwcyr1.0.7~pre44-4.5 gstreamer1.0-libav==1.18.4-3 -gstreamer1.0-plugins-base==1.18.4-2+deb11u3 -gstreamer1.0-plugins-good==1.18.4-2+deb11u2 -gstreamer1.0-x==1.18.4-2+deb11u3 +gstreamer1.0-plugins-base==1.18.4-2+deb11u4 +gstreamer1.0-plugins-good==1.18.4-2+deb11u4 +gstreamer1.0-x==1.18.4-2+deb11u4 gtk-update-icon-cache==3.24.24-4+deb11u4 guile-2.2-libs==2.2.7+1-6 guile-3.0-libs==3.0.5-4 @@ -215,10 +208,10 @@ hicolor-icon-theme==0.17-2 i965-va-driver==2.4.1+dfsg1-1 ibverbs-providers==33.2-1 icc-profiles-free==2.0.1+dfsg-1.1 -icu-devtools==67.1-7 -imagemagick==8:6.9.11.60+dfsg-1.3+deb11u4 -imagemagick-6-common==8:6.9.11.60+dfsg-1.3+deb11u4 -imagemagick-6.q16==8:6.9.11.60+dfsg-1.3+deb11u4 +icu-devtools==67.1-7+deb11u1 +imagemagick==8:6.9.11.60+dfsg-1.3+deb11u10 +imagemagick-6-common==8:6.9.11.60+dfsg-1.3+deb11u10 +imagemagick-6.q16==8:6.9.11.60+dfsg-1.3+deb11u10 install-info==6.7.0.dfsg.2-6 intel-media-va-driver==21.1.1+dfsg1-1 intltool-debian==0.35.0+20060710.5 @@ -231,11 +224,11 @@ java-common==0.72 java-wrappers==0.3 javahelper==0.78 javascript-common==11+nmu1 -jq==1.6-2.1 +jq==1.6-2.1+deb11u1 junit5==5.3.2-4 kernel-wedge==2.104 kmod==28-1 -krb5-multidev==1.18.3-6+deb11u5 +krb5-multidev==1.18.3-6+deb11u7 lcov==1.14-2 less==551-2+deb11u2 lib32asan6==10.2.1-6 @@ -249,8 +242,8 @@ lib32stdc++6==10.2.1-6 lib32ubsan1==10.2.1-6 libaa1==1.4p5-48 libaacs0==0.9.0-2 -libabsl-dev==0~20200923.3-2 -libabsl20200923==0~20200923.3-2 +libabsl-dev==0~20200923.3-2+deb11u1 +libabsl20200923==0~20200923.3-2+deb11u1 libacl1-dev==2.2.53-10 libaio1==0.3.112-9 libalgorithm-c3-perl==0.11-1 @@ -269,16 +262,15 @@ libappstream4==0.14.4-1 libapt-pkg-perl==0.1.39 libarchive-cpio-perl==0.10-1.1 libarchive-zip-perl==1.68-1 -libarchive13==3.4.3-2+deb11u2 +libarchive13==3.4.3-2+deb11u3 libargon2-1==0~20171227-0.2 libarray-intspan-perl==2.004-1 libarray-unique-perl==0.08-2.1 libarray-utils-perl==0.5-1.1 libasan6==10.2.1-6 -libasan6-armhf-cross==10.2.1-6cross1 libasm-java==9.1-1 -libasound2==1.2.4-1.1 -libasound2-data==1.2.4-1.1 +libasound2==1.2.4-1.1+deb11u1 +libasound2-data==1.2.4-1.1+deb11u1 libaspell15==0.60.8-3 libass9==1:0.15.0-2 libassuan0==2.5.3-7.1 @@ -294,7 +286,6 @@ libatk1.0-dev==2.36.0-2 libatm1==1:2.5.1-4 libatm1-dev==1:2.5.1-4 libatomic1==10.2.1-6 -libatomic1-armhf-cross==10.2.1-6cross1 libatspi2.0-0==2.38.0-4+deb11u1 libatspi2.0-dev==2.38.0-4+deb11u1 libattr1-dev==1:2.4.48-6 @@ -307,15 +298,15 @@ libavahi-client3==0.8-5+deb11u3 libavahi-common-data==0.8-5+deb11u3 libavahi-common3==0.8-5+deb11u3 libavc1394-0==0.5.4-5 -libavcodec58==7:4.3.8-0+deb11u2 -libavfilter7==7:4.3.8-0+deb11u2 -libavformat58==7:4.3.8-0+deb11u2 -libavutil56==7:4.3.8-0+deb11u2 +libavcodec58==7:4.3.9-0+deb11u2 +libavfilter7==7:4.3.9-0+deb11u2 +libavformat58==7:4.3.9-0+deb11u2 +libavutil56==7:4.3.9-0+deb11u2 libb-hooks-endofscope-perl==0.24-1.1 libb-hooks-op-check-perl==0.22-1+b3 libbabeltrace-dev==1.5.8-1+b3 libbabeltrace1==1.5.8-1+b3 -libbatik-java==1.12-4+deb11u2 +libbatik-java==1.12-4+deb11u3 libbdplus0==0.1.2-3 libbind-export-dev==1:9.11.19+dfsg-2.1 libbinutils==2.35.2-2 @@ -423,8 +414,8 @@ libboost-wave1.74-dev==1.74.0-9 libboost-wave1.74.0==1.74.0-9 libboost1.74-dev==1.74.0-9 libboost1.74-tools-dev==1.74.0-9 -libbpf-dev==1:0.3-2 -libbpf0==1:0.3-2 +libbpf-dev==1:0.3-2+deb11u1 +libbpf0==1:0.3-2+deb11u1 libbrlapi0.8==6.3+dfsg-1+deb11u1 libbrotli-dev==1.0.9-2+b2 libbrotli1==1.0.9-2+b2 @@ -435,27 +426,26 @@ libbsh-java==2.0b4-20 libbz2-dev==1.0.8-4 libc-ares-dev==1.17.1-1+deb11u3 libc-ares2==1.17.1-1+deb11u3 -libc-dev-bin==2.31-13+deb11u11 -libc-devtools==2.31-13+deb11u11 -libc-l10n==2.31-13+deb11u11 -libc6-armhf-cross==2.31-9cross4 -libc6-dbg==2.31-13+deb11u11 -libc6-dev==2.31-13+deb11u11 -libc6-dev-i386==2.31-13+deb11u11 -libc6-dev-x32==2.31-13+deb11u11 -libc6-i386==2.31-13+deb11u11 -libc6-x32==2.31-13+deb11u11 -libcaca0==0.99.beta19-2.2 +libc-dev-bin==2.31-13+deb11u13 +libc-devtools==2.31-13+deb11u13 +libc-l10n==2.31-13+deb11u13 +libc6-dbg==2.31-13+deb11u13 +libc6-dev==2.31-13+deb11u13 +libc6-dev-i386==2.31-13+deb11u13 +libc6-dev-x32==2.31-13+deb11u13 +libc6-i386==2.31-13+deb11u13 +libc6-x32==2.31-13+deb11u13 +libcaca0==0.99.beta19-2.2+deb11u1 libcacard0==1:2.8.0-3 libcaf-openmpi-3==2.9.2-3 libcairo-gobject2==1.16.0-5 libcairo-script-interpreter2==1.16.0-5 libcairo2==1.16.0-5 libcairo2-dev==1.16.0-5 -libcap-dev==1:2.44-1 +libcap-dev==1:2.44-1+deb11u1 libcap-ng-dev==0.7.9-2.2+b1 -libcap2==1:2.44-1 -libcap2-bin==1:2.44-1 +libcap2==1:2.44-1+deb11u1 +libcap2-bin==1:2.44-1+deb11u1 libcapstone4==4.0.2-3 libcapture-tiny-perl==0.48-1 libcarp-clan-perl==6.08-1 @@ -468,8 +458,8 @@ libcgi-fast-perl==1:2.15-1 libcgi-pm-perl==4.51-1 libcgraph6==2.42.2-5+deb11u1 libchromaprint1==1.5.0-2 -libcjson-dev==1.7.14-1+deb11u1 -libcjson1==1.7.14-1+deb11u1 +libcjson-dev==1.7.14-1+deb11u3 +libcjson1==1.7.14-1+deb11u3 libclang-common-11-dev==1:11.0.1-2 libclang-cpp11==1:11.0.1-2 libclang1-11==1:11.0.1-2 @@ -491,7 +481,7 @@ libcoarrays-openmpi-dev==2.9.2-3 libcodec2-0.9==0.9.2-4 libcolord2==1.4.5-3 libcommon-sense-perl==3.75-1+b4 -libcommons-beanutils-java==1.9.4-1 +libcommons-beanutils-java==1.9.4-1+deb11u1 libcommons-cli-java==1.4-2 libcommons-codec-java==1.15-1 libcommons-collections3-java==3.2.2-2 @@ -499,8 +489,8 @@ libcommons-compress-java==1.20-1 libcommons-configuration-java==1.10-5 libcommons-digester-java==1.8.1-5 libcommons-io-java==2.8.0-1 -libcommons-lang-java==2.6-9 -libcommons-lang3-java==3.11-1 +libcommons-lang-java==2.6-9+deb11u2 +libcommons-lang3-java==3.11-1+deb11u2 libcommons-logging-java==1.2-2 libcommons-parent-java==43-1 libcommons-validator-java==1:1.6-2 @@ -508,17 +498,17 @@ libconfig-tiny-perl==2.26-1 libconst-fast-perl==0.014-1.1 libcontextual-return-perl==0.004014-2 libconvert-binhex-perl==1.125-1 -libcpanel-json-xs-perl==4.25-1+b1 +libcpanel-json-xs-perl==4.25-1+deb11u1 libcrypt-dev==1:4.4.18-4 libcryptsetup12==2:2.3.7-1+deb11u1 libctf-nobfd0==2.35.2-2 libctf0==2.35.2-2 libcunit1==2.1-3-dfsg-2.3 libcunit1-dev==2.1-3-dfsg-2.3 -libcups2==2.3.3op2-3+deb11u9 -libcurl3-gnutls==7.74.0-1.3+deb11u14 -libcurl4==7.74.0-1.3+deb11u14 -libcurl4-openssl-dev==7.74.0-1.3+deb11u14 +libcups2==2.3.3op2-3+deb11u10 +libcurl3-gnutls==7.74.0-1.3+deb11u16 +libcurl4==7.74.0-1.3+deb11u16 +libcurl4-openssl-dev==7.74.0-1.3+deb11u16 libdaemon-dev==0.14-7.1 libdaemon0==0.14-7.1 libdata-dpath-perl==0.58-1 @@ -556,8 +546,8 @@ libdevmapper-event1.02.1==2:1.02.175-2.1 libdevmapper1.02.1==2:1.02.175-2.1 libdist-checkconflicts-perl==0.11-1.1 libdistro-info-perl==1.0+deb11u1 -libdjvulibre-text==3.5.28-2 -libdjvulibre21==3.5.28-2 +libdjvulibre-text==3.5.28-2.2~deb11u1 +libdjvulibre21==3.5.28-2.2~deb11u1 libdns-export1110==1:9.11.19+dfsg-2.1 libdom4j-java==2.1.3-1 libdouble-conversion3==3.1.5-6.1 @@ -602,18 +592,18 @@ libevent-openssl-2.1-7==2.1.12-stable-1 libevent-pthreads-2.1-7==2.1.12-stable-1 libexception-class-perl==1.44-1 libexecs0==1.3-1 -libexpat1==2.2.10-2+deb11u6 -libexpat1-dev==2.2.10-2+deb11u6 +libexpat1==2.2.10-2+deb11u7 +libexpat1-dev==2.2.10-2+deb11u7 libexplain-dev==1.4.D001-11+deb11u1 libexplain51==1.4.D001-11+deb11u1 libexporter-lite-perl==0.08-1 libexporter-tiny-perl==1.002002-1 libfabric1==1.11.0-2 libfakeroot==1.25.3-1.1 -libfastjson4==0.99.9-1 -libfcgi-bin==2.4.2-2 +libfastjson4==0.99.9-1+deb11u1 +libfcgi-bin==2.4.2-2+deb11u1 libfcgi-perl==0.79+ds-2 -libfcgi0ldbl==2.4.2-2 +libfcgi0ldbl==2.4.2-2+deb11u1 libfdt1==1.6.0-1 libffi-dev==3.3-6 libfftw3-double3==3.3.8-2 @@ -625,7 +615,7 @@ libfile-copy-recursive-perl==0.45-1 libfile-desktopentry-perl==0.22-2 libfile-dirlist-perl==0.05-2 libfile-fcntllock-perl==0.22-3+b7 -libfile-find-rule-perl==0.34-1 +libfile-find-rule-perl==0.34-1+deb11u1 libfile-homedir-perl==1.006-1 libfile-listing-perl==6.14-1 libfile-mimeinfo-perl==0.30-1 @@ -646,9 +636,9 @@ libfontconfig1==2.13.1-4.2 libfontconfig1-dev==2.13.1-4.2 libfontenc1==1:1.1.4-1 libfop-java==1:2.5-3 -libfreetype-dev==2.10.4+dfsg-1+deb11u1 -libfreetype6==2.10.4+dfsg-1+deb11u1 -libfreetype6-dev==2.10.4+dfsg-1+deb11u1 +libfreetype-dev==2.10.4+dfsg-1+deb11u2 +libfreetype6==2.10.4+dfsg-1+deb11u2 +libfreetype6-dev==2.10.4+dfsg-1+deb11u2 libfribidi-dev==1.0.8-2+deb11u1 libfribidi0==1.0.8-2+deb11u1 libfstrm0==0.6.0-1+b1 @@ -656,16 +646,14 @@ libgbm1==20.3.5-1 libgc-dev==1:8.0.4-3 libgc1==1:8.0.4-3 libgcc-10-dev==10.2.1-6 -libgcc-10-dev-armhf-cross==10.2.1-6cross1 -libgcc-s1-armhf-cross==10.2.1-6cross1 libgd-perl==2.73-1+b1 -libgd3==2.3.0-2 +libgd3==2.3.0-2+deb11u1 libgdbm-compat4==1.19-2 libgdbm6==1.19-2 -libgdk-pixbuf-2.0-0==2.42.2+dfsg-1+deb11u2 -libgdk-pixbuf-2.0-dev==2.42.2+dfsg-1+deb11u2 -libgdk-pixbuf2.0-bin==2.42.2+dfsg-1+deb11u2 -libgdk-pixbuf2.0-common==2.42.2+dfsg-1+deb11u2 +libgdk-pixbuf-2.0-0==2.42.2+dfsg-1+deb11u4 +libgdk-pixbuf-2.0-dev==2.42.2+dfsg-1+deb11u4 +libgdk-pixbuf2.0-bin==2.42.2+dfsg-1+deb11u4 +libgdk-pixbuf2.0-common==2.42.2+dfsg-1+deb11u4 libgeronimo-annotation-1.3-spec-java==1.3-1 libgeronimo-interceptor-3.0-spec-java==1.0.1-4 libgetopt-long-descriptive-perl==0.105-1 @@ -685,11 +673,11 @@ libglapi-mesa==20.3.5-1 libgles-dev==1.3.2-1 libgles1==1.3.2-1 libgles2==1.3.2-1 -libglib2.0-0==2.66.8-1+deb11u5 -libglib2.0-bin==2.66.8-1+deb11u5 -libglib2.0-data==2.66.8-1+deb11u5 -libglib2.0-dev==2.66.8-1+deb11u5 -libglib2.0-dev-bin==2.66.8-1+deb11u5 +libglib2.0-0==2.66.8-1+deb11u8 +libglib2.0-bin==2.66.8-1+deb11u8 +libglib2.0-data==2.66.8-1+deb11u8 +libglib2.0-dev==2.66.8-1+deb11u8 +libglib2.0-dev-bin==2.66.8-1+deb11u8 libglu1-mesa==9.0.1-1 libglu1-mesa-dev==9.0.1-1 libglvnd-dev==1.3.2-1 @@ -701,9 +689,9 @@ libgme0==0.6.3-2 libgmock-dev==1.10.0.20201025-1.1 libgmp-dev==2:6.2.1+dfsg-1+deb11u1 libgmpxx4ldbl==2:6.2.1+dfsg-1+deb11u1 -libgnutls-dane0==3.7.1-5+deb11u6 +libgnutls-dane0==3.7.1-5+deb11u9 +libgnutls30==3.7.1-5+deb11u9 libgomp1==10.2.1-6 -libgomp1-armhf-cross==10.2.1-6cross1 libgoogle-gson-java==2.8.6-1+deb11u1 libgoogle-perftools-dev==2.8.1-1 libgoogle-perftools4==2.8.1-1 @@ -713,12 +701,12 @@ libgraphite2-3==1.3.14-1 libgraphite2-dev==1.3.14-1 libgrpc++1==1.30.2-3 libgrpc10==1.30.2-3 -libgs9==9.53.3~dfsg-7+deb11u9 -libgs9-common==9.53.3~dfsg-7+deb11u9 +libgs9==9.53.3~dfsg-7+deb11u11 +libgs9-common==9.53.3~dfsg-7+deb11u11 libgsasl7==1.10.0-4+deb11u1 libgsm1==1.0.18-2 -libgssrpc4==1.18.3-6+deb11u5 -libgstreamer-plugins-base1.0-0==1.18.4-2+deb11u3 +libgssrpc4==1.18.3-6+deb11u7 +libgstreamer-plugins-base1.0-0==1.18.4-2+deb11u4 libgstreamer1.0-0==1.18.4-2.1+deb11u1 libgtest-dev==1.10.0.20201025-1.1 libgtk-3-0==3.24.24-4+deb11u4 @@ -764,8 +752,8 @@ libibverbs-dev==33.2-1 libibverbs1==33.2-1 libice-dev==2:1.0.10-1 libice6==2:1.0.10-1 -libicu-dev==67.1-7 -libicu67==67.1-7 +libicu-dev==67.1-7+deb11u1 +libicu67==67.1-7+deb11u1 libidn11==1.33-3 libiec61883-0==1.2.0-4 libigdgmm11==20.4.1+ds1-1 @@ -812,10 +800,10 @@ libjbig0==2.1-3.1+b2 libjbig2dec0==0.19-2 libjemalloc-dev==5.2.1-3 libjemalloc2==5.2.1-3 -libjetty9-java==9.4.50-4+deb11u2 +libjetty9-java==9.4.57-0+deb11u3 libjpeg62-turbo==1:2.0.6-4 -libjq1==1.6-2.1 -libjs-bootstrap4==4.5.2+dfsg1-8~deb11u1 +libjq1==1.6-2.1+deb11u1 +libjs-bootstrap4==4.5.2+dfsg1-8~deb11u2 libjs-d3==3.5.17-4 libjs-jquery==3.5.1+dfsg+~3.5.5-7 libjs-jquery-easing==12-3 @@ -837,7 +825,7 @@ libjson-glib-1.0-0==1.6.2-1 libjson-glib-1.0-common==1.6.2-1 libjson-maybexs-perl==1.004003-1 libjson-perl==4.03000-1 -libjson-xs-perl==4.030-1+b1 +libjson-xs-perl==4.030-1+deb11u1 libjsoncpp24==1.9.4-4 libjsp-api-java==2.3.4-3 libjsr305-java==0.1~+svn49-11 @@ -846,12 +834,12 @@ libjudy-dev==1.0.5-5+b2 libjudydebian1==1.0.5-5+b2 libjxr-tools==1.1-6+b1 libjxr0==1.1-6+b1 -libkadm5clnt-mit12==1.18.3-6+deb11u5 -libkadm5srv-mit12==1.18.3-6+deb11u5 -libkdb5-10==1.18.3-6+deb11u5 +libkadm5clnt-mit12==1.18.3-6+deb11u7 +libkadm5srv-mit12==1.18.3-6+deb11u7 +libkdb5-10==1.18.3-6+deb11u7 libkmod2==28-1 libkpathsea6==2020.20200327.54578-7+deb11u2 -libkrb5-dev==1.18.3-6+deb11u5 +libkrb5-dev==1.18.3-6+deb11u7 libksba8==1.5.0-3+deb11u2 liblab-gamut1==2.42.2-5+deb11u1 liblapack3==3.9.0-3+deb11u1 @@ -890,15 +878,15 @@ liblzo2-2==2.10-2 liblzo2-dev==2.10-2 libmagic-mgc==1:5.39-3+deb11u1 libmagic1==1:5.39-3+deb11u1 -libmagickcore-6.q16-6==8:6.9.11.60+dfsg-1.3+deb11u4 -libmagickcore-6.q16-6-extra==8:6.9.11.60+dfsg-1.3+deb11u4 -libmagickwand-6.q16-6==8:6.9.11.60+dfsg-1.3+deb11u4 +libmagickcore-6.q16-6==8:6.9.11.60+dfsg-1.3+deb11u10 +libmagickcore-6.q16-6-extra==8:6.9.11.60+dfsg-1.3+deb11u10 +libmagickwand-6.q16-6==8:6.9.11.60+dfsg-1.3+deb11u10 libmail-sendmail-perl==0.80-1.1 libmailtools-perl==2.21-1 libmailutils7==1:3.10-3+b1 -libmariadb-dev==1:10.5.26-0+deb11u2 -libmariadb-dev-compat==1:10.5.26-0+deb11u2 -libmariadb3==1:10.5.26-0+deb11u2 +libmariadb-dev==1:10.5.29-0+deb11u1 +libmariadb-dev-compat==1:10.5.29-0+deb11u1 +libmariadb3==1:10.5.29-0+deb11u1 libmarkdown2==2.2.6-1 libmaven-archiver-java==3.2.0-2.1 libmaven-clean-plugin-java==3.1.0-1 @@ -965,7 +953,7 @@ libnet-ssleay-perl==1.88-3+b1 libnetfilter-conntrack-dev==1.0.8-3 libnetfilter-conntrack3==1.0.8-3 libnetpbm10==2:10.0-15.4 -libnetsnmptrapd40==5.9+dfsg-4+deb11u1 +libnetsnmptrapd40==5.9+dfsg-4+deb11u3 libnewt-dev==0.52.21-4+b3 libnewt0.52==0.52.21-4+b3 libnfnetlink-dev==1.0.1-3+b1 @@ -983,8 +971,8 @@ libnorm1==1.5.9+dfsg-2 libnpth0==1.6-3 libnsl-dev==1.3.0-2 libnspr4==2:4.29-1 -libnss-systemd==247.3-7+deb11u6 -libnss3==2:3.61-1+deb11u4 +libnss-systemd==247.3-7+deb11u7 +libnss3==2:3.61-1+deb11u5 libntlm0==1.6-3 libnuma-dev==2.0.12-1+b1 libnuma1==2.0.12-1+b1 @@ -1002,7 +990,7 @@ libopencsd0==0.14.4-1 libopenexr25==2.5.4-2+deb11u1 libopengl-dev==1.3.2-1 libopengl0==1.3.2-1 -libopenjp2-7==2.4.0-3 +libopenjp2-7==2.4.0-3+deb11u2 libopenmpi-dev==4.1.0-10 libopenmpi3==4.1.0-10 libopenmpt0==0.4.11-1 @@ -1021,9 +1009,10 @@ libpackage-stash-perl==0.39-1 libpackage-stash-xs-perl==0.29-1+b2 libpackagekit-glib2-18==1.2.2-2 libpadwalker-perl==2.5-1+b1 -libpam-cap==1:2.44-1 -libpam-systemd==247.3-7+deb11u6 -libpam0g-dev==1.4.0-9+deb11u1 +libpam-cap==1:2.44-1+deb11u1 +libpam-systemd==247.3-7+deb11u7 +libpam0g==1.4.0-9+deb11u2 +libpam0g-dev==1.4.0-9+deb11u2 libpango-1.0-0==1.46.2-3 libpango1.0-dev==1.46.2-3 libpangocairo-1.0-0==1.46.2-3 @@ -1087,16 +1076,16 @@ libplexus-velocity-java==1.2-3.1 libpmem1==1.10-2+deb11u1 libpmix-dev==4.0.0-4.1+deb11u1 libpmix2==4.0.0-4.1+deb11u1 -libpng-dev==1.6.37-3 -libpng-tools==1.6.37-3 -libpng16-16==1.6.37-3 +libpng-dev==1.6.37-3+deb11u2 +libpng-tools==1.6.37-3+deb11u2 +libpng16-16==1.6.37-3+deb11u2 libpocketsphinx3==0.8+5prealpha+1-13 libpod-constants-perl==0.19-2 libpod-parser-perl==1.63-2 libpolkit-agent-1-0==0.105-31+deb11u1 libpolkit-gobject-1-0==0.105-31+deb11u1 libpopt0==1.18-2 -libpostproc55==7:4.3.8-0+deb11u2 +libpostproc55==7:4.3.9-0+deb11u2 libproc-processtable-perl==0.59-2+b1 libprocps8==2:3.3.17-5 libprotobuf-c1==1.3.3-1+b2 @@ -1119,29 +1108,29 @@ libpython3-all-dev==3.9.2-3 libpython3-dbg==3.9.2-3 libpython3-dev==3.9.2-3 libpython3-stdlib==3.9.2-3 -libpython3.9==3.9.2-1+deb11u2 -libpython3.9-dbg==3.9.2-1+deb11u2 -libpython3.9-dev==3.9.2-1+deb11u2 -libpython3.9-minimal==3.9.2-1+deb11u2 -libpython3.9-stdlib==3.9.2-1+deb11u2 +libpython3.9==3.9.2-1+deb11u5 +libpython3.9-dbg==3.9.2-1+deb11u5 +libpython3.9-dev==3.9.2-1+deb11u5 +libpython3.9-minimal==3.9.2-1+deb11u5 +libpython3.9-stdlib==3.9.2-1+deb11u5 libqdox-java==1.12.1-3 libqdox2-java==2.0.0-1 -libqt5concurrent5==5.15.2+dfsg-9+deb11u1 -libqt5core5a==5.15.2+dfsg-9+deb11u1 -libqt5dbus5==5.15.2+dfsg-9+deb11u1 -libqt5gui5==5.15.2+dfsg-9+deb11u1 -libqt5network5==5.15.2+dfsg-9+deb11u1 -libqt5opengl5==5.15.2+dfsg-9+deb11u1 -libqt5opengl5-dev==5.15.2+dfsg-9+deb11u1 -libqt5printsupport5==5.15.2+dfsg-9+deb11u1 -libqt5sql5==5.15.2+dfsg-9+deb11u1 -libqt5sql5-sqlite==5.15.2+dfsg-9+deb11u1 +libqt5concurrent5==5.15.2+dfsg-9+deb11u2 +libqt5core5a==5.15.2+dfsg-9+deb11u2 +libqt5dbus5==5.15.2+dfsg-9+deb11u2 +libqt5gui5==5.15.2+dfsg-9+deb11u2 +libqt5network5==5.15.2+dfsg-9+deb11u2 +libqt5opengl5==5.15.2+dfsg-9+deb11u2 +libqt5opengl5-dev==5.15.2+dfsg-9+deb11u2 +libqt5printsupport5==5.15.2+dfsg-9+deb11u2 +libqt5sql5==5.15.2+dfsg-9+deb11u2 +libqt5sql5-sqlite==5.15.2+dfsg-9+deb11u2 libqt5svg5==5.15.2-3 -libqt5test5==5.15.2+dfsg-9+deb11u1 -libqt5widgets5==5.15.2+dfsg-9+deb11u1 -libqt5xml5==5.15.2+dfsg-9+deb11u1 +libqt5test5==5.15.2+dfsg-9+deb11u2 +libqt5widgets5==5.15.2+dfsg-9+deb11u2 +libqt5xml5==5.15.2+dfsg-9+deb11u2 libquadmath0==10.2.1-6 -librabbitmq4==0.10.0-1 +librabbitmq4==0.10.0-1+deb11u1 libraw1394-11==2.1.2-2 librdmacm1==33.2-1 libre-engine-re2-perl==0.14-1 @@ -1163,7 +1152,7 @@ librsvg2-2==2.50.3+dfsg-1+deb11u1 librsvg2-common==2.50.3+dfsg-1+deb11u1 librtmp1==2.4+20151223.gitfa8646d.1-2+b2 librubberband2==1.9.0-1 -libruby2.7==2.7.4-1+deb11u4 +libruby2.7==2.7.4-1+deb11u5 libsamplerate0==0.2.1+ds0-1 libsasl2-2==2.1.27+dfsg-2.1+deb11u1 libsasl2-modules==2.1.27+dfsg-2.1+deb11u1 @@ -1195,19 +1184,19 @@ libsm6==2:1.2.3-1 libsnappy-java==1.1.8.3-1 libsnappy-jni==1.1.8.3-1 libsnappy1v5==1.1.8-1 -libsndfile1==1.0.31-2 -libsnmp-base==5.9+dfsg-4+deb11u1 -libsnmp-dev==5.9+dfsg-4+deb11u1 -libsnmp40==5.9+dfsg-4+deb11u1 +libsndfile1==1.0.31-2+deb11u2 +libsnmp-base==5.9+dfsg-4+deb11u3 +libsnmp-dev==5.9+dfsg-4+deb11u3 +libsnmp40==5.9+dfsg-4+deb11u3 libsoap-lite-perl==1.27-1 -libsodium-dev==1.0.18-1 -libsodium23==1.0.18-1 +libsodium-dev==1.0.18-1+deb11u1 +libsodium23==1.0.18-1+deb11u1 libsombok3==2.4.0-2+b1 libsord-0-0==0.16.8-2 libsort-key-perl==1.33-2+b3 libsort-versions-perl==1.62-1 -libsoup-gnome2.4-1==2.72.0-2+deb11u1 -libsoup2.4-1==2.72.0-2+deb11u1 +libsoup-gnome2.4-1==2.72.0-2+deb11u3 +libsoup2.4-1==2.72.0-2+deb11u3 libsource-highlight-common==3.1.9-3 libsource-highlight4v5==3.1.9-3+b1 libsoxr0==0.1.3-4 @@ -1218,11 +1207,11 @@ libspice-server1==0.14.3-2.1 libsqlite3-0==3.34.1-3+deb11u1 libsratom-0-0==0.6.8-1 libsrt1.4-gnutls==1.4.2-1.3 -libssh-gcrypt-4==0.9.8-0+deb11u1 +libssh-gcrypt-4==0.9.8-0+deb11u2 libssh2-1==1.9.0-2+deb11u1 -libssl-dev==1.1.1w-0+deb11u2 +libssl-dev==1.1.1w-0+deb11u5 +libssl1.1==1.1.1w-0+deb11u5 libstdc++-10-dev==10.2.1-6 -libstdc++6-armhf-cross==10.2.1-6cross1 libstemmer0d==2.1.0-1 libstrictures-perl==2.000006-1 libstring-copyright-perl==0.003006-1 @@ -1239,14 +1228,14 @@ libsubunit-dev==1.4.0-3 libsubunit0==1.4.0-3 libsurefire-java==2.22.3-1 libswitch-perl==2.17-2.1 -libswresample3==7:4.3.8-0+deb11u2 -libswscale5==7:4.3.8-0+deb11u2 +libswresample3==7:4.3.9-0+deb11u2 +libswscale5==7:4.3.9-0+deb11u2 libsynctex2==2020.20200327.54578-7+deb11u2 libsys-cpuaffinity-perl==1.13~03-1 libsys-hostname-long-perl==1.5-2 -libsystemd-dev==247.3-7+deb11u6 -libtag1v5==1.11.1+dfsg.1-3 -libtag1v5-vanilla==1.11.1+dfsg.1-3 +libsystemd-dev==247.3-7+deb11u7 +libtag1v5==1.11.1+dfsg.1-3+deb11u1 +libtag1v5-vanilla==1.11.1+dfsg.1-3+deb11u1 libtask-weaken-perl==1.06-1 libtcl8.6==8.6.11+dfsg-1 libtcmalloc-minimal4==2.8.1-1 @@ -1272,7 +1261,7 @@ libtheora0==1.1.1+dfsg.1-15 libthrift-0.13.0==0.13.0-6 libthrift-dev==0.13.0-6 libtie-ixhash-perl==1.23-2.1 -libtiff5==4.2.0-1+deb11u6 +libtiff5==4.2.0-1+deb11u7 libtime-duration-perl==1.21-1 libtime-moment-perl==0.44-1+b3 libtimedate-perl==2.3300-2 @@ -1289,12 +1278,11 @@ libtype-tiny-perl==1.012001-2 libtype-tiny-xs-perl==0.022-1 libtypes-serialiser-perl==1.01-1 libubsan1==10.2.1-6 -libubsan1-armhf-cross==10.2.1-6cross1 libuchardet0==0.0.7-1 libucx0==1.10.1~rc1+really.1.10.0-1 -libudev-dev==247.3-7+deb11u6 +libudev-dev==247.3-7+deb11u7 libudfread0==1.1.1-1 -libunbound8==1.13.1-1+deb11u4 +libunbound8==1.13.1-1+deb11u7 libunicode-linebreak-perl==0.0.20190101-1+b3 libunicode-utf8-perl==0.62-1+b2 libunivocity-parsers-java==2.8.3-2 @@ -1321,13 +1309,13 @@ libvdpau1==1.4-3 libvelocity-tools-java==2.0-8 libvidstab1.1==1.1.0-2+b1 libvirglrenderer1==0.8.2-5+deb11u1 -libvirt-clients==7.0.0-3+deb11u3 -libvirt0==7.0.0-3+deb11u3 +libvirt-clients==7.0.0-3+deb11u4 +libvirt0==7.0.0-3+deb11u4 libvisual-0.4-0==0.4.0-17 libvorbis0a==1.3.7-1 libvorbisenc2==1.3.7-1 libvorbisfile3==1.3.7-1 -libvpx6==1.9.0-1+deb11u3 +libvpx6==1.9.0-1+deb11u5 libvte-2.91-0==0.62.3-1 libvte-2.91-common==0.62.3-1 libvulkan-dev==1.2.162.0-1 @@ -1446,9 +1434,9 @@ libxml-sax-perl==1.02+dfsg-1 libxml-simple-perl==2.25-1 libxml-twig-perl==1:3.52-1 libxml-xpathengine-perl==0.14-1 -libxml2==2.9.10+dfsg-6.7+deb11u5 -libxml2-dev==2.9.10+dfsg-6.7+deb11u5 -libxml2-utils==2.9.10+dfsg-6.7+deb11u5 +libxml2==2.9.10+dfsg-6.7+deb11u9 +libxml2-dev==2.9.10+dfsg-6.7+deb11u9 +libxml2-utils==2.9.10+dfsg-6.7+deb11u9 libxmlgraphics-commons-java==2.4-2~deb11u1 libxmlrpc-lite-perl==0.717-4 libxmu6==2:1.1.2-2+b3 @@ -1460,8 +1448,7 @@ libxrandr2==2:1.5.1-1 libxrender-dev==1:0.9.10-1 libxrender1==1:0.9.10-1 libxshmfence1==1.3-1 -libxslt1-dev==1.1.34-4+deb11u1 -libxslt1.1==1.1.34-4+deb11u1 +libxslt1.1==1.1.34-4+deb11u3 libxss1==1:1.2.3-1 libxstring-perl==0.005-1+b1 libxt-dev==1:1.2.0-1 @@ -1484,26 +1471,24 @@ libz3-4==4.8.10-1 libz3-dev==4.8.10-1 libzmq3-dev==4.3.4-1+deb11u1 libzmq5==4.3.4-1+deb11u1 -libzvbi-common==0.2.35-18 -libzvbi0==0.2.35-18 +libzvbi-common==0.2.35-18+deb11u1 +libzvbi0==0.2.35-18+deb11u1 libzzip-0-13==0.13.62-3.3+deb11u1 licensecheck==3.1.1-2 lintian==2.104.0 -linux-compiler-gcc-10-x86==5.10.226-1 -linux-headers-5.10.0-33-amd64==5.10.226-1 -linux-headers-5.10.0-33-arm64==5.10.226-1 -linux-headers-5.10.0-33-common==5.10.226-1 -linux-headers-amd64==5.10.226-1 -linux-headers-arm64==5.10.226-1 -linux-kbuild-5.10==5.10.226-1 -linux-libc-dev==5.10.226-1 +linux-compiler-gcc-10-x86==5.10.251-1 +linux-headers-5.10.0-39-amd64==5.10.251-1 +linux-headers-5.10.0-39-common==5.10.251-1 +linux-headers-amd64==5.10.251-1 +linux-kbuild-5.10==5.10.251-1 +linux-libc-dev==5.10.251-1 linuxdoc-tools==0.9.82-1 llvm==1:11.0-51+nmu5 llvm-11==1:11.0.1-2 llvm-11-runtime==1:11.0.1-2 llvm-runtime==1:11.0-51+nmu5 lmodern==2.004.5-6.1 -locales==2.31-13+deb11u11 +locales==2.31-13+deb11u13 logrotate==3.18.0-2+deb11u2 lsb-release==11.1.0 lsof==4.93.2+dfsg-1.1 @@ -1526,7 +1511,7 @@ man-db==2.9.4-2 man2html-base==1.6g-14 manpages==5.10-1 manpages-dev==5.10-1 -mariadb-common==1:10.5.26-0+deb11u2 +mariadb-common==1:10.5.29-0+deb11u1 maven==3.6.3-5 maven-debian-helper==2.6 maven-repo-helper==1.10 @@ -1540,27 +1525,26 @@ mpi-default-bin==1.13 mpi-default-dev==1.13 mysql-common==5.8+1.0.7 ncurses-term==6.2+20201114-2+deb11u2 -net-tools==1.60+git20181103.0eebece-1+deb11u1 +net-tools==1.60+git20181103.0eebece-1+deb11u2 netbase==6.3 netpbm==2:10.0-15.4 nftables==0.9.8-3.1+deb11u2 nlohmann-json3-dev==3.9.1-1 node-jquery==3.5.1+dfsg+~3.5.5-7 -nodejs==14.21.3-deb-1nodesource1 ocl-icd-libopencl1==2.2.14-2 openjade==1.4devel1-22 -openjdk-11-jdk==11.0.26+4-1~deb11u1 -openjdk-11-jdk-headless==11.0.26+4-1~deb11u1 -openjdk-11-jre==11.0.26+4-1~deb11u1 -openjdk-11-jre-headless==11.0.26+4-1~deb11u1 +openjdk-11-jdk==11.0.30+7-1~deb11u1 +openjdk-11-jdk-headless==11.0.30+7-1~deb11u1 +openjdk-11-jre==11.0.30+7-1~deb11u1 +openjdk-11-jre-headless==11.0.30+7-1~deb11u1 openmpi-bin==4.1.0-10 openmpi-common==4.1.0-10 opensp==1.5.2-13+b2 -openssh-client==1:8.4p1-5+deb11u3 -openssh-server==1:8.4p1-5+deb11u3 -openssh-sftp-server==1:8.4p1-5+deb11u3 -openssl==1.1.1w-0+deb11u2 -ovmf==2020.11-2+deb11u2 +openssh-client==1:8.4p1-5+deb11u5 +openssh-server==1:8.4p1-5+deb11u5 +openssh-sftp-server==1:8.4p1-5+deb11u5 +openssl==1.1.1w-0+deb11u5 +ovmf==2020.11-2+deb11u3 packagekit==1.2.2-2 packagekit-tools==1.2.2-2 pango1.0-tools==1.46.2-3 @@ -1593,14 +1577,14 @@ php-timer==5.0.3-2 php-tokenizer==1.2.0-1 php-webmozart-assert==1.9.1-2 php-xml==2:7.4+76 -php7.4-cli==7.4.33-1+deb11u7 -php7.4-common==7.4.33-1+deb11u7 -php7.4-json==7.4.33-1+deb11u7 -php7.4-mbstring==7.4.33-1+deb11u7 -php7.4-opcache==7.4.33-1+deb11u7 -php7.4-readline==7.4.33-1+deb11u7 -php7.4-xml==7.4.33-1+deb11u7 -phpunit==9.5.2-1 +php7.4-cli==7.4.33-1+deb11u10 +php7.4-common==7.4.33-1+deb11u10 +php7.4-json==7.4.33-1+deb11u10 +php7.4-mbstring==7.4.33-1+deb11u10 +php7.4-opcache==7.4.33-1+deb11u10 +php7.4-readline==7.4.33-1+deb11u10 +php7.4-xml==7.4.33-1+deb11u10 +phpunit==9.5.2-1+deb11u1 phpunit-cli-parser==1.0.1-1 phpunit-code-unit==1.0.8-1 phpunit-code-unit-reverse-lookup==2.0.3-2 @@ -1636,10 +1620,10 @@ psutils==1.17.dfsg-4 publicsuffix==20220811.1734-0+deb11u1 pylint==2.7.2-3 python-all==2.7.18-3 -python-apt-common==2.2.1 +python-apt-common==2.2.1.1 python-babel-localedata==2.8.0+dfsg.1-7 python-is-python3==3.9.2-1 -python-pip-whl==20.3.4-4+deb11u1 +python-pip-whl==20.3.4-4+deb11u2 python-pkg-resources==44.1.1-1 python-setuptools==44.1.1-1 python2==2.7.18-3 @@ -1653,7 +1637,7 @@ python3-alabaster==0.7.8-1.1 python3-all==3.9.2-3 python3-all-dbg==3.9.2-3 python3-all-dev==3.9.2-3 -python3-apt==2.2.1 +python3-apt==2.2.1.1 python3-astroid==2.5.1-1 python3-attr==20.3.0-1 python3-automat==20.2.0-1 @@ -1694,13 +1678,13 @@ python3-ipython==7.20.0-1+deb11u1 python3-ipython-genutils==0.2.0-4 python3-isort==5.6.4-1 python3-jedi==0.18.0-1 -python3-jinja2==2.11.3-1+deb11u2 +python3-jinja2==2.11.3-1+deb11u4 python3-lazy-object-proxy==1.5.2-1 python3-lib2to3==3.9.2-1 python3-logilab-common==1.8.1-1 python3-lxml==4.6.3+dfsg-0.1+deb11u1 python3-magic==2:0.4.20-3 -python3-mako==1.1.3+ds1-2 +python3-mako==1.1.3+ds1-2+deb11u1 python3-markdown==3.3.4-1 python3-markupsafe==1.1.1-1+b3 python3-mccabe==0.6.1-3 @@ -1715,15 +1699,15 @@ python3-parse==1.6.6-0.2 python3-parso==0.8.1-1 python3-pexpect==4.8.0-2 python3-pickleshare==0.7.5-3 -python3-pil==8.1.2+dfsg-0.3+deb11u2 -python3-pkg-resources==52.0.0-4+deb11u1 +python3-pil==8.1.2+dfsg-0.3+deb11u3 +python3-pkg-resources==52.0.0-4+deb11u2 python3-pluggy==0.13.0-6 python3-ply==3.11-4 python3-prompt-toolkit==3.0.14-1 python3-psutil==5.8.0-1 python3-ptyprocess==0.7.0-1 python3-py==1.10.0-1 -python3-pyasn1==0.4.8-1 +python3-pyasn1==0.4.8-1+deb11u1 python3-pyasn1-modules==0.2.1-1 python3-pycurl==7.43.0.6-5 python3-pygments==2.7.1+dfsg-2.1 @@ -1735,7 +1719,7 @@ python3-requests==2.25.1+dfsg-2 python3-roman==2.0.0-5 python3-scapy==2.4.4-4 python3-service-identity==18.1.0-6 -python3-setuptools==52.0.0-4+deb11u1 +python3-setuptools==52.0.0-4+deb11u2 python3-six==1.16.0-2 python3-snowballstemmer==2.1.0-1 python3-software-properties==0.96.20.2-2.1 @@ -1752,7 +1736,7 @@ python3-twisted-bin==20.3.0-7+deb11u2 python3-typing-extensions==3.7.4.3-1 python3-tz==2021.1-1 python3-unidiff==0.5.5-2 -python3-urllib3==1.26.5-1~exp1+deb11u1 +python3-urllib3==1.26.5-1~exp1+deb11u3 python3-venv==3.9.2-3 python3-wcwidth==0.1.9+dfsg1-2 python3-webencodings==0.5.1-2 @@ -1761,21 +1745,21 @@ python3-wrapt==1.12.1-4+b1 python3-xdg==0.27-2 python3-zipp==1.0.0-3 python3-zope.interface==5.2.0-1 -python3.9==3.9.2-1+deb11u2 -python3.9-dbg==3.9.2-1+deb11u2 -python3.9-dev==3.9.2-1+deb11u2 -python3.9-minimal==3.9.2-1+deb11u2 -python3.9-venv==3.9.2-1+deb11u2 -qemu-system-common==1:5.2+dfsg-11+deb11u3 -qemu-system-data==1:5.2+dfsg-11+deb11u3 -qemu-system-gui==1:5.2+dfsg-11+deb11u3 -qemu-system-x86==1:5.2+dfsg-11+deb11u3 -qemu-utils==1:5.2+dfsg-11+deb11u3 -qt5-gtk-platformtheme==5.15.2+dfsg-9+deb11u1 -qt5-qmake==5.15.2+dfsg-9+deb11u1 -qt5-qmake-bin==5.15.2+dfsg-9+deb11u1 -qtbase5-dev==5.15.2+dfsg-9+deb11u1 -qtbase5-dev-tools==5.15.2+dfsg-9+deb11u1 +python3.9==3.9.2-1+deb11u5 +python3.9-dbg==3.9.2-1+deb11u5 +python3.9-dev==3.9.2-1+deb11u5 +python3.9-minimal==3.9.2-1+deb11u5 +python3.9-venv==3.9.2-1+deb11u5 +qemu-system-common==1:5.2+dfsg-11+deb11u5 +qemu-system-data==1:5.2+dfsg-11+deb11u5 +qemu-system-gui==1:5.2+dfsg-11+deb11u5 +qemu-system-x86==1:5.2+dfsg-11+deb11u5 +qemu-utils==1:5.2+dfsg-11+deb11u5 +qt5-gtk-platformtheme==5.15.2+dfsg-9+deb11u2 +qt5-qmake==5.15.2+dfsg-9+deb11u2 +qt5-qmake-bin==5.15.2+dfsg-9+deb11u2 +qtbase5-dev==5.15.2+dfsg-9+deb11u2 +qtbase5-dev-tools==5.15.2+dfsg-9+deb11u2 qtchooser==66-2 qttranslations5-l10n==5.15.2-2 quilt==0.66-2.1 @@ -1814,15 +1798,15 @@ ruby-rspec-expectations==3.9.0c2e2m1s3-2 ruby-rspec-mocks==3.9.0c2e2m1s3-2 ruby-rspec-support==3.9.0c2e2m1s3-2 ruby-ruby2-keywords==0.0.2-2 -ruby-rubygems==3.2.5-2 +ruby-rubygems==3.2.5-2+deb11u1 ruby-signet==0.14.0-4 ruby-simplecov==0.19.1-1 ruby-simplecov-html==0.12.3-1 ruby-test-unit==3.3.9-1 ruby-xmlrpc==0.3.0-2 -ruby2.7==2.7.4-1+deb11u4 -ruby2.7-dev==2.7.4-1+deb11u4 -ruby2.7-doc==2.7.4-1+deb11u4 +ruby2.7==2.7.4-1+deb11u5 +ruby2.7-dev==2.7.4-1+deb11u5 +ruby2.7-doc==2.7.4-1+deb11u5 rubygems-integration==1.18 runit-helper==2.10.3 sbsigntool==0.9.2-2 @@ -1841,12 +1825,12 @@ sphinx-rtd-theme-common==0.5.1+dfsg-1 squashfs-tools==1:4.4-2+deb11u2 stgit==0.19-1 strace==5.10-1 -sudo==1.9.5p2-3+deb11u1 +sudo==1.9.5p2-3+deb11u3 swig==4.0.2-1 swig4.0==4.0.2-1 -systemd==247.3-7+deb11u6 -systemd-sysv==247.3-7+deb11u6 -systemd-timesyncd==247.3-7+deb11u6 +systemd==247.3-7+deb11u7 +systemd-sysv==247.3-7+deb11u7 +systemd-timesyncd==247.3-7+deb11u7 t1utils==1.41-4 tcl==8.6.11+1 tcl8.6==8.6.11+dfsg-1 @@ -1890,12 +1874,12 @@ valgrind==1:3.16.1-1 valgrind-dbg==1:3.16.1-1 vdpau-driver-all==1.4-3 velocity==1.7-6 -vim==2:8.2.2434-3+deb11u1 -vim-common==2:8.2.2434-3+deb11u1 -vim-runtime==2:8.2.2434-3+deb11u1 +vim==2:8.2.2434-3+deb11u3 +vim-common==2:8.2.2434-3+deb11u3 +vim-runtime==2:8.2.2434-3+deb11u3 wayland-protocols==1.20-1 wdiff==1.2.2-2+b1 -wget==1.21-1+deb11u1 +wget==1.21-1+deb11u2 x11-common==1:7.7+22 x11-utils==7.7+5 x11-xserver-utils==7.7+8 @@ -1916,9 +1900,9 @@ xkb-data==2.29-2 xml-core==0.18+nmu1 xmlto==0.0.28-2.1 xorg-sgml-doctools==1:1.11-1.1 -xsltproc==1.1.34-4+deb11u1 +xsltproc==1.1.34-4+deb11u3 xtrans-dev==1.4.0-1 -xxd==2:8.2.2434-3+deb11u1 +xxd==2:8.2.2434-3+deb11u3 xz-utils==5.2.5-2.1~deb11u1 zip==3.0-12 zlib1g-dev==1:1.2.11.dfsg-2+deb11u2 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-arm64 b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-arm64 index 8c36820881..56d1438f13 100644 --- a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-arm64 +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-arm64 @@ -1,3 +1,30 @@ +binutils-aarch64-linux-gnu==2.35.2-2 +binutils-arm-linux-gnueabihf==2.35.2-2 +cpp-10-arm-linux-gnueabihf==10.2.1-6cross1 +cpp-arm-linux-gnueabihf==4:10.2.1-1 dctrl-tools==2.24-3 dvipng==1.15-1.1 +gcc-10-arm-linux-gnueabihf==10.2.1-6cross1 +gcc-10-arm-linux-gnueabihf-base==10.2.1-6cross1 +gcc-10-cross-base==10.2.1-6cross1 +gcc-arm-linux-gnueabihf==4:10.2.1-1 +libasan6-armhf-cross==10.2.1-6cross1 +libatomic1-armhf-cross==10.2.1-6cross1 +libc6-armhf-cross==2.31-9cross4 +libgcc-10-dev-armhf-cross==10.2.1-6cross1 +libgcc-s1-armhf-cross==10.2.1-6cross1 +libgomp1-armhf-cross==10.2.1-6cross1 +libjs-highlight.js==9.18.5+dfsg1-1 +libnode72==12.22.12~dfsg-1~deb11u7 +libpam-modules==1.4.0-9+deb11u2 +libpam-modules-bin==1.4.0-9+deb11u2 +libpam-runtime==1.4.0-9+deb11u2 +libstdc++6-armhf-cross==10.2.1-6cross1 +libubsan1-armhf-cross==10.2.1-6cross1 libunicode-linebreak-perl==0.0.20190101-1+b2 +libxslt1-dev==1.1.34-4+deb11u3 +linux-headers-5.10.0-39-arm64==5.10.251-1 +linux-headers-arm64==5.10.251-1 +nodejs==12.22.12~dfsg-1~deb11u7 +nodejs-doc==12.22.12~dfsg-1~deb11u7 +tzdata==2025b-0+deb11u2 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-armhf b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-armhf index 4dd945f910..31fe0b9f32 100644 --- a/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-armhf +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-deb-bullseye-armhf @@ -1,9 +1,19 @@ +binutils-arm-linux-gnueabihf==2.35.2-2 dctrl-tools==2.24-3 dvipng==1.15-1.1 libjpeg-dev==1:2.0.6-4 libjpeg62-turbo-dev==1:2.0.6-4 +libjs-highlight.js==9.18.5+dfsg1-1 +libnode72==12.22.12~dfsg-1~deb11u7 +libpam-modules==1.4.0-9+deb11u2 +libpam-modules-bin==1.4.0-9+deb11u2 +libpam-runtime==1.4.0-9+deb11u2 libunicode-linebreak-perl==0.0.20190101-1+b2 -linux-compiler-gcc-10-arm==5.10.226-1 -linux-headers-5.10.0-33-armmp==5.10.226-1 -linux-headers-armmp==5.10.226-1 +libxslt1-dev==1.1.34-4+deb11u3 +linux-compiler-gcc-10-arm==5.10.251-1 +linux-headers-5.10.0-39-armmp==5.10.251-1 +linux-headers-armmp==5.10.251-1 nasm==2.15.05-1 +nodejs==12.22.12~dfsg-1~deb11u7 +nodejs-doc==12.22.12~dfsg-1~deb11u7 +tzdata==2025b-0+deb11u2 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-py3 b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3 index 89821dda8e..220a4508e0 100644 --- a/files/build/versions/dockers/sonic-slave-bullseye/versions-py3 +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3 @@ -76,7 +76,6 @@ ply==3.11 prompt-toolkit==3.0.14 protobuf==4.25.3 psutil==5.8.0 -ptyprocess==0.7.0 py==1.10.0 pyang==2.4.0 pyangbind==0.8.1 @@ -95,13 +94,12 @@ pyroute2==0.5.14 pytest==6.0.2 pytest-cov==2.10.1 pytest-runner==5.2 -python-apt==2.2.1 +python-apt==2.2.1.1 python-dateutil==2.8.1 python-debian==0.1.39 python-magic==0.4.20 pytz==2021.1 pyxdg==0.27 -pyyaml==5.4.1 redis==5.0.4 regex==2024.5.15 requests==2.25.1 @@ -109,6 +107,7 @@ roman==2.0.0 scapy==2.4.4 service-identity==18.1.0 setuptools==49.6.0 +setuptools-scm==8.1.0 six==1.16.0 snowballstemmer==2.1.0 soupsieve==2.2.1 @@ -118,6 +117,7 @@ stdeb==0.10.0 stgit==0.19 thrift==0.13.0 toml==0.10.1 +tomli==2.4.1 traitlets==5.0.5 twisted==20.3.0 typing-extensions==3.7.4.3 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-arm64 b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-arm64 new file mode 100644 index 0000000000..95a0989b94 --- /dev/null +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-arm64 @@ -0,0 +1 @@ +ptyprocess==0.7.0 diff --git a/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-armhf b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-armhf new file mode 100644 index 0000000000..95a0989b94 --- /dev/null +++ b/files/build/versions/dockers/sonic-slave-bullseye/versions-py3-all-armhf @@ -0,0 +1 @@ +ptyprocess==0.7.0 diff --git a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster index 4469ca16b1..7c68bcfb15 100644 --- a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster +++ b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster @@ -26,7 +26,6 @@ bc==1.07.1-2+b1 bind9-host==1:9.11.5.P4+dfsg-5.1+deb10u11 binfmt-support==2.2.0-2 binutils==2.31.1-16 -binutils-aarch64-linux-gnu==2.31.1-16 binutils-common==2.31.1-16 binutils-x86-64-linux-gnu==2.31.1-16 bison==2:3.3.2.dfsg-1 @@ -167,6 +166,14 @@ gnupg-l10n==2.2.12-1+deb10u2 gnupg-utils==2.2.12-1+deb10u2 gnupg2==2.2.12-1+deb10u2 gobject-introspection==1.58.3-2 +golang==2:1.11~1 +golang-1.11==1.11.6-1+deb10u7 +golang-1.11-doc==1.11.6-1+deb10u7 +golang-1.11-go==1.11.6-1+deb10u7 +golang-1.11-src==1.11.6-1+deb10u7 +golang-doc==2:1.11~1 +golang-go==2:1.11~1 +golang-src==2:1.11~1 googletest==1.8.1-3 gpg==2.2.12-1+deb10u2 gpg-agent==2.2.12-1+deb10u2 @@ -464,12 +471,9 @@ libdpkg-perl==1.19.8 libdrm-amdgpu1==2.4.97-1 libdrm-common==2.4.97-1 libdrm-dev==2.4.97-1 -libdrm-etnaviv1==2.4.97-1 -libdrm-freedreno1==2.4.97-1 libdrm-intel1==2.4.97-1 libdrm-nouveau2==2.4.97-1 libdrm-radeon1==2.4.97-1 -libdrm-tegra0==2.4.97-1 libdrm2==2.4.97-1 libdv4==1.0.0-12 libdvdnav4==6.0.0-1 @@ -1334,7 +1338,6 @@ libxrender-dev==1:0.9.10-1 libxrender1==1:0.9.10-1 libxshmfence-dev==1.3-1 libxshmfence1==1.3-1 -libxslt1-dev==1.1.32-2.2~deb10u2 libxslt1.1==1.1.32-2.2~deb10u2 libxss1==1:1.2.3-1 libxt-dev==1:1.1.5-1+b3 @@ -1405,7 +1408,6 @@ netpbm==2:10.0-15.3+b2 nettle-dev==3.4.1-1+deb10u1 nftables==0.9.0-2 nlohmann-json3-dev==3.5.0-0.1 -nodejs==14.21.3-deb-1nodesource1 ocl-icd-libopencl1==2.2.12-2 openjade==1.4devel1-21.3+b1 openjdk-11-jdk==11.0.23+9-1~deb10u1 diff --git a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-arm64 b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-arm64 index 8f68d63292..561264415a 100644 --- a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-arm64 +++ b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-arm64 @@ -1 +1,9 @@ +binutils-aarch64-linux-gnu==2.31.1-16 +libdrm-etnaviv1==2.4.97-1 +libdrm-freedreno1==2.4.97-1 +libdrm-tegra0==2.4.97-1 +libnode64==10.24.0~dfsg-1~deb10u4 libtext-iconv-perl==1.7-5+b6 +libxslt1-dev==1.1.32-2.2~deb10u2 +nodejs==10.24.0~dfsg-1~deb10u4 +nodejs-doc==10.24.0~dfsg-1~deb10u4 diff --git a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-armhf b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-armhf index 4db6ea2c4d..696f4141ea 100644 --- a/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-armhf +++ b/files/build/versions/dockers/sonic-slave-buster/versions-deb-buster-armhf @@ -1,9 +1,13 @@ binutils-arm-linux-gnueabihf==2.31.1-16 +libdrm-etnaviv1==2.4.97-1 libdrm-exynos1==2.4.97-1 +libdrm-freedreno1==2.4.97-1 libdrm-omap1==2.4.97-1 +libdrm-tegra0==2.4.97-1 libgles2-mesa-dev==18.3.6-2+deb10u1 libjpeg-dev==1:1.5.2-2+deb10u1 libjpeg62-turbo-dev==1:1.5.2-2+deb10u1 +libnode64==10.24.0~dfsg-1~deb10u4 libqt5concurrent5==5.11.3+dfsg1-1+deb10u5 libqt5core5a==5.11.3+dfsg1-1+deb10u5 libqt5dbus5==5.11.3+dfsg1-1+deb10u5 @@ -17,8 +21,11 @@ libqt5sql5-sqlite==5.11.3+dfsg1-1+deb10u5 libqt5test5==5.11.3+dfsg1-1+deb10u5 libqt5widgets5==5.11.3+dfsg1-1+deb10u5 libqt5xml5==5.11.3+dfsg1-1+deb10u5 +libxslt1-dev==1.1.32-2.2~deb10u2 linux-compiler-gcc-8-arm==4.19.316-1 nasm==2.14-1 +nodejs==10.24.0~dfsg-1~deb10u4 +nodejs-doc==10.24.0~dfsg-1~deb10u4 qt5-default==5.11.3+dfsg1-1+deb10u5 qt5-gtk-platformtheme==5.11.3+dfsg1-1+deb10u5 qt5-qmake==5.11.3+dfsg1-1+deb10u5 diff --git a/files/build/versions/dockers/sonic-slave-buster/versions-py2 b/files/build/versions/dockers/sonic-slave-buster/versions-py2 index d043b8e5be..1ece2ce7db 100644 --- a/files/build/versions/dockers/sonic-slave-buster/versions-py2 +++ b/files/build/versions/dockers/sonic-slave-buster/versions-py2 @@ -75,7 +75,6 @@ pytest-cov==2.6.0 pytest-runner==4.4 pytz==2019.1 pyxdg==0.25 -pyyaml==5.4.1 redis==3.5.3 requests==2.21.0 roman==2.0.0 diff --git a/files/build/versions/dockers/sonic-slave-buster/versions-py3 b/files/build/versions/dockers/sonic-slave-buster/versions-py3 index c562acf93b..53d42854b2 100644 --- a/files/build/versions/dockers/sonic-slave-buster/versions-py3 +++ b/files/build/versions/dockers/sonic-slave-buster/versions-py3 @@ -65,7 +65,6 @@ python-debian==0.1.35 python-magic==0.4.16 pytz==2019.1 pyxdg==0.25 -pyyaml==5.4.1 redis==5.0.4 regex==2024.4.16 requests==2.21.0 diff --git a/files/build/versions/host-base-image/versions-deb-bookworm b/files/build/versions/host-base-image/versions-deb-bookworm index 42d80aaef7..541e5698b8 100644 --- a/files/build/versions/host-base-image/versions-deb-bookworm +++ b/files/build/versions/host-base-image/versions-deb-bookworm @@ -1,24 +1,24 @@ adduser==3.134 apt==2.6.1 -base-files==12.4+deb12u9 +base-files==12.4+deb12u13 base-passwd==3.6.1 -bash==5.2.15-2+b7 +bash==5.2.15-2+b10 bsdutils==1:2.38.1-5+deb12u3 coreutils==9.1-1 dash==0.5.12-2 debconf==1.5.82 -debian-archive-keyring==2023.3+deb12u1 +debian-archive-keyring==2023.3+deb12u2 debianutils==5.7-0.5~deb12u1 diffutils==1:3.8-4 dpkg==1.21.22 -e2fsprogs==1.47.0-2 +e2fsprogs==1.47.0-2+b2 findutils==4.9.0-4 -gcc-12-base==12.2.0-14 -gpgv==2.2.40-1.1 +gcc-12-base==12.2.0-14+deb12u1 +gpgv==2.2.40-1.1+deb12u2 grep==3.8-5 gzip==1.12-1 hostname==3.23+nmu1 -init-system-helpers==1.65.2 +init-system-helpers==1.65.2+deb12u1 libacl1==2.3.1-3 libapt-pkg6.0==2.6.1 libattr1==1:2.5.1-4 @@ -26,33 +26,33 @@ libaudit-common==1:3.0.9-1 libaudit1==1:3.0.9-1 libblkid1==2.38.1-5+deb12u3 libbz2-1.0==1.0.8-5+b1 -libc-bin==2.36-9+deb12u9 -libc6==2.36-9+deb12u9 +libc-bin==2.36-9+deb12u13 +libc6==2.36-9+deb12u13 libcap-ng0==0.8.3-1+b3 -libcap2==1:2.66-4 -libcom-err2==1.47.0-2 +libcap2==1:2.66-4+deb12u2+b2 +libcom-err2==1.47.0-2+b2 libcrypt1==1:4.4.33-2 libdb5.3==5.3.28+dfsg2-1 libdebconfclient0==0.270 -libext2fs2==1.47.0-2 +libext2fs2==1.47.0-2+b2 libffi8==3.4.4-1 -libgcc-s1==12.2.0-14 +libgcc-s1==12.2.0-14+deb12u1 libgcrypt20==1.10.1-3 libgmp10==2:6.2.1+dfsg1-1.1 -libgnutls30==3.7.9-2+deb12u3 +libgnutls30==3.7.9-2+deb12u5 libgpg-error0==1.46-1 libhogweed6==3.8.1-2 libidn2-0==2.3.3-1+b1 liblz4-1==1.9.4-1 -liblzma5==5.4.1-0.2 +liblzma5==5.4.1-1 libmd0==1.0.4-2 libmount1==2.38.1-5+deb12u3 libnettle8==3.8.1-2 libp11-kit0==0.24.1-2 -libpam-modules==1.5.2-6+deb12u1 -libpam-modules-bin==1.5.2-6+deb12u1 -libpam-runtime==1.5.2-6+deb12u1 -libpam0g==1.5.2-6+deb12u1 +libpam-modules==1.5.2-6+deb12u2 +libpam-modules-bin==1.5.2-6+deb12u2 +libpam-runtime==1.5.2-6+deb12u2 +libpam0g==1.5.2-6+deb12u2 libpcre2-8-0==10.42-1 libseccomp2==2.5.4-1+deb12u1 libselinux1==3.4-1+b6 @@ -60,28 +60,28 @@ libsemanage-common==3.4-1 libsemanage2==3.4-1+b5 libsepol2==3.4-2.1 libsmartcols1==2.38.1-5+deb12u3 -libss2==1.47.0-2 -libstdc++6==12.2.0-14 -libsystemd0==252.33-1~deb12u1 -libtasn1-6==4.19.0-2 +libss2==1.47.0-2+b2 +libstdc++6==12.2.0-14+deb12u1 +libsystemd0==252.39-1~deb12u1 +libtasn1-6==4.19.0-2+deb12u1 libtinfo6==6.4-4 -libudev1==252.33-1~deb12u1 +libudev1==252.39-1~deb12u1 libunistring2==1.0-2 libuuid1==2.38.1-5+deb12u3 libxxhash0==0.8.1-1 libzstd1==1.5.4+dfsg2-5 -login==1:4.13+dfsg1-1+b1 -logsave==1.47.0-2 +login==1:4.13+dfsg1-1+deb12u2 +logsave==1.47.0-2+b2 mawk==1.3.4.20200120-3.1 mount==2.38.1-5+deb12u3 ncurses-base==6.4-4 ncurses-bin==6.4-4 -passwd==1:4.13+dfsg1-1+b1 -perl-base==5.36.0-7+deb12u1 +passwd==1:4.13+dfsg1-1+deb12u2 +perl-base==5.36.0-7+deb12u3 sed==4.9-1 sysvinit-utils==3.06-4 tar==1.34+dfsg-1.2+deb12u1 -tzdata==2024b-0+deb12u1 +tzdata==2025b-0+deb12u2 usr-is-merged==37~deb12u1 util-linux==2.38.1-5+deb12u3 util-linux-extra==2.38.1-5+deb12u3 diff --git a/files/build/versions/host-image/versions-deb-bookworm b/files/build/versions/host-image/versions-deb-bookworm index 7011abb05f..d9813158b0 100644 --- a/files/build/versions/host-image/versions-deb-bookworm +++ b/files/build/versions/host-image/versions-deb-bookworm @@ -8,30 +8,29 @@ bash==5.1-2 bash-completion==1:2.11-6 bash-tacplus==1.0.0 binutils==2.40-2 -binutils-aarch64-linux-gnu==2.40-2 binutils-common==2.40-2 binutils-x86-64-linux-gnu==2.40-2 bridge-utils==1.7.1-1 bsdextrautils==2.38.1-5+deb12u3 bsdmainutils==12.1.8 -busybox==1:1.35.0-4+b3 -ca-certificates==20230311 +busybox==1:1.35.0-4+b7 +ca-certificates==20230311+deb12u1 cgroup-tools==2.0.2-2 conntrack==1:1.4.7-1+b2 containerd.io==1.6.21-1 cpio==2.13+dfsg-7.1 cpp==4:12.2.0-3 -cpp-12==12.2.0-14 +cpp-12==12.2.0-14+deb12u1 cron==3.0pl1-162 cron-daemon-common==3.0pl1-162 -curl==7.88.1-10+deb12u8 +curl==7.88.1-10+deb12u14 dbus==1.14.10-1~deb12u1 dbus-bin==1.14.10-1~deb12u1 dbus-daemon==1.14.10-1~deb12u1 dbus-session-bus-common==1.14.10-1~deb12u1 dbus-system-bus-common==1.14.10-1~deb12u1 device-tree-compiler==1.6.1-4+b1 -distro-info-data==0.58+deb12u3 +distro-info-data==0.58+deb12u6 dmidecode==3.4-1 dmsetup==2:1.02.185-2 docker-ce==5:24.0.2-1~debian.12~bookworm @@ -52,25 +51,23 @@ fontconfig-config==2.14.1-4 fonts-dejavu-core==2.37-6 freeipmi-common==1.6.10-1 gcc==4:12.2.0-3 -gcc-12==12.2.0-14 +gcc-12==12.2.0-14+deb12u1 gdisk==1.0.9-2.1 gettext-base==0.21-12 gir1.2-glib-2.0==1.74.0-3 -gpg==2.2.40-1.1 -gpgconf==2.2.40-1.1 +gpg==2.2.40-1.1+deb12u2 +gpgconf==2.2.40-1.1+deb12u2 grub-common==2.06-13+deb12u1 grub2-common==2.06-13+deb12u1 haveged==1.9.14-1+b1 hdparm==9.65+ds-1 hping3==3.a2.ds2-10 -hw-management==1.mlnx.7.0040.2000 +hw-management==1.mlnx.7.0040.2108 i2c-tools==4.3-2+b3 -icu-devtools==72.1-3 ifmetric==0.3-5 ifupdown2==3.0.0-1 initramfs-tools==0.142 initramfs-tools-core==0.142 -ionic-modules==22.11.1-001 ipmitool==1.8.19-4+deb12u2 iproute2==6.1.0-3 iptables==1.8.9-2 @@ -78,20 +75,20 @@ iptables-persistent==1.0.20 iputils-ping==3:20221126-1+deb12u1 isc-dhcp-client==4.4.3-P1-2 j2cli==0.3.12b-4 -jq==1.6-2.1 +jq==1.6-2.1+deb12u1 kdump-tools==1:1.8.1 -kernel-mft-dkms-modules-6.1.0-22-2-amd64==4.28.0 -kexec-tools==1:2.0.25-3+deb12u1 +kernel-mft-dkms-modules-6.1.0-29-2-amd64==4.28.0 +kexec-tools==1:2.0.25-3+deb12u3 klibc-utils==2.0.12-1 kmod==30+20221128-1 ldap-utils==2.5.13+dfsg-5 less==590-2.1~deb12u2 -libabsl20220623==20220623.1-1 +libabsl20220623==20220623.1-1+deb12u2 libapparmor1==3.0.8-3 libargon2-1==0~20171227-0.3+deb12u1 -libasan8==12.2.0-14 +libasan8==12.2.0-14+deb12u1 libassuan0==2.5.5-5 -libatomic1==12.2.0-14 +libatomic1==12.2.0-14+deb12u1 libauparse0==1:3.0.9-1 libavahi-client3==0.8-10+deb12u1 libavahi-common-data==0.8-10+deb12u1 @@ -99,23 +96,21 @@ libavahi-common3==0.8-10+deb12u1 libbabeltrace1==1.5.11-1+b2 libbinutils==2.40-2 libboost-serialization1.74.0==1.74.0+ds1-21 -libbpf1==1:1.1.0-1 +libbpf1==1:1.1.2-0+deb12u1 libbrotli1==1.0.9-2+b6 libbsd0==0.11.7-2 libc-ares2==1.18.1-3 -libc-dev-bin==2.36-9+deb12u9 -libc-l10n==2.36-9+deb12u9 -libc6-dev==2.36-9+deb12u9 -libcap2-bin==1:2.66-4 +libc-l10n==2.36-9+deb12u13 +libcap2-bin==1:2.66-4+deb12u2+b2 libcbor0.8==0.8.0-2+b1 -libcc1-0==12.2.0-14 +libcc1-0==12.2.0-14+deb12u1 libcgroup2==2.0.2-2 libcrack2==2.9.6-5+b1 libcrypt-dev==1:4.4.33-2 libcryptsetup12==2:2.6.1-4~deb12u2 libctf-nobfd0==2.40-2 libctf0==2.40-2 -libcurl4==7.88.1-10+deb12u8 +libcurl4==7.88.1-10+deb12u14 libdbd-sqlite3-perl==1.72-1 libdbi-perl==1.643-4 libdbus-1-3==1.14.10-1~deb12u1 @@ -127,53 +122,51 @@ libefiboot1==37-6 libefivar1==37-6 libelf1==0.188-2.1 libestr0==0.1.11-1 -libexpat1==2.5.0-1+deb12u1 +libexpat1==2.5.0-1+deb12u2 libfastjson4==1.2304.0-1 libfdisk1==2.38.1-5+deb12u3 libfdt1==1.6.1-4+b1 libffi-dev==3.4.4-1 libfido2-1==1.12.0-2+b1 libfreeipmi17==1.6.10-1+b1 -libfreetype6==2.12.1+dfsg-5+deb12u3 +libfreetype6==2.12.1+dfsg-5+deb12u4 libfuse2==2.9.9-6+b1 -libgcc-12-dev==12.2.0-14 +libgcc-12-dev==12.2.0-14+deb12u1 libgdbm-compat4==1.23-3 libgdbm6==1.23-3 libgirepository-1.0-1==1.74.0-3 -libglib2.0-0==2.74.6-2+deb12u5 -libgnutls30==3.7.9-2+deb12u4 -libgomp1==12.2.0-14 +libglib2.0-0==2.74.6-2+deb12u8 +libgnutls30==3.7.9-2+deb12u6 +libgomp1==12.2.0-14+deb12u1 libgpm2==1.20.7-10+b1 libgprofng0==2.40-2 libgrpc++1.51==1.51.1-3+b1 libgrpc29==1.51.1-3+b1 -libgssapi-krb5-2==1.20.1-2+deb12u2 +libgssapi-krb5-2==1.20.1-2+deb12u4 libhavege2==1.9.14-1+b1 libhiredis0.14==0.14.1-3 -libhwasan0==12.2.0-14 libi2c0==4.3-2+b3 -libicu-dev==72.1-3 -libicu72==72.1-3 +libicu72==72.1-3+deb12u1 libiio-utils==0.24-4 libiio0==0.24-4 libiniparser1==4.1-6 libip4tc2==1.8.9-2 libip6tc2==1.8.9-2 libisl23==0.25-1.1 -libitm1==12.2.0-14 +libitm1==12.2.0-14+deb12u1 libjansson4==2.14-2 -libjq1==1.6-2.1 +libjq1==1.6-2.1+deb12u1 libjs-jquery==3.6.1+dfsg+~3.5.14-1 libjson-c5==0.16-2 libk5crypto3==1.20.1-2+deb12u1+fips libkeyutils1==1.6.3-2 libklibc==2.0.12-1 libkmod2==30+20221128-1 -libkrb5-3==1.20.1-2+deb12u2 -libkrb5support0==1.20.1-2+deb12u2 +libkrb5-3==1.20.1-2+deb12u4 +libkrb5support0==1.20.1-2+deb12u4 libldap-2.5-0==2.5.13+dfsg-5 liblognorm5==2.0.6-4 -liblsan0==12.2.0-14 +liblsan0==12.2.0-14+deb12u1 liblua5.1-0==5.1.5-9 liblzo2-2==2.10-2 libmagic-mgc==1:5.44-3 @@ -194,7 +187,6 @@ libnl-genl-3-200==3.5.0-1 libnl-nf-3-200==3.5.0-1 libnl-route-3-200==3.5.0-1 libnorm1==1.5.9+dfsg-2 -libnsl-dev==1.3.0-2 libnsl2==1.3.0-2 libnss-ldapd==0.9.12-4 libnss-radius==1.0.1-1 @@ -210,9 +202,9 @@ libpam-tacplus==1.4.1-1 libpcap0.8==1.10.3-1 libpci3==1:3.9.0-4 libpcre3==2:8.39-15 -libperl5.36==5.36.0-7+deb12u1 +libperl5.36==5.36.0-7+deb12u3 libpgm-5.3-0==5.3.128~dfsg-2 -libpng16-16==1.6.39-2 +libpng16-16==1.6.39-2+deb12u3 libpopt0==1.19+dfsg-1 libproc2-0==2:4.0.2-3 libprotobuf32==3.21.12-3 @@ -221,10 +213,10 @@ libpsl5==0.21.2-1 libpwquality-common==1.4.5-1 libpwquality1==1.4.5-1+b1 libpython3-stdlib==3.11.2-1+b1 -libpython3.11==3.11.2-6+deb12u5 -libpython3.11-minimal==3.11.2-6+deb12u5 -libpython3.11-stdlib==3.11.2-6+deb12u5 -libquadmath0==12.2.0-14 +libpython3.11==3.11.2-6+deb12u6 +libpython3.11-minimal==3.11.2-6+deb12u6 +libpython3.11-stdlib==3.11.2-6+deb12u6 +libquadmath0==12.2.0-14+deb12u1 libre2-9==20220601+dfsg-1+b1 libreadline8==8.2-1.3 librtmp1==2.4+20151223.gitfa8646d.1-2+b2 @@ -233,42 +225,38 @@ libsasl2-modules-db==2.1.28+dfsg-10 libsensors-config==1:3.6.0-7.1 libsensors5==1:3.6.0-7.1 libslang2==2.3.3-3 -libsodium23==1.0.18-1 -libsqlite3-0==3.40.1-2+deb12u1 +libsodium23==1.0.18-1+deb12u1 +libsqlite3-0==3.40.1-2+deb12u2 libssh2-1==1.10.0-3+b1 libssl-dev==3.0.11-1~deb12u2+fips libssl3==3.0.11-1~deb12u2+fips libswsscommon==1.0.0 libsysfs2==2.1.1-4 -libsystemd-shared==252.33-1~deb12u1 +libsystemd-shared==252.39-1~deb12u1 libtac2==1.4.1-1 -libtasn1-6==4.19.0-2+deb12u1 libtcl8.6==8.6.13+dfsg-2 libtirpc-common==1.3.3+ds-1 -libtirpc-dev==1.3.3+ds-1 libtirpc3==1.3.3+ds-1 -libtsan2==12.2.0-14 +libtsan2==12.2.0-14+deb12u1 libubootenv-tool==0.3.2-1 libubootenv0.1==0.3.2-1 -libubsan1==12.2.0-14 +libubsan1==12.2.0-14+deb12u1 libunwind8==1.6.2-3 libusb-1.0-0==2:1.0.26-1 libutempter0==1.2.1-3 libwrap0==7.6.q-32 -libxencall1==4.17.5+23-ga4e5191dc0-1 -libxendevicemodel1==4.17.5+23-ga4e5191dc0-1 -libxenevtchn1==4.17.5+23-ga4e5191dc0-1 -libxenforeignmemory1==4.17.5+23-ga4e5191dc0-1 -libxengnttab1==4.17.5+23-ga4e5191dc0-1 -libxenhypfs1==4.17.5+23-ga4e5191dc0-1 -libxenmisc4.17==4.17.5+23-ga4e5191dc0-1 -libxenstore4==4.17.5+23-ga4e5191dc0-1 -libxentoolcore1==4.17.5+23-ga4e5191dc0-1 -libxentoollog1==4.17.5+23-ga4e5191dc0-1 -libxml2==2.9.14+dfsg-1.3~deb12u1 -libxml2-dev==2.9.14+dfsg-1.3~deb12u1 -libxslt1-dev==1.1.35-1 -libxslt1.1==1.1.35-1 +libxencall1==4.17.5+72-g01140da4e8-1 +libxendevicemodel1==4.17.5+72-g01140da4e8-1 +libxenevtchn1==4.17.5+72-g01140da4e8-1 +libxenforeignmemory1==4.17.5+72-g01140da4e8-1 +libxengnttab1==4.17.5+72-g01140da4e8-1 +libxenhypfs1==4.17.5+72-g01140da4e8-1 +libxenmisc4.17==4.17.5+72-g01140da4e8-1 +libxenstore4==4.17.5+72-g01140da4e8-1 +libxentoolcore1==4.17.5+72-g01140da4e8-1 +libxentoollog1==4.17.5+72-g01140da4e8-1 +libxml2==2.9.14+dfsg-1.3~deb12u5 +libxslt1.1==1.1.35-1+deb12u3 libxtables12==1.8.9-2 libyajl2==2.1.0-3+deb12u2 libyaml-0-2==0.2.5-1 @@ -276,11 +264,9 @@ libyang==1.0.73 libyang-cpp==1.0.73 libzmq5==4.3.4-6 linux-base==4.9 -linux-image-6.1.0-22-2-amd64-unsigned==6.1.94-1 -linux-image-6.1.0-22-2-arm64-unsigned==6.1.94-1 -linux-libc-dev==6.1.128-1 -linux-perf==6.1.128-1 -locales==2.36-9+deb12u9 +linux-image-6.1.0-29-2-amd64-unsigned==6.1.123-1 +linux-perf==6.1.164-1 +locales==2.36-9+deb12u13 logrotate==3.21.0-1 lsof==4.95.0-1 makedev==2.3.1-97 @@ -296,7 +282,7 @@ mtd-utils==1:2.1.5-1 mtr-tiny==0.95-1 ncal==12.1.8 ndisc6==1.0.5-1+b2 -net-tools==2.10-0.1 +net-tools==2.10-0.1+deb12u2 netbase==6.4 netfilter-persistent==1.0.20 nslcd==0.9.12-4 @@ -314,8 +300,8 @@ openssh-sftp-server==1:9.2p1-2+deb12u3+fips openssl==3.0.11-1~deb12u2+fips pci.ids==0.0~2023.04.11-1 pciutils==1:3.9.0-4 -perl==5.36.0-7+deb12u1 -perl-modules-5.36==5.36.0-7+deb12u1 +perl==5.36.0-7+deb12u3 +perl-modules-5.36==5.36.0-7+deb12u3 picocom==3.1-4 pigz==2.6-1 pkgconf==1.8.1-1 @@ -330,7 +316,7 @@ python3-cffi-backend==1.15.1-5+b1 python3-cryptography==38.0.4-3+deb12u1 python3-dbus==1.3.2-4+b1 python3-distutils==3.11.2-3 -python3-jinja2==3.1.2-1+deb12u1 +python3-jinja2==3.1.2-1+deb12u3 python3-lib2to3==3.11.2-3 python3-m2crypto==0.38.0-4+b1 python3-markupsafe==2.1.2-1+b1 @@ -338,22 +324,21 @@ python3-minimal==3.11.2-1+b1 python3-nacl==1.5.0-2 python3-ntp==1.2.2+dfsg1-1+deb12u1 python3-pip==23.0.1+dfsg-1 -python3-pkg-resources==66.1.1-1+deb12u1 +python3-pkg-resources==66.1.1-1+deb12u2 python3-ply==3.11-5 python3-pycparser==2.21-1 -python3-setuptools==66.1.1-1+deb12u1 +python3-setuptools==66.1.1-1+deb12u2 python3-swsscommon==1.0.0 python3-wheel==0.38.4-2 python3-yaml==6.0-3+b2 python3-yang==1.0.73 -python3.11==3.11.2-6+deb12u5 -python3.11-minimal==3.11.2-6+deb12u5 +python3.11==3.11.2-6+deb12u6 +python3.11-minimal==3.11.2-6+deb12u6 rasdaemon==0.6.8-1 readline-common==8.2-1.3 resolvconf==1.91+nmu1 -rpcsvc-proto==1.4.3-1 rshim==2.0.29 -rsyslog==8.2302.0-1 +rsyslog==8.2302.0-1+deb12u1 runit-helper==2.15.2 sbsigntool==0.9.4-3.1 screen==4.9.0-4 @@ -367,35 +352,34 @@ sonic-nettools==0.0.1-0 sonic-platform-pddf==1.1 sonic-rsyslog-plugin==1.0.0-0 sonic-utilities-data==1.0-1 -sqlite3==3.40.1-2+deb12u1 +sqlite3==3.40.1-2+deb12u2 squashfs-tools==1:4.5.1-1 ssh==1:9.2p1-2+deb12u3+fips -sudo==1.9.13p3-1+deb12u1 -sx-kernel==1.mlnx.4.7.2164 +sudo==1.9.13p3-1+deb12u3 +sx-kernel==1.mlnx.4.7.2202 symcrypt-openssl==0.1 sysfsutils==2.1.1-4 sysstat==12.6.1-1 -systemd==252.33-1~deb12u1 +systemd==252.39-1~deb12u1 systemd-bootchart==234-2+b1 systemd-sonic-generator==1.0.0 -systemd-sysv==252.33-1~deb12u1 +systemd-sysv==252.39-1~deb12u1 tcpdump==4.99.3-1 tcptraceroute==1.5beta7+debian-4.1+b1 traceroute==1:2.1.2-1 -u-boot-tools==2023.01+dfsg-2+deb12u1 +u-boot-tools==2023.01+dfsg-2+deb12u2 ucf==3.0043+nmu1+deb12u1 -udev==252.33-1~deb12u1 +udev==252.39-1~deb12u1 unzip==6.0-28 usbutils==1:014-1+deb12u1 uuid-runtime==2.38.1-5+deb12u3 -vim==2:9.0.1378-2 -vim-common==2:9.0.1378-2 -vim-runtime==2:9.0.1378-2 -wireless-regdb==2022.06.06-1 +vim==2:9.0.1378-2+deb12u2 +vim-common==2:9.0.1378-2+deb12u2 +vim-runtime==2:9.0.1378-2+deb12u2 +wireless-regdb==2025.07.10-1~deb12u1 x11-common==1:7.7+23 xml-core==0.18+nmu1 xmlstarlet==1.6.1-3 -xxd==2:9.0.1378-2 -xz-utils==5.4.1-0.2 -zlib1g-dev==1:1.2.13.dfsg-1 +xxd==2:9.0.1378-2+deb12u2 +xz-utils==5.4.1-1 zstd==1.5.4+dfsg2-5 diff --git a/files/build/versions/host-image/versions-deb-bookworm-arm64 b/files/build/versions/host-image/versions-deb-bookworm-arm64 index ff0ac29241..909846c20d 100644 --- a/files/build/versions/host-image/versions-deb-bookworm-arm64 +++ b/files/build/versions/host-image/versions-deb-bookworm-arm64 @@ -1,2 +1,16 @@ +binutils-aarch64-linux-gnu==2.40-2 +icu-devtools==72.1-3+deb12u1 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 +libhwasan0==12.2.0-14+deb12u1 +libicu-dev==72.1-3+deb12u1 +libnsl-dev==1.3.0-2 +libtirpc-dev==1.3.3+ds-1 +libxml2-dev==2.9.14+dfsg-1.3~deb12u5 +libxslt1-dev==1.1.35-1+deb12u3 +linux-image-6.1.0-29-2-arm64-unsigned==6.1.123-1 +linux-libc-dev==6.1.164-1 mrvlprestera==1.0 ntpstat==0.0.0.1-2 +rpcsvc-proto==1.4.3-1 +zlib1g-dev==1:1.2.13.dfsg-1 diff --git a/files/build/versions/host-image/versions-deb-bookworm-armhf b/files/build/versions/host-image/versions-deb-bookworm-armhf index 2b7299ce9b..5e66d22864 100644 --- a/files/build/versions/host-image/versions-deb-bookworm-armhf +++ b/files/build/versions/host-image/versions-deb-bookworm-armhf @@ -1,5 +1,16 @@ binutils-arm-linux-gnueabihf==2.40-2 -linux-image-6.1.0-22-2-armmp==6.1.94-1 +icu-devtools==72.1-3+deb12u1 +libc-dev-bin==2.36-9+deb12u13 +libc6-dev==2.36-9+deb12u13 +libicu-dev==72.1-3+deb12u1 +libnsl-dev==1.3.0-2 +libtirpc-dev==1.3.3+ds-1 +libxml2-dev==2.9.14+dfsg-1.3~deb12u5 +libxslt1-dev==1.1.35-1+deb12u3 +linux-image-6.1.0-29-2-armmp==6.1.123-1 +linux-libc-dev==6.1.164-1 mrvlprestera==1.0 ntpstat==0.0.0.1-2 python3-gi==3.42.2-3+b1 +rpcsvc-proto==1.4.3-1 +zlib1g-dev==1:1.2.13.dfsg-1 From de4ea070236d0d985607e93116f130f2fc185ccf Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Mon, 25 May 2026 14:12:56 +0800 Subject: [PATCH 12/13] [ci] Disable docker ptf build for 202411 branch. (#27531) #### Why I did it Disable ptf docker build in 202411 branch. ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it #### How to verify it #### Which release branch to backport (provide reason below if selected) - [ ] 202305 - [ ] 202311 - [ ] 202405 - [ ] 202411 - [ ] 202505 - [ ] 202511 #### Tested branch (Please provide the tested image version) - [ ] - [ ] #### Description for the changelog #### Link to config_db schema for YANG module changes Signed-off-by: Sonic Build Admin #### A picture of a cute animal (not mandatory but encouraged) --- .azure-pipelines/azure-pipelines-build.yml | 3 +-- .azure-pipelines/azure-pipelines-image-template.yml | 1 + 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.azure-pipelines/azure-pipelines-build.yml b/.azure-pipelines/azure-pipelines-build.yml index 5feecd12b7..b8753793dd 100644 --- a/.azure-pipelines/azure-pipelines-build.yml +++ b/.azure-pipelines/azure-pipelines-build.yml @@ -150,8 +150,7 @@ jobs: mv target/sonic-vs.vhdx.gz target/sonic-vs-k8s.vhdx.gz rm target/sonic-vs.img fi - make $BUILD_OPTIONS target/docker-sonic-vs.gz target/sonic-vs.img.gz target/docker-ptf.gz - make $BUILD_OPTIONS target/docker-ptf-sai.gz + make $BUILD_OPTIONS target/docker-sonic-vs.gz target/sonic-vs.img.gz if [ $(Build.Reason) != 'PullRequest' ];then gzip -kd target/sonic-vs.img.gz SONIC_RUN_CMDS="qemu-img convert target/sonic-vs.img -O vhdx -o subformat=dynamic target/sonic-vs.vhdx" make $BUILD_OPTIONS sonic-slave-run diff --git a/.azure-pipelines/azure-pipelines-image-template.yml b/.azure-pipelines/azure-pipelines-image-template.yml index 2b7a275cbc..4e6ed76147 100644 --- a/.azure-pipelines/azure-pipelines-image-template.yml +++ b/.azure-pipelines/azure-pipelines-image-template.yml @@ -54,6 +54,7 @@ jobs: displayName: 'Make configure' postSteps: - script: | + exit 0 # 202411 don't need docker-ptf now. BUILD_REASON=$(Build.Reason) echo "Build.Reason = $BUILD_REASON" echo "Build.DefinitionName = $BUILD_DEFINITIONNAME" From cfc766e13eccab4e7603808db3bfa9c5b2dfef17 Mon Sep 17 00:00:00 2001 From: mssonicbld <79238446+mssonicbld@users.noreply.github.com> Date: Sat, 6 Jun 2026 04:12:57 +0800 Subject: [PATCH 13/13] Bullseye is EOL, use the archive repo (#27744) #### Why I did it The bullseye-backports section of the repo has been removed from the main repo. ##### Work item tracking - Microsoft ADO **(number only)**: #### How I did it #### How to verify it Verified by attempting to build slave container: ``` #13 0.522 Get:1 http://archive.debian.org/debian bullseye InRelease [116 kB] #13 0.538 Get:2 http://archive.debian.org/debian bullseye-updates InRelease [44.0 kB] #13 0.538 Get:3 http://archive.debian.org/debian bullseye-backports InRelease [48.9 kB] #13 0.568 Get:4 http://debian-archive.trafficmanager.net/debian-security bullseye-security InRelease [27.2 kB] #13 0.737 Get:5 http://archive.debian.org/debian bullseye/contrib Sources [43.2 kB] #13 0.915 Get:6 http://archive.debian.org/debian bullseye/main Sources [8500 kB] #13 1.037 Get:7 http://debian-archive.trafficmanager.net/debian-security bullseye-security/contrib Sources [1128 B] #13 1.065 Get:8 http://debian-archive.trafficmanager.net/debian-security bullseye-security/main Sources [250 kB] #13 1.133 Get:9 http://debian-archive.trafficmanager.net/debian-security bullseye-security/non-free Sources [1352 B] #13 1.134 Get:10 http://debian-archive.trafficmanager.net/debian-security bullseye-security/main amd64 Packages [389 kB] #13 1.157 Get:11 http://debian-archive.trafficmanager.net/debian-security bullseye-security/contrib amd64 Packages [2880 B] #13 1.157 Get:12 http://debian-archive.trafficmanager.net/debian-security bullseye-security/non-free amd64 Packages [1184 B] #13 1.280 Get:13 http://archive.debian.org/debian bullseye/non-free Sources [81.0 kB] #13 1.605 Get:14 http://archive.debian.org/debian bullseye/contrib amd64 Packages [50.4 kB] #13 1.609 Get:15 http://archive.debian.org/debian bullseye/main amd64 Packages [8066 kB] #13 1.662 Get:16 http://archive.debian.org/debian bullseye/non-free amd64 Packages [96.4 kB] #13 1.662 Get:17 http://archive.debian.org/debian bullseye-updates/main Sources [7908 B] #13 1.663 Get:18 http://archive.debian.org/debian bullseye-updates/main amd64 Packages [18.8 kB] #13 1.663 Get:19 http://archive.debian.org/debian bullseye-backports/non-free amd64 Packages [14.4 kB] #13 1.663 Get:20 http://archive.debian.org/debian bullseye-backports/main amd64 Packages [403 kB] #13 1.665 Get:21 http://archive.debian.org/debian bullseye-backports/contrib amd64 Packages [6164 B] #13 2.755 Fetched 18.2 MB in 2s (8066 kB/s) #13 2.755 Reading package lists... #13 3.212 Reading package lists... #13 3.626 Building dependency tree... #13 3.709 Reading state information... ``` #### Which release branch to backport (provide reason below if selected) - [ ] 202205 - [ ] 202211 - [ ] 202305 - [ ] 202311 - [ ] 202405 - [ ] 202411 - [ ] 202505 #### Tested branch (Please provide the tested image version) - [ ] - [ ] #### Description for the changelog #### Link to config_db schema for YANG module changes Signed-off-by: Sonic Build Admin #### A picture of a cute animal (not mandatory but encouraged) --- scripts/build_mirror_config.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_mirror_config.sh b/scripts/build_mirror_config.sh index e7b9182fe9..50f3aad1d6 100755 --- a/scripts/build_mirror_config.sh +++ b/scripts/build_mirror_config.sh @@ -25,7 +25,7 @@ if [ "$ARCHITECTURE" == "armhf" ]; then DEFAULT_MIRROR_SECURITY_URLS=http://deb.debian.org/debian-security/ fi -if [ "$DISTRIBUTION" == "buster" ]; then +if [ "$DISTRIBUTION" == "buster" ] || [ "$DISTRIBUTION" == "bullseye" ]; then DEFAULT_MIRROR_URLS=http://archive.debian.org/debian/ fi