Compare commits

...

16 Commits

Author SHA1 Message Date
zach d93ed86def Update Dockerfile 2024-07-31 15:57:04 +00:00
zach b0ecbe1359 Update Dockerfile
Version update
2024-07-31 15:43:28 +00:00
zach 3decc0d272 Update Dockerfile
Set ORCASLICER_VERSION to v2.1.0-beta
2024-06-03 00:55:22 +00:00
LinuxServer-CI 20d0e0bb7e Bot Updating Package Versions 2024-05-28 12:15:30 +00:00
LinuxServer-CI d2cd29b714 Bot Updating Package Versions 2024-05-21 12:19:12 +00:00
LinuxServer-CI c1da1c2896 Bot Updating Templated Files 2024-05-21 12:13:42 +00:00
LinuxServer-CI 296c04142e Bot Updating Templated Files 2024-05-21 12:12:09 +00:00
LinuxServer-CI a272f7f8da Bot Updating Package Versions 2024-05-14 12:16:35 +00:00
LinuxServer-CI a7593d62b5 Bot Updating Templated Files 2024-05-14 12:11:14 +00:00
LinuxServer-CI 46fd0139b5 Bot Updating Package Versions 2024-05-07 12:21:54 +00:00
LinuxServer-CI 5fdeb050e9 Bot Updating Templated Files 2024-05-07 12:12:13 +00:00
LinuxServer-CI 929b0e84a5 Bot Updating Package Versions 2024-04-30 12:19:05 +00:00
LinuxServer-CI 4039e998d2 Bot Updating Templated Files 2024-04-30 12:09:48 +00:00
LinuxServer-CI af2cde0865 Bot Updating Package Versions 2024-04-23 12:16:07 +00:00
LinuxServer-CI b8acdac5bc Bot Updating Package Versions 2024-04-16 12:14:54 +00:00
LinuxServer-CI 51f4fdc7c5 Bot Updating Package Versions 2024-04-09 12:17:13 +00:00
4 changed files with 1697 additions and 1770 deletions

View File

@ -3,7 +3,7 @@ FROM ghcr.io/linuxserver/baseimage-kasmvnc:debianbookworm
# set version label
ARG BUILD_DATE
ARG VERSION
ARG ORCASLICER_VERSION
ENV ORCASLICER_VERSION=v2.1.0.1
LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}"
LABEL maintainer="thelamer"
@ -46,7 +46,7 @@ RUN \
cd /tmp && \
curl -o \
/tmp/orca.app -L \
"https://github.com/SoftFever/OrcaSlicer/releases/download/${ORCASLICER_VERSION}/OrcaSlicer_Linux_$(echo ${ORCASLICER_VERSION} | sed 's/\b\(.\)/\u\1/g').AppImage" && \
"https://github.com/SoftFever/OrcaSlicer/releases/download/${ORCASLICER_VERSION}/OrcaSlicer_Linux_${ORCASLICER_VERSION}.AppImage" && \
chmod +x /tmp/orca.app && \
./orca.app --appimage-extract && \
mv squashfs-root /opt/orcaslicer && \

49
Jenkinsfile vendored
View File

@ -284,7 +284,7 @@ pipeline {
# ${TEMPDIR}/unraid/docker-templates: Cloned docker-templates repo to check for logos
# ${TEMPDIR}/unraid/templates: Cloned templates repo for commiting unraid template changes and pushing back to Github
git clone --branch master --depth 1 https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/docker-${CONTAINER_NAME}
docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true ghcr.io/linuxserver/jenkins-builder:latest
docker run --rm -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/tmp -e LOCAL=true -e PUID=$(id -u) -e PGID=$(id -g) ghcr.io/linuxserver/jenkins-builder:latest
echo "Starting Stage 1 - Jenkinsfile update"
if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then
mkdir -p ${TEMPDIR}/repo
@ -304,7 +304,7 @@ pipeline {
echo "Jenkinsfile is up to date."
fi
echo "Starting Stage 2 - Delete old templates"
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml Dockerfile.armhf"
OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md .github/ISSUE_TEMPLATE/issue.bug.md .github/ISSUE_TEMPLATE/issue.feature.md .github/workflows/call_invalid_helper.yml .github/workflows/stale.yml"
for i in ${OLD_TEMPLATES}; do
if [[ -f "${i}" ]]; then
TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}"
@ -390,7 +390,9 @@ pipeline {
echo "Updating Unraid template"
cd ${TEMPDIR}/unraid/templates/
GH_TEMPLATES_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||')
if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then
if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list && [[ -f ${TEMPDIR}/unraid/templates/unraid/deprecated/${CONTAINER_NAME}.xml ]]; then
echo "Image is on the ignore list, and already in the deprecation folder."
elif grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then
echo "Image is on the ignore list, marking Unraid template as deprecated"
cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/
git add -u unraid/${CONTAINER_NAME}.xml
@ -532,6 +534,7 @@ pipeline {
--label \"org.opencontainers.image.title=Orcaslicer\" \
--label \"org.opencontainers.image.description=[Orca Slicer](https://github.com/SoftFever/OrcaSlicer) is an open source slicer for FDM printers. OrcaSlicer is fork of Bambu Studio, it was previously known as BambuStudio-SoftFever, Bambu Studio is forked from PrusaSlicer by Prusa Research, which is from Slic3r by Alessandro Ranellucci and the RepRap community\" \
--no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \
--provenance=false --sbom=false \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
@ -563,6 +566,7 @@ pipeline {
--label \"org.opencontainers.image.title=Orcaslicer\" \
--label \"org.opencontainers.image.description=[Orca Slicer](https://github.com/SoftFever/OrcaSlicer) is an open source slicer for FDM printers. OrcaSlicer is fork of Bambu Studio, it was previously known as BambuStudio-SoftFever, Bambu Studio is forked from PrusaSlicer by Prusa Research, which is from Slic3r by Alessandro Ranellucci and the RepRap community\" \
--no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \
--provenance=false --sbom=false \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
}
}
@ -591,6 +595,7 @@ pipeline {
--label \"org.opencontainers.image.title=Orcaslicer\" \
--label \"org.opencontainers.image.description=[Orca Slicer](https://github.com/SoftFever/OrcaSlicer) is an open source slicer for FDM printers. OrcaSlicer is fork of Bambu Studio, it was previously known as BambuStudio-SoftFever, Bambu Studio is forked from PrusaSlicer by Prusa Research, which is from Slic3r by Alessandro Ranellucci and the RepRap community\" \
--no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \
--provenance=false --sbom=false \
--build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ."
sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}"
retry(5) {
@ -617,7 +622,7 @@ pipeline {
sh '''#! /bin/bash
set -e
TEMPDIR=$(mktemp -d)
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then
if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" != "true" ]; then
LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG}
else
LOCAL_CONTAINER=${IMAGE}:${META_TAG}
@ -714,7 +719,7 @@ pipeline {
--shm-size=1gb \
-v /var/run/docker.sock:/var/run/docker.sock \
-e IMAGE=\"${IMAGE}\" \
-e DELAY_START=\"${CI_DELAY}\" \
-e DOCKER_LOGS_TIMEOUT=\"${CI_DELAY}\" \
-e TAGS=\"${CI_TAGS}\" \
-e META_TAG=\"${META_TAG}\" \
-e PORT=\"${CI_PORT}\" \
@ -822,35 +827,13 @@ pipeline {
docker push ${MANIFESTIMAGE}:amd64-${SEMVER}
docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER}
fi
docker manifest push --purge ${MANIFESTIMAGE}:latest || :
docker manifest create ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest
docker manifest annotate ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:arm64v8-latest --os linux --arch arm64 --variant v8
docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || :
docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8
docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} || :
docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8
done
for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do
docker buildx imagetools create -t ${MANIFESTIMAGE}:latest ${MANIFESTIMAGE}:amd64-latest ${MANIFESTIMAGE}:arm64v8-latest
docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG}
docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then
docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || :
docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER}
docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8
fi
token=$(curl -sX GET "https://ghcr.io/token?scope=repository%3Alinuxserver%2F${CONTAINER_NAME}%3Apull" | jq -r '.token')
digest=$(curl -s \
--header "Accept: application/vnd.docker.distribution.manifest.v2+json" \
--header "Authorization: Bearer ${token}" \
"https://ghcr.io/v2/linuxserver/${CONTAINER_NAME}/manifests/arm32v7-latest")
if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest || :
docker manifest create ${MANIFESTIMAGE}:arm32v7-latest ${MANIFESTIMAGE}:amd64-latest
docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-latest
fi
docker manifest push --purge ${MANIFESTIMAGE}:latest
docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG}
docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG}
if [ -n "${SEMVER}" ]; then
docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER}
docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER}
fi
done
'''

View File

@ -28,7 +28,7 @@ Find us at:
# [linuxserver/orcaslicer](https://github.com/linuxserver/docker-orcaslicer)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Forcaslicer?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Forcaslicer)
[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Forcaslicer?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh)
[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-orcaslicer.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-orcaslicer)
[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-orcaslicer.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-orcaslicer/releases)
[![GitHub Package Repository](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub%20Package&logo=github)](https://github.com/linuxserver/docker-orcaslicer/packages)

View File

@ -1,55 +1,53 @@
NAME VERSION TYPE
1to2 1.0.0 npm
@colors/colors 1.5.0 npm
@isaacs/cliui 8.0.2 npm
@isaacs/string-locale-compare 1.1.0 npm
@kasmtech/novnc 1.3.0 npm
@npmcli/agent 2.2.1 npm
@npmcli/arborist 7.4.0 npm
@npmcli/config 8.2.0 npm
@npmcli/disparity-colors 3.0.0 npm
@npmcli/agent 2.2.2 npm
@npmcli/arborist 7.5.1 npm
@npmcli/config 8.3.1 npm
@npmcli/fs 3.1.0 npm
@npmcli/git 5.0.4 npm
@npmcli/installed-package-contents 2.0.2 npm
@npmcli/map-workspaces 3.0.4 npm
@npmcli/metavuln-calculator 7.0.0 npm
@npmcli/git 5.0.6 npm
@npmcli/installed-package-contents 2.1.0 npm
@npmcli/map-workspaces 3.0.6 npm
@npmcli/metavuln-calculator 7.1.0 npm
@npmcli/name-from-folder 2.0.0 npm
@npmcli/node-gyp 3.0.0 npm
@npmcli/package-json 5.0.0 npm
@npmcli/package-json 5.1.0 npm
@npmcli/promise-spawn 7.0.1 npm
@npmcli/query 3.1.0 npm
@npmcli/run-script 7.0.4 npm
@npmcli/redact 2.0.0 npm
@npmcli/run-script 8.1.0 npm
@pkgjs/parseargs 0.11.0 npm
@sigstore/bundle 2.2.0 npm
@sigstore/core 1.0.0 npm
@sigstore/protobuf-specs 0.3.0 npm
@sigstore/sign 2.2.3 npm
@sigstore/tuf 2.3.1 npm
@sigstore/verify 1.1.0 npm
@socket.io/component-emitter 3.1.0 npm
@sigstore/bundle 2.3.1 npm
@sigstore/core 1.1.0 npm
@sigstore/protobuf-specs 0.3.1 npm
@sigstore/sign 2.3.0 npm
@sigstore/tuf 2.3.2 npm
@sigstore/verify 1.2.0 npm
@socket.io/component-emitter 3.1.2 npm
@tufjs/canonical-json 2.0.0 npm
@tufjs/models 2.0.0 npm
@types/cookie 0.4.1 npm
@types/cors 2.8.17 npm
@types/node 20.12.2 npm
@types/node 20.12.12 npm
PyGObject 3.42.2 python
PyJWT 2.6.0 python
abbrev 2.0.0 npm
accepts 1.3.8 npm
adduser 3.134 deb
adwaita-icon-theme 43-1 deb
agent-base 7.1.0 npm
agent-base 7.1.1 npm
aggregate-error 3.1.0 npm
ansi-regex 5.0.1 npm
ansi-regex 6.0.1 npm (+1 duplicate)
ansi-styles 4.3.0 npm (+2 duplicates)
ansi-styles 4.3.0 npm (+1 duplicate)
ansi-styles 6.2.1 npm
aproba 2.0.0 npm
apt 2.6.1 deb
apt-transport-https 2.6.1 deb
apt-utils 2.6.1 deb
archy 1.0.0 npm
are-we-there-yet 4.0.2 npm
array-flatten 1.1.1 npm
async 3.2.5 npm
at-spi2-common 2.46.0-5 deb
@ -57,11 +55,10 @@ balanced-match 1.
base-files 12.4+deb12u5 deb
base-passwd 3.6.1 deb
base64id 2.0.0 npm
bash 5.2.15 binary
bash 5.2.15-2+b2 deb
bc 1.07.1-3+b1 deb
bin-links 4.0.3 npm
binary-extensions 2.2.0 npm
binary-extensions 2.3.0 npm
bindings 1.5.0 npm
blinker 1.5 python
body-parser 1.20.2 npm
@ -71,20 +68,19 @@ bsd-mailx 8.
bsdextrautils 2.38.1-5+deb12u1 deb
bsdutils 1:2.38.1-5+deb12u1 deb
bubblewrap 0.8.0-2 deb
builtins 5.0.1 npm
builtins 5.1.0 npm
bytes 3.1.2 npm
ca-certificates 20230311 deb
cacache 18.0.2 npm
call-bind 1.0.7 npm
catatonit 0.1.7-1+b1 deb
chalk 4.1.2 npm
chalk 5.3.0 npm
chownr 2.0.0 npm
ci-info 4.0.0 npm
cidr-regex 4.0.3 npm
cidr-regex 4.0.5 npm
clean-stack 2.2.0 npm
cli-columns 4.0.0 npm
cli-table3 0.6.3 npm
clone 1.0.4 npm
cloud.google.com/go/compute/metadata v0.2.3 go-module
cloud.google.com/go/logging v1.8.1 go-module
cloud.google.com/go/longrunning v0.5.2 go-module
@ -92,18 +88,15 @@ cmd-shim 6.
code.cloudfoundry.org/clock v1.1.0 go-module
color-convert 2.0.1 npm (+1 duplicate)
color-name 1.1.4 npm (+1 duplicate)
color-support 1.1.3 npm
columnify 1.6.0 npm
common-ancestor-path 1.0.1 npm
concat-map 0.0.1 npm
console-control-strings 1.1.0 npm
containerd.io 1.6.28-2 deb
containerd.io 1.6.32-1 deb
content-disposition 0.5.4 npm
content-type 1.0.5 npm
cookie 0.4.2 npm
cookie 0.6.0 npm
cookie-signature 1.0.6 npm
corepack 0.25.2 npm
corepack 0.28.0 npm
coreutils 9.1-1 deb
cors 2.8.5 npm
cpp 4:12.2.0-3 deb
@ -140,7 +133,6 @@ debian-archive-keyring 20
debianutils 5.7-0.5~deb12u1 deb
debug 2.6.9 npm
debug 4.3.4 npm (+4 duplicates)
defaults 1.0.4 npm
define-data-property 1.1.4 npm
depd 2.0.0 npm
destroy 1.2.0 npm
@ -151,16 +143,16 @@ dirmngr 2.
distro 1.8.0 python
distro-info-data 0.58+deb12u1 deb
dmsetup 2:1.02.185-2 deb
docker-buildx-plugin 0.13.1-1~debian.12~bookworm deb
docker-ce 5:26.0.0-1~debian.12~bookworm deb
docker-ce-cli 5:26.0.0-1~debian.12~bookworm deb
docker-compose-plugin 2.25.0-1~debian.12~bookworm deb
docker-buildx-plugin 0.14.0-1~debian.12~bookworm deb
docker-ce 5:26.1.3-1~debian.12~bookworm deb
docker-ce-cli 5:26.1.3-1~debian.12~bookworm deb
docker-compose-plugin 2.27.0-1~debian.12~bookworm deb
dom7 4.0.1 npm (+1 duplicate)
dpkg 1.21.22 deb
e2fsprogs 1.47.0-2 deb
eastasianwidth 0.2.0 npm
ee-first 1.1.1 npm
ejs 3.1.9 npm
ejs 3.1.10 npm
emacsen-common 3.0.5 deb
emoji-regex 8.0.0 npm
emoji-regex 9.2.2 npm (+1 duplicate)
@ -186,7 +178,7 @@ file-uri-to-path 1.
filelist 1.0.4 npm
finalhandler 1.2.0 npm
findutils 4.9.0-4 deb
firefox-esr 115.9.1esr-1~deb12u1 deb
firefox-esr 115.11.0esr-1~deb12u1 deb
fontconfig 2.14.1-4 deb
fontconfig-config 2.14.1-4 deb
fonts-dejavu-core 2.37-6 deb
@ -201,12 +193,11 @@ fs-minipass 3.
function-bind 1.1.2 npm (+1 duplicate)
fuse-overlayfs 1.10-1 deb
fuse3 3.14.0-4 deb
gauge 5.0.1 npm
gcc-12-base 12.2.0-14 deb
gdal-data 3.6.2+dfsg-1 deb
gdal-plugins 3.6.2+dfsg-1+b2 deb
get-intrinsic 1.2.4 npm
ghostscript 10.0.0~dfsg-11+deb12u3 deb
ghostscript 10.0.0~dfsg-11+deb12u4 deb
gir1.2-freedesktop 1.74.0-3 deb
gir1.2-glib-2.0 1.74.0-3 deb
gir1.2-gst-plugins-bad-1.0 1.22.0-4+deb12u5 deb
@ -218,42 +209,32 @@ github.com/AlecAivazis/survey/v2 v2
github.com/Graylog2/go-gelf v0.0.0-20191017102106-1550ee647df0 go-module
github.com/Masterminds/semver/v3 v3.2.1 go-module (+1 duplicate)
github.com/Microsoft/hcsshim v0.11.4 go-module
github.com/Microsoft/hcsshim v0.9.10 go-module (+1 duplicate)
github.com/Microsoft/hcsshim v0.9.11 go-module (+1 duplicate)
github.com/RackSec/srslog v0.0.0-20180709174129-a4725f04ec91 go-module
github.com/acarl005/stripansi v0.0.0-20180116102854-5a71ef0e047d go-module
github.com/agext/levenshtein v1.2.3 go-module (+1 duplicate)
github.com/anchore/go-struct-converter v0.0.0-20221118182256-c68fdcfa2092 go-module
github.com/apparentlymart/go-cidr v1.0.1 go-module
github.com/apparentlymart/go-textseg/v15 v15.0.0 go-module
github.com/armon/circbuf v0.0.0-20190214190532-5111143e8da2 go-module
github.com/armon/go-metrics v0.4.1 go-module
github.com/aws/aws-sdk-go-v2 v1.17.6 go-module
github.com/aws/aws-sdk-go-v2 v1.24.1 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2 v1.24.1 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.5.4 go-module
github.com/aws/aws-sdk-go-v2/config v1.18.16 go-module
github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/credentials v1.13.16 go-module
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.12.24 go-module
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/internal/configsources v1.1.30 go-module
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.4.24 go-module
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/internal/ini v1.3.31 go-module
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/config v1.26.6 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/credentials v1.16.16 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.14.11 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/internal/configsources v1.2.10 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.5.10 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/internal/ini v1.7.3 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs v1.32.0 go-module
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.9.24 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.12.5 go-module
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.14.5 go-module
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/sts v1.18.6 go-module
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module (+1 duplicate)
github.com/aws/smithy-go v1.13.5 go-module
github.com/aws/smithy-go v1.19.0 go-module (+1 duplicate)
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.10.4 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.10.10 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/service/sso v1.18.7 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.21.7 go-module (+2 duplicates)
github.com/aws/aws-sdk-go-v2/service/sts v1.26.7 go-module (+2 duplicates)
github.com/aws/smithy-go v1.19.0 go-module (+2 duplicates)
github.com/beorn7/perks v1.0.1 go-module (+3 duplicates)
github.com/bits-and-blooms/bitset v1.13.0 go-module
github.com/blang/semver v3.5.1+incompatible go-module
github.com/buger/goterm v1.0.4 go-module
github.com/cenkalti/backoff/v4 v4.1.2 go-module
@ -263,36 +244,33 @@ github.com/checkpoint-restore/go-criu/v5 v5
github.com/cilium/ebpf v0.11.0 go-module
github.com/cilium/ebpf v0.7.0 go-module (+4 duplicates)
github.com/cloudflare/cfssl v1.6.4 go-module
github.com/compose-spec/compose-go/v2 v2.0.0 go-module
github.com/compose-spec/compose-go/v2 v2.0.0-rc.8 go-module
github.com/compose-spec/compose-go/v2 v2.0.2 go-module
github.com/compose-spec/compose-go/v2 v2.1.0 go-module
github.com/container-storage-interface/spec v1.5.0 go-module
github.com/containerd/aufs v1.0.0 go-module
github.com/containerd/btrfs v1.0.0 go-module
github.com/containerd/cgroups v1.0.4 go-module (+3 duplicates)
github.com/containerd/cgroups/v3 v3.0.3 go-module
github.com/containerd/console v1.0.3 go-module (+6 duplicates)
github.com/containerd/console v1.0.4 go-module (+1 duplicate)
github.com/containerd/containerd v1.6.28 go-module (+4 duplicates)
github.com/containerd/containerd v1.7.12 go-module
github.com/containerd/containerd v1.7.13 go-module
github.com/containerd/containerd v1.7.14 go-module
github.com/containerd/console v1.0.3 go-module (+5 duplicates)
github.com/containerd/console v1.0.4 go-module (+2 duplicates)
github.com/containerd/containerd v1.6.32 go-module (+4 duplicates)
github.com/containerd/containerd v1.7.15 go-module (+1 duplicate)
github.com/containerd/containerd v1.7.16 go-module
github.com/containerd/continuity v0.3.0 go-module (+3 duplicates)
github.com/containerd/continuity v0.4.2 go-module
github.com/containerd/continuity v0.4.3 go-module (+1 duplicate)
github.com/containerd/continuity v0.4.3 go-module (+2 duplicates)
github.com/containerd/fifo v1.0.0 go-module (+4 duplicates)
github.com/containerd/fifo v1.1.0 go-module
github.com/containerd/go-cni v1.1.6 go-module (+1 duplicate)
github.com/containerd/go-cni v1.1.9 go-module
github.com/containerd/go-runc v1.0.0 go-module (+4 duplicates)
github.com/containerd/go-runc v1.1.0 go-module
github.com/containerd/imgcrypt v1.1.4 go-module
github.com/containerd/imgcrypt v1.1.8 go-module
github.com/containerd/log v0.1.0 go-module (+8 duplicates)
github.com/containerd/nri v0.1.1 go-module
github.com/containerd/nydus-snapshotter v0.13.7 go-module
github.com/containerd/stargz-snapshotter/estargz v0.15.1 go-module
github.com/containerd/ttrpc v1.1.2 go-module (+4 duplicates)
github.com/containerd/ttrpc v1.2.2 go-module
github.com/containerd/ttrpc v1.2.3 go-module
github.com/containerd/ttrpc v1.2.3 go-module (+2 duplicates)
github.com/containerd/typeurl v1.0.2 go-module (+4 duplicates)
github.com/containerd/typeurl/v2 v2.1.1 go-module (+2 duplicates)
github.com/containerd/zfs v1.1.0 go-module
@ -300,29 +278,29 @@ github.com/containernetworking/cni v1
github.com/containernetworking/cni v1.1.2 go-module
github.com/containernetworking/plugins v1.1.1 go-module
github.com/containernetworking/plugins v1.4.0 go-module
github.com/containers/ocicrypt v1.1.3 go-module
github.com/containers/ocicrypt v1.1.10 go-module
github.com/coreos/go-systemd/v22 v22.3.2 go-module (+4 duplicates)
github.com/coreos/go-systemd/v22 v22.5.0 go-module
github.com/cpuguy83/go-md2man/v2 v2.0.0 go-module (+1 duplicate)
github.com/cpuguy83/go-md2man/v2 v2.0.0-20190314233015-f79a8a8ca69d go-module
github.com/crazy-max/buildkit v0.7.1-0.20240130133234-d9aa289bd124 go-module
github.com/cyphar/filepath-securejoin v0.2.4 go-module (+1 duplicate)
github.com/davecgh/go-spew v1.1.1 go-module (+2 duplicates)
github.com/davecgh/go-spew v1.1.1 go-module (+3 duplicates)
github.com/deckarep/golang-set/v2 v2.3.0 go-module
github.com/dimchansky/utfbom v1.1.1 go-module
github.com/distribution/reference v0.5.0 go-module (+2 duplicates)
github.com/distribution/reference v0.5.0 go-module (+1 duplicate)
github.com/distribution/reference v0.6.0 go-module
github.com/docker/buildx (devel) go-module
github.com/docker/buildx v0.12.0-rc2.0.20231219140829-617f538cb315 go-module
github.com/docker/cli v25.0.4-0.20240305161310-2bf4225ad269+incompatible go-module
github.com/docker/cli v26.0.0-rc1+incompatible go-module
github.com/docker/buildx v0.14.0 go-module
github.com/docker/cli v26.0.1-0.20240410153731-b6c552212837+incompatible go-module
github.com/docker/cli v26.1.0+incompatible go-module
github.com/docker/cli-docs-tool v0.7.0 go-module
github.com/docker/cli/cmd/docker v26.0.0 go-module
github.com/docker/compose/v2 v2.25.0 go-module
github.com/docker/cli/cmd/docker v26.1.3 go-module
github.com/docker/compose/v2 v2.27.0 go-module
github.com/docker/distribution v2.8.2+incompatible go-module
github.com/docker/distribution v2.8.3+incompatible go-module (+1 duplicate)
github.com/docker/docker v25.0.4-0.20240301160236-51e876cd964c+incompatible go-module
github.com/docker/docker v26.0.0 go-module (+1 duplicate)
github.com/docker/docker v26.0.0-rc1+incompatible go-module
github.com/docker/docker v26.0.0+incompatible go-module
github.com/docker/docker v26.1.0+incompatible go-module
github.com/docker/docker v26.1.3 go-module (+1 duplicate)
github.com/docker/docker-credential-helpers v0.8.0 go-module (+1 duplicate)
github.com/docker/go v1.5.1-1.0.20160303222718-d30aec9fd63c go-module (+1 duplicate)
github.com/docker/go-connections v0.5.0 go-module (+2 duplicates)
@ -332,9 +310,10 @@ github.com/docker/go-units v0
github.com/docker/go-units v0.5.0 go-module (+2 duplicates)
github.com/docker/libtrust v0.0.0-20150526203908-9cbd2a1374f4 go-module
github.com/dustin/go-humanize v1.0.0 go-module
github.com/eiannone/keyboard v0.0.0-20220611211555-0d226195f203 go-module
github.com/emicklei/go-restful v2.16.0+incompatible go-module
github.com/emicklei/go-restful/v3 v3.10.1 go-module (+1 duplicate)
github.com/emicklei/go-restful/v3 v3.11.0 go-module
github.com/emicklei/go-restful/v3 v3.10.1 go-module
github.com/emicklei/go-restful/v3 v3.11.0 go-module (+1 duplicate)
github.com/felixge/httpsnoop v1.0.4 go-module (+2 duplicates)
github.com/fernet/fernet-go v0.0.0-20211208181803-9f70042a33ee go-module
github.com/fluent/fluent-logger-golang v1.9.0 go-module
@ -342,15 +321,12 @@ github.com/fsnotify/fsnotify v1
github.com/fsnotify/fsnotify v1.6.0 go-module
github.com/fvbommel/sortorder v1.0.1 go-module
github.com/fvbommel/sortorder v1.0.2 go-module
github.com/go-logr/logr v1.2.4 go-module
github.com/go-logr/logr v1.3.0 go-module (+2 duplicates)
github.com/go-jose/go-jose/v3 v3.0.3 go-module
github.com/go-logr/logr v1.3.0 go-module (+3 duplicates)
github.com/go-logr/stdr v1.2.2 go-module (+3 duplicates)
github.com/go-openapi/jsonpointer v0.19.5 go-module
github.com/go-openapi/jsonpointer v0.19.6 go-module
github.com/go-openapi/jsonreference v0.20.0 go-module
github.com/go-openapi/jsonreference v0.20.2 go-module
github.com/go-openapi/swag v0.19.14 go-module
github.com/go-openapi/swag v0.22.3 go-module
github.com/go-openapi/jsonpointer v0.19.6 go-module (+1 duplicate)
github.com/go-openapi/jsonreference v0.20.2 go-module (+1 duplicate)
github.com/go-openapi/swag v0.22.3 go-module (+1 duplicate)
github.com/godbus/dbus/v5 v5.0.6 go-module (+4 duplicates)
github.com/godbus/dbus/v5 v5.1.0 go-module
github.com/gofrs/flock v0.8.1 go-module (+2 duplicates)
@ -360,25 +336,22 @@ github.com/gogo/protobuf v1
github.com/golang-jwt/jwt/v4 v4.5.0 go-module
github.com/golang/gddo v0.0.0-20190904175337-72a348e765d2 go-module
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da go-module
github.com/golang/protobuf v1.5.3 go-module (+6 duplicates)
github.com/golang/protobuf v1.5.4 go-module
github.com/golang/protobuf v1.5.4 go-module (+7 duplicates)
github.com/google/btree v1.1.2 go-module
github.com/google/certificate-transparency-go v1.1.4 go-module
github.com/google/gnostic v0.5.7-v3refs go-module
github.com/google/gnostic-models v0.6.8 go-module
github.com/google/gnostic-models v0.6.8 go-module (+1 duplicate)
github.com/google/go-cmp v0.6.0 go-module (+3 duplicates)
github.com/google/gofuzz v1.2.0 go-module (+2 duplicates)
github.com/google/s2a-go v0.1.4 go-module
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 go-module (+2 duplicates)
github.com/google/uuid v1.3.1 go-module (+1 duplicate)
github.com/google/uuid v1.5.0 go-module
github.com/google/uuid v1.6.0 go-module (+1 duplicate)
github.com/google/uuid v1.6.0 go-module (+2 duplicates)
github.com/googleapis/enterprise-certificate-proxy v0.2.4 go-module
github.com/googleapis/gax-go/v2 v2.12.0 go-module
github.com/gorilla/mux v1.8.0 go-module
github.com/gorilla/mux v1.8.1 go-module (+1 duplicate)
github.com/gorilla/websocket v1.5.0 go-module
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+3 duplicates)
github.com/gorilla/websocket v1.5.0 go-module (+1 duplicate)
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 go-module (+2 duplicates)
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 go-module (+1 duplicate)
github.com/grpc-ecosystem/grpc-gateway v1.16.0 go-module
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 go-module (+2 duplicates)
@ -392,7 +365,7 @@ github.com/hashicorp/go-multierror v1
github.com/hashicorp/go-sockaddr v1.0.2 go-module
github.com/hashicorp/go-version v1.6.0 go-module
github.com/hashicorp/golang-lru v0.5.4 go-module
github.com/hashicorp/hcl/v2 v2.19.1 go-module
github.com/hashicorp/hcl/v2 v2.20.1 go-module
github.com/hashicorp/memberlist v0.4.0 go-module
github.com/hashicorp/serf v0.8.5 go-module
github.com/imdario/mergo v0.3.16 go-module (+1 duplicate)
@ -406,8 +379,7 @@ github.com/json-iterator/go v1
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 go-module
github.com/klauspost/compress v1.15.9 go-module (+3 duplicates)
github.com/klauspost/compress v1.17.4 go-module (+2 duplicates)
github.com/mailru/easyjson v0.7.6 go-module
github.com/mailru/easyjson v0.7.7 go-module
github.com/mailru/easyjson v0.7.7 go-module (+1 duplicate)
github.com/mattn/go-colorable v0.1.13 go-module
github.com/mattn/go-isatty v0.0.17 go-module
github.com/mattn/go-runewidth v0.0.15 go-module (+1 duplicate)
@ -422,15 +394,16 @@ github.com/mitchellh/go-wordwrap v0
github.com/mitchellh/hashstructure/v2 v2.0.2 go-module
github.com/mitchellh/mapstructure v1.5.0 go-module (+1 duplicate)
github.com/mitchellh/reflectwalk v1.0.2 go-module (+2 duplicates)
github.com/moby/buildkit v0.13.0 go-module
github.com/moby/buildkit v0.13.0-rc3.0.20240417151852-71f99c52a669 go-module
github.com/moby/buildkit v0.13.1 go-module
github.com/moby/docker-image-spec v1.3.1 go-module (+1 duplicate)
github.com/moby/buildkit v0.13.2 go-module
github.com/moby/docker-image-spec v1.3.1 go-module (+2 duplicates)
github.com/moby/ipvs v1.1.0 go-module
github.com/moby/locker v1.0.1 go-module (+4 duplicates)
github.com/moby/patternmatcher v0.6.0 go-module (+2 duplicates)
github.com/moby/pubsub v1.0.0 go-module
github.com/moby/spdystream v0.2.0 go-module (+2 duplicates)
github.com/moby/swarmkit/v2 v2.0.0-20240125134710-dcda100a8261 go-module
github.com/moby/swarmkit/v2 v2.0.0-20240412154004-f3ffc0881d0e go-module
github.com/moby/sys/mount v0.3.3 go-module
github.com/moby/sys/mountinfo v0.5.0 go-module
github.com/moby/sys/mountinfo v0.6.2 go-module (+4 duplicates)
@ -446,15 +419,14 @@ github.com/modern-go/reflect2 v1
github.com/morikuni/aec v1.0.0 go-module (+2 duplicates)
github.com/mrunalp/fileutils v0.5.1 go-module
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 go-module (+1 duplicate)
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f go-module
github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f go-module (+1 duplicate)
github.com/opencontainers/go-digest v1.0.0 go-module (+7 duplicates)
github.com/opencontainers/image-spec v1.1.0-rc2.0.20221005185240-3a7f492d3f1b go-module (+3 duplicates)
github.com/opencontainers/image-spec v1.1.0 go-module (+4 duplicates)
github.com/opencontainers/image-spec v1.1.0-rc5 go-module (+1 duplicate)
github.com/opencontainers/image-spec v1.1.0-rc6 go-module
github.com/opencontainers/runc v1.1.12 go-module
github.com/opencontainers/runc v1.1.12-0-g51d5e94 go-module
github.com/opencontainers/runtime-spec v1.0.3-0.20210326190908-1c3f411f0417 go-module (+5 duplicates)
github.com/opencontainers/runtime-spec v1.1.0 go-module
github.com/opencontainers/runtime-spec v1.2.0 go-module
github.com/opencontainers/runtime-tools v0.9.1-0.20221107090550-2e043c6bd626 go-module
github.com/opencontainers/selinux v1.10.0 go-module
github.com/opencontainers/selinux v1.10.1 go-module (+1 duplicate)
@ -463,43 +435,41 @@ github.com/package-url/packageurl-go v0
github.com/pelletier/go-toml v1.9.5 go-module (+4 duplicates)
github.com/philhofer/fwd v1.1.2 go-module
github.com/pkg/errors v0.9.1 go-module (+7 duplicates)
github.com/pmezard/go-difflib v1.0.0 go-module (+1 duplicate)
github.com/pmezard/go-difflib v1.0.0 go-module (+2 duplicates)
github.com/prometheus/client_golang v1.11.1 go-module
github.com/prometheus/client_golang v1.16.0 go-module
github.com/prometheus/client_golang v1.17.0 go-module (+1 duplicate)
github.com/prometheus/client_golang v1.17.0 go-module (+2 duplicates)
github.com/prometheus/client_model v0.2.0 go-module
github.com/prometheus/client_model v0.4.0 go-module
github.com/prometheus/client_model v0.5.0 go-module (+1 duplicate)
github.com/prometheus/client_model v0.5.0 go-module (+2 duplicates)
github.com/prometheus/common v0.30.0 go-module
github.com/prometheus/common v0.42.0 go-module
github.com/prometheus/common v0.44.0 go-module (+1 duplicate)
github.com/prometheus/procfs v0.10.1 go-module
github.com/prometheus/procfs v0.12.0 go-module (+1 duplicate)
github.com/prometheus/common v0.44.0 go-module (+2 duplicates)
github.com/prometheus/procfs v0.12.0 go-module (+2 duplicates)
github.com/prometheus/procfs v0.7.3 go-module
github.com/r3labs/sse v0.0.0-20210224172625-26fe804710bc go-module
github.com/rivo/uniseg v0.2.0 go-module (+1 duplicate)
github.com/rootless-containers/rootlesskit/v2 v2.0.2 go-module
github.com/russross/blackfriday/v2 v2.0.1 go-module (+2 duplicates)
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 go-module
github.com/seccomp/libseccomp-golang v0.9.2-0.20220502022130-f33da4d89646 go-module
github.com/secure-systems-lab/go-securesystemslib v0.4.0 go-module (+2 duplicates)
github.com/serialx/hashring v0.0.0-20190422032157-8b2912629002 go-module
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b go-module
github.com/serialx/hashring v0.0.0-20200727003509-22c0c7ab6b1b go-module (+1 duplicate)
github.com/shibumi/go-pathspec v1.3.0 go-module (+2 duplicates)
github.com/shurcooL/sanitized_anchor_name v1.0.0 go-module (+2 duplicates)
github.com/sirupsen/logrus v1.8.1 go-module
github.com/sirupsen/logrus v1.9.3 go-module (+8 duplicates)
github.com/skratchdot/open-golang v0.0.0-20200116055534-eef842397966 go-module
github.com/spdx/tools-golang v0.5.3 go-module
github.com/spf13/cobra v1.8.0 go-module (+2 duplicates)
github.com/spf13/pflag v1.0.5 go-module (+3 duplicates)
github.com/stefanberger/go-pkcs11uri v0.0.0-20201008174630-78d3cae3a980 go-module
github.com/stefanberger/go-pkcs11uri v0.0.0-20230803200340-78284954bff6 go-module
github.com/stretchr/testify v1.8.4 go-module (+1 duplicate)
github.com/stretchr/testify v1.9.0 go-module
github.com/syndtr/gocapability v0.0.0-20200815063812-42c35b437635 go-module (+1 duplicate)
github.com/tchap/go-patricia v2.2.6+incompatible go-module
github.com/theupdateframework/notary v0.7.0 go-module (+1 duplicate)
github.com/tilt-dev/fsnotify v1.4.8-0.20220602155310-fff9c274a375 go-module
github.com/tinylib/msgp v1.1.8 go-module
github.com/tonistiigi/fsutil v0.0.0-20230629203738-36ef4d8c0dbb go-module
github.com/tonistiigi/fsutil v0.0.0-20240301111122-7525a1af2bb5 go-module (+1 duplicate)
github.com/tonistiigi/fsutil v0.0.0-20240424095704-91a3fc46842c go-module
github.com/tonistiigi/go-actions-cache v0.0.0-20240227172821-a0b64f338598 go-module
github.com/tonistiigi/go-archvariant v1.0.0 go-module
github.com/tonistiigi/units v0.0.0-20180711220420-6950e57a87ea go-module (+2 duplicates)
@ -516,13 +486,13 @@ github.com/weppos/publicsuffix-go v0
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb go-module (+1 duplicate)
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 go-module (+1 duplicate)
github.com/xeipuuv/gojsonschema v1.2.0 go-module (+1 duplicate)
github.com/zclconf/go-cty v1.14.1 go-module
github.com/zclconf/go-cty v1.14.4 go-module
github.com/zmap/zcrypto v0.0.0-20210511125630-18f1e0152cfc go-module
github.com/zmap/zlint/v3 v3.1.0 go-module
glib-networking 2.74.0-4 deb
glib-networking-common 2.74.0-4 deb
glib-networking-services 2.74.0-4 deb
glob 10.3.10 npm
glob 10.3.12 npm
gnupg 2.2.40-1.1 deb
gnupg-l10n 2.2.40-1.1 deb
gnupg-utils 2.2.40-1.1 deb
@ -534,80 +504,64 @@ go.etcd.io/etcd/raft/v3 v3
go.etcd.io/etcd/server/v3 v3.5.6 go-module
go.mozilla.org/pkcs7 v0.0.0-20200128120323-432b2356ecb1 go-module
go.opencensus.io v0.24.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.45.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.0 go-module
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.45.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module (+1 duplicate)
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.45.0 go-module
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module (+1 duplicate)
go.opentelemetry.io/otel v1.19.0 go-module
go.opentelemetry.io/otel v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.46.1 go-module (+2 duplicates)
go.opentelemetry.io/contrib/instrumentation/net/http/httptrace/otelhttptrace v0.46.1 go-module (+2 duplicates)
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.46.1 go-module (+2 duplicates)
go.opentelemetry.io/otel v1.21.0 go-module (+3 duplicates)
go.opentelemetry.io/otel/exporters/otlp/internal/retry v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlpmetric v0.42.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetricgrpc v0.42.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlpmetric/otlpmetrichttp v0.42.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.19.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlptrace v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.19.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc v1.3.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.19.0 go-module
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp v1.3.0 go-module
go.opentelemetry.io/otel/exporters/prometheus v0.42.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/metric v1.19.0 go-module
go.opentelemetry.io/otel/metric v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/sdk v1.19.0 go-module
go.opentelemetry.io/otel/sdk v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/sdk/metric v1.19.0 go-module
go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module (+1 duplicate)
go.opentelemetry.io/otel/trace v1.19.0 go-module
go.opentelemetry.io/otel/trace v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/metric v1.21.0 go-module (+3 duplicates)
go.opentelemetry.io/otel/sdk v1.21.0 go-module (+3 duplicates)
go.opentelemetry.io/otel/sdk/metric v1.21.0 go-module (+2 duplicates)
go.opentelemetry.io/otel/trace v1.21.0 go-module (+3 duplicates)
go.opentelemetry.io/proto/otlp v0.11.0 go-module
go.opentelemetry.io/proto/otlp v1.0.0 go-module (+2 duplicates)
go.uber.org/atomic v1.9.0 go-module
go.uber.org/mock v0.4.0 go-module
go.uber.org/multierr v1.8.0 go-module
go.uber.org/zap v1.21.0 go-module
golang.org/x/crypto v0.17.0 go-module
golang.org/x/crypto v0.18.0 go-module (+2 duplicates)
golang.org/x/crypto v0.21.0 go-module (+3 duplicates)
golang.org/x/exp v0.0.0-20231006140011-7918f672742d go-module
golang.org/x/exp v0.0.0-20240112132812-db7319d0e0e3 go-module (+1 duplicate)
golang.org/x/mod v0.13.0 go-module
golang.org/x/net v0.18.0 go-module (+2 duplicates)
golang.org/x/net v0.20.0 go-module (+1 duplicate)
golang.org/x/net v0.23.0 go-module (+4 duplicates)
golang.org/x/net v0.8.0 go-module
golang.org/x/oauth2 v0.11.0 go-module (+3 duplicates)
golang.org/x/sync v0.3.0 go-module (+3 duplicates)
golang.org/x/sync v0.5.0 go-module
golang.org/x/sync v0.6.0 go-module (+1 duplicate)
golang.org/x/sys v0.16.0 go-module (+6 duplicates)
golang.org/x/sys v0.18.0 go-module (+1 duplicate)
golang.org/x/sync v0.6.0 go-module
golang.org/x/sync v0.7.0 go-module
golang.org/x/sys v0.18.0 go-module (+7 duplicates)
golang.org/x/sys v0.19.0 go-module
golang.org/x/sys v0.6.0 go-module
golang.org/x/term v0.16.0 go-module (+2 duplicates)
golang.org/x/term v0.18.0 go-module (+2 duplicates)
golang.org/x/text v0.14.0 go-module (+4 duplicates)
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac go-module
golang.org/x/time v0.3.0 go-module (+2 duplicates)
google.golang.org/api v0.128.0 go-module
google.golang.org/appengine v1.6.7 go-module
google.golang.org/genproto v0.0.0-20200224152610-e50cd9704f63 go-module (+4 duplicates)
google.golang.org/genproto v0.0.0-20230822172742-b8732ec3820d go-module
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module (+1 duplicate)
google.golang.org/genproto/googleapis/api v0.0.0-20230822172742-b8732ec3820d go-module
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module (+1 duplicate)
google.golang.org/genproto/googleapis/rpc v0.0.0-20230822172742-b8732ec3820d go-module
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module (+1 duplicate)
google.golang.org/genproto v0.0.0-20231016165738-49dd2c1f3d0b go-module (+2 duplicates)
google.golang.org/genproto/googleapis/api v0.0.0-20231016165738-49dd2c1f3d0b go-module (+2 duplicates)
google.golang.org/genproto/googleapis/rpc v0.0.0-20231016165738-49dd2c1f3d0b go-module (+2 duplicates)
google.golang.org/grpc v1.59.0 go-module (+7 duplicates)
google.golang.org/protobuf v1.27.1 go-module
google.golang.org/protobuf v1.31.0 go-module (+6 duplicates)
google.golang.org/protobuf v1.33.0 go-module
google.golang.org/protobuf v1.33.0 go-module (+7 duplicates)
gopd 1.0.1 npm
gopkg.in/cenkalti/backoff.v1 v1.1.0 go-module
gopkg.in/inf.v0 v0.9.1 go-module (+2 duplicates)
gopkg.in/square/go-jose.v2 v2.5.1 go-module
gopkg.in/yaml.v2 v2.4.0 go-module (+3 duplicates)
gopkg.in/yaml.v3 v3.0.1 go-module (+1 duplicate)
gopkg.in/yaml.v3 v3.0.1 go-module (+3 duplicates)
gpg 2.2.40-1.1 deb
gpg-agent 2.2.40-1.1 deb
gpg-wks-client 2.2.40-1.1 deb
@ -637,9 +591,7 @@ has-flag 4.
has-property-descriptors 1.0.2 npm
has-proto 1.0.3 npm
has-symbols 1.0.3 npm
has-unicode 2.0.1 npm
hasown 2.0.1 npm
hasown 2.0.2 npm
hasown 2.0.2 npm (+1 duplicate)
hicolor-icon-theme 0.17-2 deb
hosted-git-info 7.0.1 npm
hostname 3.23+nmu1 deb
@ -656,8 +608,8 @@ ignore-walk 6.
imurmurhash 0.1.4 npm
indent-string 4.0.0 npm
inherits 2.0.4 npm
ini 4.1.1 npm
init-package-json 6.0.0 npm
ini 4.1.2 npm
init-package-json 6.0.2 npm
init-system-helpers 1.65.2 deb
intel-media-va-driver 23.1.1+dfsg1-1 deb
ip-address 9.0.5 npm
@ -665,7 +617,7 @@ ip-regex 5.
ipaddr.js 1.9.1 npm
iproute2 6.1.0-3 deb
iptables 1.8.9-2 deb
is-cidr 5.0.3 npm
is-cidr 5.0.5 npm
is-core-module 2.13.1 npm
is-fullwidth-code-point 3.0.0 npm
is-lambda 1.0.1 npm
@ -673,7 +625,7 @@ isexe 2.
isexe 3.1.1 npm
iso-codes 4.15.0-1 deb
jackspeak 2.3.6 npm
jake 10.8.7 npm
jake 10.9.1 npm
jq 1.6-2.1 deb
jsbn 1.1.0 npm
json-parse-even-better-errors 3.0.1 npm
@ -682,27 +634,21 @@ jsonparse 1.
just-diff 6.0.2 npm
just-diff-apply 5.5.0 npm
k8s.io/api v0.22.5 go-module
k8s.io/api v0.26.7 go-module
k8s.io/api v0.29.2 go-module
k8s.io/api v0.29.2 go-module (+1 duplicate)
k8s.io/apimachinery v0.22.5 go-module
k8s.io/apimachinery v0.26.7 go-module
k8s.io/apimachinery v0.29.2 go-module
k8s.io/apimachinery v0.29.2 go-module (+1 duplicate)
k8s.io/apiserver v0.22.5 go-module
k8s.io/apiserver v0.26.7 go-module
k8s.io/apiserver v0.29.2 go-module
k8s.io/apiserver v0.29.2 go-module (+1 duplicate)
k8s.io/client-go v0.22.5 go-module
k8s.io/client-go v0.26.7 go-module
k8s.io/client-go v0.29.2 go-module
k8s.io/client-go v0.29.2 go-module (+1 duplicate)
k8s.io/component-base v0.22.5 go-module
k8s.io/cri-api v0.25.0 go-module
k8s.io/klog/v2 v2.110.1 go-module
k8s.io/klog/v2 v2.110.1 go-module (+1 duplicate)
k8s.io/klog/v2 v2.30.0 go-module
k8s.io/klog/v2 v2.90.1 go-module (+1 duplicate)
k8s.io/kube-openapi v0.0.0-20221012153701-172d655c2280 go-module
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 go-module
k8s.io/klog/v2 v2.90.1 go-module
k8s.io/kube-openapi v0.0.0-20231010175941-2dd684a91f00 go-module (+1 duplicate)
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b go-module
k8s.io/utils v0.0.0-20230220204549-a5ecb0141aa5 go-module
k8s.io/utils v0.0.0-20230726121419-3b25d923346b go-module
k8s.io/utils v0.0.0-20230726121419-3b25d923346b go-module (+1 duplicate)
kclient 0.3.10 npm
keyboard-configuration 1.221 deb
krb5-locales 1.20.1-2+deb12u1 deb
@ -762,11 +708,11 @@ libbrotli1 1.
libbs2b0 3.1.0+dfsg-7 deb
libbsd0 0.11.7-2 deb
libbz2-1.0 1.0.8-5+b1 deb
libc-bin 2.36-9+deb12u4 deb
libc-dev-bin 2.36-9+deb12u4 deb
libc-l10n 2.36-9+deb12u4 deb
libc6 2.36-9+deb12u4 deb
libc6-dev 2.36-9+deb12u4 deb
libc-bin 2.36-9+deb12u7 deb
libc-dev-bin 2.36-9+deb12u7 deb
libc-l10n 2.36-9+deb12u7 deb
libc6 2.36-9+deb12u7 deb
libc6-dev 2.36-9+deb12u7 deb
libcaca0 0.99.beta20-3 deb
libcairo-gobject2 1.16.0-7 deb
libcairo2 1.16.0-7 deb
@ -802,7 +748,7 @@ libdatetime-locale-perl 1:
libdatetime-perl 2:1.59-1 deb
libdatetime-timezone-perl 1:2.60-1+2024a deb
libdatrie1 0.2.13-2+b1 deb
libdav1d6 1.0.0-2 deb
libdav1d6 1.0.0-2+deb12u1 deb
libdb5.3 5.3.28+dfsg2-1 deb
libdbus-1-3 1.14.10-1~deb12u1 deb
libdbus-glib-1-2 0.112-3 deb
@ -901,11 +847,11 @@ libgles-dev 1.
libgles1 1.6.0-1 deb
libgles2 1.6.0-1 deb
libglew2.2 2.2.0-4+b1 deb
libglib2.0-0 2.74.6-2 deb
libglib2.0-bin 2.74.6-2 deb
libglib2.0-data 2.74.6-2 deb
libglib2.0-dev 2.74.6-2 deb
libglib2.0-dev-bin 2.74.6-2 deb
libglib2.0-0 2.74.6-2+deb12u2 deb
libglib2.0-bin 2.74.6-2+deb12u2 deb
libglib2.0-data 2.74.6-2+deb12u2 deb
libglib2.0-dev 2.74.6-2+deb12u2 deb
libglib2.0-dev-bin 2.74.6-2+deb12u2 deb
libglu1-mesa 9.0.2-1.1 deb
libglu1-mesa-dev 9.0.2-1.1 deb
libglvnd0 1.6.0-1 deb
@ -924,9 +870,9 @@ libgphoto2-port12 2.
libgpm2 1.20.7-10+b1 deb
libgraphene-1.0-0 1.10.8-1 deb
libgraphite2-3 1.3.14-1 deb
libgs-common 10.0.0~dfsg-11+deb12u3 deb
libgs10 10.0.0~dfsg-11+deb12u3 deb
libgs10-common 10.0.0~dfsg-11+deb12u3 deb
libgs-common 10.0.0~dfsg-11+deb12u4 deb
libgs10 10.0.0~dfsg-11+deb12u4 deb
libgs10-common 10.0.0~dfsg-11+deb12u4 deb
libgsm1 1.0.22-1 deb
libgssapi-krb5-2 1.20.1-2+deb12u1 deb
libgssdp-1.6-0 1.6.2-2 deb
@ -976,7 +922,7 @@ libip4tc2 1.
libip6tc2 1.8.9-2 deb
libisl23 0.25-1.1 deb
libjack-jackd2-0 1.9.21~dfsg-3 deb
libjavascriptcoregtk-4.0-18 2.42.5-1~deb12u1 deb
libjavascriptcoregtk-4.0-18 2.44.2-1~deb12u1 deb
libjbig-dev 2.1-6.1 deb
libjbig0 2.1-6.1 deb
libjbig2dec0 0.19-3 deb
@ -1065,17 +1011,17 @@ libnl-3-200 3.
libnl-route-3-200 3.7.0-0.2+b1 deb
libnorm1 1.5.9+dfsg-2 deb
libnotify4 0.8.1-1 deb
libnpmaccess 8.0.2 npm
libnpmdiff 6.0.7 npm
libnpmexec 7.0.8 npm
libnpmfund 5.0.5 npm
libnpmhook 10.0.1 npm
libnpmorg 6.0.2 npm
libnpmpack 6.0.7 npm
libnpmpublish 9.0.4 npm
libnpmsearch 7.0.1 npm
libnpmteam 6.0.1 npm
libnpmversion 5.0.2 npm
libnpmaccess 8.0.5 npm
libnpmdiff 6.1.1 npm
libnpmexec 8.1.0 npm
libnpmfund 5.0.9 npm
libnpmhook 10.0.4 npm
libnpmorg 6.0.5 npm
libnpmpack 7.0.1 npm
libnpmpublish 9.0.7 npm
libnpmsearch 7.0.4 npm
libnpmteam 6.0.4 npm
libnpmversion 6.0.1 npm
libnpth0 1.6-3 deb
libnsl-dev 1.3.0-2 deb
libnsl2 1.3.0-2 deb
@ -1362,7 +1308,7 @@ libwayland-cursor0 1.
libwayland-dev 1.21.0-1 deb
libwayland-egl1 1.21.0-1 deb
libwayland-server0 1.21.0-1 deb
libwebkit2gtk-4.0-37 2.42.5-1~deb12u1 deb
libwebkit2gtk-4.0-37 2.44.2-1~deb12u1 deb
libwebp-dev 1.2.4-0.2+deb12u1 deb
libwebp7 1.2.4-0.2+deb12u1 deb
libwebpdemux2 1.2.4-0.2+deb12u1 deb
@ -1370,8 +1316,6 @@ libwebpmux3 1.
libwebrtc-audio-processing1 0.3-1+b1 deb
libwildmidi2 0.4.3-1 deb
libwoff1 1.0.2-2 deb
libwpe-1.0-1 1.14.0-1 deb
libwpebackend-fdo-1.0-1 1.14.2-1 deb
libwrap0 7.6.q-32 deb
libwx-perl 1:0.9932-8+b1 deb
libwxbase3.2-1 3.2.2+dfsg-2 deb
@ -1461,15 +1405,15 @@ libzstd1 1.
libzvbi-common 0.2.41-1 deb
libzvbi0 0.2.41-1 deb
libzxing2 1.4.0-3+b1 deb
linux-libc-dev 6.1.76-1 deb
locales 2.36-9+deb12u4 deb
locales-all 2.36-9+deb12u4 deb
linux-libc-dev 6.1.90-1 deb
locales 2.36-9+deb12u7 deb
locales-all 2.36-9+deb12u7 deb
login 1:4.13+dfsg1-1+b1 deb
logsave 1.47.0-2 deb
lru-cache 10.2.0 npm
lru-cache 10.2.2 npm
lru-cache 6.0.0 npm
lsb-release 12.0-1 deb
make-fetch-happen 13.0.0 npm
make-fetch-happen 13.0.1 npm
man-db 2.11.2-2 deb
mariadb-common 1:10.11.6-0+deb12u1 deb
mawk 1.3.4.20200120-3.1 deb
@ -1477,13 +1421,14 @@ media-typer 0.
media-types 10.0.0 deb
merge-descriptors 1.0.1 npm
mesa-va-drivers 22.3.6-1+deb12u1 deb
mesa-vulkan-drivers 22.3.6-1+deb12u1 deb
methods 1.1.2 npm
mime 1.6.0 npm
mime-db 1.52.0 npm
mime-types 2.1.35 npm
minimatch 3.1.2 npm
minimatch 5.1.6 npm
minimatch 9.0.3 npm
minimatch 9.0.4 npm
minipass 3.3.6 npm (+5 duplicates)
minipass 5.0.0 npm
minipass 7.0.4 npm
@ -1509,22 +1454,21 @@ netbase 6.
netcat-traditional 1.10-47 deb
nginx 1.22.1-9 deb
nginx-common 1.22.1-9 deb
node-gyp 10.0.1 npm
nodejs 18.20.0-1nodesource1 deb
node-gyp 10.1.0 npm
nodejs 18.20.3-1nodesource1 deb
nopt 7.2.0 npm
normalize-package-data 6.0.0 npm
npm 10.5.0 npm
npm 10.7.0 npm
npm-audit-report 5.0.0 npm
npm-bundled 3.0.0 npm
npm-install-checks 6.3.0 npm
npm-normalize-package-bin 3.0.1 npm
npm-package-arg 11.0.1 npm
npm-package-arg 11.0.2 npm
npm-packlist 8.0.2 npm
npm-pick-manifest 9.0.0 npm
npm-profile 9.0.0 npm
npm-registry-fetch 16.1.0 npm
npm-profile 9.0.2 npm
npm-registry-fetch 17.0.0 npm
npm-user-validate 2.0.0 npm
npmlog 7.0.1 npm
oauthlib 3.2.2 python
object-assign 4.1.1 npm
object-inspect 1.13.1 npm
@ -1535,12 +1479,12 @@ openssh-client 1:
openssl 3.0.11-1~deb12u2 deb
p-map 4.0.0 npm
packagekit 1.2.6-5 deb
pacote 17.0.6 npm
pacote 18.0.3 npm
parse-conflict-json 3.0.1 npm
parseurl 1.3.3 npm
passwd 1:4.13+dfsg1-1+b1 deb
path-key 3.1.1 npm
path-scurry 1.10.1 npm
path-scurry 1.10.2 npm
path-to-regexp 0.1.7 npm
pci.ids 0.0~2023.04.11-1 deb
pciutils 1:3.9.0-4 deb
@ -1554,16 +1498,18 @@ pkgconf-bin 1.
polkitd 122-3 deb
poppler-data 0.4.12-1 deb
poppler-utils 22.12.0-2+b1 deb
postcss-selector-parser 6.0.15 npm
postcss-selector-parser 6.0.16 npm
printer-driver-cups-pdf 3.0.1-14 deb
proc-log 3.0.0 npm
proc-log 4.2.0 npm
procps 2:4.0.2-3 deb
proggy 2.0.0 npm
proj-data 9.1.1-1 deb
promise-all-reject-late 1.0.1 npm
promise-call-limit 3.0.1 npm
promise-inflight 1.0.1 npm
promise-retry 2.0.1 npm
promzard 1.0.0 npm
promzard 1.0.1 npm
proxy-addr 2.0.7 npm
psmisc 23.6-1 deb
publicsuffix 20230209.2326-1 deb
@ -1600,9 +1546,8 @@ qrcode-terminal 0.
qs 6.11.0 npm
range-parser 1.2.1 npm
raw-body 2.5.2 npm
read 2.1.0 npm
read 3.0.1 npm
read-cmd-shim 4.0.0 npm
read-package-json 7.0.0 npm
read-package-json-fast 3.0.2 npm
readline-common 8.2-1.3 deb
resenje.org/singleflight v0.4.1 go-module
@ -1615,7 +1560,6 @@ semver 7.
send 0.18.0 npm
sensible-utils 0.0.17+nmu1 deb
serve-static 1.15.0 npm
set-blocking 2.0.0 npm
set-function-length 1.2.2 npm
setprototypeof 1.2.0 npm
sgml-base 1.31 deb
@ -1624,32 +1568,32 @@ shebang-command 2.
shebang-regex 3.0.0 npm
side-channel 1.0.6 npm
signal-exit 4.1.0 npm
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 go-module
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd go-module
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd go-module (+1 duplicate)
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 go-module
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 go-module
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 go-module
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 go-module (+1 duplicate)
sigs.k8s.io/yaml v1.2.0 go-module
sigs.k8s.io/yaml v1.3.0 go-module (+2 duplicates)
sigstore 2.2.2 npm
sigstore 2.3.0 npm
six 1.16.0 python
smart-buffer 4.2.0 npm
socket.io 4.7.5 npm
socket.io-adapter 2.5.4 npm
socket.io-parser 4.2.4 npm
socks 2.8.0 npm
socks-proxy-agent 8.0.2 npm
socks 2.8.3 npm
socks-proxy-agent 8.0.3 npm
software-properties-common 0.99.30-4 deb
spdx-correct 3.2.0 npm
spdx-exceptions 2.5.0 npm
spdx-expression-parse 3.0.1 npm
spdx-expression-parse 3.0.1 npm (+1 duplicate)
spdx-expression-parse 4.0.0 npm
spdx-license-ids 3.0.17 npm
sprintf-js 1.1.3 npm
ssl-cert 1.1.2 deb
ssr-window 4.0.1 npm (+1 duplicate)
ssri 10.0.5 npm
statuses 2.0.1 npm
stdlib go1.21.8 go-module (+10 duplicates)
stdlib go1.21.10 go-module (+8 duplicates)
stdlib go1.21.9 go-module (+1 duplicate)
string-width 4.2.3 npm (+1 duplicate)
string-width 5.1.2 npm (+1 duplicate)
strip-ansi 6.0.1 npm (+1 duplicate)
@ -1661,10 +1605,11 @@ swiper 7.
systemd 252.22-1~deb12u1 deb
systemd-sysv 252.22-1~deb12u1 deb
sysvinit-utils 3.06-4 deb
tags.cncf.io/container-device-interface v0.6.2 go-module (+1 duplicate)
tags.cncf.io/container-device-interface/specs-go v0.6.0 go-module
tags.cncf.io/container-device-interface v0.6.2 go-module
tags.cncf.io/container-device-interface v0.7.2 go-module
tags.cncf.io/container-device-interface/specs-go v0.7.0 go-module
tar 1.34+dfsg-1.2+deb12u1 deb
tar 6.2.0 npm
tar 6.2.1 npm
text-table 0.2.0 npm
timgm6mb-soundfont 1.3-5 deb
tiny-relative-date 1.3.0 npm
@ -1689,12 +1634,11 @@ uuid-dev 2.
validate-npm-package-license 3.0.4 npm
validate-npm-package-name 5.0.0 npm
vary 1.1.2 npm
vulkan-tools 1.3.239.0+dfsg1-1 deb
wadllib 1.3.6 python
walk-up-path 3.0.1 npm
wcwidth 1.0.1 npm
which 2.0.2 npm
which 4.0.0 npm
wide-align 1.1.5 npm
wrap-ansi 7.0.0 npm
wrap-ansi 8.1.0 npm
write-file-atomic 5.0.1 npm
@ -1718,8 +1662,8 @@ xfonts-utils 1:
xkb-data 2.35.1-1 deb
xml-core 0.18+nmu1 deb
xorg-sgml-doctools 1:1.11-1.1 deb
xserver-common 2:21.1.7-3+deb12u5 deb
xserver-xorg-core 2:21.1.7-3+deb12u5 deb
xserver-common 2:21.1.7-3+deb12u7 deb
xserver-xorg-core 2:21.1.7-3+deb12u7 deb
xserver-xorg-video-amdgpu 23.0.0-1 deb
xserver-xorg-video-ati 1:19.1.0-3 deb
xserver-xorg-video-intel 2:2.99.917+git20210115-1 deb