From 829f41b283c9928aeba2f7b1a05afa5ac4564e04 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 22 Apr 2018 15:53:46 -0400 Subject: [PATCH 001/790] Pull dev version from develop branch --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 28f3323f..dfc65033 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ LABEL maintainer="sparklyballs" # environment settings ARG DEBIAN_FRONTEND="noninteractive" -ARG LIDARR_BRANCH="nightly" +ARG LIDARR_BRANCH="develop" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ From b4b19e8edd0908a245633fc913f45455ec724cae Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 22 Apr 2018 16:11:24 -0400 Subject: [PATCH 002/790] switch back to nightly for dev versions --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index dfc65033..28f3323f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ LABEL maintainer="sparklyballs" # environment settings ARG DEBIAN_FRONTEND="noninteractive" -ARG LIDARR_BRANCH="develop" +ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ From 0784f337c1b01312f3b6393716c578e26d6220ab Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 22 Apr 2018 16:12:05 -0400 Subject: [PATCH 003/790] Update on restart --- root/etc/cont-init.d/30-config | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 3065bc75..3338656d 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -1,5 +1,23 @@ #!/usr/bin/with-contenv bash +# cleanup any existing install +[[ -d /app/lidarr ]] && \ + rm -rf /app/lidarr +mkdir -p /app/lidarr + +# (re)install develop version of lidarr +lidarr_url=$(curl "https://services.lidarr.audio/v1/update/nightly/changes?os=linux" \ + | jq -r '.[0].url') +curl -o \ + /tmp/lidarr.tar.gz -L \ + "${lidarr_url}" +tar ixzf \ +/tmp/lidarr.tar.gz -C \ + /app/lidarr --strip-components=1 +# cleanup +rm -rf \ + /tmp/* + # permissions chown -R abc:abc \ /app/lidarr \ From 21bfb1c0267b0e7824cedefd03f99506d0478102 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sun, 22 Apr 2018 16:49:53 -0400 Subject: [PATCH 004/790] Update README.md --- README.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 169281d6..be8a7f1e 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ docker create \ -v :/music \ -e PGID= -e PUID= \ -p 8686:8686 \ - linuxserver/lidarr + lsiodev/lidarr-preview ```   @@ -88,6 +88,8 @@ In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as bel ## Setting up the application +`IMPORTANT: This is the dev preview version and is not meant for end users` + Access the webui at `:8686`, for more information check out [Lidarr][appurl].   @@ -107,6 +109,7 @@ Access the webui at `:8686`, for more information check out [Lidarr][ap | Date | Changes | | :---: | --- | +| 22.04.18 | Switch this branch to the nightly versions, auto-updating on container start | | 17.03.18 | Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. | | 27.02.18 | Use json to query for new version. | | 23.02.18 | Initial Release. | From 054637da298f522bb40c3325dc400625cb1c7eea Mon Sep 17 00:00:00 2001 From: sparklyballs Date: Wed, 12 Sep 2018 12:51:15 +0100 Subject: [PATCH 005/790] no point installing lidarr in the dockerfile --- Dockerfile | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Dockerfile b/Dockerfile index 28f3323f..4eb9ae70 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,16 +16,6 @@ RUN \ apt-get update && \ apt-get install -y \ jq && \ - echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr && \ - lidarr_url=$(curl "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].url') && \ - curl -o \ - /tmp/lidarr.tar.gz -L \ - "${lidarr_url}" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ - /app/lidarr --strip-components=1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ From 033cec9e699f2afe8ca3be69a06ef90fe9edbb19 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 26 Jan 2019 20:48:50 -0800 Subject: [PATCH 006/790] adding pipeline logic and multi arching, removing auto update as we tag the release now --- Dockerfile | 19 +- Dockerfile.aarch64 | 48 +++ Dockerfile.armhf | 48 +++ Jenkinsfile | 595 +++++++++++++++++++++++++++++++++ README.md | 7 +- jenkins-vars.yml | 28 ++ readme-vars.yml | 123 +++++++ root/etc/cont-init.d/30-config | 25 +- 8 files changed, 867 insertions(+), 26 deletions(-) create mode 100644 Dockerfile.aarch64 create mode 100644 Dockerfile.armhf create mode 100644 Jenkinsfile create mode 100644 jenkins-vars.yml create mode 100644 readme-vars.yml diff --git a/Dockerfile b/Dockerfile index 4eb9ae70..71928e46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,6 +3,7 @@ FROM lsiobase/mono:xenial # set version label ARG BUILD_DATE ARG VERSION +ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" LABEL maintainer="sparklyballs" @@ -16,15 +17,29 @@ RUN \ apt-get update && \ apt-get install -y \ jq && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "${lidarr_url}" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr --strip-components=1 && \ echo "**** cleanup ****" && \ rm -rf \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* -# copy local files +# copy local files COPY root/ / -# ports and volumes +# ports and volumes EXPOSE 8686 VOLUME /config /downloads /music diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 new file mode 100644 index 00000000..ac84ad36 --- /dev/null +++ b/Dockerfile.aarch64 @@ -0,0 +1,48 @@ +FROM lsiobase/mono.arm64:xenial + +# Add qemu to build on x86_64 systems +COPY qemu-aarch64-static /usr/bin + +# set version label +ARG BUILD_DATE +ARG VERSION +ARG LIDARR_RELEASE +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" + +# environment settings +ARG DEBIAN_FRONTEND="noninteractive" +ARG LIDARR_BRANCH="nightly" +ENV XDG_CONFIG_HOME="/config/xdg" + +RUN \ + echo "**** install jq ****" && \ + apt-get update && \ + apt-get install -y \ + jq && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "${lidarr_url}" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr --strip-components=1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* + +# copy local files +COPY root/ / + +# ports and volumes +EXPOSE 8686 +VOLUME /config /downloads /music diff --git a/Dockerfile.armhf b/Dockerfile.armhf new file mode 100644 index 00000000..522af0e3 --- /dev/null +++ b/Dockerfile.armhf @@ -0,0 +1,48 @@ +FROM lsiobase/mono.armhf:xenial + +# Add qemu to build on x86_64 systems +COPY qemu-arm-static /usr/bin + +# set version label +ARG BUILD_DATE +ARG VERSION +ARG LIDARR_RELEASE +LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" +LABEL maintainer="sparklyballs" + +# environment settings +ARG DEBIAN_FRONTEND="noninteractive" +ARG LIDARR_BRANCH="nightly" +ENV XDG_CONFIG_HOME="/config/xdg" + +RUN \ + echo "**** install jq ****" && \ + apt-get update && \ + apt-get install -y \ + jq && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "${lidarr_url}" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr --strip-components=1 && \ + echo "**** cleanup ****" && \ + rm -rf \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* + +# copy local files +COPY root/ / + +# ports and volumes +EXPOSE 8686 +VOLUME /config /downloads /music diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..781b7cbb --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,595 @@ +pipeline { + agent { + label 'X86-64-MULTI' + } + // Input to determine if this is a package check + parameters { + string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') + } + // Configuration for the variables used for this specific repo + environment { + BUILDS_DISCORD=credentials('build_webhook_url') + GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') + JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' + JSON_PATH = '.[0].version' + BUILD_VERSION_ARG = 'LIDARR_RELEASE' + LS_USER = 'linuxserver' + LS_REPO = 'docker-lidarr' + CONTAINER_NAME = 'lidarr' + DOCKERHUB_IMAGE = 'linuxserver/lidarr' + DEV_DOCKERHUB_IMAGE = 'lsiodev/lidarr' + PR_DOCKERHUB_IMAGE = 'lspipepr/lidarr' + DIST_IMAGE = 'ubuntu' + MULTIARCH='true' + CI='true' + CI_WEB='true' + CI_PORT='8686' + CI_SSL='false' + CI_DELAY='120' + CI_DOCKERENV='TZ=US/Pacific' + CI_AUTH='user:password' + CI_WEBPATH='' + } + stages { + // Setup all the basic environment variables needed for the build + stage("Set ENV Variables base"){ + steps{ + script{ + env.EXIT_STATUS = '' + env.LS_RELEASE = sh( + script: '''curl -s https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases | jq -r 'first(.[] | select(.prerelease == true)) | .tag_name' ''', + returnStdout: true).trim() + env.LS_RELEASE_NOTES = sh( + script: '''git log -1 --pretty=%B | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', + returnStdout: true).trim() + env.GITHUB_DATE = sh( + script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', + returnStdout: true).trim() + env.COMMIT_SHA = sh( + script: '''git rev-parse HEAD''', + returnStdout: true).trim() + env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' + env.PULL_REQUEST = env.CHANGE_ID + } + script{ + env.LS_RELEASE_NUMBER = sh( + script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', + returnStdout: true).trim() + } + script{ + env.LS_TAG_NUMBER = sh( + script: '''#! /bin/bash + tagsha=$(git rev-list -n 1 ${LS_RELEASE} 2>/dev/null) + if [ "${tagsha}" == "${COMMIT_SHA}" ]; then + echo ${LS_RELEASE_NUMBER} + elif [ -z "${GIT_COMMIT}" ]; then + echo ${LS_RELEASE_NUMBER} + else + echo $((${LS_RELEASE_NUMBER} + 1)) + fi''', + returnStdout: true).trim() + } + } + } + /* ####################### + Package Version Tagging + ####################### */ + // Grab the current package versions in Git to determine package tag + stage("Set Package tag"){ + steps{ + script{ + env.PACKAGE_TAG = sh( + script: '''#!/bin/bash + if [ -e package_versions.txt ] ; then + cat package_versions.txt | md5sum | cut -c1-8 + else + echo none + fi''', + returnStdout: true).trim() + } + } + } + /* ######################## + External Release Tagging + ######################## */ + // If this is a custom json endpoint parse the return to get external tag + stage("Set ENV custom_json"){ + steps{ + script{ + env.EXT_RELEASE = sh( + script: '''curl -s ${JSON_URL} | jq -r ". | ${JSON_PATH}" ''', + returnStdout: true).trim() + env.RELEASE_LINK = env.JSON_URL + } + } + } + // Sanitize the release tag and strip illegal docker or github characters + stage("Sanitize tag"){ + steps{ + script{ + env.EXT_RELEASE_CLEAN = sh( + script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', + returnStdout: true).trim() + } + } + } + // If this is a preview build use live docker endpoints + stage("Set ENV live build"){ + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } else { + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } + env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + } + } + } + // If this is a dev build use dev docker endpoints + stage("Set ENV dev build"){ + when { + not {branch "preview"} + environment name: 'CHANGE_ID', value: '' + } + steps { + script{ + env.IMAGE = env.DEV_DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + } else { + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + } + env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' + } + } + } + // If this is a pull request build use dev docker endpoints + stage("Set ENV PR build"){ + when { + not {environment name: 'CHANGE_ID', value: ''} + } + steps { + script{ + env.IMAGE = env.PR_DOCKERHUB_IMAGE + if (env.MULTIARCH == 'true') { + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + } else { + env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + } + env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST + env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' + } + } + } + // Use helper containers to render templated files + stage('Update-Templates') { + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + expression { + env.CONTAINER_NAME != null + } + } + steps { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker pull linuxserver/doc-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest + if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git checkout -f preview + cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/repo/${LS_REPO}/ + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + cd ${TEMPDIR}/repo/${LS_REPO}/ + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git commit -m 'Bot Updating Templated Files' + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + fi + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } + } + } + // Exit the build if the Templated files were just updated + stage('Template-exit') { + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + environment name: 'FILES_UPDATED', value: 'true' + expression { + env.CONTAINER_NAME != null + } + } + steps { + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + /* ############### + Build Container + ############### */ + // Build Docker container for push to LS Repo + stage('Build-Single') { + when { + environment name: 'MULTIARCH', value: 'false' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh "docker build --no-cache -t ${IMAGE}:${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + } + } + // Build MultiArch Docker containers for push to LS Repo + stage('Build-Multi') { + when { + environment name: 'MULTIARCH', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + parallel { + stage('Build X86') { + steps { + sh "docker build --no-cache -t ${IMAGE}:amd64-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + } + } + stage('Build ARMHF') { + agent { + label 'ARMHF' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + echo 'Logging into DockerHub' + sh '''#! /bin/bash + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + ''' + sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static -o qemu-arm-static" + sh "chmod +x qemu-*" + sh "docker build --no-cache -f Dockerfile.armhf -t ${IMAGE}:arm32v6-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker tag ${IMAGE}:arm32v6-${META_TAG} lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" + sh "docker push lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" + } + } + } + stage('Build ARM64') { + agent { + label 'ARM64' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + echo 'Logging into DockerHub' + sh '''#! /bin/bash + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + ''' + sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static -o qemu-aarch64-static" + sh "chmod +x qemu-*" + sh "docker build --no-cache -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + } + } + } + } + } + // Take the image we just built and dump package versions for comparison + stage('Update-packages') { + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + if [ "${MULTIARCH}" == "true" ]; then + LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG} + else + LOCAL_CONTAINER=${IMAGE}:${META_TAG} + fi + if [ "${DIST_IMAGE}" == "alpine" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + apk info > packages && \ + apk info -v > versions && \ + paste -d " " packages versions > /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "ubuntu" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + apt list -qq --installed > /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + fi + NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) + echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" + if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO} + git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f preview + cp ${TEMPDIR}/package_versions.txt ${TEMPDIR}/${LS_REPO}/ + cd ${TEMPDIR}/${LS_REPO}/ + wait + git add package_versions.txt + git commit -m 'Bot Updating Package Versions' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} + echo "Package tag updated, stopping build process" + else + echo "false" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} + echo "Package tag is same as previous continue with build process" + fi + rm -Rf ${TEMPDIR}''' + script{ + env.PACKAGE_UPDATED = sh( + script: '''cat /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } + } + } + // Exit the build if the package file was just updated + stage('PACKAGE-exit') { + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + environment name: 'PACKAGE_UPDATED', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + // Exit the build if this is just a package check and there are no changes to push + stage('PACKAGECHECK-exit') { + when { + branch "preview" + environment name: 'CHANGE_ID', value: '' + environment name: 'PACKAGE_UPDATED', value: 'false' + environment name: 'EXIT_STATUS', value: '' + expression { + params.PACKAGE_CHECK == 'true' + } + } + steps { + script{ + env.EXIT_STATUS = 'ABORTED' + } + } + } + /* ####### + Testing + ####### */ + // Run Container tests + stage('Test') { + when { + environment name: 'CI', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + string(credentialsId: 'spaces-key', variable: 'DO_KEY'), + string(credentialsId: 'spaces-secret', variable: 'DO_SECRET') + ]) { + script{ + env.CI_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/index.html' + } + sh '''#! /bin/bash + set -e + docker pull lsiodev/ci:latest + if [ "${MULTIARCH}" == "true" ]; then + docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v6-${META_TAG} + docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + fi + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + -e IMAGE=\"${IMAGE}\" \ + -e DELAY_START=\"${CI_DELAY}\" \ + -e TAGS=\"${CI_TAGS}\" \ + -e META_TAG=\"${META_TAG}\" \ + -e PORT=\"${CI_PORT}\" \ + -e SSL=\"${CI_SSL}\" \ + -e BASE=\"${DIST_IMAGE}\" \ + -e SECRET_KEY=\"${DO_SECRET}\" \ + -e ACCESS_KEY=\"${DO_KEY}\" \ + -e DOCKER_ENV=\"${CI_DOCKERENV}\" \ + -e WEB_SCREENSHOT=\"${CI_WEB}\" \ + -e WEB_AUTH=\"${CI_AUTH}\" \ + -e WEB_PATH=\"${CI_WEBPATH}\" \ + -e DO_REGION="ams3" \ + -e DO_BUCKET="lsio-ci" \ + -t lsiodev/ci:latest \ + python /ci/ci.py''' + } + } + } + /* ################## + Release Logic + ################## */ + // If this is an amd64 only image only push a single image + stage('Docker-Push-Single') { + when { + environment name: 'MULTIARCH', value: 'false' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + echo 'Logging into DockerHub' + sh '''#! /bin/bash + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + ''' + sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:preview" + sh "docker push ${IMAGE}:preview" + sh "docker push ${IMAGE}:${META_TAG}" + } + } + } + // If this is a multi arch release push all images and define the manifest + stage('Docker-Push-Multi') { + when { + environment name: 'MULTIARCH', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + ''' + sh '''#! /bin/bash + if [ "${CI}" == "false" ]; then + docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v6-${META_TAG} + docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + fi''' + sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-preview" + sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-preview" + sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-preview" + sh "docker push ${IMAGE}:amd64-${META_TAG}" + sh "docker push ${IMAGE}:arm32v6-${META_TAG}" + sh "docker push ${IMAGE}:arm64v8-${META_TAG}" + sh "docker push ${IMAGE}:amd64-preview" + sh "docker push ${IMAGE}:arm32v6-preview" + sh "docker push ${IMAGE}:arm64v8-preview" + sh "docker manifest push --purge ${IMAGE}:preview || :" + sh "docker manifest create ${IMAGE}:preview ${IMAGE}:amd64-preview ${IMAGE}:arm32v6-preview ${IMAGE}:arm64v8-preview" + sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm32v6-preview --os linux --arch arm" + sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8" + sh "docker manifest push --purge ${IMAGE}:${META_TAG} || :" + sh "docker manifest create ${IMAGE}:${META_TAG} ${IMAGE}:amd64-${META_TAG} ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm64v8-${META_TAG}" + sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm32v6-${META_TAG} --os linux --arch arm" + sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8" + sh "docker manifest push --purge ${IMAGE}:preview" + sh "docker manifest push --purge ${IMAGE}:${META_TAG}" + } + } + } + // If this is a public release tag it in the LS Github + stage('Github-Tag-Push-Release') { + when { + branch "preview" + expression { + env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-ls' + env.LS_TAG_NUMBER + } + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Pushing New tag for current commit ${EXT_RELEASE_CLEAN}-pkg-${PACKAGE_TAG}-ls${LS_TAG_NUMBER}" + sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ + -d '{"tag":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to preview",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' + echo "Pushing New release for Tag" + sh '''#! /bin/bash + echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json + echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "target_commitish": "preview",\ + "name": "'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start + printf '","draft": false,"prerelease": true}' >> releasebody.json + paste -d'\\0' start releasebody.json > releasebody.json.done + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' + } + } + // Use helper container to sync the current README on master to the dockerhub endpoint + stage('Sync-README') { + when { + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + docker pull lsiodev/readme-sync + docker run --rm=true \ + -e DOCKERHUB_USERNAME=$DOCKERUSER \ + -e DOCKERHUB_PASSWORD=$DOCKERPASS \ + -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ + -e DOCKER_REPOSITORY=${IMAGE} \ + -e GIT_BRANCH=master \ + lsiodev/readme-sync bash -c 'node sync' ''' + } + } + } + } + /* ###################### + Send status to Discord + ###################### */ + post { + always { + script{ + if (env.EXIT_STATUS == "ABORTED"){ + sh 'echo "build aborted"' + } + else if (currentBuild.currentResult == "SUCCESS"){ + sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "username": "Jenkins"}' ${BUILDS_DISCORD} ''' + } + else { + sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "username": "Jenkins"}' ${BUILDS_DISCORD} ''' + } + } + } + } +} diff --git a/README.md b/README.md index be8a7f1e..ec813215 100644 --- a/README.md +++ b/README.md @@ -9,9 +9,9 @@ [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] -## Contact information:- +## Contact information:- -| Type | Address/Details | +| Type | Address/Details | | :---: | --- | | Discord | [Discord](https://discord.gg/YWrKVTn) | | Forum | [Linuserver.io forum][forumurl] | @@ -53,7 +53,7 @@ docker create \ ## Parameters -The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. +The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80. @@ -109,6 +109,7 @@ Access the webui at `:8686`, for more information check out [Lidarr][ap | Date | Changes | | :---: | --- | +| 26.01.19 | Add pipeline logic and multi arch, switching to tagged release from auto updates | | 22.04.18 | Switch this branch to the nightly versions, auto-updating on container start | | 17.03.18 | Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. | | 27.02.18 | Use json to query for new version. | diff --git a/jenkins-vars.yml b/jenkins-vars.yml new file mode 100644 index 00000000..1c71ac81 --- /dev/null +++ b/jenkins-vars.yml @@ -0,0 +1,28 @@ +--- + +# jenkins variables +project_name: docker-lidarr +external_type: custom_json +release_type: prerelease +release_tag: preview +ls_branch: preview +repo_vars: + - JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' + - JSON_PATH = '.[0].version' + - BUILD_VERSION_ARG = 'LIDARR_RELEASE' + - LS_USER = 'linuxserver' + - LS_REPO = 'docker-lidarr' + - CONTAINER_NAME = 'lidarr' + - DOCKERHUB_IMAGE = 'linuxserver/lidarr' + - DEV_DOCKERHUB_IMAGE = 'lsiodev/lidarr' + - PR_DOCKERHUB_IMAGE = 'lspipepr/lidarr' + - DIST_IMAGE = 'ubuntu' + - MULTIARCH='true' + - CI='true' + - CI_WEB='true' + - CI_PORT='8686' + - CI_SSL='false' + - CI_DELAY='120' + - CI_DOCKERENV='TZ=US/Pacific' + - CI_AUTH='user:password' + - CI_WEBPATH='' diff --git a/readme-vars.yml b/readme-vars.yml new file mode 100644 index 00000000..122c6c58 --- /dev/null +++ b/readme-vars.yml @@ -0,0 +1,123 @@ +--- + +# project information +project_name: lidarr +full_custom_readme: | + {% raw -%} + [linuxserverurl]: https://linuxserver.io + [forumurl]: https://forum.linuxserver.io + [ircurl]: https://www.linuxserver.io/irc/ + [podcasturl]: https://www.linuxserver.io/podcast/ + [appurl]: https://github.com/lidarr/Lidarr + [hub]: https://hub.docker.com/r/linuxserver/lidarr/ + + + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] + + + ## Contact information:- + + | Type | Address/Details | + | :---: | --- | + | Discord | [Discord](https://discord.gg/YWrKVTn) | + | Forum | [Linuserver.io forum][forumurl] | + | IRC | freenode at `#linuxserver.io` more information at:- [IRC][ircurl] + | Podcast | Covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! [Linuxserver.io Podcast][podcasturl] | + + + The [LinuxServer.io][linuxserverurl] team brings you another image release featuring :- + + + regular and timely application updates + + easy user mappings + + custom base image with s6 overlay + + weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth + + security updates + + # linuxserver/lidarr + [![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-lidarr)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-lidarr/) + + Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. + + [![lidarr](https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png)][appurl] + +   + + ## Usage + + ``` + docker create \ + --name=lidarr \ + -v :/config \ + -v :/downloads \ + -v :/music \ + -e PGID= -e PUID= \ + -p 8686:8686 \ + lsiodev/lidarr-preview + ``` + +   + + ## Parameters + + The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. + For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. + So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 + http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80. + + + + | Parameter | Function | + | :---: | --- | + | `-p 8686` | the port(s) | + | `-v /config` | Contains your config files| + | `-v /downloads` | Path to your download folder for music | + | `-v /music` | Path to your music library | + | `-e PGID` | for GroupID, see below for explanation | + | `-e PUID` | for UserID, see below for explanation | + +   + + ## User / Group Identifiers + + Sometimes when using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. + + Ensure any volume directories on the host are owned by the same user you specify and it will "just work" ™. + + In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below: + + ``` + $ id + uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) + ``` + +   + + ## Setting up the application + + `IMPORTANT: This is the dev preview version and is not meant for end users` + + Access the webui at `:8686`, for more information check out [Lidarr][appurl]. + +   + + ## Container access and information. + + | Function | Command | + | :--- | :--- | + | Shell access (live container) | `docker exec -it lidarr /bin/bash` | + | Realtime container logs | `docker logs -f lidarr` | + | Container version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` | + | Image version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` | + +   + + ## Versions + + | Date | Changes | + | :---: | --- | + | 26.01.19 | Add pipeline logic and multi arch, switching to tagged release from auto updates | + | 22.04.18 | Switch this branch to the nightly versions, auto-updating on container start | + | 17.03.18 | Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. | + | 27.02.18 | Use json to query for new version. | + | 23.02.18 | Initial Release. | + {%- endraw %} diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 3338656d..3e2b1b21 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -1,24 +1,7 @@ #!/usr/bin/with-contenv bash -# cleanup any existing install -[[ -d /app/lidarr ]] && \ - rm -rf /app/lidarr -mkdir -p /app/lidarr +# cd /app/lidarr || exit -# (re)install develop version of lidarr -lidarr_url=$(curl "https://services.lidarr.audio/v1/update/nightly/changes?os=linux" \ - | jq -r '.[0].url') -curl -o \ - /tmp/lidarr.tar.gz -L \ - "${lidarr_url}" -tar ixzf \ -/tmp/lidarr.tar.gz -C \ - /app/lidarr --strip-components=1 -# cleanup -rm -rf \ - /tmp/* - -# permissions -chown -R abc:abc \ - /app/lidarr \ - /config +exec \ + s6-setuidgid abc mono --debug /app/lidarr/Lidarr.exe \ + -nobrowser -data=/config From a37b2586b5e53d94eb440b754c33cfbcf8dc8327 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 26 Jan 2019 21:04:17 -0800 Subject: [PATCH 007/790] accidently put the init in the config section --- root/etc/cont-init.d/30-config | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 3e2b1b21..978151ad 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -1,7 +1,6 @@ #!/usr/bin/with-contenv bash -# cd /app/lidarr || exit - -exec \ - s6-setuidgid abc mono --debug /app/lidarr/Lidarr.exe \ - -nobrowser -data=/config +# permissions +chown -R abc:abc \ + /app/lidarr \ + /config From bb7aad7c12c5de20839fe562d403f105ea0c9a85 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sun, 27 Jan 2019 19:46:35 -0800 Subject: [PATCH 008/790] adding libchromaprint-tools to image as developers requested its availability --- Dockerfile | 7 ++++--- Dockerfile.aarch64 | 7 ++++--- Dockerfile.armhf | 7 ++++--- 3 files changed, 12 insertions(+), 9 deletions(-) diff --git a/Dockerfile b/Dockerfile index 71928e46..a313e1e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,10 +13,11 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install jq ****" && \ + echo "**** install packages ****" && \ apt-get update && \ - apt-get install -y \ - jq && \ + apt-get install --no-install-recommends -y \ + libchromaprint-tools \ + jq && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ac84ad36..cb52f853 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -16,10 +16,11 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install jq ****" && \ + echo "**** install packages ****" && \ apt-get update && \ - apt-get install -y \ - jq && \ + apt-get install --no-install-recommends -y \ + libchromaprint-tools \ + jq && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 522af0e3..e5ffd5ab 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -16,10 +16,11 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install jq ****" && \ + echo "**** install packages ****" && \ apt-get update && \ - apt-get install -y \ - jq && \ + apt-get install --no-install-recommends -y \ + libchromaprint-tools \ + jq && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ From e63a9d88de942483cad72285e3a495e7a3bde31c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 29 Jan 2019 03:23:03 +0000 Subject: [PATCH 009/790] Bot Updating Package Versions --- package_versions.txt | 392 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 392 insertions(+) create mode 100755 package_versions.txt diff --git a/package_versions.txt b/package_versions.txt new file mode 100755 index 00000000..4d16746a --- /dev/null +++ b/package_versions.txt @@ -0,0 +1,392 @@ +adduser/now 3.113+nmu3ubuntu4 all [installed,local] +apt/now 1.2.29ubuntu0.1 amd64 [installed,local] +apt-transport-https/now 1.2.29ubuntu0.1 amd64 [installed,local] +apt-utils/now 1.2.29ubuntu0.1 amd64 [installed,local] +base-files/now 9.4ubuntu4.7 amd64 [installed,local] +base-passwd/now 3.5.39 amd64 [installed,local] +bash/now 4.3-14ubuntu1.2 amd64 [installed,local] +binutils/now 2.26.1-1ubuntu1~16.04.7 amd64 [installed,local] +bsdutils/now 1:2.27.1-6ubuntu3.6 amd64 [installed,local] +bzip2/now 1.0.6-8 amd64 [installed,local] +ca-certificates/now 20170717~16.04.2 all [installed,local] +ca-certificates-mono/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +cli-common/now 0.9+xamarin8+ubuntu1604b1 all [installed,local] +coreutils/now 8.25-2ubuntu3~16.04 amd64 [installed,local] +curl/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +dash/now 0.5.8-2.1ubuntu2 amd64 [installed,local] +debconf/now 1.5.58ubuntu1 all [installed,local] +debianutils/now 4.7 amd64 [installed,local] +diffutils/now 1:3.3-3 amd64 [installed,local] +dpkg/now 1.18.4ubuntu1.5 amd64 [installed,local] +dpkg-dev/now 1.18.4ubuntu1.5 all [installed,local] +e2fslibs/now 1.42.13-1ubuntu1 amd64 [installed,local] +e2fsprogs/now 1.42.13-1ubuntu1 amd64 [installed,local] +findutils/now 4.6.0+git+20160126-2 amd64 [installed,local] +fontconfig-config/now 2.11.94-0ubuntu1.1 all [installed,local] +fonts-dejavu-core/now 2.35-1 all [installed,local] +gcc-5-base/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] +gcc-6-base/now 6.0.1-0ubuntu1 amd64 [installed,local] +gnupg/now 1.4.20-1ubuntu3.3 amd64 [installed,local] +gpgv/now 1.4.20-1ubuntu3.3 amd64 [installed,local] +grep/now 2.25-1~16.04.1 amd64 [installed,local] +gzip/now 1.6-4ubuntu1 amd64 [installed,local] +hostname/now 3.16ubuntu2 amd64 [installed,local] +init/now 1.29ubuntu4 amd64 [installed,local] +init-system-helpers/now 1.29ubuntu4 all [installed,local] +initscripts/now 2.88dsf-59.3ubuntu2 amd64 [installed,local] +insserv/now 1.14.0-5ubuntu3 amd64 [installed,local] +jq/now 1.5+dfsg-1ubuntu0.1 amd64 [installed,local] +krb5-locales/now 1.13.2+dfsg-5ubuntu2.1 all [installed,local] +libacl1/now 2.2.52-3 amd64 [installed,local] +libapparmor1/now 2.10.95-0ubuntu2.10 amd64 [installed,local] +libapt-inst2.0/now 1.2.29ubuntu0.1 amd64 [installed,local] +libapt-pkg5.0/now 1.2.29ubuntu0.1 amd64 [installed,local] +libasn1-8-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libattr1/now 1:2.4.47-2 amd64 [installed,local] +libaudit-common/now 1:2.4.5-1ubuntu2.1 all [installed,local] +libaudit1/now 1:2.4.5-1ubuntu2.1 amd64 [installed,local] +libavcodec-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] +libavformat-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] +libavutil-ffmpeg54/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] +libblkid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libbluray1/now 1:0.9.2-2 amd64 [installed,local] +libbz2-1.0/now 1.0.6-8 amd64 [installed,local] +libc-bin/now 2.23-0ubuntu10 amd64 [installed,local] +libc6/now 2.23-0ubuntu10 amd64 [installed,local] +libcairo2/now 1.14.6-1 amd64 [installed,local] +libcap2/now 1:2.24-12 amd64 [installed,local] +libcap2-bin/now 1:2.24-12 amd64 [installed,local] +libchromaprint-tools/now 1.3-1 amd64 [installed,local] +libchromaprint0/now 1.3-1 amd64 [installed,local] +libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] +libcryptsetup4/now 2:1.6.6-5ubuntu2.1 amd64 [installed,local] +libcrystalhd3/now 1:0.0~git20110715.fdd2f19-11build1 amd64 [installed,local] +libcurl3/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +libcurl3-gnutls/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +libcurl4-openssl-dev/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +libdb5.3/now 5.3.28-11ubuntu0.1 amd64 [installed,local] +libdebconfclient0/now 0.198ubuntu1 amd64 [installed,local] +libdevmapper1.02.1/now 2:1.02.110-1ubuntu10 amd64 [installed,local] +libdpkg-perl/now 1.18.4ubuntu1.5 all [installed,local] +libexif12/now 0.6.21-2 amd64 [installed,local] +libexpat1/now 2.1.0-7ubuntu0.16.04.3 amd64 [installed,local] +libfdisk1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libffi6/now 3.2.1-4 amd64 [installed,local] +libfontconfig1/now 2.11.94-0ubuntu1.1 amd64 [installed,local] +libfreetype6/now 2.6.1-0.1ubuntu2.3 amd64 [installed,local] +libgcc1/now 1:6.0.1-0ubuntu1 amd64 [installed,local] +libgcrypt20/now 1.6.5-2ubuntu0.5 amd64 [installed,local] +libgdbm3/now 1.8.3-13.1 amd64 [installed,local] +libgdiplus/now 5.6-0xamarin5+ubuntu1604b1 amd64 [installed,local] +libgif7/now 5.1.4-0.3~16.04 amd64 [installed,local] +libglib2.0-0/now 2.48.2-0ubuntu4.1 amd64 [installed,local] +libgme0/now 0.6.0-3ubuntu0.16.04.1 amd64 [installed,local] +libgmp10/now 2:6.1.0+dfsg-2 amd64 [installed,local] +libgnutls30/now 3.4.10-4ubuntu1.4 amd64 [installed,local] +libgomp1/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] +libgpg-error0/now 1.21-2ubuntu1 amd64 [installed,local] +libgsm1/now 1.0.13-4 amd64 [installed,local] +libgssapi-krb5-2/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] +libgssapi3-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libhcrypto4-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libheimbase1-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libheimntlm0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libhogweed4/now 3.2-1ubuntu0.16.04.1 amd64 [installed,local] +libhx509-5-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libicu55/now 55.1-7ubuntu0.4 amd64 [installed,local] +libidn11/now 1.32-3ubuntu1.2 amd64 [installed,local] +libjbig0/now 2.1-3.1 amd64 [installed,local] +libjpeg-turbo8/now 1.4.2-0ubuntu3.1 amd64 [installed,local] +libjpeg8/now 8c-2ubuntu8 amd64 [installed,local] +libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] +libkeyutils1/now 1.5.9-8ubuntu1 amd64 [installed,local] +libkmod2/now 22-1ubuntu5.1 amd64 [installed,local] +libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] +libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] +libldap-2.4-2/now 2.4.42+dfsg-2ubuntu3.4 amd64 [installed,local] +liblz4-1/now 0.0~r131-2ubuntu2 amd64 [installed,local] +liblzma5/now 5.1.1alpha+20120614-2ubuntu2 amd64 [installed,local] +libmediainfo0v5/now 18.12-1 amd64 [installed,local] +libmms0/now 0.6.4-1 amd64 [installed,local] +libmodplug1/now 1:0.8.8.5-2 amd64 [installed,local] +libmono-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +libmono-accessibility4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-cairo4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-cecil-private-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-cil-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-codecontracts4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-corlib4.5-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-cscompmgd0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-csharp4.0c-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-custommarshalers4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-data-tds4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-db2-1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-debugger-soft4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n-cjk4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n-mideast4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n-other4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n-rare4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n-west4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n4.0-all/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-i18n4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-messaging-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-build-engine4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-build-framework4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-build4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-csharp4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-visualc10.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-oracle4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-parallel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-peapi4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-posix4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-relaxng4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-sharpzip4.84-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-simd4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-smdiagnostics0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-sqlite4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-componentmodel-composition4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-configuration-install4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-configuration4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-core4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data-datasetextensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data-entity4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data-services-client4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-deployment4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-drawing-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-drawing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-dynamic4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-enterpriseservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-identitymodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-io-compression4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-json-microsoft4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-json4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-ldap-protocols4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-net-http-formatting4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-net-http-webrequest4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-net-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-net4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-numerics-vectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-numerics4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-core2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-debugger2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-experimental2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-interfaces2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-linq2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-platformservices2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-providers2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-reflection-context4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-runtime-caching4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-runtime-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel-activation4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel-internals0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-servicemodel4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-serviceprocess4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-transactions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-abstractions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-applicationservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-dynamicdata4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-extensions-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-extensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-http-selfhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-http-webhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-mobile4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-mvc3.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-regularexpressions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-webpages-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web-webpages2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-windows-forms4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-windows4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-workflow-activities4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-workflow-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-xaml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-xml-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-xml-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system-xml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-system4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-tasklets4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-webbrowser4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-webmatrix-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-windowsbase4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmono-xbuild-tasks4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +libmonosgen-2.0-1/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +libmonosgen-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +libmount1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libmp3lame0/now 3.99.5+repack1-9build1 amd64 [installed,local] +libncurses5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] +libncursesw5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] +libnettle6/now 3.2-1ubuntu0.16.04.1 amd64 [installed,local] +libnuma1/now 2.0.11-1ubuntu1.1 amd64 [installed,local] +libnunit-cil-dev/now 2.6.4+dfsg-1 all [installed,local] +libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libnunit-core2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libnunit-util2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] +libogg0/now 1.3.2-1 amd64 [installed,local] +libonig2/now 5.9.6-1ubuntu0.1 amd64 [installed,local] +libopenjpeg5/now 1:1.5.2-3.1 amd64 [installed,local] +libopus0/now 1.1.2-1ubuntu1 amd64 [installed,local] +liborc-0.4-0/now 1:0.4.25-1 amd64 [installed,local] +libp11-kit0/now 0.23.2-5~ubuntu16.04.1 amd64 [installed,local] +libpam-modules/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] +libpam-modules-bin/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] +libpam-runtime/now 1.1.8-3.2ubuntu2.1 all [installed,local] +libpam0g/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] +libpcre3/now 2:8.38-3.1 amd64 [installed,local] +libperl5.22/now 5.22.1-9ubuntu0.6 amd64 [installed,local] +libpixman-1-0/now 0.33.6-1 amd64 [installed,local] +libpng12-0/now 1.2.54-1ubuntu1.1 amd64 [installed,local] +libprocps4/now 2:3.3.10-4ubuntu2.4 amd64 [installed,local] +libpython-stdlib/now 2.7.12-1~16.04 amd64 [installed,local] +libpython2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] +libpython2.7-stdlib/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] +libreadline6/now 6.3-8ubuntu2 amd64 [installed,local] +libroken18-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +librtmp1/now 2.4+20151223.gitfa8646d-1ubuntu0.1 amd64 [installed,local] +libsasl2-2/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] +libsasl2-modules/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] +libsasl2-modules-db/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] +libschroedinger-1.0-0/now 1.0.11-2.1build1 amd64 [installed,local] +libseccomp2/now 2.3.1-2.1ubuntu2~16.04.1 amd64 [installed,local] +libselinux1/now 2.4-3build2 amd64 [installed,local] +libsemanage-common/now 2.3-1build3 all [installed,local] +libsemanage1/now 2.3-1build3 amd64 [installed,local] +libsepol1/now 2.4-2 amd64 [installed,local] +libshine3/now 3.1.0-4 amd64 [installed,local] +libsmartcols1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libsnappy1v5/now 1.1.3-2 amd64 [installed,local] +libsoxr0/now 0.1.2-1 amd64 [installed,local] +libspeex1/now 1.2~rc1.2-1ubuntu1 amd64 [installed,local] +libsqlite3-0/now 3.11.0-1ubuntu1 amd64 [installed,local] +libss2/now 1.42.13-1ubuntu1 amd64 [installed,local] +libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 amd64 [installed,local] +libssl1.0.0/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] +libstdc++6/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] +libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] +libsystemd0/now 229-4ubuntu21.15 amd64 [installed,local] +libtasn1-6/now 4.7-3ubuntu0.16.04.3 amd64 [installed,local] +libtheora0/now 1.1.1+dfsg.1-8 amd64 [installed,local] +libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] +libtinfo5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] +libtwolame0/now 0.3.13-1.2 amd64 [installed,local] +libudev1/now 229-4ubuntu21.15 amd64 [installed,local] +libusb-0.1-4/now 2:0.1.12-28 amd64 [installed,local] +libustr-1.0-1/now 1.0.4-5 amd64 [installed,local] +libuuid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +libva1/now 1.7.0-1ubuntu0.1 amd64 [installed,local] +libvorbis0a/now 1.3.5-3ubuntu0.2 amd64 [installed,local] +libvorbisenc2/now 1.3.5-3ubuntu0.2 amd64 [installed,local] +libvpx3/now 1.5.0-2ubuntu1 amd64 [installed,local] +libwavpack1/now 4.75.2-2ubuntu0.2 amd64 [installed,local] +libwebp5/now 0.4.4-1 amd64 [installed,local] +libwind0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] +libx11-6/now 2:1.6.3-1ubuntu2.1 amd64 [installed,local] +libx11-data/now 2:1.6.3-1ubuntu2.1 all [installed,local] +libx264-148/now 2:0.148.2643+git5c65704-1 amd64 [installed,local] +libx265-79/now 1.9-3 amd64 [installed,local] +libxau6/now 1:1.0.8-1 amd64 [installed,local] +libxcb-render0/now 1.11.1-1ubuntu1 amd64 [installed,local] +libxcb-shm0/now 1.11.1-1ubuntu1 amd64 [installed,local] +libxcb1/now 1.11.1-1ubuntu1 amd64 [installed,local] +libxdmcp6/now 1:1.1.2-1.1 amd64 [installed,local] +libxext6/now 2:1.3.3-1 amd64 [installed,local] +libxml2/now 2.9.3+dfsg1-1ubuntu0.6 amd64 [installed,local] +libxrender1/now 1:0.9.9-0ubuntu1 amd64 [installed,local] +libxvidcore4/now 2:1.3.4-1 amd64 [installed,local] +libzen0v5/now 0.4.37-1 amd64 [installed,local] +libzvbi-common/now 0.2.35-10 all [installed,local] +libzvbi0/now 0.2.35-10 amd64 [installed,local] +locales/now 2.23-0ubuntu10 all [installed,local] +login/now 1:4.2-3.1ubuntu5.3 amd64 [installed,local] +lsb-base/now 9.20160110ubuntu0.2 all [installed,local] +make/now 4.1-6 amd64 [installed,local] +makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1 all [installed,local] +mawk/now 1.3.3-17ubuntu2 amd64 [installed,local] +mediainfo/now 18.12-1 amd64 [installed,local] +mime-support/now 3.59ubuntu1 all [installed,local] +mono-4.0-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mono-devel/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mono-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mono-mcs/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mono-roslyn/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mono-runtime/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +mono-runtime-common/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +mono-runtime-sgen/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] +mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] +mono-xbuild/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] +mount/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +multiarch-support/now 2.23-0ubuntu10 amd64 [installed,local] +ncurses-base/now 6.0+20160213-1ubuntu1 all [installed,local] +ncurses-bin/now 6.0+20160213-1ubuntu1 amd64 [installed,local] +openssl/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] +passwd/now 1:4.2-3.1ubuntu5.3 amd64 [installed,local] +patch/now 2.7.5-1ubuntu0.16.04.1 amd64 [installed,local] +perl/now 5.22.1-9ubuntu0.6 amd64 [installed,local] +perl-base/now 5.22.1-9ubuntu0.6 amd64 [installed,local] +perl-modules-5.22/now 5.22.1-9ubuntu0.6 all [installed,local] +pkg-config/now 0.29.1-0ubuntu1 amd64 [installed,local] +procps/now 2:3.3.10-4ubuntu2.4 amd64 [installed,local] +python/now 2.7.12-1~16.04 amd64 [installed,local] +python-minimal/now 2.7.12-1~16.04 amd64 [installed,local] +python2.7/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] +python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] +readline-common/now 6.3-8ubuntu2 all [installed,local] +sed/now 4.2.2-7 amd64 [installed,local] +sensible-utils/now 0.0.9ubuntu0.16.04.1 all [installed,local] +sqlite3/now 3.11.0-1ubuntu1 amd64 [installed,local] +systemd/now 229-4ubuntu21.15 amd64 [installed,local] +systemd-sysv/now 229-4ubuntu21.15 amd64 [installed,local] +sysv-rc/now 2.88dsf-59.3ubuntu2 all [installed,local] +sysvinit-utils/now 2.88dsf-59.3ubuntu2 amd64 [installed,local] +tar/now 1.28-2.1ubuntu0.1 amd64 [installed,local] +tzdata/now 2018i-0ubuntu0.16.04 all [installed,local] +ubuntu-keyring/now 2012.05.19 all [installed,local] +ucf/now 3.0036 all [installed,local] +unzip/now 6.0-20ubuntu1 amd64 [installed,local] +util-linux/now 2.27.1-6ubuntu3.6 amd64 [installed,local] +xz-utils/now 5.1.1alpha+20120614-2ubuntu2 amd64 [installed,local] +zlib1g/now 1:1.2.8.dfsg-2ubuntu4.1 amd64 [installed,local] From 8042de00a0984b496a9a3e8fb9ae14e30347d77f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Feb 2019 16:24:27 +0000 Subject: [PATCH 010/790] Bot Updating Templated Files --- Jenkinsfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 781b7cbb..8b94c890 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -201,6 +201,15 @@ pipeline { else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} fi + mkdir -p ${TEMPDIR}/gitbook + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation + if [ "${BRANCH_NAME}" = "master" ] && [ ! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md ] || [ "$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" ]; then + cp ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ + cd ${TEMPDIR}/gitbook/docker-documentation/ + git add images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all + fi rm -Rf ${TEMPDIR}''' script{ env.FILES_UPDATED = sh( From d0ca2e110a3487aeb741506b721dc7635342a282 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Feb 2019 16:37:11 +0000 Subject: [PATCH 011/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4d16746a..29ae5547 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ca-certificates/now 20170717~16.04.2 all [installed,local] ca-certificates-mono/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] cli-common/now 0.9+xamarin8+ubuntu1604b1 all [installed,local] coreutils/now 8.25-2ubuntu3~16.04 amd64 [installed,local] -curl/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +curl/now 7.47.0-1ubuntu2.12 amd64 [installed,local] dash/now 0.5.8-2.1ubuntu2 amd64 [installed,local] debconf/now 1.5.58ubuntu1 all [installed,local] debianutils/now 4.7 amd64 [installed,local] @@ -61,9 +61,9 @@ libchromaprint0/now 1.3-1 amd64 [installed,local] libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] libcryptsetup4/now 2:1.6.6-5ubuntu2.1 amd64 [installed,local] libcrystalhd3/now 1:0.0~git20110715.fdd2f19-11build1 amd64 [installed,local] -libcurl3/now 7.47.0-1ubuntu2.11 amd64 [installed,local] -libcurl3-gnutls/now 7.47.0-1ubuntu2.11 amd64 [installed,local] -libcurl4-openssl-dev/now 7.47.0-1ubuntu2.11 amd64 [installed,local] +libcurl3/now 7.47.0-1ubuntu2.12 amd64 [installed,local] +libcurl3-gnutls/now 7.47.0-1ubuntu2.12 amd64 [installed,local] +libcurl4-openssl-dev/now 7.47.0-1ubuntu2.12 amd64 [installed,local] libdb5.3/now 5.3.28-11ubuntu0.1 amd64 [installed,local] libdebconfclient0/now 0.198ubuntu1 amd64 [installed,local] libdevmapper1.02.1/now 2:1.02.110-1ubuntu10 amd64 [installed,local] From 29d9d48433b17a632cddd0ab38d4c97bc27dfeba Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 11 Feb 2019 21:25:21 -0800 Subject: [PATCH 012/790] adding dynamic readme --- README.md | 192 +++++++++++++++++++++++++++++++----------------- readme-vars.yml | 163 +++++++++++----------------------------- 2 files changed, 169 insertions(+), 186 deletions(-) diff --git a/README.md b/README.md index ec813215..a479cc99 100644 --- a/README.md +++ b/README.md @@ -1,116 +1,174 @@ -[linuxserverurl]: https://linuxserver.io -[forumurl]: https://forum.linuxserver.io -[ircurl]: https://www.linuxserver.io/irc/ -[podcasturl]: https://www.linuxserver.io/podcast/ -[appurl]: https://github.com/lidarr/Lidarr -[hub]: https://hub.docker.com/r/linuxserver/lidarr/ +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) +The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] + * regular and timely application updates + * easy user mappings (PGID, PUID) + * custom base image with s6 overlay + * weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth + * regular security updates +Find us at: +* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. +* [IRC](https://irc.linuxserver.io) - on freenode at `#linuxserver.io`. Our primary support channel is Discord. +* [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! +* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). -## Contact information:- +# PSA: Changes are happening -| Type | Address/Details | -| :---: | --- | -| Discord | [Discord](https://discord.gg/YWrKVTn) | -| Forum | [Linuserver.io forum][forumurl] | -| IRC | freenode at `#linuxserver.io` more information at:- [IRC][ircurl] -| Podcast | Covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! [Linuxserver.io Podcast][podcasturl] | +From August 2018 onwards, Linuxserver are in the midst of switching to a new CI platform which will enable us to build and release multiple architectures under a single repo. To this end, existing images for `arm64` and `armhf` builds are being deprecated. They are replaced by a manifest file in each container which automatically pulls the correct image for your architecture. You'll also be able to pull based on a specific architecture tag. +TLDR: Multi-arch support is changing from multiple repos to one repo per container image. -The [LinuxServer.io][linuxserverurl] team brings you another image release featuring :- +# [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) +[![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn) +[![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") +[![](https://images.microbadger.com/badges/image/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") +![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg) +![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg) +[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-lidarr/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/) +[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) - + regular and timely application updates - + easy user mappings - + custom base image with s6 overlay - + weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth - + security updates +[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. -# linuxserver/lidarr -[![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-lidarr)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-lidarr/) +[![lidarr](https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png)](https://github.com/lidarr/Lidarr) -Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. +## Supported Architectures -[![lidarr](https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png)][appurl] +Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list). -  +Simply pulling `linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. + +The architectures supported by this image are: + +| Architecture | Tag | +| :----: | --- | +| x86-64 | amd64-latest | +| arm64 | arm64v8-latest | +| armhf | arm32v6-latest | + +## Version Tags + +This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them. + +| Tag | Description | +| :----: | --- | +| latest | Stable Lidarr releases. | +| preview | Nightly Lidarr Releases. | ## Usage +Here are some example snippets to help you get started creating a container. + +### docker + ``` docker create \ --name=lidarr \ - -v :/config \ - -v :/downloads \ - -v :/music \ - -e PGID= -e PUID= \ + -e PUID=1001 \ + -e PGID=1001 \ + -e TZ=Europe/London \ -p 8686:8686 \ - lsiodev/lidarr-preview + -v :/config \ + -v :/music \ + -v :/downloads \ + --restart unless-stopped \ + linuxserver/lidarr ``` -  -## Parameters +### docker-compose -The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. -For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. -So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 -http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80. +Compatible with docker-compose v2 schemas. +``` +--- +version: "2" +services: + lidarr: + image: linuxserver/lidarr + container_name: lidarr + environment: + - PUID=1001 + - PGID=1001 + - TZ=Europe/London + volumes: + - :/config + - :/music + - :/downloads + ports: + - 8686:8686 + mem_limit: 4096m + restart: unless-stopped +``` +## Parameters -| Parameter | Function | -| :---: | --- | -| `-p 8686` | the port(s) | -| `-v /config` | Contains your config files| -| `-v /downloads` | Path to your download folder for music | -| `-v /music` | Path to your music library | -| `-e PGID` | for GroupID, see below for explanation | -| `-e PUID` | for UserID, see below for explanation | +Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. -  +| Parameter | Function | +| :----: | --- | +| `-p 8686` | Application WebUI | +| `-e PUID=1001` | for UserID - see below for explanation | +| `-e PGID=1001` | for GroupID - see below for explanation | +| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | +| `-v /config` | Configuration files for Lidarr. | +| `-v /music` | Music files. | +| `-v /downloads` | Path to your download folder for music. | ## User / Group Identifiers -Sometimes when using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. +When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. -Ensure any volume directories on the host are owned by the same user you specify and it will "just work" ™. +Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below: ``` - $ id + $ id username uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) ``` +   +## Application Setup -## Setting up the application +Access the webui at `:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). -`IMPORTANT: This is the dev preview version and is not meant for end users` -Access the webui at `:8686`, for more information check out [Lidarr][appurl]. -  +## Support Info -## Container access and information. +* Shell access whilst the container is running: `docker exec -it lidarr /bin/bash` +* To monitor the logs of the container in realtime: `docker logs -f lidarr` +* container version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` +* image version number + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` -| Function | Command | -| :--- | :--- | -| Shell access (live container) | `docker exec -it lidarr /bin/bash` | -| Realtime container logs | `docker logs -f lidarr` | -| Container version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` | -| Image version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` | +## Updating Info -  +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. + +Below are the instructions for updating containers: + +### Via Docker Run/Create +* Update the image: `docker pull linuxserver/lidarr` +* Stop the running container: `docker stop lidarr` +* Delete the container: `docker rm lidarr` +* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) +* Start the new container: `docker start lidarr` +* You can also remove the old dangling images: `docker image prune` + +### Via Docker Compose +* Update the image: `docker-compose pull linuxserver/lidarr` +* Let compose update containers as necessary: `docker-compose up -d` +* You can also remove the old dangling images: `docker image prune` ## Versions -| Date | Changes | -| :---: | --- | -| 26.01.19 | Add pipeline logic and multi arch, switching to tagged release from auto updates | -| 22.04.18 | Switch this branch to the nightly versions, auto-updating on container start | -| 17.03.18 | Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. | -| 27.02.18 | Use json to query for new version. | -| 23.02.18 | Initial Release. | +* **26.01.19:** - Add pipeline logic and multi arch. +* **22.04.18:** - Switch to beta builds. +* **17.03.18:** - Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. +* **27.02.18:** - Use json to query for new version. +* **23.02.18:** - Initial Release. diff --git a/readme-vars.yml b/readme-vars.yml index 122c6c58..69aa06e2 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -2,122 +2,47 @@ # project information project_name: lidarr -full_custom_readme: | - {% raw -%} - [linuxserverurl]: https://linuxserver.io - [forumurl]: https://forum.linuxserver.io - [ircurl]: https://www.linuxserver.io/irc/ - [podcasturl]: https://www.linuxserver.io/podcast/ - [appurl]: https://github.com/lidarr/Lidarr - [hub]: https://hub.docker.com/r/linuxserver/lidarr/ - - - [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png?v=4&s=4000)][linuxserverurl] - - - ## Contact information:- - - | Type | Address/Details | - | :---: | --- | - | Discord | [Discord](https://discord.gg/YWrKVTn) | - | Forum | [Linuserver.io forum][forumurl] | - | IRC | freenode at `#linuxserver.io` more information at:- [IRC][ircurl] - | Podcast | Covers everything to do with getting the most from your Linux Server plus a focus on all things Docker and containerisation! [Linuxserver.io Podcast][podcasturl] | - - - The [LinuxServer.io][linuxserverurl] team brings you another image release featuring :- - - + regular and timely application updates - + easy user mappings - + custom base image with s6 overlay - + weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth - + security updates - - # linuxserver/lidarr - [![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com")[![](https://images.microbadger.com/badges/image/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own image badge on microbadger.com")[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg)][hub][![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg)][hub][![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Builders/x86-64/x86-64-lidarr)](https://ci.linuxserver.io/job/Docker-Builders/job/x86-64/job/x86-64-lidarr/) - - Lidarr is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. - - [![lidarr](https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png)][appurl] - -   - - ## Usage - - ``` - docker create \ - --name=lidarr \ - -v :/config \ - -v :/downloads \ - -v :/music \ - -e PGID= -e PUID= \ - -p 8686:8686 \ - lsiodev/lidarr-preview - ``` - -   - - ## Parameters - - The parameters are split into two halves, separated by a colon, the left hand side representing the host and the right the container side. - For example with a port -p external:internal - what this shows is the port mapping from internal to external of the container. - So -p 8080:80 would expose port 80 from inside the container to be accessible from the host's IP on port 8080 - http://192.168.x.x:8080 would show you what's running INSIDE the container on port 80. - - - - | Parameter | Function | - | :---: | --- | - | `-p 8686` | the port(s) | - | `-v /config` | Contains your config files| - | `-v /downloads` | Path to your download folder for music | - | `-v /music` | Path to your music library | - | `-e PGID` | for GroupID, see below for explanation | - | `-e PUID` | for UserID, see below for explanation | - -   - - ## User / Group Identifiers - - Sometimes when using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. - - Ensure any volume directories on the host are owned by the same user you specify and it will "just work" ™. - - In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below: - - ``` - $ id - uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) - ``` - -   - - ## Setting up the application - - `IMPORTANT: This is the dev preview version and is not meant for end users` - - Access the webui at `:8686`, for more information check out [Lidarr][appurl]. - -   - - ## Container access and information. - - | Function | Command | - | :--- | :--- | - | Shell access (live container) | `docker exec -it lidarr /bin/bash` | - | Realtime container logs | `docker logs -f lidarr` | - | Container version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` | - | Image version number | `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` | - -   - - ## Versions - - | Date | Changes | - | :---: | --- | - | 26.01.19 | Add pipeline logic and multi arch, switching to tagged release from auto updates | - | 22.04.18 | Switch this branch to the nightly versions, auto-updating on container start | - | 17.03.18 | Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. | - | 27.02.18 | Use json to query for new version. | - | 23.02.18 | Initial Release. | - {%- endraw %} +project_url: "https://github.com/lidarr/Lidarr" +project_logo: "https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png" +project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available." +project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" + +# supported architectures +available_architectures: + - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} + - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} + - { arch: "{{ arch_armhf }}", tag: "arm32v6-latest"} + +# development version +development_versions: true +development_versions_items: + - { tag: "latest", desc: "Stable Lidarr releases." } + - { tag: "preview", desc: "Nightly Lidarr Releases." } + +# container parameters +common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional' +param_container_name: "{{ project_name }}" +param_usage_include_env: true +param_env_vars: + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } +param_usage_include_vols: true +param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Configuration files for Lidarr." } + - { vol_path: "/music", vol_host_path: "", desc: "Music files." } + - { vol_path: "/downloads", vol_host_path: "", desc: "Path to your download folder for music." } +param_usage_include_ports: true +param_ports: + - { external_port: "8686", internal_port: "8686", port_desc: "Application WebUI" } + +# application setup block +app_setup_block_enabled: true +app_setup_block: | + Access the webui at `:8686`, for more information check out [Lidarr]({{ project_url }}). + +# changelog +changelogs: + - { date: "26.01.19:", desc: "Add pipeline logic and multi arch." } + - { date: "22.04.18:", desc: "Switch to beta builds." } + - { date: "17.03.18:", desc: "Add ENV XDG_CONFIG_HOME=\"/config/xdg\" to Dockerfile for signalr fix." } + - { date: "27.02.18:", desc: "Use json to query for new version." } + - { date: "23.02.18:", desc: "Initial Release." } From 05d3006a0b108f567a10922410679934bb0573b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Feb 2019 11:31:47 -0500 Subject: [PATCH 013/790] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 29ae5547..525bd190 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,10 +2,10 @@ adduser/now 3.113+nmu3ubuntu4 all [installed,local] apt/now 1.2.29ubuntu0.1 amd64 [installed,local] apt-transport-https/now 1.2.29ubuntu0.1 amd64 [installed,local] apt-utils/now 1.2.29ubuntu0.1 amd64 [installed,local] -base-files/now 9.4ubuntu4.7 amd64 [installed,local] +base-files/now 9.4ubuntu4.8 amd64 [installed,local] base-passwd/now 3.5.39 amd64 [installed,local] bash/now 4.3-14ubuntu1.2 amd64 [installed,local] -binutils/now 2.26.1-1ubuntu1~16.04.7 amd64 [installed,local] +binutils/now 2.26.1-1ubuntu1~16.04.8 amd64 [installed,local] bsdutils/now 1:2.27.1-6ubuntu3.6 amd64 [installed,local] bzip2/now 1.0.6-8 amd64 [installed,local] ca-certificates/now 20170717~16.04.2 all [installed,local] @@ -51,8 +51,8 @@ libavutil-ffmpeg54/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] libblkid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] libbluray1/now 1:0.9.2-2 amd64 [installed,local] libbz2-1.0/now 1.0.6-8 amd64 [installed,local] -libc-bin/now 2.23-0ubuntu10 amd64 [installed,local] -libc6/now 2.23-0ubuntu10 amd64 [installed,local] +libc-bin/now 2.23-0ubuntu11 amd64 [installed,local] +libc6/now 2.23-0ubuntu11 amd64 [installed,local] libcairo2/now 1.14.6-1 amd64 [installed,local] libcap2/now 1:2.24-12 amd64 [installed,local] libcap2-bin/now 1:2.24-12 amd64 [installed,local] @@ -100,7 +100,7 @@ libjpeg-turbo8/now 1.4.2-0ubuntu3.1 amd64 [installed,local] libjpeg8/now 8c-2ubuntu8 amd64 [installed,local] libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] libkeyutils1/now 1.5.9-8ubuntu1 amd64 [installed,local] -libkmod2/now 22-1ubuntu5.1 amd64 [installed,local] +libkmod2/now 22-1ubuntu5.2 amd64 [installed,local] libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] @@ -307,13 +307,13 @@ libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 amd64 [installed,local] libssl1.0.0/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] libstdc++6/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] -libsystemd0/now 229-4ubuntu21.15 amd64 [installed,local] +libsystemd0/now 229-4ubuntu21.16 amd64 [installed,local] libtasn1-6/now 4.7-3ubuntu0.16.04.3 amd64 [installed,local] libtheora0/now 1.1.1+dfsg.1-8 amd64 [installed,local] libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] libtinfo5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] libtwolame0/now 0.3.13-1.2 amd64 [installed,local] -libudev1/now 229-4ubuntu21.15 amd64 [installed,local] +libudev1/now 229-4ubuntu21.16 amd64 [installed,local] libusb-0.1-4/now 2:0.1.12-28 amd64 [installed,local] libustr-1.0-1/now 1.0.4-5 amd64 [installed,local] libuuid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] @@ -340,7 +340,7 @@ libxvidcore4/now 2:1.3.4-1 amd64 [installed,local] libzen0v5/now 0.4.37-1 amd64 [installed,local] libzvbi-common/now 0.2.35-10 all [installed,local] libzvbi0/now 0.2.35-10 amd64 [installed,local] -locales/now 2.23-0ubuntu10 all [installed,local] +locales/now 2.23-0ubuntu11 all [installed,local] login/now 1:4.2-3.1ubuntu5.3 amd64 [installed,local] lsb-base/now 9.20160110ubuntu0.2 all [installed,local] make/now 4.1-6 amd64 [installed,local] @@ -359,7 +359,7 @@ mono-runtime-sgen/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] mono-xbuild/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] mount/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -multiarch-support/now 2.23-0ubuntu10 amd64 [installed,local] +multiarch-support/now 2.23-0ubuntu11 amd64 [installed,local] ncurses-base/now 6.0+20160213-1ubuntu1 all [installed,local] ncurses-bin/now 6.0+20160213-1ubuntu1 amd64 [installed,local] openssl/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] @@ -378,8 +378,8 @@ readline-common/now 6.3-8ubuntu2 all [installed,local] sed/now 4.2.2-7 amd64 [installed,local] sensible-utils/now 0.0.9ubuntu0.16.04.1 all [installed,local] sqlite3/now 3.11.0-1ubuntu1 amd64 [installed,local] -systemd/now 229-4ubuntu21.15 amd64 [installed,local] -systemd-sysv/now 229-4ubuntu21.15 amd64 [installed,local] +systemd/now 229-4ubuntu21.16 amd64 [installed,local] +systemd-sysv/now 229-4ubuntu21.16 amd64 [installed,local] sysv-rc/now 2.88dsf-59.3ubuntu2 all [installed,local] sysvinit-utils/now 2.88dsf-59.3ubuntu2 amd64 [installed,local] tar/now 1.28-2.1ubuntu0.1 amd64 [installed,local] From 35a6a50f3e94476405e39388470bd777200ea023 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 27 Feb 2019 22:51:54 -0500 Subject: [PATCH 014/790] Bot Updating Templated Files --- README.md | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/README.md b/README.md index a479cc99..a80fd713 100644 --- a/README.md +++ b/README.md @@ -14,12 +14,6 @@ Find us at: * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). -# PSA: Changes are happening - -From August 2018 onwards, Linuxserver are in the midst of switching to a new CI platform which will enable us to build and release multiple architectures under a single repo. To this end, existing images for `arm64` and `armhf` builds are being deprecated. They are replaced by a manifest file in each container which automatically pulls the correct image for your architecture. You'll also be able to pull based on a specific architecture tag. - -TLDR: Multi-arch support is changing from multiple repos to one repo per container image. - # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) [![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn) [![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") @@ -35,7 +29,7 @@ TLDR: Multi-arch support is changing from multiple repos to one repo per contain ## Supported Architectures -Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list). +Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). Simply pulling `linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From e7d6b2d4cab32fa802fcfa2f41fb98c82b28b516 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Mar 2019 22:51:53 +0000 Subject: [PATCH 015/790] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++++++++- README.md | 32 +++++++++++++++++++++----------- 2 files changed, 53 insertions(+), 12 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8b94c890..1e22b0d7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -40,7 +40,7 @@ pipeline { script: '''curl -s https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases | jq -r 'first(.[] | select(.prerelease == true)) | .tag_name' ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( - script: '''git log -1 --pretty=%B | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', + script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', returnStdout: true).trim() env.GITHUB_DATE = sh( script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', @@ -284,6 +284,9 @@ pipeline { --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v6-${META_TAG} lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" sh "docker push lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" + sh '''docker rmi \ + ${IMAGE}:arm32v6-${META_TAG} \ + lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ''' } } } @@ -310,6 +313,9 @@ pipeline { --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + sh '''docker rmi \ + ${IMAGE}:arm64v8-${META_TAG} \ + lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ''' } } } @@ -471,6 +477,10 @@ pipeline { sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:preview" sh "docker push ${IMAGE}:preview" sh "docker push ${IMAGE}:${META_TAG}" + sh '''docker rmi \ + ${IMAGE}:${META_TAG} \ + ${IMAGE}:preview ''' + } } } @@ -518,6 +528,15 @@ pipeline { sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8" sh "docker manifest push --purge ${IMAGE}:preview" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" + sh '''docker rmi \ + ${IMAGE}:amd64-${META_TAG} \ + ${IMAGE}:amd64-preview \ + ${IMAGE}:arm32v6-${META_TAG} \ + ${IMAGE}:arm32v6-preview \ + ${IMAGE}:arm64v8-${META_TAG} \ + ${IMAGE}:arm64v8-preview \ + lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} \ + lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ''' } } } @@ -578,6 +597,18 @@ pipeline { } } } + // If this is a Pull request send the CI link as a comment on it + stage('Pull Request Comment') { + when { + not {environment name: 'CHANGE_ID', value: ''} + environment name: 'CI', value: 'true' + environment name: 'EXIT_STATUS', value: '' + } + steps { + sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \ + -d '{"body": "I am a bot, here are the test results for this PR '${CI_URL}'"}' ''' + } + } } /* ###################### Send status to Discord diff --git a/README.md b/README.md index a80fd713..6097b27d 100644 --- a/README.md +++ b/README.md @@ -59,8 +59,8 @@ Here are some example snippets to help you get started creating a container. ``` docker create \ --name=lidarr \ - -e PUID=1001 \ - -e PGID=1001 \ + -e PUID=1000 \ + -e PGID=1000 \ -e TZ=Europe/London \ -p 8686:8686 \ -v :/config \ @@ -83,8 +83,8 @@ services: image: linuxserver/lidarr container_name: lidarr environment: - - PUID=1001 - - PGID=1001 + - PUID=1000 + - PGID=1000 - TZ=Europe/London volumes: - :/config @@ -92,7 +92,6 @@ services: - :/downloads ports: - 8686:8686 - mem_limit: 4096m restart: unless-stopped ``` @@ -103,8 +102,8 @@ Container images are configured using parameters passed at runtime (such as thos | Parameter | Function | | :----: | --- | | `-p 8686` | Application WebUI | -| `-e PUID=1001` | for UserID - see below for explanation | -| `-e PGID=1001` | for GroupID - see below for explanation | +| `-e PUID=1000` | for UserID - see below for explanation | +| `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | | `-v /config` | Configuration files for Lidarr. | | `-v /music` | Music files. | @@ -116,11 +115,11 @@ When using volumes (`-v` flags) permissions issues can arise between the host OS Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. -In this instance `PUID=1001` and `PGID=1001`, to find yours use `id user` as below: +In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below: ``` $ id username - uid=1001(dockeruser) gid=1001(dockergroup) groups=1001(dockergroup) + uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) ``` @@ -154,9 +153,20 @@ Below are the instructions for updating containers: * Start the new container: `docker start lidarr` * You can also remove the old dangling images: `docker image prune` +### Via Taisun auto-updater (especially useful if you don't remember the original parameters) +* Pull the latest image at its tag and replace it with the same env variables in one shot: + ``` + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock taisun/updater \ + --oneshot lidarr + ``` +* You can also remove the old dangling images: `docker image prune` + ### Via Docker Compose -* Update the image: `docker-compose pull linuxserver/lidarr` -* Let compose update containers as necessary: `docker-compose up -d` +* Update all images: `docker-compose pull` + * or update a single image: `docker-compose pull lidarr` +* Let compose update all containers as necessary: `docker-compose up -d` + * or update a single container: `docker-compose up -d lidarr` * You can also remove the old dangling images: `docker image prune` ## Versions From 17cf8b6081e1d47130f25be2e3dfda3a07da8851 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Mar 2019 02:51:44 +0000 Subject: [PATCH 016/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1e22b0d7..4e5afc1b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -345,7 +345,7 @@ pipeline { chmod 777 /tmp/package_versions.txt' elif [ "${DIST_IMAGE}" == "ubuntu" ]; then docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apt list -qq --installed > /tmp/package_versions.txt && \ + apt list -qq --installed | cut -d" " -f1-2 > /tmp/package_versions.txt && \ chmod 777 /tmp/package_versions.txt' fi NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) From 21f32466e7a98091c902bdb362671258513c50ab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 7 Mar 2019 02:58:17 +0000 Subject: [PATCH 017/790] Bot Updating Package Versions --- package_versions.txt | 784 +++++++++++++++++++++---------------------- 1 file changed, 392 insertions(+), 392 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 525bd190..2e8586bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,392 +1,392 @@ -adduser/now 3.113+nmu3ubuntu4 all [installed,local] -apt/now 1.2.29ubuntu0.1 amd64 [installed,local] -apt-transport-https/now 1.2.29ubuntu0.1 amd64 [installed,local] -apt-utils/now 1.2.29ubuntu0.1 amd64 [installed,local] -base-files/now 9.4ubuntu4.8 amd64 [installed,local] -base-passwd/now 3.5.39 amd64 [installed,local] -bash/now 4.3-14ubuntu1.2 amd64 [installed,local] -binutils/now 2.26.1-1ubuntu1~16.04.8 amd64 [installed,local] -bsdutils/now 1:2.27.1-6ubuntu3.6 amd64 [installed,local] -bzip2/now 1.0.6-8 amd64 [installed,local] -ca-certificates/now 20170717~16.04.2 all [installed,local] -ca-certificates-mono/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -cli-common/now 0.9+xamarin8+ubuntu1604b1 all [installed,local] -coreutils/now 8.25-2ubuntu3~16.04 amd64 [installed,local] -curl/now 7.47.0-1ubuntu2.12 amd64 [installed,local] -dash/now 0.5.8-2.1ubuntu2 amd64 [installed,local] -debconf/now 1.5.58ubuntu1 all [installed,local] -debianutils/now 4.7 amd64 [installed,local] -diffutils/now 1:3.3-3 amd64 [installed,local] -dpkg/now 1.18.4ubuntu1.5 amd64 [installed,local] -dpkg-dev/now 1.18.4ubuntu1.5 all [installed,local] -e2fslibs/now 1.42.13-1ubuntu1 amd64 [installed,local] -e2fsprogs/now 1.42.13-1ubuntu1 amd64 [installed,local] -findutils/now 4.6.0+git+20160126-2 amd64 [installed,local] -fontconfig-config/now 2.11.94-0ubuntu1.1 all [installed,local] -fonts-dejavu-core/now 2.35-1 all [installed,local] -gcc-5-base/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] -gcc-6-base/now 6.0.1-0ubuntu1 amd64 [installed,local] -gnupg/now 1.4.20-1ubuntu3.3 amd64 [installed,local] -gpgv/now 1.4.20-1ubuntu3.3 amd64 [installed,local] -grep/now 2.25-1~16.04.1 amd64 [installed,local] -gzip/now 1.6-4ubuntu1 amd64 [installed,local] -hostname/now 3.16ubuntu2 amd64 [installed,local] -init/now 1.29ubuntu4 amd64 [installed,local] -init-system-helpers/now 1.29ubuntu4 all [installed,local] -initscripts/now 2.88dsf-59.3ubuntu2 amd64 [installed,local] -insserv/now 1.14.0-5ubuntu3 amd64 [installed,local] -jq/now 1.5+dfsg-1ubuntu0.1 amd64 [installed,local] -krb5-locales/now 1.13.2+dfsg-5ubuntu2.1 all [installed,local] -libacl1/now 2.2.52-3 amd64 [installed,local] -libapparmor1/now 2.10.95-0ubuntu2.10 amd64 [installed,local] -libapt-inst2.0/now 1.2.29ubuntu0.1 amd64 [installed,local] -libapt-pkg5.0/now 1.2.29ubuntu0.1 amd64 [installed,local] -libasn1-8-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libattr1/now 1:2.4.47-2 amd64 [installed,local] -libaudit-common/now 1:2.4.5-1ubuntu2.1 all [installed,local] -libaudit1/now 1:2.4.5-1ubuntu2.1 amd64 [installed,local] -libavcodec-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] -libavformat-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] -libavutil-ffmpeg54/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] -libblkid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libbluray1/now 1:0.9.2-2 amd64 [installed,local] -libbz2-1.0/now 1.0.6-8 amd64 [installed,local] -libc-bin/now 2.23-0ubuntu11 amd64 [installed,local] -libc6/now 2.23-0ubuntu11 amd64 [installed,local] -libcairo2/now 1.14.6-1 amd64 [installed,local] -libcap2/now 1:2.24-12 amd64 [installed,local] -libcap2-bin/now 1:2.24-12 amd64 [installed,local] -libchromaprint-tools/now 1.3-1 amd64 [installed,local] -libchromaprint0/now 1.3-1 amd64 [installed,local] -libcomerr2/now 1.42.13-1ubuntu1 amd64 [installed,local] -libcryptsetup4/now 2:1.6.6-5ubuntu2.1 amd64 [installed,local] -libcrystalhd3/now 1:0.0~git20110715.fdd2f19-11build1 amd64 [installed,local] -libcurl3/now 7.47.0-1ubuntu2.12 amd64 [installed,local] -libcurl3-gnutls/now 7.47.0-1ubuntu2.12 amd64 [installed,local] -libcurl4-openssl-dev/now 7.47.0-1ubuntu2.12 amd64 [installed,local] -libdb5.3/now 5.3.28-11ubuntu0.1 amd64 [installed,local] -libdebconfclient0/now 0.198ubuntu1 amd64 [installed,local] -libdevmapper1.02.1/now 2:1.02.110-1ubuntu10 amd64 [installed,local] -libdpkg-perl/now 1.18.4ubuntu1.5 all [installed,local] -libexif12/now 0.6.21-2 amd64 [installed,local] -libexpat1/now 2.1.0-7ubuntu0.16.04.3 amd64 [installed,local] -libfdisk1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libffi6/now 3.2.1-4 amd64 [installed,local] -libfontconfig1/now 2.11.94-0ubuntu1.1 amd64 [installed,local] -libfreetype6/now 2.6.1-0.1ubuntu2.3 amd64 [installed,local] -libgcc1/now 1:6.0.1-0ubuntu1 amd64 [installed,local] -libgcrypt20/now 1.6.5-2ubuntu0.5 amd64 [installed,local] -libgdbm3/now 1.8.3-13.1 amd64 [installed,local] -libgdiplus/now 5.6-0xamarin5+ubuntu1604b1 amd64 [installed,local] -libgif7/now 5.1.4-0.3~16.04 amd64 [installed,local] -libglib2.0-0/now 2.48.2-0ubuntu4.1 amd64 [installed,local] -libgme0/now 0.6.0-3ubuntu0.16.04.1 amd64 [installed,local] -libgmp10/now 2:6.1.0+dfsg-2 amd64 [installed,local] -libgnutls30/now 3.4.10-4ubuntu1.4 amd64 [installed,local] -libgomp1/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] -libgpg-error0/now 1.21-2ubuntu1 amd64 [installed,local] -libgsm1/now 1.0.13-4 amd64 [installed,local] -libgssapi-krb5-2/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] -libgssapi3-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libhcrypto4-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libheimbase1-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libheimntlm0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libhogweed4/now 3.2-1ubuntu0.16.04.1 amd64 [installed,local] -libhx509-5-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libicu55/now 55.1-7ubuntu0.4 amd64 [installed,local] -libidn11/now 1.32-3ubuntu1.2 amd64 [installed,local] -libjbig0/now 2.1-3.1 amd64 [installed,local] -libjpeg-turbo8/now 1.4.2-0ubuntu3.1 amd64 [installed,local] -libjpeg8/now 8c-2ubuntu8 amd64 [installed,local] -libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] -libkeyutils1/now 1.5.9-8ubuntu1 amd64 [installed,local] -libkmod2/now 22-1ubuntu5.2 amd64 [installed,local] -libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] -libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1 amd64 [installed,local] -libldap-2.4-2/now 2.4.42+dfsg-2ubuntu3.4 amd64 [installed,local] -liblz4-1/now 0.0~r131-2ubuntu2 amd64 [installed,local] -liblzma5/now 5.1.1alpha+20120614-2ubuntu2 amd64 [installed,local] -libmediainfo0v5/now 18.12-1 amd64 [installed,local] -libmms0/now 0.6.4-1 amd64 [installed,local] -libmodplug1/now 1:0.8.8.5-2 amd64 [installed,local] -libmono-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -libmono-accessibility4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-cairo4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-cecil-private-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-cil-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-codecontracts4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-corlib4.5-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-cscompmgd0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-csharp4.0c-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-custommarshalers4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-data-tds4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-db2-1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-debugger-soft4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n-cjk4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n-mideast4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n-other4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n-rare4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n-west4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n4.0-all/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-i18n4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-messaging-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-build-engine4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-build-framework4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-build4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-csharp4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-visualc10.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-oracle4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-parallel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-peapi4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-posix4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-relaxng4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-sharpzip4.84-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-simd4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-smdiagnostics0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-sqlite4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-componentmodel-composition4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-configuration-install4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-configuration4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-core4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data-datasetextensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data-entity4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data-services-client4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-deployment4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-drawing-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-drawing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-dynamic4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-enterpriseservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-identitymodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-io-compression4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-json-microsoft4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-json4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-ldap-protocols4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-net-http-formatting4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-net-http-webrequest4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-net-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-net4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-numerics-vectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-numerics4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-core2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-debugger2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-experimental2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-interfaces2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-linq2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-platformservices2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-providers2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-reflection-context4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-runtime-caching4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-runtime-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel-activation4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel-internals0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-servicemodel4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-serviceprocess4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-transactions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-abstractions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-applicationservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-dynamicdata4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-extensions-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-extensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-http-selfhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-http-webhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-mobile4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-mvc3.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-regularexpressions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-webpages-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web-webpages2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-windows-forms4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-windows4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-workflow-activities4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-workflow-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-xaml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-xml-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-xml-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system-xml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-system4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-tasklets4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-webbrowser4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-webmatrix-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-windowsbase4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmono-xbuild-tasks4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -libmonosgen-2.0-1/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -libmonosgen-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -libmount1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libmp3lame0/now 3.99.5+repack1-9build1 amd64 [installed,local] -libncurses5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] -libncursesw5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] -libnettle6/now 3.2-1ubuntu0.16.04.1 amd64 [installed,local] -libnuma1/now 2.0.11-1ubuntu1.1 amd64 [installed,local] -libnunit-cil-dev/now 2.6.4+dfsg-1 all [installed,local] -libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libnunit-core2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libnunit-util2.6.3-cil/now 2.6.4+dfsg-1 all [installed,local] -libogg0/now 1.3.2-1 amd64 [installed,local] -libonig2/now 5.9.6-1ubuntu0.1 amd64 [installed,local] -libopenjpeg5/now 1:1.5.2-3.1 amd64 [installed,local] -libopus0/now 1.1.2-1ubuntu1 amd64 [installed,local] -liborc-0.4-0/now 1:0.4.25-1 amd64 [installed,local] -libp11-kit0/now 0.23.2-5~ubuntu16.04.1 amd64 [installed,local] -libpam-modules/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] -libpam-modules-bin/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] -libpam-runtime/now 1.1.8-3.2ubuntu2.1 all [installed,local] -libpam0g/now 1.1.8-3.2ubuntu2.1 amd64 [installed,local] -libpcre3/now 2:8.38-3.1 amd64 [installed,local] -libperl5.22/now 5.22.1-9ubuntu0.6 amd64 [installed,local] -libpixman-1-0/now 0.33.6-1 amd64 [installed,local] -libpng12-0/now 1.2.54-1ubuntu1.1 amd64 [installed,local] -libprocps4/now 2:3.3.10-4ubuntu2.4 amd64 [installed,local] -libpython-stdlib/now 2.7.12-1~16.04 amd64 [installed,local] -libpython2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] -libpython2.7-stdlib/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] -libreadline6/now 6.3-8ubuntu2 amd64 [installed,local] -libroken18-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -librtmp1/now 2.4+20151223.gitfa8646d-1ubuntu0.1 amd64 [installed,local] -libsasl2-2/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] -libsasl2-modules/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] -libsasl2-modules-db/now 2.1.26.dfsg1-14ubuntu0.1 amd64 [installed,local] -libschroedinger-1.0-0/now 1.0.11-2.1build1 amd64 [installed,local] -libseccomp2/now 2.3.1-2.1ubuntu2~16.04.1 amd64 [installed,local] -libselinux1/now 2.4-3build2 amd64 [installed,local] -libsemanage-common/now 2.3-1build3 all [installed,local] -libsemanage1/now 2.3-1build3 amd64 [installed,local] -libsepol1/now 2.4-2 amd64 [installed,local] -libshine3/now 3.1.0-4 amd64 [installed,local] -libsmartcols1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libsnappy1v5/now 1.1.3-2 amd64 [installed,local] -libsoxr0/now 0.1.2-1 amd64 [installed,local] -libspeex1/now 1.2~rc1.2-1ubuntu1 amd64 [installed,local] -libsqlite3-0/now 3.11.0-1ubuntu1 amd64 [installed,local] -libss2/now 1.42.13-1ubuntu1 amd64 [installed,local] -libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 amd64 [installed,local] -libssl1.0.0/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] -libstdc++6/now 5.4.0-6ubuntu1~16.04.11 amd64 [installed,local] -libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 amd64 [installed,local] -libsystemd0/now 229-4ubuntu21.16 amd64 [installed,local] -libtasn1-6/now 4.7-3ubuntu0.16.04.3 amd64 [installed,local] -libtheora0/now 1.1.1+dfsg.1-8 amd64 [installed,local] -libtiff5/now 4.0.6-1ubuntu0.5 amd64 [installed,local] -libtinfo5/now 6.0+20160213-1ubuntu1 amd64 [installed,local] -libtwolame0/now 0.3.13-1.2 amd64 [installed,local] -libudev1/now 229-4ubuntu21.16 amd64 [installed,local] -libusb-0.1-4/now 2:0.1.12-28 amd64 [installed,local] -libustr-1.0-1/now 1.0.4-5 amd64 [installed,local] -libuuid1/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -libva1/now 1.7.0-1ubuntu0.1 amd64 [installed,local] -libvorbis0a/now 1.3.5-3ubuntu0.2 amd64 [installed,local] -libvorbisenc2/now 1.3.5-3ubuntu0.2 amd64 [installed,local] -libvpx3/now 1.5.0-2ubuntu1 amd64 [installed,local] -libwavpack1/now 4.75.2-2ubuntu0.2 amd64 [installed,local] -libwebp5/now 0.4.4-1 amd64 [installed,local] -libwind0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 amd64 [installed,local] -libx11-6/now 2:1.6.3-1ubuntu2.1 amd64 [installed,local] -libx11-data/now 2:1.6.3-1ubuntu2.1 all [installed,local] -libx264-148/now 2:0.148.2643+git5c65704-1 amd64 [installed,local] -libx265-79/now 1.9-3 amd64 [installed,local] -libxau6/now 1:1.0.8-1 amd64 [installed,local] -libxcb-render0/now 1.11.1-1ubuntu1 amd64 [installed,local] -libxcb-shm0/now 1.11.1-1ubuntu1 amd64 [installed,local] -libxcb1/now 1.11.1-1ubuntu1 amd64 [installed,local] -libxdmcp6/now 1:1.1.2-1.1 amd64 [installed,local] -libxext6/now 2:1.3.3-1 amd64 [installed,local] -libxml2/now 2.9.3+dfsg1-1ubuntu0.6 amd64 [installed,local] -libxrender1/now 1:0.9.9-0ubuntu1 amd64 [installed,local] -libxvidcore4/now 2:1.3.4-1 amd64 [installed,local] -libzen0v5/now 0.4.37-1 amd64 [installed,local] -libzvbi-common/now 0.2.35-10 all [installed,local] -libzvbi0/now 0.2.35-10 amd64 [installed,local] -locales/now 2.23-0ubuntu11 all [installed,local] -login/now 1:4.2-3.1ubuntu5.3 amd64 [installed,local] -lsb-base/now 9.20160110ubuntu0.2 all [installed,local] -make/now 4.1-6 amd64 [installed,local] -makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1 all [installed,local] -mawk/now 1.3.3-17ubuntu2 amd64 [installed,local] -mediainfo/now 18.12-1 amd64 [installed,local] -mime-support/now 3.59ubuntu1 all [installed,local] -mono-4.0-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mono-devel/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mono-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mono-mcs/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mono-roslyn/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mono-runtime/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -mono-runtime-common/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -mono-runtime-sgen/now 5.18.0.240-0xamarin1+ubuntu1604b1 amd64 [installed,local] -mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 all [installed,local] -mono-xbuild/now 5.18.0.240-0xamarin1+ubuntu1604b1 all [installed,local] -mount/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -multiarch-support/now 2.23-0ubuntu11 amd64 [installed,local] -ncurses-base/now 6.0+20160213-1ubuntu1 all [installed,local] -ncurses-bin/now 6.0+20160213-1ubuntu1 amd64 [installed,local] -openssl/now 1.0.2g-1ubuntu4.14 amd64 [installed,local] -passwd/now 1:4.2-3.1ubuntu5.3 amd64 [installed,local] -patch/now 2.7.5-1ubuntu0.16.04.1 amd64 [installed,local] -perl/now 5.22.1-9ubuntu0.6 amd64 [installed,local] -perl-base/now 5.22.1-9ubuntu0.6 amd64 [installed,local] -perl-modules-5.22/now 5.22.1-9ubuntu0.6 all [installed,local] -pkg-config/now 0.29.1-0ubuntu1 amd64 [installed,local] -procps/now 2:3.3.10-4ubuntu2.4 amd64 [installed,local] -python/now 2.7.12-1~16.04 amd64 [installed,local] -python-minimal/now 2.7.12-1~16.04 amd64 [installed,local] -python2.7/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] -python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 amd64 [installed,local] -readline-common/now 6.3-8ubuntu2 all [installed,local] -sed/now 4.2.2-7 amd64 [installed,local] -sensible-utils/now 0.0.9ubuntu0.16.04.1 all [installed,local] -sqlite3/now 3.11.0-1ubuntu1 amd64 [installed,local] -systemd/now 229-4ubuntu21.16 amd64 [installed,local] -systemd-sysv/now 229-4ubuntu21.16 amd64 [installed,local] -sysv-rc/now 2.88dsf-59.3ubuntu2 all [installed,local] -sysvinit-utils/now 2.88dsf-59.3ubuntu2 amd64 [installed,local] -tar/now 1.28-2.1ubuntu0.1 amd64 [installed,local] -tzdata/now 2018i-0ubuntu0.16.04 all [installed,local] -ubuntu-keyring/now 2012.05.19 all [installed,local] -ucf/now 3.0036 all [installed,local] -unzip/now 6.0-20ubuntu1 amd64 [installed,local] -util-linux/now 2.27.1-6ubuntu3.6 amd64 [installed,local] -xz-utils/now 5.1.1alpha+20120614-2ubuntu2 amd64 [installed,local] -zlib1g/now 1:1.2.8.dfsg-2ubuntu4.1 amd64 [installed,local] +adduser/now 3.113+nmu3ubuntu4 +apt/now 1.2.29ubuntu0.1 +apt-transport-https/now 1.2.29ubuntu0.1 +apt-utils/now 1.2.29ubuntu0.1 +base-files/now 9.4ubuntu4.8 +base-passwd/now 3.5.39 +bash/now 4.3-14ubuntu1.2 +binutils/now 2.26.1-1ubuntu1~16.04.8 +bsdutils/now 1:2.27.1-6ubuntu3.6 +bzip2/now 1.0.6-8 +ca-certificates/now 20170717~16.04.2 +ca-certificates-mono/now 5.18.0.240-0xamarin1+ubuntu1604b1 +cli-common/now 0.9+xamarin8+ubuntu1604b1 +coreutils/now 8.25-2ubuntu3~16.04 +curl/now 7.47.0-1ubuntu2.12 +dash/now 0.5.8-2.1ubuntu2 +debconf/now 1.5.58ubuntu1 +debianutils/now 4.7 +diffutils/now 1:3.3-3 +dpkg/now 1.18.4ubuntu1.5 +dpkg-dev/now 1.18.4ubuntu1.5 +e2fslibs/now 1.42.13-1ubuntu1 +e2fsprogs/now 1.42.13-1ubuntu1 +findutils/now 4.6.0+git+20160126-2 +fontconfig-config/now 2.11.94-0ubuntu1.1 +fonts-dejavu-core/now 2.35-1 +gcc-5-base/now 5.4.0-6ubuntu1~16.04.11 +gcc-6-base/now 6.0.1-0ubuntu1 +gnupg/now 1.4.20-1ubuntu3.3 +gpgv/now 1.4.20-1ubuntu3.3 +grep/now 2.25-1~16.04.1 +gzip/now 1.6-4ubuntu1 +hostname/now 3.16ubuntu2 +init/now 1.29ubuntu4 +init-system-helpers/now 1.29ubuntu4 +initscripts/now 2.88dsf-59.3ubuntu2 +insserv/now 1.14.0-5ubuntu3 +jq/now 1.5+dfsg-1ubuntu0.1 +krb5-locales/now 1.13.2+dfsg-5ubuntu2.1 +libacl1/now 2.2.52-3 +libapparmor1/now 2.10.95-0ubuntu2.10 +libapt-inst2.0/now 1.2.29ubuntu0.1 +libapt-pkg5.0/now 1.2.29ubuntu0.1 +libasn1-8-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libattr1/now 1:2.4.47-2 +libaudit-common/now 1:2.4.5-1ubuntu2.1 +libaudit1/now 1:2.4.5-1ubuntu2.1 +libavcodec-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 +libavformat-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 +libavutil-ffmpeg54/now 7:2.8.15-0ubuntu0.16.04.1 +libblkid1/now 2.27.1-6ubuntu3.6 +libbluray1/now 1:0.9.2-2 +libbz2-1.0/now 1.0.6-8 +libc-bin/now 2.23-0ubuntu11 +libc6/now 2.23-0ubuntu11 +libcairo2/now 1.14.6-1 +libcap2/now 1:2.24-12 +libcap2-bin/now 1:2.24-12 +libchromaprint-tools/now 1.3-1 +libchromaprint0/now 1.3-1 +libcomerr2/now 1.42.13-1ubuntu1 +libcryptsetup4/now 2:1.6.6-5ubuntu2.1 +libcrystalhd3/now 1:0.0~git20110715.fdd2f19-11build1 +libcurl3/now 7.47.0-1ubuntu2.12 +libcurl3-gnutls/now 7.47.0-1ubuntu2.12 +libcurl4-openssl-dev/now 7.47.0-1ubuntu2.12 +libdb5.3/now 5.3.28-11ubuntu0.1 +libdebconfclient0/now 0.198ubuntu1 +libdevmapper1.02.1/now 2:1.02.110-1ubuntu10 +libdpkg-perl/now 1.18.4ubuntu1.5 +libexif12/now 0.6.21-2 +libexpat1/now 2.1.0-7ubuntu0.16.04.3 +libfdisk1/now 2.27.1-6ubuntu3.6 +libffi6/now 3.2.1-4 +libfontconfig1/now 2.11.94-0ubuntu1.1 +libfreetype6/now 2.6.1-0.1ubuntu2.3 +libgcc1/now 1:6.0.1-0ubuntu1 +libgcrypt20/now 1.6.5-2ubuntu0.5 +libgdbm3/now 1.8.3-13.1 +libgdiplus/now 5.6-0xamarin5+ubuntu1604b1 +libgif7/now 5.1.4-0.3~16.04 +libglib2.0-0/now 2.48.2-0ubuntu4.1 +libgme0/now 0.6.0-3ubuntu0.16.04.1 +libgmp10/now 2:6.1.0+dfsg-2 +libgnutls30/now 3.4.10-4ubuntu1.4 +libgomp1/now 5.4.0-6ubuntu1~16.04.11 +libgpg-error0/now 1.21-2ubuntu1 +libgsm1/now 1.0.13-4 +libgssapi-krb5-2/now 1.13.2+dfsg-5ubuntu2.1 +libgssapi3-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libhcrypto4-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libheimbase1-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libheimntlm0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libhogweed4/now 3.2-1ubuntu0.16.04.1 +libhx509-5-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libicu55/now 55.1-7ubuntu0.4 +libidn11/now 1.32-3ubuntu1.2 +libjbig0/now 2.1-3.1 +libjpeg-turbo8/now 1.4.2-0ubuntu3.1 +libjpeg8/now 8c-2ubuntu8 +libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1 +libkeyutils1/now 1.5.9-8ubuntu1 +libkmod2/now 22-1ubuntu5.2 +libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1 +libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1 +libldap-2.4-2/now 2.4.42+dfsg-2ubuntu3.4 +liblz4-1/now 0.0~r131-2ubuntu2 +liblzma5/now 5.1.1alpha+20120614-2ubuntu2 +libmediainfo0v5/now 18.12-1 +libmms0/now 0.6.4-1 +libmodplug1/now 1:0.8.8.5-2 +libmono-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-accessibility4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-cairo4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-cecil-private-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 +libmono-cil-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-codecontracts4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-corlib4.5-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-cscompmgd0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-csharp4.0c-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-custommarshalers4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-data-tds4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-db2-1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-debugger-soft4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n-cjk4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n-mideast4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n-other4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n-rare4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n-west4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n4.0-all/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-i18n4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-build4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 +libmono-microsoft-visualc10.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-oracle4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-parallel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-peapi4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-posix4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-relaxng4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-sharpzip4.84-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-simd4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-smdiagnostics0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-sqlite4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-configuration-install4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-configuration4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-core4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data-entity4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data-services-client4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-deployment4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-drawing-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-drawing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-dynamic4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-identitymodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-io-compression4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-json4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-net-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-net4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-numerics4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-core2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-reflection-context4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-transactions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-extensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-mobile4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-mvc3.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web-webpages2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-windows-forms4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-windows4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-xaml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-xml-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system-xml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-system4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-tasklets4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-webbrowser4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-webmatrix-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-windowsbase4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmonosgen-2.0-1/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmonosgen-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmount1/now 2.27.1-6ubuntu3.6 +libmp3lame0/now 3.99.5+repack1-9build1 +libncurses5/now 6.0+20160213-1ubuntu1 +libncursesw5/now 6.0+20160213-1ubuntu1 +libnettle6/now 3.2-1ubuntu0.16.04.1 +libnuma1/now 2.0.11-1ubuntu1.1 +libnunit-cil-dev/now 2.6.4+dfsg-1 +libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1 +libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1 +libnunit-core2.6.3-cil/now 2.6.4+dfsg-1 +libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1 +libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1 +libnunit-util2.6.3-cil/now 2.6.4+dfsg-1 +libogg0/now 1.3.2-1 +libonig2/now 5.9.6-1ubuntu0.1 +libopenjpeg5/now 1:1.5.2-3.1 +libopus0/now 1.1.2-1ubuntu1 +liborc-0.4-0/now 1:0.4.25-1 +libp11-kit0/now 0.23.2-5~ubuntu16.04.1 +libpam-modules/now 1.1.8-3.2ubuntu2.1 +libpam-modules-bin/now 1.1.8-3.2ubuntu2.1 +libpam-runtime/now 1.1.8-3.2ubuntu2.1 +libpam0g/now 1.1.8-3.2ubuntu2.1 +libpcre3/now 2:8.38-3.1 +libperl5.22/now 5.22.1-9ubuntu0.6 +libpixman-1-0/now 0.33.6-1 +libpng12-0/now 1.2.54-1ubuntu1.1 +libprocps4/now 2:3.3.10-4ubuntu2.4 +libpython-stdlib/now 2.7.12-1~16.04 +libpython2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 +libpython2.7-stdlib/now 2.7.12-1ubuntu0~16.04.4 +libreadline6/now 6.3-8ubuntu2 +libroken18-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +librtmp1/now 2.4+20151223.gitfa8646d-1ubuntu0.1 +libsasl2-2/now 2.1.26.dfsg1-14ubuntu0.1 +libsasl2-modules/now 2.1.26.dfsg1-14ubuntu0.1 +libsasl2-modules-db/now 2.1.26.dfsg1-14ubuntu0.1 +libschroedinger-1.0-0/now 1.0.11-2.1build1 +libseccomp2/now 2.3.1-2.1ubuntu2~16.04.1 +libselinux1/now 2.4-3build2 +libsemanage-common/now 2.3-1build3 +libsemanage1/now 2.3-1build3 +libsepol1/now 2.4-2 +libshine3/now 3.1.0-4 +libsmartcols1/now 2.27.1-6ubuntu3.6 +libsnappy1v5/now 1.1.3-2 +libsoxr0/now 0.1.2-1 +libspeex1/now 1.2~rc1.2-1ubuntu1 +libsqlite3-0/now 3.11.0-1ubuntu1 +libss2/now 1.42.13-1ubuntu1 +libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 +libssl1.0.0/now 1.0.2g-1ubuntu4.14 +libstdc++6/now 5.4.0-6ubuntu1~16.04.11 +libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 +libsystemd0/now 229-4ubuntu21.16 +libtasn1-6/now 4.7-3ubuntu0.16.04.3 +libtheora0/now 1.1.1+dfsg.1-8 +libtiff5/now 4.0.6-1ubuntu0.5 +libtinfo5/now 6.0+20160213-1ubuntu1 +libtwolame0/now 0.3.13-1.2 +libudev1/now 229-4ubuntu21.16 +libusb-0.1-4/now 2:0.1.12-28 +libustr-1.0-1/now 1.0.4-5 +libuuid1/now 2.27.1-6ubuntu3.6 +libva1/now 1.7.0-1ubuntu0.1 +libvorbis0a/now 1.3.5-3ubuntu0.2 +libvorbisenc2/now 1.3.5-3ubuntu0.2 +libvpx3/now 1.5.0-2ubuntu1 +libwavpack1/now 4.75.2-2ubuntu0.2 +libwebp5/now 0.4.4-1 +libwind0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 +libx11-6/now 2:1.6.3-1ubuntu2.1 +libx11-data/now 2:1.6.3-1ubuntu2.1 +libx264-148/now 2:0.148.2643+git5c65704-1 +libx265-79/now 1.9-3 +libxau6/now 1:1.0.8-1 +libxcb-render0/now 1.11.1-1ubuntu1 +libxcb-shm0/now 1.11.1-1ubuntu1 +libxcb1/now 1.11.1-1ubuntu1 +libxdmcp6/now 1:1.1.2-1.1 +libxext6/now 2:1.3.3-1 +libxml2/now 2.9.3+dfsg1-1ubuntu0.6 +libxrender1/now 1:0.9.9-0ubuntu1 +libxvidcore4/now 2:1.3.4-1 +libzen0v5/now 0.4.37-1 +libzvbi-common/now 0.2.35-10 +libzvbi0/now 0.2.35-10 +locales/now 2.23-0ubuntu11 +login/now 1:4.2-3.1ubuntu5.3 +lsb-base/now 9.20160110ubuntu0.2 +make/now 4.1-6 +makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1 +mawk/now 1.3.3-17ubuntu2 +mediainfo/now 18.12-1 +mime-support/now 3.59ubuntu1 +mono-4.0-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-devel/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-mcs/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-roslyn/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-runtime/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-runtime-common/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-runtime-sgen/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 +mono-xbuild/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mount/now 2.27.1-6ubuntu3.6 +multiarch-support/now 2.23-0ubuntu11 +ncurses-base/now 6.0+20160213-1ubuntu1 +ncurses-bin/now 6.0+20160213-1ubuntu1 +openssl/now 1.0.2g-1ubuntu4.14 +passwd/now 1:4.2-3.1ubuntu5.3 +patch/now 2.7.5-1ubuntu0.16.04.1 +perl/now 5.22.1-9ubuntu0.6 +perl-base/now 5.22.1-9ubuntu0.6 +perl-modules-5.22/now 5.22.1-9ubuntu0.6 +pkg-config/now 0.29.1-0ubuntu1 +procps/now 2:3.3.10-4ubuntu2.4 +python/now 2.7.12-1~16.04 +python-minimal/now 2.7.12-1~16.04 +python2.7/now 2.7.12-1ubuntu0~16.04.4 +python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 +readline-common/now 6.3-8ubuntu2 +sed/now 4.2.2-7 +sensible-utils/now 0.0.9ubuntu0.16.04.1 +sqlite3/now 3.11.0-1ubuntu1 +systemd/now 229-4ubuntu21.16 +systemd-sysv/now 229-4ubuntu21.16 +sysv-rc/now 2.88dsf-59.3ubuntu2 +sysvinit-utils/now 2.88dsf-59.3ubuntu2 +tar/now 1.28-2.1ubuntu0.1 +tzdata/now 2018i-0ubuntu0.16.04 +ubuntu-keyring/now 2012.05.19 +ucf/now 3.0036 +unzip/now 6.0-20ubuntu1 +util-linux/now 2.27.1-6ubuntu3.6 +xz-utils/now 5.1.1alpha+20120614-2ubuntu2 +zlib1g/now 1:1.2.8.dfsg-2ubuntu4.1 From fac2ced1fe9fd174cfba2c78c9ef60b617c22e86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 9 Mar 2019 03:02:17 +0000 Subject: [PATCH 018/790] Bot Updating Package Versions --- package_versions.txt | 310 +++++++++++++++++++++---------------------- 1 file changed, 155 insertions(+), 155 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2e8586bd..3bc7b76e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ binutils/now 2.26.1-1ubuntu1~16.04.8 bsdutils/now 1:2.27.1-6ubuntu3.6 bzip2/now 1.0.6-8 ca-certificates/now 20170717~16.04.2 -ca-certificates-mono/now 5.18.0.240-0xamarin1+ubuntu1604b1 +ca-certificates-mono/now 5.18.0.268-0xamarin7+ubuntu1604b1 cli-common/now 0.9+xamarin8+ubuntu1604b1 coreutils/now 8.25-2ubuntu3~16.04 curl/now 7.47.0-1ubuntu2.12 @@ -110,149 +110,149 @@ liblzma5/now 5.1.1alpha+20120614-2ubuntu2 libmediainfo0v5/now 18.12-1 libmms0/now 0.6.4-1 libmodplug1/now 1:0.8.8.5-2 -libmono-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-accessibility4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-cairo4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-cecil-private-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-cairo4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-cecil-private-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-codecontracts4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-corlib4.5-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-cscompmgd0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-csharp4.0c-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-custommarshalers4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-data-tds4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-db2-1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-debugger-soft4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n-cjk4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n-mideast4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n-other4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n-rare4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n-west4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n4.0-all/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-i18n4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-build4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-cil-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-corlib4.5-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-db2-1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n4.0-all/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-i18n4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-oracle4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-parallel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-peapi4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-posix4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-rabbitmq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-relaxng4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-sharpzip4.84-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-simd4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-smdiagnostics0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-sqlite4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-configuration-install4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-configuration4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-core4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data-entity4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data-services-client4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-deployment4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-drawing-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-drawing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-dynamic4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-identitymodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-io-compression4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-json4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-ldap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-management4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-messaging4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-net-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-net4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-numerics4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-core2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-reflection-context4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-security4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-transactions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-extensions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-http4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-mobile4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-mvc3.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-routing4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-services4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web-webpages2.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-web4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-windows-forms4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-windows4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-xaml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-xml-linq4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system-xml4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-system4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-tasklets4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-webbrowser4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-webmatrix-data4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-windowsbase4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmonosgen-2.0-1/now 5.18.0.240-0xamarin1+ubuntu1604b1 -libmonosgen-2.0-dev/now 5.18.0.240-0xamarin1+ubuntu1604b1 +libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-oracle4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-parallel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-posix4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-simd4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-core4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-json4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-net4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-system4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmonosgen-2.0-1/now 5.18.0.268-0xamarin7+ubuntu1604b1 +libmonosgen-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 libmount1/now 2.27.1-6ubuntu3.6 libmp3lame0/now 3.99.5+repack1-9build1 libncurses5/now 6.0+20160213-1ubuntu1 @@ -301,10 +301,10 @@ libsmartcols1/now 2.27.1-6ubuntu3.6 libsnappy1v5/now 1.1.3-2 libsoxr0/now 0.1.2-1 libspeex1/now 1.2~rc1.2-1ubuntu1 -libsqlite3-0/now 3.11.0-1ubuntu1 +libsqlite3-0/now 3.11.0-1ubuntu1.1 libss2/now 1.42.13-1ubuntu1 libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 -libssl1.0.0/now 1.0.2g-1ubuntu4.14 +libssl1.0.0/now 1.0.2g-1ubuntu4.15 libstdc++6/now 5.4.0-6ubuntu1~16.04.11 libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 libsystemd0/now 229-4ubuntu21.16 @@ -348,21 +348,21 @@ makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1 mawk/now 1.3.3-17ubuntu2 mediainfo/now 18.12-1 mime-support/now 3.59ubuntu1 -mono-4.0-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-devel/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-gac/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-mcs/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-roslyn/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-runtime/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-runtime-common/now 5.18.0.240-0xamarin1+ubuntu1604b1 -mono-runtime-sgen/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-4.0-gac/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-devel/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-gac/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-mcs/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-roslyn/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-runtime/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-runtime-common/now 5.18.0.268-0xamarin7+ubuntu1604b1 +mono-runtime-sgen/now 5.18.0.268-0xamarin7+ubuntu1604b1 mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 -mono-xbuild/now 5.18.0.240-0xamarin1+ubuntu1604b1 +mono-xbuild/now 5.18.0.268-0xamarin7+ubuntu1604b1 mount/now 2.27.1-6ubuntu3.6 multiarch-support/now 2.23-0ubuntu11 ncurses-base/now 6.0+20160213-1ubuntu1 ncurses-bin/now 6.0+20160213-1ubuntu1 -openssl/now 1.0.2g-1ubuntu4.14 +openssl/now 1.0.2g-1ubuntu4.15 passwd/now 1:4.2-3.1ubuntu5.3 patch/now 2.7.5-1ubuntu0.16.04.1 perl/now 5.22.1-9ubuntu0.6 @@ -377,7 +377,7 @@ python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 readline-common/now 6.3-8ubuntu2 sed/now 4.2.2-7 sensible-utils/now 0.0.9ubuntu0.16.04.1 -sqlite3/now 3.11.0-1ubuntu1 +sqlite3/now 3.11.0-1ubuntu1.1 systemd/now 229-4ubuntu21.16 systemd-sysv/now 229-4ubuntu21.16 sysv-rc/now 2.88dsf-59.3ubuntu2 From dfe32064e7b87fd4f4ba3944a413728b0c591105 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 9 Mar 2019 21:04:43 -0800 Subject: [PATCH 019/790] #13 rebasing to Bionic mono, pulling libchromaprint from proposed --- Dockerfile | 3 ++- Dockerfile.aarch64 | 3 ++- Dockerfile.armhf | 3 ++- README.md | 1 + readme-vars.yml | 1 + 5 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index a313e1e1..697ca1a8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono:xenial +FROM lsiobase/mono:amd64-bionic # set version label ARG BUILD_DATE @@ -14,6 +14,7 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ + echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index cb52f853..b2d161ae 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/mono.arm64:xenial +FROM lsiobase/mono:arm64v8-bionic # Add qemu to build on x86_64 systems COPY qemu-aarch64-static /usr/bin @@ -17,6 +17,7 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ + echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index e5ffd5ab..660f72f1 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/mono.armhf:xenial +FROM lsiobase/mono:arm32v6-bionic # Add qemu to build on x86_64 systems COPY qemu-arm-static /usr/bin @@ -17,6 +17,7 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ + echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ diff --git a/README.md b/README.md index 6097b27d..c64101cb 100644 --- a/README.md +++ b/README.md @@ -171,6 +171,7 @@ Below are the instructions for updating containers: ## Versions +* **08.03.19:** - Rebase to Bionic, use proposed endpoint for libchromaprint. * **26.01.19:** - Add pipeline logic and multi arch. * **22.04.18:** - Switch to beta builds. * **17.03.18:** - Add ENV XDG_CONFIG_HOME="/config/xdg" to Dockerfile for signalr fix. diff --git a/readme-vars.yml b/readme-vars.yml index 69aa06e2..4ebbe913 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -41,6 +41,7 @@ app_setup_block: | # changelog changelogs: + - { date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint." } - { date: "26.01.19:", desc: "Add pipeline logic and multi arch." } - { date: "22.04.18:", desc: "Switch to beta builds." } - { date: "17.03.18:", desc: "Add ENV XDG_CONFIG_HOME=\"/config/xdg\" to Dockerfile for signalr fix." } From ae3275587ae8ad40d8a8bcbd5d773316720cec43 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 9 Mar 2019 21:33:43 -0800 Subject: [PATCH 020/790] no need for proposed --- Dockerfile | 1 - Dockerfile.aarch64 | 1 - Dockerfile.armhf | 1 - 3 files changed, 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 697ca1a8..43d48f0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -14,7 +14,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b2d161ae..1ae179ed 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -17,7 +17,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 660f72f1..91d2f397 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,7 +17,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - echo "deb http://archive.ubuntu.com/ubuntu/ bionic-proposed main restricted" | tee /etc/apt/sources.list.d/proposed.list && \ apt-get update && \ apt-get install --no-install-recommends -y \ libchromaprint-tools \ From 8062b37cc787d0881b8d872bede5aa23507a6be0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 10 Mar 2019 07:36:49 +0000 Subject: [PATCH 021/790] Bot Updating Package Versions --- package_versions.txt | 786 ++++++++++++++++++++++--------------------- 1 file changed, 409 insertions(+), 377 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3bc7b76e..b6e6013c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,264 +1,285 @@ -adduser/now 3.113+nmu3ubuntu4 -apt/now 1.2.29ubuntu0.1 -apt-transport-https/now 1.2.29ubuntu0.1 -apt-utils/now 1.2.29ubuntu0.1 -base-files/now 9.4ubuntu4.8 -base-passwd/now 3.5.39 -bash/now 4.3-14ubuntu1.2 -binutils/now 2.26.1-1ubuntu1~16.04.8 -bsdutils/now 1:2.27.1-6ubuntu3.6 -bzip2/now 1.0.6-8 -ca-certificates/now 20170717~16.04.2 -ca-certificates-mono/now 5.18.0.268-0xamarin7+ubuntu1604b1 -cli-common/now 0.9+xamarin8+ubuntu1604b1 -coreutils/now 8.25-2ubuntu3~16.04 -curl/now 7.47.0-1ubuntu2.12 -dash/now 0.5.8-2.1ubuntu2 -debconf/now 1.5.58ubuntu1 -debianutils/now 4.7 -diffutils/now 1:3.3-3 -dpkg/now 1.18.4ubuntu1.5 -dpkg-dev/now 1.18.4ubuntu1.5 -e2fslibs/now 1.42.13-1ubuntu1 -e2fsprogs/now 1.42.13-1ubuntu1 -findutils/now 4.6.0+git+20160126-2 -fontconfig-config/now 2.11.94-0ubuntu1.1 -fonts-dejavu-core/now 2.35-1 -gcc-5-base/now 5.4.0-6ubuntu1~16.04.11 -gcc-6-base/now 6.0.1-0ubuntu1 -gnupg/now 1.4.20-1ubuntu3.3 -gpgv/now 1.4.20-1ubuntu3.3 -grep/now 2.25-1~16.04.1 -gzip/now 1.6-4ubuntu1 -hostname/now 3.16ubuntu2 -init/now 1.29ubuntu4 -init-system-helpers/now 1.29ubuntu4 -initscripts/now 2.88dsf-59.3ubuntu2 -insserv/now 1.14.0-5ubuntu3 -jq/now 1.5+dfsg-1ubuntu0.1 -krb5-locales/now 1.13.2+dfsg-5ubuntu2.1 -libacl1/now 2.2.52-3 -libapparmor1/now 2.10.95-0ubuntu2.10 -libapt-inst2.0/now 1.2.29ubuntu0.1 -libapt-pkg5.0/now 1.2.29ubuntu0.1 -libasn1-8-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libattr1/now 1:2.4.47-2 -libaudit-common/now 1:2.4.5-1ubuntu2.1 -libaudit1/now 1:2.4.5-1ubuntu2.1 -libavcodec-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 -libavformat-ffmpeg56/now 7:2.8.15-0ubuntu0.16.04.1 -libavutil-ffmpeg54/now 7:2.8.15-0ubuntu0.16.04.1 -libblkid1/now 2.27.1-6ubuntu3.6 -libbluray1/now 1:0.9.2-2 -libbz2-1.0/now 1.0.6-8 -libc-bin/now 2.23-0ubuntu11 -libc6/now 2.23-0ubuntu11 -libcairo2/now 1.14.6-1 -libcap2/now 1:2.24-12 -libcap2-bin/now 1:2.24-12 -libchromaprint-tools/now 1.3-1 -libchromaprint0/now 1.3-1 -libcomerr2/now 1.42.13-1ubuntu1 -libcryptsetup4/now 2:1.6.6-5ubuntu2.1 -libcrystalhd3/now 1:0.0~git20110715.fdd2f19-11build1 -libcurl3/now 7.47.0-1ubuntu2.12 -libcurl3-gnutls/now 7.47.0-1ubuntu2.12 -libcurl4-openssl-dev/now 7.47.0-1ubuntu2.12 -libdb5.3/now 5.3.28-11ubuntu0.1 -libdebconfclient0/now 0.198ubuntu1 -libdevmapper1.02.1/now 2:1.02.110-1ubuntu10 -libdpkg-perl/now 1.18.4ubuntu1.5 -libexif12/now 0.6.21-2 -libexpat1/now 2.1.0-7ubuntu0.16.04.3 -libfdisk1/now 2.27.1-6ubuntu3.6 -libffi6/now 3.2.1-4 -libfontconfig1/now 2.11.94-0ubuntu1.1 -libfreetype6/now 2.6.1-0.1ubuntu2.3 -libgcc1/now 1:6.0.1-0ubuntu1 -libgcrypt20/now 1.6.5-2ubuntu0.5 -libgdbm3/now 1.8.3-13.1 -libgdiplus/now 5.6-0xamarin5+ubuntu1604b1 -libgif7/now 5.1.4-0.3~16.04 -libglib2.0-0/now 2.48.2-0ubuntu4.1 -libgme0/now 0.6.0-3ubuntu0.16.04.1 -libgmp10/now 2:6.1.0+dfsg-2 -libgnutls30/now 3.4.10-4ubuntu1.4 -libgomp1/now 5.4.0-6ubuntu1~16.04.11 -libgpg-error0/now 1.21-2ubuntu1 -libgsm1/now 1.0.13-4 -libgssapi-krb5-2/now 1.13.2+dfsg-5ubuntu2.1 -libgssapi3-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libhcrypto4-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libheimbase1-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libheimntlm0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libhogweed4/now 3.2-1ubuntu0.16.04.1 -libhx509-5-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libicu55/now 55.1-7ubuntu0.4 -libidn11/now 1.32-3ubuntu1.2 -libjbig0/now 2.1-3.1 -libjpeg-turbo8/now 1.4.2-0ubuntu3.1 +adduser/now 3.116ubuntu1 +apt/now 1.6.8 +apt-transport-https/now 1.6.8 +apt-utils/now 1.6.8 +base-files/now 10.1ubuntu2.4 +base-passwd/now 3.5.44 +bash/now 4.4.18-2ubuntu1 +binutils/now 2.30-21ubuntu1~18.04 +binutils-common/now 2.30-21ubuntu1~18.04 +binutils-x86-64-linux-gnu/now 2.30-21ubuntu1~18.04 +bsdutils/now 1:2.31.1-0.4ubuntu3.3 +bzip2/now 1.0.6-8.1 +ca-certificates/now 20180409 +ca-certificates-mono/now 5.18.0.268-0xamarin7+ubuntu1804b1 +cli-common/now 0.9+xamarin8+ubuntu1804b1 +coreutils/now 8.28-1ubuntu1 +curl/now 7.58.0-2ubuntu3.6 +dash/now 0.5.8-2.10 +debconf/now 1.5.66 +debianutils/now 4.8.4 +diffutils/now 1:3.6-1 +dirmngr/now 2.2.4-1ubuntu1.2 +dpkg/now 1.19.0.5ubuntu2.1 +dpkg-dev/now 1.19.0.5ubuntu2.1 +e2fsprogs/now 1.44.1-1ubuntu1.1 +fdisk/now 2.31.1-0.4ubuntu3.3 +findutils/now 4.6.0+git+20170828-2 +fontconfig/now 2.12.6-0ubuntu2 +fontconfig-config/now 2.12.6-0ubuntu2 +fonts-dejavu-core/now 2.37-1 +gcc-8-base/now 8.2.0-1ubuntu2~18.04 +gnupg/now 2.2.4-1ubuntu1.2 +gnupg-l10n/now 2.2.4-1ubuntu1.2 +gnupg-utils/now 2.2.4-1ubuntu1.2 +gpg/now 2.2.4-1ubuntu1.2 +gpg-agent/now 2.2.4-1ubuntu1.2 +gpg-wks-client/now 2.2.4-1ubuntu1.2 +gpg-wks-server/now 2.2.4-1ubuntu1.2 +gpgconf/now 2.2.4-1ubuntu1.2 +gpgsm/now 2.2.4-1ubuntu1.2 +gpgv/now 2.2.4-1ubuntu1.2 +grep/now 3.1-2 +gzip/now 1.6-5ubuntu1 +hostname/now 3.20 +init-system-helpers/now 1.51 +jq/now 1.5+dfsg-2 +krb5-locales/now 1.16-2ubuntu0.1 +libacl1/now 2.2.52-3build1 +libapt-inst2.0/now 1.6.8 +libapt-pkg5.0/now 1.6.8 +libasn1-8-heimdal/now 7.5.0+dfsg-1 +libassuan0/now 2.5.1-2 +libattr1/now 1:2.4.47-2build1 +libaudit-common/now 1:2.8.2-1ubuntu1 +libaudit1/now 1:2.8.2-1ubuntu1 +libavcodec57/now 7:3.4.4-0ubuntu0.18.04.1 +libavformat57/now 7:3.4.4-0ubuntu0.18.04.1 +libavutil55/now 7:3.4.4-0ubuntu0.18.04.1 +libbinutils/now 2.30-21ubuntu1~18.04 +libblkid1/now 2.31.1-0.4ubuntu3.3 +libbluray2/now 1:1.0.2-3 +libbsd0/now 0.8.7-1 +libbz2-1.0/now 1.0.6-8.1 +libc-bin/now 2.27-3ubuntu1 +libc6/now 2.27-3ubuntu1 +libcairo2/now 1.15.10-2ubuntu0.1 +libcap-ng0/now 0.7.7-3.1 +libchromaprint-tools/now 1.4.3-1 +libchromaprint1/now 1.4.3-1 +libcom-err2/now 1.44.1-1ubuntu1.1 +libcroco3/now 0.6.12-2 +libcrystalhd3/now 1:0.0~git20110715.fdd2f19-12 +libcurl3-gnutls/now 7.58.0-2ubuntu3.6 +libcurl4/now 7.58.0-2ubuntu3.6 +libcurl4-openssl-dev/now 7.58.0-2ubuntu3.6 +libdatrie1/now 0.2.10-7 +libdb5.3/now 5.3.28-13.1ubuntu1 +libdebconfclient0/now 0.213ubuntu1 +libdpkg-perl/now 1.19.0.5ubuntu2.1 +libdrm-common/now 2.4.95-1~18.04.1 +libdrm2/now 2.4.95-1~18.04.1 +libexif12/now 0.6.21-4 +libexpat1/now 2.2.5-3 +libext2fs2/now 1.44.1-1ubuntu1.1 +libfdisk1/now 2.31.1-0.4ubuntu3.3 +libffi6/now 3.2.1-8 +libfontconfig1/now 2.12.6-0ubuntu2 +libfreetype6/now 2.8.1-2ubuntu2 +libgcc1/now 1:8.2.0-1ubuntu2~18.04 +libgcrypt20/now 1.8.1-4ubuntu1.1 +libgdbm-compat4/now 1.14.1-6 +libgdbm5/now 1.14.1-6 +libgdiplus/now 5.6-0xamarin5+ubuntu1804b1 +libgdk-pixbuf2.0-0/now 2.36.11-2 +libgdk-pixbuf2.0-common/now 2.36.11-2 +libgif7/now 5.1.4-2 +libglib2.0-0/now 2.56.3-0ubuntu0.18.04.1 +libgme0/now 0.6.2-1 +libgmp10/now 2:6.1.2+dfsg-2 +libgnutls30/now 3.5.18-1ubuntu1 +libgomp1/now 8.2.0-1ubuntu2~18.04 +libgpg-error0/now 1.27-6 +libgraphite2-3/now 1.3.11-2 +libgsm1/now 1.0.13-4build1 +libgssapi-krb5-2/now 1.16-2ubuntu0.1 +libgssapi3-heimdal/now 7.5.0+dfsg-1 +libharfbuzz0b/now 1.7.2-1ubuntu1 +libhcrypto4-heimdal/now 7.5.0+dfsg-1 +libheimbase1-heimdal/now 7.5.0+dfsg-1 +libheimntlm0-heimdal/now 7.5.0+dfsg-1 +libhogweed4/now 3.4-1 +libhx509-5-heimdal/now 7.5.0+dfsg-1 +libicu60/now 60.2-3ubuntu3 +libidn2-0/now 2.0.4-1.1build2 +libjbig0/now 2.1-3.1build1 +libjpeg-turbo8/now 1.5.2-0ubuntu5.18.04.1 libjpeg8/now 8c-2ubuntu8 -libk5crypto3/now 1.13.2+dfsg-5ubuntu2.1 -libkeyutils1/now 1.5.9-8ubuntu1 -libkmod2/now 22-1ubuntu5.2 -libkrb5-26-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libkrb5-3/now 1.13.2+dfsg-5ubuntu2.1 -libkrb5support0/now 1.13.2+dfsg-5ubuntu2.1 -libldap-2.4-2/now 2.4.42+dfsg-2ubuntu3.4 -liblz4-1/now 0.0~r131-2ubuntu2 -liblzma5/now 5.1.1alpha+20120614-2ubuntu2 +libjq1/now 1.5+dfsg-2 +libk5crypto3/now 1.16-2ubuntu0.1 +libkeyutils1/now 1.5.9-9.2ubuntu2 +libkrb5-26-heimdal/now 7.5.0+dfsg-1 +libkrb5-3/now 1.16-2ubuntu0.1 +libkrb5support0/now 1.16-2ubuntu0.1 +libksba8/now 1.3.5-2 +libldap-2.4-2/now 2.4.45+dfsg-1ubuntu1.1 +libldap-common/now 2.4.45+dfsg-1ubuntu1.1 +liblz4-1/now 0.0~r131-2ubuntu3 +liblzma5/now 5.2.2-1.3 libmediainfo0v5/now 18.12-1 -libmms0/now 0.6.4-1 -libmodplug1/now 1:0.8.8.5-2 -libmono-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-cairo4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-cecil-private-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-cil-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-corlib4.5-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-db2-1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n4.0-all/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-i18n4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1604b1 -libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-oracle4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-parallel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-posix4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-simd4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-core4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-json4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-net4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-system4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmonosgen-2.0-1/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmonosgen-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1604b1 -libmount1/now 2.27.1-6ubuntu3.6 -libmp3lame0/now 3.99.5+repack1-9build1 -libncurses5/now 6.0+20160213-1ubuntu1 -libncursesw5/now 6.0+20160213-1ubuntu1 -libnettle6/now 3.2-1ubuntu0.16.04.1 -libnuma1/now 2.0.11-1ubuntu1.1 +libmms0/now 0.6.4-2 +libmono-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-cairo4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-cecil-private-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1804b1 +libmono-cil-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-corlib4.5-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-db2-1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n4.0-all/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-i18n4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-oracle4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-parallel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-posix4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-simd4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-core4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-json4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-net4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-system4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmonosgen-2.0-1/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmonosgen-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmount1/now 2.31.1-0.4ubuntu3.3 +libmp3lame0/now 3.100-2 +libmpg123-0/now 1.25.10-1 +libncurses5/now 6.1-1ubuntu1.18.04 +libncursesw5/now 6.1-1ubuntu1.18.04 +libnettle6/now 3.4-1 +libnghttp2-14/now 1.30.0-1ubuntu1 +libnpth0/now 1.5-3 +libnuma1/now 2.0.11-2.1 libnunit-cil-dev/now 2.6.4+dfsg-1 libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1 libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1 @@ -267,126 +288,137 @@ libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1 libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1 libnunit-util2.6.3-cil/now 2.6.4+dfsg-1 libogg0/now 1.3.2-1 -libonig2/now 5.9.6-1ubuntu0.1 -libopenjpeg5/now 1:1.5.2-3.1 +libonig4/now 6.7.0-1 +libopenjp2-7/now 2.3.0-1 +libopenmpt0/now 0.3.6-1 libopus0/now 1.1.2-1ubuntu1 -liborc-0.4-0/now 1:0.4.25-1 -libp11-kit0/now 0.23.2-5~ubuntu16.04.1 -libpam-modules/now 1.1.8-3.2ubuntu2.1 -libpam-modules-bin/now 1.1.8-3.2ubuntu2.1 -libpam-runtime/now 1.1.8-3.2ubuntu2.1 -libpam0g/now 1.1.8-3.2ubuntu2.1 -libpcre3/now 2:8.38-3.1 -libperl5.22/now 5.22.1-9ubuntu0.6 -libpixman-1-0/now 0.33.6-1 -libpng12-0/now 1.2.54-1ubuntu1.1 -libprocps4/now 2:3.3.10-4ubuntu2.4 -libpython-stdlib/now 2.7.12-1~16.04 -libpython2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 -libpython2.7-stdlib/now 2.7.12-1ubuntu0~16.04.4 -libreadline6/now 6.3-8ubuntu2 -libroken18-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -librtmp1/now 2.4+20151223.gitfa8646d-1ubuntu0.1 -libsasl2-2/now 2.1.26.dfsg1-14ubuntu0.1 -libsasl2-modules/now 2.1.26.dfsg1-14ubuntu0.1 -libsasl2-modules-db/now 2.1.26.dfsg1-14ubuntu0.1 -libschroedinger-1.0-0/now 1.0.11-2.1build1 -libseccomp2/now 2.3.1-2.1ubuntu2~16.04.1 -libselinux1/now 2.4-3build2 -libsemanage-common/now 2.3-1build3 -libsemanage1/now 2.3-1build3 -libsepol1/now 2.4-2 -libshine3/now 3.1.0-4 -libsmartcols1/now 2.27.1-6ubuntu3.6 -libsnappy1v5/now 1.1.3-2 -libsoxr0/now 0.1.2-1 -libspeex1/now 1.2~rc1.2-1ubuntu1 -libsqlite3-0/now 3.11.0-1ubuntu1.1 -libss2/now 1.42.13-1ubuntu1 -libssh-gcrypt-4/now 0.6.3-4.3ubuntu0.2 -libssl1.0.0/now 1.0.2g-1ubuntu4.15 -libstdc++6/now 5.4.0-6ubuntu1~16.04.11 -libswresample-ffmpeg1/now 7:2.8.15-0ubuntu0.16.04.1 -libsystemd0/now 229-4ubuntu21.16 -libtasn1-6/now 4.7-3ubuntu0.16.04.3 -libtheora0/now 1.1.1+dfsg.1-8 -libtiff5/now 4.0.6-1ubuntu0.5 -libtinfo5/now 6.0+20160213-1ubuntu1 -libtwolame0/now 0.3.13-1.2 -libudev1/now 229-4ubuntu21.16 -libusb-0.1-4/now 2:0.1.12-28 -libustr-1.0-1/now 1.0.4-5 -libuuid1/now 2.27.1-6ubuntu3.6 -libva1/now 1.7.0-1ubuntu0.1 -libvorbis0a/now 1.3.5-3ubuntu0.2 -libvorbisenc2/now 1.3.5-3ubuntu0.2 -libvpx3/now 1.5.0-2ubuntu1 -libwavpack1/now 4.75.2-2ubuntu0.2 -libwebp5/now 0.4.4-1 -libwind0-heimdal/now 1.7~git20150920+dfsg-4ubuntu1.16.04.1 -libx11-6/now 2:1.6.3-1ubuntu2.1 -libx11-data/now 2:1.6.3-1ubuntu2.1 -libx264-148/now 2:0.148.2643+git5c65704-1 -libx265-79/now 1.9-3 +libp11-kit0/now 0.23.9-2 +libpam-modules/now 1.1.8-3.6ubuntu2.18.04.1 +libpam-modules-bin/now 1.1.8-3.6ubuntu2.18.04.1 +libpam-runtime/now 1.1.8-3.6ubuntu2.18.04.1 +libpam0g/now 1.1.8-3.6ubuntu2.18.04.1 +libpango-1.0-0/now 1.40.14-1ubuntu0.1 +libpangocairo-1.0-0/now 1.40.14-1ubuntu0.1 +libpangoft2-1.0-0/now 1.40.14-1ubuntu0.1 +libpcre3/now 2:8.39-9 +libperl5.26/now 5.26.1-6ubuntu0.3 +libpixman-1-0/now 0.34.0-2 +libpng16-16/now 1.6.34-1ubuntu0.18.04.1 +libprocps6/now 2:3.3.12-3ubuntu1.1 +libpsl5/now 0.19.1-5build1 +libpython-stdlib/now 2.7.15~rc1-1 +libpython2.7-minimal/now 2.7.15~rc1-1ubuntu0.1 +libpython2.7-stdlib/now 2.7.15~rc1-1ubuntu0.1 +libreadline7/now 7.0-3 +libroken18-heimdal/now 7.5.0+dfsg-1 +librsvg2-2/now 2.40.20-2 +librtmp1/now 2.4+20151223.gitfa8646d.1-1 +libsasl2-2/now 2.1.27~101-g0780600+dfsg-3ubuntu2 +libsasl2-modules/now 2.1.27~101-g0780600+dfsg-3ubuntu2 +libsasl2-modules-db/now 2.1.27~101-g0780600+dfsg-3ubuntu2 +libseccomp2/now 2.3.1-2.1ubuntu4 +libselinux1/now 2.7-2build2 +libsemanage-common/now 2.7-2build2 +libsemanage1/now 2.7-2build2 +libsepol1/now 2.7-1 +libshine3/now 3.1.1-1 +libsmartcols1/now 2.31.1-0.4ubuntu3.3 +libsnappy1v5/now 1.1.7-1 +libsoxr0/now 0.1.2-3 +libspeex1/now 1.2~rc1.2-1ubuntu2 +libsqlite3-0/now 3.22.0-1 +libss2/now 1.44.1-1ubuntu1.1 +libssh-gcrypt-4/now 0.8.0~20170825.94fa1e38-1ubuntu0.2 +libssl1.1/now 1.1.0g-2ubuntu4.3 +libstdc++6/now 8.2.0-1ubuntu2~18.04 +libswresample2/now 7:3.4.4-0ubuntu0.18.04.1 +libsystemd0/now 237-3ubuntu10.13 +libtasn1-6/now 4.13-2 +libthai-data/now 0.1.27-2 +libthai0/now 0.1.27-2 +libtheora0/now 1.1.1+dfsg.1-14 +libtiff5/now 4.0.9-5ubuntu0.1 +libtinfo5/now 6.1-1ubuntu1.18.04 +libtwolame0/now 0.3.13-3 +libudev1/now 237-3ubuntu10.13 +libunistring2/now 0.9.9-0ubuntu1 +libuuid1/now 2.31.1-0.4ubuntu3.3 +libva-drm2/now 2.1.0-3 +libva-x11-2/now 2.1.0-3 +libva2/now 2.1.0-3 +libvdpau1/now 1.1.1-3ubuntu1 +libvorbis0a/now 1.3.5-4.2 +libvorbisenc2/now 1.3.5-4.2 +libvorbisfile3/now 1.3.5-4.2 +libvpx5/now 1.7.0-3 +libwavpack1/now 5.1.0-2ubuntu1.2 +libwebp6/now 0.6.1-2 +libwebpmux3/now 0.6.1-2 +libwind0-heimdal/now 7.5.0+dfsg-1 +libx11-6/now 2:1.6.4-3ubuntu0.2 +libx11-data/now 2:1.6.4-3ubuntu0.2 +libx264-152/now 2:0.152.2854+gite9a5903-2 +libx265-146/now 2.6-3 libxau6/now 1:1.0.8-1 -libxcb-render0/now 1.11.1-1ubuntu1 -libxcb-shm0/now 1.11.1-1ubuntu1 -libxcb1/now 1.11.1-1ubuntu1 -libxdmcp6/now 1:1.1.2-1.1 +libxcb-render0/now 1.13-1 +libxcb-shm0/now 1.13-1 +libxcb1/now 1.13-1 +libxdmcp6/now 1:1.1.2-3 libxext6/now 2:1.3.3-1 -libxml2/now 2.9.3+dfsg1-1ubuntu0.6 -libxrender1/now 1:0.9.9-0ubuntu1 -libxvidcore4/now 2:1.3.4-1 +libxfixes3/now 1:5.0.3-1 +libxml2/now 2.9.4+dfsg1-6.1ubuntu1.2 +libxrender1/now 1:0.9.10-1 +libxvidcore4/now 2:1.3.5-1 libzen0v5/now 0.4.37-1 -libzvbi-common/now 0.2.35-10 -libzvbi0/now 0.2.35-10 -locales/now 2.23-0ubuntu11 -login/now 1:4.2-3.1ubuntu5.3 -lsb-base/now 9.20160110ubuntu0.2 -make/now 4.1-6 -makedev/now 2.3.1-93ubuntu2~ubuntu16.04.1 -mawk/now 1.3.3-17ubuntu2 +libzstd1/now 1.3.3+dfsg-2ubuntu1 +libzvbi-common/now 0.2.35-13 +libzvbi0/now 0.2.35-13 +locales/now 2.27-3ubuntu1 +login/now 1:4.5-1ubuntu1 +lsb-base/now 9.20170808ubuntu1 +make/now 4.1-9.1ubuntu1 +mawk/now 1.3.3-17ubuntu3 mediainfo/now 18.12-1 -mime-support/now 3.59ubuntu1 -mono-4.0-gac/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-devel/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-gac/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-mcs/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-roslyn/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-runtime/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-runtime-common/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-runtime-sgen/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mono-vbnc/now 4.7-0xamarin1+ubuntu1604b1 -mono-xbuild/now 5.18.0.268-0xamarin7+ubuntu1604b1 -mount/now 2.27.1-6ubuntu3.6 -multiarch-support/now 2.23-0ubuntu11 -ncurses-base/now 6.0+20160213-1ubuntu1 -ncurses-bin/now 6.0+20160213-1ubuntu1 -openssl/now 1.0.2g-1ubuntu4.15 -passwd/now 1:4.2-3.1ubuntu5.3 -patch/now 2.7.5-1ubuntu0.16.04.1 -perl/now 5.22.1-9ubuntu0.6 -perl-base/now 5.22.1-9ubuntu0.6 -perl-modules-5.22/now 5.22.1-9ubuntu0.6 -pkg-config/now 0.29.1-0ubuntu1 -procps/now 2:3.3.10-4ubuntu2.4 -python/now 2.7.12-1~16.04 -python-minimal/now 2.7.12-1~16.04 -python2.7/now 2.7.12-1ubuntu0~16.04.4 -python2.7-minimal/now 2.7.12-1ubuntu0~16.04.4 -readline-common/now 6.3-8ubuntu2 -sed/now 4.2.2-7 -sensible-utils/now 0.0.9ubuntu0.16.04.1 -sqlite3/now 3.11.0-1ubuntu1.1 -systemd/now 229-4ubuntu21.16 -systemd-sysv/now 229-4ubuntu21.16 -sysv-rc/now 2.88dsf-59.3ubuntu2 -sysvinit-utils/now 2.88dsf-59.3ubuntu2 -tar/now 1.28-2.1ubuntu0.1 -tzdata/now 2018i-0ubuntu0.16.04 -ubuntu-keyring/now 2012.05.19 -ucf/now 3.0036 -unzip/now 6.0-20ubuntu1 -util-linux/now 2.27.1-6ubuntu3.6 -xz-utils/now 5.1.1alpha+20120614-2ubuntu2 -zlib1g/now 1:1.2.8.dfsg-2ubuntu4.1 +mime-support/now 3.60ubuntu1 +mono-4.0-gac/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-devel/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-gac/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-mcs/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-roslyn/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-runtime/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-runtime-common/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-runtime-sgen/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-vbnc/now 4.7-0xamarin1+ubuntu1804b1 +mono-xbuild/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mount/now 2.31.1-0.4ubuntu3.3 +multiarch-support/now 2.27-3ubuntu1 +ncurses-base/now 6.1-1ubuntu1.18.04 +ncurses-bin/now 6.1-1ubuntu1.18.04 +openssl/now 1.1.0g-2ubuntu4.3 +passwd/now 1:4.5-1ubuntu1 +patch/now 2.7.6-2ubuntu1 +perl/now 5.26.1-6ubuntu0.3 +perl-base/now 5.26.1-6ubuntu0.3 +perl-modules-5.26/now 5.26.1-6ubuntu0.3 +pinentry-curses/now 1.1.0-1 +pkg-config/now 0.29.1-0ubuntu2 +procps/now 2:3.3.12-3ubuntu1.1 +publicsuffix/now 20180223.1310-1 +python/now 2.7.15~rc1-1 +python-minimal/now 2.7.15~rc1-1 +python2.7/now 2.7.15~rc1-1ubuntu0.1 +python2.7-minimal/now 2.7.15~rc1-1ubuntu0.1 +readline-common/now 7.0-3 +sed/now 4.4-2 +sensible-utils/now 0.0.12 +shared-mime-info/now 1.9-2 +sqlite3/now 3.22.0-1 +sysvinit-utils/now 2.88dsf-59.10ubuntu1 +tar/now 1.29b-2ubuntu0.1 +tzdata/now 2018i-0ubuntu0.18.04 +ubuntu-keyring/now 2018.09.18.1~18.04.0 +ucf/now 3.0038 +unzip/now 6.0-21ubuntu1 +util-linux/now 2.31.1-0.4ubuntu3.3 +xz-utils/now 5.2.2-1.3 +zlib1g/now 1:1.2.11.dfsg-0ubuntu2 From 14c0a0e14bd2f0e1f26e8ee3164c66f9c09a80d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 19 Mar 2019 15:10:46 +0000 Subject: [PATCH 022/790] Bot Updating Package Versions --- package_versions.txt | 318 +++++++++++++++++++++---------------------- 1 file changed, 159 insertions(+), 159 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b6e6013c..d7f19a3d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ binutils-x86-64-linux-gnu/now 2.30-21ubuntu1~18.04 bsdutils/now 1:2.31.1-0.4ubuntu3.3 bzip2/now 1.0.6-8.1 ca-certificates/now 20180409 -ca-certificates-mono/now 5.18.0.268-0xamarin7+ubuntu1804b1 +ca-certificates-mono/now 5.18.1.0-0xamarin4+ubuntu1804b1 cli-common/now 0.9+xamarin8+ubuntu1804b1 coreutils/now 8.28-1ubuntu1 curl/now 7.58.0-2ubuntu3.6 @@ -90,7 +90,7 @@ libgcc1/now 1:8.2.0-1ubuntu2~18.04 libgcrypt20/now 1.8.1-4ubuntu1.1 libgdbm-compat4/now 1.14.1-6 libgdbm5/now 1.14.1-6 -libgdiplus/now 5.6-0xamarin5+ubuntu1804b1 +libgdiplus/now 5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-0/now 2.36.11-2 libgdk-pixbuf2.0-common/now 2.36.11-2 libgif7/now 5.1.4-2 @@ -128,149 +128,149 @@ liblz4-1/now 0.0~r131-2ubuntu3 liblzma5/now 5.2.2-1.3 libmediainfo0v5/now 18.12-1 libmms0/now 0.6.4-2 -libmono-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-accessibility4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-cairo4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-cecil-private-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-accessibility4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cairo4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cecil-private-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-codecontracts4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-corlib4.5-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-cscompmgd0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-csharp4.0c-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-custommarshalers4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-data-tds4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-db2-1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-debugger-soft4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n-cjk4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n-mideast4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n-other4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n-rare4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n-west4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n4.0-all/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-i18n4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-build4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-cil-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-codecontracts4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-corlib4.5-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cscompmgd0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-csharp4.0c-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-custommarshalers4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-data-tds4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-db2-1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-debugger-soft4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-cjk4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-mideast4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-other4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-rare4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-west4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-all/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-oracle4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-parallel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-peapi4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-posix4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-rabbitmq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-relaxng4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-sharpzip4.84-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-simd4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-smdiagnostics0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-sqlite4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-configuration-install4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-configuration4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-core4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data-entity4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data-services-client4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-deployment4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-drawing-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-drawing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-dynamic4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-identitymodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-io-compression4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-json4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-ldap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-management4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-messaging4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-net-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-net4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-numerics4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-core2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-reflection-context4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-security4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-transactions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-extensions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-http4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-mobile4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-mvc3.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-routing4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-services4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web-webpages2.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-web4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-windows-forms4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-windows4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-xaml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-xml-linq4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system-xml4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-system4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-tasklets4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-webbrowser4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-webmatrix-data4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-windowsbase4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmonosgen-2.0-1/now 5.18.0.268-0xamarin7+ubuntu1804b1 -libmonosgen-2.0-dev/now 5.18.0.268-0xamarin7+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-oracle4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-parallel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-peapi4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-posix4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-relaxng4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-sharpzip4.84-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-simd4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-smdiagnostics0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-sqlite4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-configuration-install4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-configuration4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-core4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-entity4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-services-client4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-deployment4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-drawing-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-drawing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-dynamic4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-io-compression4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-json4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-numerics4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-core2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reflection-context4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-transactions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-mobile4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-mvc3.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xaml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-tasklets4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-webbrowser4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-webmatrix-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-windowsbase4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-1/now 5.18.1.0-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 libmount1/now 2.31.1-0.4ubuntu3.3 libmp3lame0/now 3.100-2 libmpg123-0/now 1.25.10-1 @@ -316,7 +316,7 @@ librtmp1/now 2.4+20151223.gitfa8646d.1-1 libsasl2-2/now 2.1.27~101-g0780600+dfsg-3ubuntu2 libsasl2-modules/now 2.1.27~101-g0780600+dfsg-3ubuntu2 libsasl2-modules-db/now 2.1.27~101-g0780600+dfsg-3ubuntu2 -libseccomp2/now 2.3.1-2.1ubuntu4 +libseccomp2/now 2.3.1-2.1ubuntu4.1 libselinux1/now 2.7-2build2 libsemanage-common/now 2.7-2build2 libsemanage1/now 2.7-2build2 @@ -332,15 +332,15 @@ libssh-gcrypt-4/now 0.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.1/now 1.1.0g-2ubuntu4.3 libstdc++6/now 8.2.0-1ubuntu2~18.04 libswresample2/now 7:3.4.4-0ubuntu0.18.04.1 -libsystemd0/now 237-3ubuntu10.13 +libsystemd0/now 237-3ubuntu10.15 libtasn1-6/now 4.13-2 libthai-data/now 0.1.27-2 libthai0/now 0.1.27-2 libtheora0/now 1.1.1+dfsg.1-14 -libtiff5/now 4.0.9-5ubuntu0.1 +libtiff5/now 4.0.9-5ubuntu0.2 libtinfo5/now 6.1-1ubuntu1.18.04 libtwolame0/now 0.3.13-3 -libudev1/now 237-3ubuntu10.13 +libudev1/now 237-3ubuntu10.15 libunistring2/now 0.9.9-0ubuntu1 libuuid1/now 2.31.1-0.4ubuntu3.3 libva-drm2/now 2.1.0-3 @@ -360,9 +360,9 @@ libx11-data/now 2:1.6.4-3ubuntu0.2 libx264-152/now 2:0.152.2854+gite9a5903-2 libx265-146/now 2.6-3 libxau6/now 1:1.0.8-1 -libxcb-render0/now 1.13-1 -libxcb-shm0/now 1.13-1 -libxcb1/now 1.13-1 +libxcb-render0/now 1.13-2~ubuntu18.04 +libxcb-shm0/now 1.13-2~ubuntu18.04 +libxcb1/now 1.13-2~ubuntu18.04 libxdmcp6/now 1:1.1.2-3 libxext6/now 2:1.3.3-1 libxfixes3/now 1:5.0.3-1 @@ -380,16 +380,16 @@ make/now 4.1-9.1ubuntu1 mawk/now 1.3.3-17ubuntu3 mediainfo/now 18.12-1 mime-support/now 3.60ubuntu1 -mono-4.0-gac/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-devel/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-gac/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-mcs/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-roslyn/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-runtime/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-runtime-common/now 5.18.0.268-0xamarin7+ubuntu1804b1 -mono-runtime-sgen/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-4.0-gac/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-devel/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-gac/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-mcs/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-roslyn/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime-common/now 5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime-sgen/now 5.18.1.0-0xamarin4+ubuntu1804b1 mono-vbnc/now 4.7-0xamarin1+ubuntu1804b1 -mono-xbuild/now 5.18.0.268-0xamarin7+ubuntu1804b1 +mono-xbuild/now 5.18.1.0-0xamarin4+ubuntu1804b1 mount/now 2.31.1-0.4ubuntu3.3 multiarch-support/now 2.27-3ubuntu1 ncurses-base/now 6.1-1ubuntu1.18.04 From 312268df70411b47ab303b3338776f4275ddfa9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 21 Mar 2019 22:59:42 +0000 Subject: [PATCH 023/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d7f19a3d..cdabf4d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser/now 3.116ubuntu1 apt/now 1.6.8 -apt-transport-https/now 1.6.8 +apt-transport-https/now 1.6.10 apt-utils/now 1.6.8 base-files/now 10.1ubuntu2.4 base-passwd/now 3.5.44 From bdf26474864ca95ce88fc0b55d3737201ff48bf3 Mon Sep 17 00:00:00 2001 From: thelamer Date: Sat, 23 Mar 2019 18:16:10 -0700 Subject: [PATCH 024/790] Switching to new Base images, shift to arm32v7 tag. --- Dockerfile.aarch64 | 3 -- Dockerfile.armhf | 3 -- Jenkinsfile | 93 ++++++++++++++++++++++++++++++---------------- README.md | 4 +- readme-vars.yml | 3 +- 5 files changed, 65 insertions(+), 41 deletions(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1ae179ed..b9639197 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,8 +1,5 @@ FROM lsiobase/mono:arm64v8-bionic -# Add qemu to build on x86_64 systems -COPY qemu-aarch64-static /usr/bin - # set version label ARG BUILD_DATE ARG VERSION diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 91d2f397..10595798 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,8 +1,5 @@ FROM lsiobase/mono:arm32v6-bionic -# Add qemu to build on x86_64 systems -COPY qemu-arm-static /usr/bin - # set version label ARG BUILD_DATE ARG VERSION diff --git a/Jenkinsfile b/Jenkinsfile index 4e5afc1b..b61a23a3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -124,7 +124,7 @@ pipeline { script{ env.IMAGE = env.DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } @@ -142,7 +142,7 @@ pipeline { script{ env.IMAGE = env.DEV_DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } @@ -160,7 +160,7 @@ pipeline { script{ env.IMAGE = env.PR_DOCKERHUB_IMAGE if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v6-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } else { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } @@ -170,6 +170,35 @@ pipeline { } } } + // Run ShellCheck + stage('ShellCheck') { + when { + environment name: 'CI', value: 'true' + } + steps { + withCredentials([ + string(credentialsId: 'spaces-key', variable: 'DO_KEY'), + string(credentialsId: 'spaces-secret', variable: 'DO_SECRET') + ]) { + script{ + env.SHELLCHECK_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' + } + sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' + sh '''#! /bin/bash + set -e + docker pull lsiodev/spaces-file-upload:latest + docker run --rm \ + -e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \ + -e FILE_NAME="shellcheck-result.xml" \ + -e MIMETYPE="text/xml" \ + -v ${WORKSPACE}:/mnt \ + -e SECRET_KEY=\"${DO_SECRET}\" \ + -e ACCESS_KEY=\"${DO_KEY}\" \ + -t lsiodev/spaces-file-upload:latest \ + python /upload.py''' + } + } + } // Use helper containers to render templated files stage('Update-Templates') { when { @@ -244,7 +273,7 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - sh "docker build --no-cache -t ${IMAGE}:${META_TAG} \ + sh "docker build --no-cache --pull -t ${IMAGE}:${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -257,7 +286,7 @@ pipeline { parallel { stage('Build X86') { steps { - sh "docker build --no-cache -t ${IMAGE}:amd64-${META_TAG} \ + sh "docker build --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -280,13 +309,13 @@ pipeline { ''' sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static -o qemu-arm-static" sh "chmod +x qemu-*" - sh "docker build --no-cache -f Dockerfile.armhf -t ${IMAGE}:arm32v6-${META_TAG} \ + sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm32v6-${META_TAG} lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" - sh "docker push lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER}" + sh "docker tag ${IMAGE}:arm32v7-${META_TAG} lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + sh "docker push lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" sh '''docker rmi \ - ${IMAGE}:arm32v6-${META_TAG} \ - lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ''' + ${IMAGE}:arm32v7-${META_TAG} \ + lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ''' } } } @@ -309,7 +338,7 @@ pipeline { ''' sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static -o qemu-aarch64-static" sh "chmod +x qemu-*" - sh "docker build --no-cache -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -339,13 +368,13 @@ pipeline { fi if [ "${DIST_IMAGE}" == "alpine" ]; then docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apk info > packages && \ - apk info -v > versions && \ - paste -d " " packages versions > /tmp/package_versions.txt && \ + apk info -v > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ chmod 777 /tmp/package_versions.txt' elif [ "${DIST_IMAGE}" == "ubuntu" ]; then docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apt list -qq --installed | cut -d" " -f1-2 > /tmp/package_versions.txt && \ + apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ chmod 777 /tmp/package_versions.txt' fi NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) @@ -425,9 +454,9 @@ pipeline { set -e docker pull lsiodev/ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v6-${META_TAG} + docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ @@ -504,38 +533,38 @@ pipeline { ''' sh '''#! /bin/bash if [ "${CI}" == "false" ]; then - docker pull lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v6-${META_TAG} + docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi''' sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-preview" - sh "docker tag ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm32v6-preview" + sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm32v7-preview" sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-preview" sh "docker push ${IMAGE}:amd64-${META_TAG}" - sh "docker push ${IMAGE}:arm32v6-${META_TAG}" + sh "docker push ${IMAGE}:arm32v7-${META_TAG}" sh "docker push ${IMAGE}:arm64v8-${META_TAG}" sh "docker push ${IMAGE}:amd64-preview" - sh "docker push ${IMAGE}:arm32v6-preview" + sh "docker push ${IMAGE}:arm32v7-preview" sh "docker push ${IMAGE}:arm64v8-preview" sh "docker manifest push --purge ${IMAGE}:preview || :" - sh "docker manifest create ${IMAGE}:preview ${IMAGE}:amd64-preview ${IMAGE}:arm32v6-preview ${IMAGE}:arm64v8-preview" - sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm32v6-preview --os linux --arch arm" + sh "docker manifest create ${IMAGE}:preview ${IMAGE}:amd64-preview ${IMAGE}:arm32v7-preview ${IMAGE}:arm64v8-preview" + sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm32v7-preview --os linux --arch arm" sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8" sh "docker manifest push --purge ${IMAGE}:${META_TAG} || :" - sh "docker manifest create ${IMAGE}:${META_TAG} ${IMAGE}:amd64-${META_TAG} ${IMAGE}:arm32v6-${META_TAG} ${IMAGE}:arm64v8-${META_TAG}" - sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm32v6-${META_TAG} --os linux --arch arm" + sh "docker manifest create ${IMAGE}:${META_TAG} ${IMAGE}:amd64-${META_TAG} ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm64v8-${META_TAG}" + sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm32v7-${META_TAG} --os linux --arch arm" sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8" sh "docker manifest push --purge ${IMAGE}:preview" sh "docker manifest push --purge ${IMAGE}:${META_TAG}" sh '''docker rmi \ ${IMAGE}:amd64-${META_TAG} \ ${IMAGE}:amd64-preview \ - ${IMAGE}:arm32v6-${META_TAG} \ - ${IMAGE}:arm32v6-preview \ + ${IMAGE}:arm32v7-${META_TAG} \ + ${IMAGE}:arm32v7-preview \ ${IMAGE}:arm64v8-${META_TAG} \ ${IMAGE}:arm64v8-preview \ - lsiodev/buildcache:arm32v6-${COMMIT_SHA}-${BUILD_NUMBER} \ + lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ''' } } @@ -606,7 +635,7 @@ pipeline { } steps { sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \ - -d '{"body": "I am a bot, here are the test results for this PR '${CI_URL}'"}' ''' + -d '{"body": "I am a bot, here are the test results for this PR: \\n'${CI_URL}' \\n'${SHELLCHECK_URL}'"}' ''' } } } @@ -621,12 +650,12 @@ pipeline { } else if (currentBuild.currentResult == "SUCCESS"){ sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } else { sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } } diff --git a/README.md b/README.md index c64101cb..32060fec 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,6 @@ Find us at: * [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. * [IRC](https://irc.linuxserver.io) - on freenode at `#linuxserver.io`. Our primary support channel is Discord. * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! -* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) [![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn) @@ -39,7 +38,7 @@ The architectures supported by this image are: | :----: | --- | | x86-64 | amd64-latest | | arm64 | arm64v8-latest | -| armhf | arm32v6-latest | +| armhf | arm32v7-latest | ## Version Tags @@ -171,6 +170,7 @@ Below are the instructions for updating containers: ## Versions +* **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **08.03.19:** - Rebase to Bionic, use proposed endpoint for libchromaprint. * **26.01.19:** - Add pipeline logic and multi arch. * **22.04.18:** - Switch to beta builds. diff --git a/readme-vars.yml b/readme-vars.yml index 4ebbe913..70271af3 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -11,7 +11,7 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_ available_architectures: - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - - { arch: "{{ arch_armhf }}", tag: "arm32v6-latest"} + - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} # development version development_versions: true @@ -41,6 +41,7 @@ app_setup_block: | # changelog changelogs: + - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint." } - { date: "26.01.19:", desc: "Add pipeline logic and multi arch." } - { date: "22.04.18:", desc: "Switch to beta builds." } From 07c824f3bf0958c58a4eb366e6788d814dcedf90 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 24 Mar 2019 16:50:41 -0400 Subject: [PATCH 025/790] Bot Updating Package Versions --- package_versions.txt | 848 +++++++++++++++++++++---------------------- 1 file changed, 424 insertions(+), 424 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cdabf4d2..1284bb77 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,424 +1,424 @@ -adduser/now 3.116ubuntu1 -apt/now 1.6.8 -apt-transport-https/now 1.6.10 -apt-utils/now 1.6.8 -base-files/now 10.1ubuntu2.4 -base-passwd/now 3.5.44 -bash/now 4.4.18-2ubuntu1 -binutils/now 2.30-21ubuntu1~18.04 -binutils-common/now 2.30-21ubuntu1~18.04 -binutils-x86-64-linux-gnu/now 2.30-21ubuntu1~18.04 -bsdutils/now 1:2.31.1-0.4ubuntu3.3 -bzip2/now 1.0.6-8.1 -ca-certificates/now 20180409 -ca-certificates-mono/now 5.18.1.0-0xamarin4+ubuntu1804b1 -cli-common/now 0.9+xamarin8+ubuntu1804b1 -coreutils/now 8.28-1ubuntu1 -curl/now 7.58.0-2ubuntu3.6 -dash/now 0.5.8-2.10 -debconf/now 1.5.66 -debianutils/now 4.8.4 -diffutils/now 1:3.6-1 -dirmngr/now 2.2.4-1ubuntu1.2 -dpkg/now 1.19.0.5ubuntu2.1 -dpkg-dev/now 1.19.0.5ubuntu2.1 -e2fsprogs/now 1.44.1-1ubuntu1.1 -fdisk/now 2.31.1-0.4ubuntu3.3 -findutils/now 4.6.0+git+20170828-2 -fontconfig/now 2.12.6-0ubuntu2 -fontconfig-config/now 2.12.6-0ubuntu2 -fonts-dejavu-core/now 2.37-1 -gcc-8-base/now 8.2.0-1ubuntu2~18.04 -gnupg/now 2.2.4-1ubuntu1.2 -gnupg-l10n/now 2.2.4-1ubuntu1.2 -gnupg-utils/now 2.2.4-1ubuntu1.2 -gpg/now 2.2.4-1ubuntu1.2 -gpg-agent/now 2.2.4-1ubuntu1.2 -gpg-wks-client/now 2.2.4-1ubuntu1.2 -gpg-wks-server/now 2.2.4-1ubuntu1.2 -gpgconf/now 2.2.4-1ubuntu1.2 -gpgsm/now 2.2.4-1ubuntu1.2 -gpgv/now 2.2.4-1ubuntu1.2 -grep/now 3.1-2 -gzip/now 1.6-5ubuntu1 -hostname/now 3.20 -init-system-helpers/now 1.51 -jq/now 1.5+dfsg-2 -krb5-locales/now 1.16-2ubuntu0.1 -libacl1/now 2.2.52-3build1 -libapt-inst2.0/now 1.6.8 -libapt-pkg5.0/now 1.6.8 -libasn1-8-heimdal/now 7.5.0+dfsg-1 -libassuan0/now 2.5.1-2 -libattr1/now 1:2.4.47-2build1 -libaudit-common/now 1:2.8.2-1ubuntu1 -libaudit1/now 1:2.8.2-1ubuntu1 -libavcodec57/now 7:3.4.4-0ubuntu0.18.04.1 -libavformat57/now 7:3.4.4-0ubuntu0.18.04.1 -libavutil55/now 7:3.4.4-0ubuntu0.18.04.1 -libbinutils/now 2.30-21ubuntu1~18.04 -libblkid1/now 2.31.1-0.4ubuntu3.3 -libbluray2/now 1:1.0.2-3 -libbsd0/now 0.8.7-1 -libbz2-1.0/now 1.0.6-8.1 -libc-bin/now 2.27-3ubuntu1 -libc6/now 2.27-3ubuntu1 -libcairo2/now 1.15.10-2ubuntu0.1 -libcap-ng0/now 0.7.7-3.1 -libchromaprint-tools/now 1.4.3-1 -libchromaprint1/now 1.4.3-1 -libcom-err2/now 1.44.1-1ubuntu1.1 -libcroco3/now 0.6.12-2 -libcrystalhd3/now 1:0.0~git20110715.fdd2f19-12 -libcurl3-gnutls/now 7.58.0-2ubuntu3.6 -libcurl4/now 7.58.0-2ubuntu3.6 -libcurl4-openssl-dev/now 7.58.0-2ubuntu3.6 -libdatrie1/now 0.2.10-7 -libdb5.3/now 5.3.28-13.1ubuntu1 -libdebconfclient0/now 0.213ubuntu1 -libdpkg-perl/now 1.19.0.5ubuntu2.1 -libdrm-common/now 2.4.95-1~18.04.1 -libdrm2/now 2.4.95-1~18.04.1 -libexif12/now 0.6.21-4 -libexpat1/now 2.2.5-3 -libext2fs2/now 1.44.1-1ubuntu1.1 -libfdisk1/now 2.31.1-0.4ubuntu3.3 -libffi6/now 3.2.1-8 -libfontconfig1/now 2.12.6-0ubuntu2 -libfreetype6/now 2.8.1-2ubuntu2 -libgcc1/now 1:8.2.0-1ubuntu2~18.04 -libgcrypt20/now 1.8.1-4ubuntu1.1 -libgdbm-compat4/now 1.14.1-6 -libgdbm5/now 1.14.1-6 -libgdiplus/now 5.6.1-0xamarin1+ubuntu1804b1 -libgdk-pixbuf2.0-0/now 2.36.11-2 -libgdk-pixbuf2.0-common/now 2.36.11-2 -libgif7/now 5.1.4-2 -libglib2.0-0/now 2.56.3-0ubuntu0.18.04.1 -libgme0/now 0.6.2-1 -libgmp10/now 2:6.1.2+dfsg-2 -libgnutls30/now 3.5.18-1ubuntu1 -libgomp1/now 8.2.0-1ubuntu2~18.04 -libgpg-error0/now 1.27-6 -libgraphite2-3/now 1.3.11-2 -libgsm1/now 1.0.13-4build1 -libgssapi-krb5-2/now 1.16-2ubuntu0.1 -libgssapi3-heimdal/now 7.5.0+dfsg-1 -libharfbuzz0b/now 1.7.2-1ubuntu1 -libhcrypto4-heimdal/now 7.5.0+dfsg-1 -libheimbase1-heimdal/now 7.5.0+dfsg-1 -libheimntlm0-heimdal/now 7.5.0+dfsg-1 -libhogweed4/now 3.4-1 -libhx509-5-heimdal/now 7.5.0+dfsg-1 -libicu60/now 60.2-3ubuntu3 -libidn2-0/now 2.0.4-1.1build2 -libjbig0/now 2.1-3.1build1 -libjpeg-turbo8/now 1.5.2-0ubuntu5.18.04.1 -libjpeg8/now 8c-2ubuntu8 -libjq1/now 1.5+dfsg-2 -libk5crypto3/now 1.16-2ubuntu0.1 -libkeyutils1/now 1.5.9-9.2ubuntu2 -libkrb5-26-heimdal/now 7.5.0+dfsg-1 -libkrb5-3/now 1.16-2ubuntu0.1 -libkrb5support0/now 1.16-2ubuntu0.1 -libksba8/now 1.3.5-2 -libldap-2.4-2/now 2.4.45+dfsg-1ubuntu1.1 -libldap-common/now 2.4.45+dfsg-1ubuntu1.1 -liblz4-1/now 0.0~r131-2ubuntu3 -liblzma5/now 5.2.2-1.3 -libmediainfo0v5/now 18.12-1 -libmms0/now 0.6.4-2 -libmono-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-accessibility4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cairo4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cecil-private-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cecil-vb0.9-cil/now 4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-codecontracts4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-corlib4.5-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cscompmgd0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-csharp4.0c-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-custommarshalers4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-data-tds4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-db2-1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-debugger-soft4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-cjk4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-mideast4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-other4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-rare4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-west4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-all/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-visualbasic10.0-cil/now 4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-oracle4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-parallel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-peapi4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-posix4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-rabbitmq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-relaxng4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-sharpzip4.84-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-simd4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-smdiagnostics0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-sqlite4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-configuration-install4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-configuration4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-core4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-entity4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-services-client4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-deployment4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-drawing-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-drawing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-dynamic4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-io-compression4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-json4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-ldap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-management4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-messaging4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-numerics4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-core2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reflection-context4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-security4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-transactions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-mobile4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-mvc3.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-routing4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-services4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages2.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xaml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml-linq4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-tasklets4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-webbrowser4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-webmatrix-data4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-windowsbase4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-1/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-dev/now 5.18.1.0-0xamarin4+ubuntu1804b1 -libmount1/now 2.31.1-0.4ubuntu3.3 -libmp3lame0/now 3.100-2 -libmpg123-0/now 1.25.10-1 -libncurses5/now 6.1-1ubuntu1.18.04 -libncursesw5/now 6.1-1ubuntu1.18.04 -libnettle6/now 3.4-1 -libnghttp2-14/now 1.30.0-1ubuntu1 -libnpth0/now 1.5-3 -libnuma1/now 2.0.11-2.1 -libnunit-cil-dev/now 2.6.4+dfsg-1 -libnunit-console-runner2.6.3-cil/now 2.6.4+dfsg-1 -libnunit-core-interfaces2.6.3-cil/now 2.6.4+dfsg-1 -libnunit-core2.6.3-cil/now 2.6.4+dfsg-1 -libnunit-framework2.6.3-cil/now 2.6.4+dfsg-1 -libnunit-mocks2.6.3-cil/now 2.6.4+dfsg-1 -libnunit-util2.6.3-cil/now 2.6.4+dfsg-1 -libogg0/now 1.3.2-1 -libonig4/now 6.7.0-1 -libopenjp2-7/now 2.3.0-1 -libopenmpt0/now 0.3.6-1 -libopus0/now 1.1.2-1ubuntu1 -libp11-kit0/now 0.23.9-2 -libpam-modules/now 1.1.8-3.6ubuntu2.18.04.1 -libpam-modules-bin/now 1.1.8-3.6ubuntu2.18.04.1 -libpam-runtime/now 1.1.8-3.6ubuntu2.18.04.1 -libpam0g/now 1.1.8-3.6ubuntu2.18.04.1 -libpango-1.0-0/now 1.40.14-1ubuntu0.1 -libpangocairo-1.0-0/now 1.40.14-1ubuntu0.1 -libpangoft2-1.0-0/now 1.40.14-1ubuntu0.1 -libpcre3/now 2:8.39-9 -libperl5.26/now 5.26.1-6ubuntu0.3 -libpixman-1-0/now 0.34.0-2 -libpng16-16/now 1.6.34-1ubuntu0.18.04.1 -libprocps6/now 2:3.3.12-3ubuntu1.1 -libpsl5/now 0.19.1-5build1 -libpython-stdlib/now 2.7.15~rc1-1 -libpython2.7-minimal/now 2.7.15~rc1-1ubuntu0.1 -libpython2.7-stdlib/now 2.7.15~rc1-1ubuntu0.1 -libreadline7/now 7.0-3 -libroken18-heimdal/now 7.5.0+dfsg-1 -librsvg2-2/now 2.40.20-2 -librtmp1/now 2.4+20151223.gitfa8646d.1-1 -libsasl2-2/now 2.1.27~101-g0780600+dfsg-3ubuntu2 -libsasl2-modules/now 2.1.27~101-g0780600+dfsg-3ubuntu2 -libsasl2-modules-db/now 2.1.27~101-g0780600+dfsg-3ubuntu2 -libseccomp2/now 2.3.1-2.1ubuntu4.1 -libselinux1/now 2.7-2build2 -libsemanage-common/now 2.7-2build2 -libsemanage1/now 2.7-2build2 -libsepol1/now 2.7-1 -libshine3/now 3.1.1-1 -libsmartcols1/now 2.31.1-0.4ubuntu3.3 -libsnappy1v5/now 1.1.7-1 -libsoxr0/now 0.1.2-3 -libspeex1/now 1.2~rc1.2-1ubuntu2 -libsqlite3-0/now 3.22.0-1 -libss2/now 1.44.1-1ubuntu1.1 -libssh-gcrypt-4/now 0.8.0~20170825.94fa1e38-1ubuntu0.2 -libssl1.1/now 1.1.0g-2ubuntu4.3 -libstdc++6/now 8.2.0-1ubuntu2~18.04 -libswresample2/now 7:3.4.4-0ubuntu0.18.04.1 -libsystemd0/now 237-3ubuntu10.15 -libtasn1-6/now 4.13-2 -libthai-data/now 0.1.27-2 -libthai0/now 0.1.27-2 -libtheora0/now 1.1.1+dfsg.1-14 -libtiff5/now 4.0.9-5ubuntu0.2 -libtinfo5/now 6.1-1ubuntu1.18.04 -libtwolame0/now 0.3.13-3 -libudev1/now 237-3ubuntu10.15 -libunistring2/now 0.9.9-0ubuntu1 -libuuid1/now 2.31.1-0.4ubuntu3.3 -libva-drm2/now 2.1.0-3 -libva-x11-2/now 2.1.0-3 -libva2/now 2.1.0-3 -libvdpau1/now 1.1.1-3ubuntu1 -libvorbis0a/now 1.3.5-4.2 -libvorbisenc2/now 1.3.5-4.2 -libvorbisfile3/now 1.3.5-4.2 -libvpx5/now 1.7.0-3 -libwavpack1/now 5.1.0-2ubuntu1.2 -libwebp6/now 0.6.1-2 -libwebpmux3/now 0.6.1-2 -libwind0-heimdal/now 7.5.0+dfsg-1 -libx11-6/now 2:1.6.4-3ubuntu0.2 -libx11-data/now 2:1.6.4-3ubuntu0.2 -libx264-152/now 2:0.152.2854+gite9a5903-2 -libx265-146/now 2.6-3 -libxau6/now 1:1.0.8-1 -libxcb-render0/now 1.13-2~ubuntu18.04 -libxcb-shm0/now 1.13-2~ubuntu18.04 -libxcb1/now 1.13-2~ubuntu18.04 -libxdmcp6/now 1:1.1.2-3 -libxext6/now 2:1.3.3-1 -libxfixes3/now 1:5.0.3-1 -libxml2/now 2.9.4+dfsg1-6.1ubuntu1.2 -libxrender1/now 1:0.9.10-1 -libxvidcore4/now 2:1.3.5-1 -libzen0v5/now 0.4.37-1 -libzstd1/now 1.3.3+dfsg-2ubuntu1 -libzvbi-common/now 0.2.35-13 -libzvbi0/now 0.2.35-13 -locales/now 2.27-3ubuntu1 -login/now 1:4.5-1ubuntu1 -lsb-base/now 9.20170808ubuntu1 -make/now 4.1-9.1ubuntu1 -mawk/now 1.3.3-17ubuntu3 -mediainfo/now 18.12-1 -mime-support/now 3.60ubuntu1 -mono-4.0-gac/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-devel/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-gac/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-mcs/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-roslyn/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime-common/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime-sgen/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mono-vbnc/now 4.7-0xamarin1+ubuntu1804b1 -mono-xbuild/now 5.18.1.0-0xamarin4+ubuntu1804b1 -mount/now 2.31.1-0.4ubuntu3.3 -multiarch-support/now 2.27-3ubuntu1 -ncurses-base/now 6.1-1ubuntu1.18.04 -ncurses-bin/now 6.1-1ubuntu1.18.04 -openssl/now 1.1.0g-2ubuntu4.3 -passwd/now 1:4.5-1ubuntu1 -patch/now 2.7.6-2ubuntu1 -perl/now 5.26.1-6ubuntu0.3 -perl-base/now 5.26.1-6ubuntu0.3 -perl-modules-5.26/now 5.26.1-6ubuntu0.3 -pinentry-curses/now 1.1.0-1 -pkg-config/now 0.29.1-0ubuntu2 -procps/now 2:3.3.12-3ubuntu1.1 -publicsuffix/now 20180223.1310-1 -python/now 2.7.15~rc1-1 -python-minimal/now 2.7.15~rc1-1 -python2.7/now 2.7.15~rc1-1ubuntu0.1 -python2.7-minimal/now 2.7.15~rc1-1ubuntu0.1 -readline-common/now 7.0-3 -sed/now 4.4-2 -sensible-utils/now 0.0.12 -shared-mime-info/now 1.9-2 -sqlite3/now 3.22.0-1 -sysvinit-utils/now 2.88dsf-59.10ubuntu1 -tar/now 1.29b-2ubuntu0.1 -tzdata/now 2018i-0ubuntu0.18.04 -ubuntu-keyring/now 2018.09.18.1~18.04.0 -ucf/now 3.0038 -unzip/now 6.0-21ubuntu1 -util-linux/now 2.31.1-0.4ubuntu3.3 -xz-utils/now 5.2.2-1.3 -zlib1g/now 1:1.2.11.dfsg-0ubuntu2 +adduser3.116ubuntu1 +apt1.6.8 +apt-transport-https1.6.10 +apt-utils1.6.8 +base-files10.1ubuntu2.4 +base-passwd3.5.44 +bash4.4.18-2ubuntu1 +binutils2.30-21ubuntu1~18.04 +binutils-common2.30-21ubuntu1~18.04 +binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04 +bsdutils1:2.31.1-0.4ubuntu3.3 +bzip21.0.6-8.1 +ca-certificates20180409 +ca-certificates-mono5.18.1.0-0xamarin4+ubuntu1804b1 +cli-common0.9+xamarin8+ubuntu1804b1 +coreutils8.28-1ubuntu1 +curl7.58.0-2ubuntu3.6 +dash0.5.8-2.10 +debconf1.5.66 +debianutils4.8.4 +diffutils1:3.6-1 +dirmngr2.2.4-1ubuntu1.2 +dpkg1.19.0.5ubuntu2.1 +dpkg-dev1.19.0.5ubuntu2.1 +e2fsprogs1.44.1-1ubuntu1.1 +fdisk2.31.1-0.4ubuntu3.3 +findutils4.6.0+git+20170828-2 +fontconfig2.12.6-0ubuntu2 +fontconfig-config2.12.6-0ubuntu2 +fonts-dejavu-core2.37-1 +gcc-8-base8.2.0-1ubuntu2~18.04 +gnupg2.2.4-1ubuntu1.2 +gnupg-l10n2.2.4-1ubuntu1.2 +gnupg-utils2.2.4-1ubuntu1.2 +gpg2.2.4-1ubuntu1.2 +gpg-agent2.2.4-1ubuntu1.2 +gpgconf2.2.4-1ubuntu1.2 +gpgsm2.2.4-1ubuntu1.2 +gpgv2.2.4-1ubuntu1.2 +gpg-wks-client2.2.4-1ubuntu1.2 +gpg-wks-server2.2.4-1ubuntu1.2 +grep3.1-2 +gzip1.6-5ubuntu1 +hostname3.20 +init-system-helpers1.51 +jq1.5+dfsg-2 +krb5-locales1.16-2ubuntu0.1 +libacl12.2.52-3build1 +libapt-inst2.01.6.8 +libapt-pkg5.01.6.8 +libasn1-8-heimdal7.5.0+dfsg-1 +libassuan02.5.1-2 +libattr11:2.4.47-2build1 +libaudit11:2.8.2-1ubuntu1 +libaudit-common1:2.8.2-1ubuntu1 +libavcodec577:3.4.4-0ubuntu0.18.04.1 +libavformat577:3.4.4-0ubuntu0.18.04.1 +libavutil557:3.4.4-0ubuntu0.18.04.1 +libbinutils2.30-21ubuntu1~18.04 +libblkid12.31.1-0.4ubuntu3.3 +libbluray21:1.0.2-3 +libbsd00.8.7-1 +libbz2-1.01.0.6-8.1 +libc62.27-3ubuntu1 +libcairo21.15.10-2ubuntu0.1 +libcap-ng00.7.7-3.1 +libc-bin2.27-3ubuntu1 +libchromaprint11.4.3-1 +libchromaprint-tools1.4.3-1 +libcom-err21.44.1-1ubuntu1.1 +libcroco30.6.12-2 +libcrystalhd31:0.0~git20110715.fdd2f19-12 +libcurl3-gnutls7.58.0-2ubuntu3.6 +libcurl47.58.0-2ubuntu3.6 +libcurl4-openssl-dev7.58.0-2ubuntu3.6 +libdatrie10.2.10-7 +libdb5.35.3.28-13.1ubuntu1 +libdebconfclient00.213ubuntu1 +libdpkg-perl1.19.0.5ubuntu2.1 +libdrm22.4.95-1~18.04.1 +libdrm-common2.4.95-1~18.04.1 +libexif120.6.21-4 +libexpat12.2.5-3 +libext2fs21.44.1-1ubuntu1.1 +libfdisk12.31.1-0.4ubuntu3.3 +libffi63.2.1-8 +libfontconfig12.12.6-0ubuntu2 +libfreetype62.8.1-2ubuntu2 +libgcc11:8.2.0-1ubuntu2~18.04 +libgcrypt201.8.1-4ubuntu1.1 +libgdbm51.14.1-6 +libgdbm-compat41.14.1-6 +libgdiplus5.6.1-0xamarin1+ubuntu1804b1 +libgdk-pixbuf2.0-02.36.11-2 +libgdk-pixbuf2.0-common2.36.11-2 +libgif75.1.4-2 +libglib2.0-02.56.3-0ubuntu0.18.04.1 +libgme00.6.2-1 +libgmp102:6.1.2+dfsg-2 +libgnutls303.5.18-1ubuntu1 +libgomp18.2.0-1ubuntu2~18.04 +libgpg-error01.27-6 +libgraphite2-31.3.11-2 +libgsm11.0.13-4build1 +libgssapi3-heimdal7.5.0+dfsg-1 +libgssapi-krb5-21.16-2ubuntu0.1 +libharfbuzz0b1.7.2-1ubuntu1 +libhcrypto4-heimdal7.5.0+dfsg-1 +libheimbase1-heimdal7.5.0+dfsg-1 +libheimntlm0-heimdal7.5.0+dfsg-1 +libhogweed43.4-1 +libhx509-5-heimdal7.5.0+dfsg-1 +libicu6060.2-3ubuntu3 +libidn2-02.0.4-1.1build2 +libjbig02.1-3.1build1 +libjpeg88c-2ubuntu8 +libjpeg-turbo81.5.2-0ubuntu5.18.04.1 +libjq11.5+dfsg-2 +libk5crypto31.16-2ubuntu0.1 +libkeyutils11.5.9-9.2ubuntu2 +libkrb5-26-heimdal7.5.0+dfsg-1 +libkrb5-31.16-2ubuntu0.1 +libkrb5support01.16-2ubuntu0.1 +libksba81.3.5-2 +libldap-2.4-22.4.45+dfsg-1ubuntu1.1 +libldap-common2.4.45+dfsg-1ubuntu1.1 +liblz4-10.0~r131-2ubuntu3 +liblzma55.2.2-1.3 +libmediainfo0v518.12-1 +libmms00.6.4-2 +libmono-2.0-dev5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-accessibility4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cairo4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cecil-private-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 +libmono-cil-dev5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-codecontracts4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-corlib4.5-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cscompmgd0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-csharp4.0c-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-custommarshalers4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-data-tds4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-db2-1.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-debugger-soft4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-all5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-cjk4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-mideast4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-other4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-rare4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-i18n-west4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-management4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-oracle4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-parallel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-peapi4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-posix4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-relaxng4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-security4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-15.18.1.0-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-dev5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-sharpzip4.84-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-simd4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-smdiagnostics0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-sqlite4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-configuration4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-configuration-install4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-core4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-entity4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-services4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-data-services-client4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-deployment4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-drawing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-drawing-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-dynamic4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-io-compression4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-json4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-management4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-numerics4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-core2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-reflection-context4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-security4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-transactions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-mobile4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-mvc3.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-services4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xaml4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-tasklets4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-webbrowser4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-webmatrix-data4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-windowsbase4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmount12.31.1-0.4ubuntu3.3 +libmp3lame03.100-2 +libmpg123-01.25.10-1 +libncurses56.1-1ubuntu1.18.04 +libncursesw56.1-1ubuntu1.18.04 +libnettle63.4-1 +libnghttp2-141.30.0-1ubuntu1 +libnpth01.5-3 +libnuma12.0.11-2.1 +libnunit-cil-dev2.6.4+dfsg-1 +libnunit-console-runner2.6.3-cil2.6.4+dfsg-1 +libnunit-core2.6.3-cil2.6.4+dfsg-1 +libnunit-core-interfaces2.6.3-cil2.6.4+dfsg-1 +libnunit-framework2.6.3-cil2.6.4+dfsg-1 +libnunit-mocks2.6.3-cil2.6.4+dfsg-1 +libnunit-util2.6.3-cil2.6.4+dfsg-1 +libogg01.3.2-1 +libonig46.7.0-1 +libopenjp2-72.3.0-1 +libopenmpt00.3.6-1 +libopus01.1.2-1ubuntu1 +libp11-kit00.23.9-2 +libpam0g1.1.8-3.6ubuntu2.18.04.1 +libpam-modules1.1.8-3.6ubuntu2.18.04.1 +libpam-modules-bin1.1.8-3.6ubuntu2.18.04.1 +libpam-runtime1.1.8-3.6ubuntu2.18.04.1 +libpango-1.0-01.40.14-1ubuntu0.1 +libpangocairo-1.0-01.40.14-1ubuntu0.1 +libpangoft2-1.0-01.40.14-1ubuntu0.1 +libpcre32:8.39-9 +libperl5.265.26.1-6ubuntu0.3 +libpixman-1-00.34.0-2 +libpng16-161.6.34-1ubuntu0.18.04.1 +libprocps62:3.3.12-3ubuntu1.1 +libpsl50.19.1-5build1 +libpython2.7-minimal2.7.15~rc1-1ubuntu0.1 +libpython2.7-stdlib2.7.15~rc1-1ubuntu0.1 +libpython-stdlib2.7.15~rc1-1 +libreadline77.0-3 +libroken18-heimdal7.5.0+dfsg-1 +librsvg2-22.40.20-2 +librtmp12.4+20151223.gitfa8646d.1-1 +libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2 +libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2 +libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2 +libseccomp22.3.1-2.1ubuntu4.1 +libselinux12.7-2build2 +libsemanage12.7-2build2 +libsemanage-common2.7-2build2 +libsepol12.7-1 +libshine33.1.1-1 +libsmartcols12.31.1-0.4ubuntu3.3 +libsnappy1v51.1.7-1 +libsoxr00.1.2-3 +libspeex11.2~rc1.2-1ubuntu2 +libsqlite3-03.22.0-1 +libss21.44.1-1ubuntu1.1 +libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 +libssl1.11.1.0g-2ubuntu4.3 +libstdc++68.2.0-1ubuntu2~18.04 +libswresample27:3.4.4-0ubuntu0.18.04.1 +libsystemd0237-3ubuntu10.15 +libtasn1-64.13-2 +libthai00.1.27-2 +libthai-data0.1.27-2 +libtheora01.1.1+dfsg.1-14 +libtiff54.0.9-5ubuntu0.2 +libtinfo56.1-1ubuntu1.18.04 +libtwolame00.3.13-3 +libudev1237-3ubuntu10.15 +libunistring20.9.9-0ubuntu1 +libuuid12.31.1-0.4ubuntu3.3 +libva22.1.0-3 +libva-drm22.1.0-3 +libva-x11-22.1.0-3 +libvdpau11.1.1-3ubuntu1 +libvorbis0a1.3.5-4.2 +libvorbisenc21.3.5-4.2 +libvorbisfile31.3.5-4.2 +libvpx51.7.0-3 +libwavpack15.1.0-2ubuntu1.2 +libwebp60.6.1-2 +libwebpmux30.6.1-2 +libwind0-heimdal7.5.0+dfsg-1 +libx11-62:1.6.4-3ubuntu0.2 +libx11-data2:1.6.4-3ubuntu0.2 +libx264-1522:0.152.2854+gite9a5903-2 +libx265-1462.6-3 +libxau61:1.0.8-1 +libxcb11.13-2~ubuntu18.04 +libxcb-render01.13-2~ubuntu18.04 +libxcb-shm01.13-2~ubuntu18.04 +libxdmcp61:1.1.2-3 +libxext62:1.3.3-1 +libxfixes31:5.0.3-1 +libxml22.9.4+dfsg1-6.1ubuntu1.2 +libxrender11:0.9.10-1 +libxvidcore42:1.3.5-1 +libzen0v50.4.37-1 +libzstd11.3.3+dfsg-2ubuntu1 +libzvbi00.2.35-13 +libzvbi-common0.2.35-13 +locales2.27-3ubuntu1 +login1:4.5-1ubuntu1 +lsb-base9.20170808ubuntu1 +make4.1-9.1ubuntu1 +mawk1.3.3-17ubuntu3 +mediainfo18.12-1 +mime-support3.60ubuntu1 +mono-4.0-gac5.18.1.0-0xamarin4+ubuntu1804b1 +mono-devel5.18.1.0-0xamarin4+ubuntu1804b1 +mono-gac5.18.1.0-0xamarin4+ubuntu1804b1 +mono-mcs5.18.1.0-0xamarin4+ubuntu1804b1 +mono-roslyn5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime-common5.18.1.0-0xamarin4+ubuntu1804b1 +mono-runtime-sgen5.18.1.0-0xamarin4+ubuntu1804b1 +mono-vbnc4.7-0xamarin1+ubuntu1804b1 +mono-xbuild5.18.1.0-0xamarin4+ubuntu1804b1 +mount2.31.1-0.4ubuntu3.3 +multiarch-support2.27-3ubuntu1 +ncurses-base6.1-1ubuntu1.18.04 +ncurses-bin6.1-1ubuntu1.18.04 +openssl1.1.0g-2ubuntu4.3 +passwd1:4.5-1ubuntu1 +patch2.7.6-2ubuntu1 +perl5.26.1-6ubuntu0.3 +perl-base5.26.1-6ubuntu0.3 +perl-modules-5.265.26.1-6ubuntu0.3 +pinentry-curses1.1.0-1 +pkg-config0.29.1-0ubuntu2 +procps2:3.3.12-3ubuntu1.1 +publicsuffix20180223.1310-1 +python2.7.15~rc1-1 +python2.72.7.15~rc1-1ubuntu0.1 +python2.7-minimal2.7.15~rc1-1ubuntu0.1 +python-minimal2.7.15~rc1-1 +readline-common7.0-3 +sed4.4-2 +sensible-utils0.0.12 +shared-mime-info1.9-2 +sqlite33.22.0-1 +sysvinit-utils2.88dsf-59.10ubuntu1 +tar1.29b-2ubuntu0.1 +tzdata2018i-0ubuntu0.18.04 +ubuntu-keyring2018.09.18.1~18.04.0 +ucf3.0038 +unzip6.0-21ubuntu1 +util-linux2.31.1-0.4ubuntu3.3 +xz-utils5.2.2-1.3 +zlib1g1:1.2.11.dfsg-0ubuntu2 From 13209b6b77eb7bccb5044a601158c312c5bb6eea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 1 Apr 2019 07:56:01 +0000 Subject: [PATCH 026/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1284bb77..11a198f1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 -apt1.6.8 +apt1.6.10 apt-transport-https1.6.10 -apt-utils1.6.8 +apt-utils1.6.10 base-files10.1ubuntu2.4 base-passwd3.5.44 bash4.4.18-2ubuntu1 @@ -46,8 +46,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 -libapt-inst2.01.6.8 -libapt-pkg5.01.6.8 +libapt-inst2.01.6.10 +libapt-pkg5.01.6.10 libasn1-8-heimdal7.5.0+dfsg-1 libassuan02.5.1-2 libattr11:2.4.47-2build1 From 0f7ef7b0e0868e68802ce5215ba8368cc2b32b62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 15 Apr 2019 13:56:50 -0400 Subject: [PATCH 027/790] Bot Updating Package Versions --- package_versions.txt | 308 +++++++++++++++++++++---------------------- 1 file changed, 154 insertions(+), 154 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11a198f1..8a1c5e9b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1 ca-certificates20180409 -ca-certificates-mono5.18.1.0-0xamarin4+ubuntu1804b1 +ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.6 @@ -128,149 +128,149 @@ liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmediainfo0v518.12-1 libmms00.6.4-2 -libmono-2.0-dev5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-accessibility4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cairo4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cecil-private-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-cairo4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-cecil-private-cil5.20.1.19-0xamarin2+ubuntu1804b1 libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-codecontracts4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-corlib4.5-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-cscompmgd0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-csharp4.0c-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-custommarshalers4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-data-tds4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-db2-1.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-debugger-soft4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-all5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-cjk4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-mideast4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-other4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-rare4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-i18n-west4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-management4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-cil-dev5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-codecontracts4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-corlib4.5-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-cscompmgd0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-csharp4.0c-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-custommarshalers4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-data-tds4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-db2-1.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-debugger-soft4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n4.0-all5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n-cjk4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n-mideast4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n-other4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n-rare4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-i18n-west4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-management4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-build4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-oracle4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-parallel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-peapi4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-posix4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-rabbitmq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-relaxng4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-security4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-15.18.1.0-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-dev5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-sharpzip4.84-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-simd4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-smdiagnostics0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-sqlite4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-configuration4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-configuration-install4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-core4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-entity4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-services4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-data-services-client4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-deployment4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-drawing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-drawing-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-dynamic4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-io-compression4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-json4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-ldap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-management4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-messaging4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-numerics4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-core2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-reflection-context4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-security4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-transactions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-mobile4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-mvc3.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-routing4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-services4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xaml4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml-linq4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-tasklets4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-webbrowser4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-webmatrix-data4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-windowsbase4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil5.18.1.0-0xamarin4+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-oracle4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-parallel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-peapi4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-posix4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-relaxng4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-security4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmonosgen-2.0-15.20.1.19-0xamarin2+ubuntu1804b1 +libmonosgen-2.0-dev5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-sharpzip4.84-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-simd4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-smdiagnostics0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-sqlite4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-configuration4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-configuration-install4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-core4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data-entity4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data-services4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-data-services-client4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-deployment4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-drawing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-drawing-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-dynamic4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-identitymodel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-io-compression4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-json4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-management4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-net4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-net-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-numerics4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-core2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-reflection-context4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-security4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-transactions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-extensions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-mobile4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-mvc3.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-services4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-webpages2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-windows4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-windows-forms4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-xaml4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-xml4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-xml-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-tasklets4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-webbrowser4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-webmatrix-data4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-windowsbase4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 libmount12.31.1-0.4ubuntu3.3 libmp3lame03.100-2 libmpg123-01.25.10-1 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.0g-2ubuntu4.3 libstdc++68.2.0-1ubuntu2~18.04 libswresample27:3.4.4-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.15 +libsystemd0237-3ubuntu10.19 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,8 +340,8 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.15 -libunistring20.9.9-0ubuntu1 +libudev1237-3ubuntu10.19 +libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 libva-drm22.1.0-3 @@ -380,16 +380,16 @@ make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 mediainfo18.12-1 mime-support3.60ubuntu1 -mono-4.0-gac5.18.1.0-0xamarin4+ubuntu1804b1 -mono-devel5.18.1.0-0xamarin4+ubuntu1804b1 -mono-gac5.18.1.0-0xamarin4+ubuntu1804b1 -mono-mcs5.18.1.0-0xamarin4+ubuntu1804b1 -mono-roslyn5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime-common5.18.1.0-0xamarin4+ubuntu1804b1 -mono-runtime-sgen5.18.1.0-0xamarin4+ubuntu1804b1 +mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1804b1 +mono-devel5.20.1.19-0xamarin2+ubuntu1804b1 +mono-gac5.20.1.19-0xamarin2+ubuntu1804b1 +mono-mcs5.20.1.19-0xamarin2+ubuntu1804b1 +mono-roslyn5.20.1.19-0xamarin2+ubuntu1804b1 +mono-runtime5.20.1.19-0xamarin2+ubuntu1804b1 +mono-runtime-common5.20.1.19-0xamarin2+ubuntu1804b1 +mono-runtime-sgen5.20.1.19-0xamarin2+ubuntu1804b1 mono-vbnc4.7-0xamarin1+ubuntu1804b1 -mono-xbuild5.18.1.0-0xamarin4+ubuntu1804b1 +mono-xbuild5.20.1.19-0xamarin2+ubuntu1804b1 mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From 6566457d747593ad2ea3af11bbed508f3109ac30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 26 Apr 2019 04:55:16 +0200 Subject: [PATCH 028/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a1c5e9b..0e9ebab7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -279,7 +279,7 @@ libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libnpth01.5-3 -libnuma12.0.11-2.1 +libnuma12.0.11-2.1ubuntu0.1 libnunit-cil-dev2.6.4+dfsg-1 libnunit-console-runner2.6.3-cil2.6.4+dfsg-1 libnunit-core2.6.3-cil2.6.4+dfsg-1 From c4fdf481eeae486365933cdf4c2297ab1da48cfc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 1 May 2019 16:59:54 -0400 Subject: [PATCH 029/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0e9ebab7..1c6a923b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -28,7 +28,7 @@ findutils4.6.0+git+20170828-2 fontconfig2.12.6-0ubuntu2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 -gcc-8-base8.2.0-1ubuntu2~18.04 +gcc-8-base8.3.0-6ubuntu1~18.04 gnupg2.2.4-1ubuntu1.2 gnupg-l10n2.2.4-1ubuntu1.2 gnupg-utils2.2.4-1ubuntu1.2 @@ -86,7 +86,7 @@ libfdisk12.31.1-0.4ubuntu3.3 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 -libgcc11:8.2.0-1ubuntu2~18.04 +libgcc11:8.3.0-6ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 @@ -98,7 +98,7 @@ libglib2.0-02.56.3-0ubuntu0.18.04.1 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1 -libgomp18.2.0-1ubuntu2~18.04 +libgomp18.3.0-6ubuntu1~18.04 libgpg-error01.27-6 libgraphite2-31.3.11-2 libgsm11.0.13-4build1 @@ -126,7 +126,7 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.1 libldap-common2.4.45+dfsg-1ubuntu1.1 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmediainfo0v518.12-1 +libmediainfo0v519.04-1 libmms00.6.4-2 libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 @@ -330,9 +330,9 @@ libsqlite3-03.22.0-1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.0g-2ubuntu4.3 -libstdc++68.2.0-1ubuntu2~18.04 +libstdc++68.3.0-6ubuntu1~18.04 libswresample27:3.4.4-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.19 +libsystemd0237-3ubuntu10.20 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.19 +libudev1237-3ubuntu10.20 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 @@ -351,7 +351,7 @@ libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libvorbisfile31.3.5-4.2 libvpx51.7.0-3 -libwavpack15.1.0-2ubuntu1.2 +libwavpack15.1.0-2ubuntu1.3 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 @@ -378,7 +378,7 @@ login1:4.5-1ubuntu1 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo18.12-1 +mediainfo19.04-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1804b1 mono-devel5.20.1.19-0xamarin2+ubuntu1804b1 @@ -415,7 +415,7 @@ shared-mime-info1.9-2 sqlite33.22.0-1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2018i-0ubuntu0.18.04 +tzdata2019a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 From 14a7cc72645395578d5026cadc91c436d29fc7b8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 May 2019 04:51:57 +0100 Subject: [PATCH 030/790] Bot Updating Templated Files --- Jenkinsfile | 28 ++++++++++++---------------- README.md | 38 +++++++++++++++++++++++++++++--------- 2 files changed, 41 insertions(+), 25 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b61a23a3..1281d018 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -37,7 +37,7 @@ pipeline { script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( - script: '''curl -s https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases | jq -r 'first(.[] | select(.prerelease == true)) | .tag_name' ''', + script: '''docker run --rm alexeiled/skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':preview 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -232,7 +232,7 @@ pipeline { fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [ "${BRANCH_NAME}" = "master" ] && [ ! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md ] || [ "$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" ]; then + if [[ "${BRANCH_NAME}" == "master" ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then cp ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ cd ${TEMPDIR}/gitbook/docker-documentation/ git add images/docker-${CONTAINER_NAME}.md @@ -307,15 +307,13 @@ pipeline { sh '''#! /bin/bash echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin ''' - sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-arm-static -o qemu-arm-static" - sh "chmod +x qemu-*" sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" sh "docker push lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" sh '''docker rmi \ ${IMAGE}:arm32v7-${META_TAG} \ - lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ''' + lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' } } } @@ -336,15 +334,13 @@ pipeline { sh '''#! /bin/bash echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin ''' - sh "curl https://lsio-ci.ams3.digitaloceanspaces.com/qemu-aarch64-static -o qemu-aarch64-static" - sh "chmod +x qemu-*" sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" sh '''docker rmi \ ${IMAGE}:arm64v8-${META_TAG} \ - lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ''' + lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' } } } @@ -508,7 +504,7 @@ pipeline { sh "docker push ${IMAGE}:${META_TAG}" sh '''docker rmi \ ${IMAGE}:${META_TAG} \ - ${IMAGE}:preview ''' + ${IMAGE}:preview || :''' } } @@ -565,7 +561,7 @@ pipeline { ${IMAGE}:arm64v8-${META_TAG} \ ${IMAGE}:arm64v8-preview \ lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ - lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ''' + lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' } } } @@ -574,25 +570,25 @@ pipeline { when { branch "preview" expression { - env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-ls' + env.LS_TAG_NUMBER + env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } environment name: 'CHANGE_ID', value: '' environment name: 'EXIT_STATUS', value: '' } steps { - echo "Pushing New tag for current commit ${EXT_RELEASE_CLEAN}-pkg-${PACKAGE_TAG}-ls${LS_TAG_NUMBER}" + echo "Pushing New tag for current commit ${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}" sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ - -d '{"tag":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + -d '{"tag":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}' to preview",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to preview",\ "type": "commit",\ "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json - echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "target_commitish": "preview",\ - "name": "'${EXT_RELEASE_CLEAN}'-pkg-'${PACKAGE_TAG}'-ls'${LS_TAG_NUMBER}'",\ + "name": "'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done diff --git a/README.md b/README.md index 32060fec..62b9eac4 100644 --- a/README.md +++ b/README.md @@ -152,15 +152,6 @@ Below are the instructions for updating containers: * Start the new container: `docker start lidarr` * You can also remove the old dangling images: `docker image prune` -### Via Taisun auto-updater (especially useful if you don't remember the original parameters) -* Pull the latest image at its tag and replace it with the same env variables in one shot: - ``` - docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock taisun/updater \ - --oneshot lidarr - ``` -* You can also remove the old dangling images: `docker image prune` - ### Via Docker Compose * Update all images: `docker-compose pull` * or update a single image: `docker-compose pull lidarr` @@ -168,6 +159,35 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d lidarr` * You can also remove the old dangling images: `docker image prune` +### Via Watchtower auto-updater (especially useful if you don't remember the original parameters) +* Pull the latest image at its tag and replace it with the same env variables in one run: + ``` + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once lidarr + ``` +* You can also remove the old dangling images: `docker image prune` + +## Building locally + +If you want to make local modifications to these images for development purposes or just to customize the logic: +``` +git clone https://github.com/linuxserver/docker-lidarr.git +cd docker-lidarr +docker build \ + --no-cache \ + --pull \ + -t linuxserver/lidarr:latest . +``` + +The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` +``` +docker run --rm --privileged multiarch/qemu-user-static:register --reset +``` + +Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. + ## Versions * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. From e2cc9c136c6a515717a1768ba8ac7779469bb5cf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 May 2019 00:16:46 -0400 Subject: [PATCH 031/790] Bot Updating Package Versions --- package_versions.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1c6a923b..c9a6e61f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,9 +5,9 @@ apt-utils1.6.10 base-files10.1ubuntu2.4 base-passwd3.5.44 bash4.4.18-2ubuntu1 -binutils2.30-21ubuntu1~18.04 -binutils-common2.30-21ubuntu1~18.04 -binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04 +binutils2.30-21ubuntu1~18.04.1 +binutils-common2.30-21ubuntu1~18.04.1 +binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.1 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1 ca-certificates20180409 @@ -56,7 +56,7 @@ libaudit-common1:2.8.2-1ubuntu1 libavcodec577:3.4.4-0ubuntu0.18.04.1 libavformat577:3.4.4-0ubuntu0.18.04.1 libavutil557:3.4.4-0ubuntu0.18.04.1 -libbinutils2.30-21ubuntu1~18.04 +libbinutils2.30-21ubuntu1~18.04.1 libblkid12.31.1-0.4ubuntu3.3 libbluray21:1.0.2-3 libbsd00.8.7-1 @@ -94,7 +94,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 -libglib2.0-02.56.3-0ubuntu0.18.04.1 +libglib2.0-02.56.4-0ubuntu0.18.04.2 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1 @@ -122,8 +122,8 @@ libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.1 -libldap-common2.4.45+dfsg-1ubuntu1.1 +libldap-2.4-22.4.45+dfsg-1ubuntu1.2 +libldap-common2.4.45+dfsg-1ubuntu1.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmediainfo0v519.04-1 @@ -303,7 +303,7 @@ libpangoft2-1.0-01.40.14-1ubuntu0.1 libpcre32:8.39-9 libperl5.265.26.1-6ubuntu0.3 libpixman-1-00.34.0-2 -libpng16-161.6.34-1ubuntu0.18.04.1 +libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.1 libpsl50.19.1-5build1 libpython2.7-minimal2.7.15~rc1-1ubuntu0.1 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.0g-2ubuntu4.3 libstdc++68.3.0-6ubuntu1~18.04 libswresample27:3.4.4-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.20 +libsystemd0237-3ubuntu10.21 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.20 +libudev1237-3ubuntu10.21 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 @@ -374,7 +374,7 @@ libzstd11.3.3+dfsg-2ubuntu1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 locales2.27-3ubuntu1 -login1:4.5-1ubuntu1 +login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 @@ -395,7 +395,7 @@ multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.0g-2ubuntu4.3 -passwd1:4.5-1ubuntu1 +passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1 perl5.26.1-6ubuntu0.3 perl-base5.26.1-6ubuntu0.3 From f22cb12220ba9231341cd68026696a8386c618fe Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 May 2019 00:00:31 +0000 Subject: [PATCH 032/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c9a6e61f..28c2f1bd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -53,9 +53,9 @@ libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libavcodec577:3.4.4-0ubuntu0.18.04.1 -libavformat577:3.4.4-0ubuntu0.18.04.1 -libavutil557:3.4.4-0ubuntu0.18.04.1 +libavcodec577:3.4.6-0ubuntu0.18.04.1 +libavformat577:3.4.6-0ubuntu0.18.04.1 +libavutil557:3.4.6-0ubuntu0.18.04.1 libbinutils2.30-21ubuntu1~18.04.1 libblkid12.31.1-0.4ubuntu3.3 libbluray21:1.0.2-3 @@ -331,7 +331,7 @@ libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.0g-2ubuntu4.3 libstdc++68.3.0-6ubuntu1~18.04 -libswresample27:3.4.4-0ubuntu0.18.04.1 +libswresample27:3.4.6-0ubuntu0.18.04.1 libsystemd0237-3ubuntu10.21 libtasn1-64.13-2 libthai00.1.27-2 From c1857536b4b8bb7e54421cf30a8dbea69f4468fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 May 2019 17:24:55 +0200 Subject: [PATCH 033/790] Bot Updating Templated Files --- Jenkinsfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1281d018..d7945fd2 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -51,6 +51,14 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID + env.LICENSE_TAG = sh( + script: '''#!/bin/bash + if [ -e LICENSE ] ; then + cat LICENSE | md5sum | cut -c1-8 + else + echo none + fi''', + returnStdout: true).trim() } script{ env.LS_RELEASE_NUMBER = sh( @@ -216,14 +224,17 @@ pipeline { docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull linuxserver/doc-builder:latest docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest - if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ]; then + if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || \ + [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ] || \ + [ "$(cat ${TEMPDIR}/${LS_REPO}/LICENSE | md5sum | cut -c1-8)" != "${LICENSE_TAG}" ]; then mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git checkout -f preview cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/repo/${LS_REPO}/ cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/LICENSE ${TEMPDIR}/repo/${LS_REPO}/ cd ${TEMPDIR}/repo/${LS_REPO}/ - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md LICENSE git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git commit -m 'Bot Updating Templated Files' git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} From 1b44f84e7e9f66a7d9292c83c7fe016cb813e422 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 May 2019 11:26:23 -0400 Subject: [PATCH 034/790] Bot Updating Templated Files --- LICENSE | 674 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 674 insertions(+) create mode 100755 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100755 index 00000000..f288702d --- /dev/null +++ b/LICENSE @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + This program is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + This program is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with this program. If not, see . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. From e653557951e66def125f1742ffc557221538aac6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 May 2019 11:30:55 -0400 Subject: [PATCH 035/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 28c2f1bd..73d3c615 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ apt-transport-https1.6.10 apt-utils1.6.10 base-files10.1ubuntu2.4 base-passwd3.5.44 -bash4.4.18-2ubuntu1 +bash4.4.18-2ubuntu1.1 binutils2.30-21ubuntu1~18.04.1 binutils-common2.30-21ubuntu1~18.04.1 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.1 @@ -14,9 +14,9 @@ ca-certificates20180409 ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.6 +curl7.58.0-2ubuntu3.7 dash0.5.8-2.10 -debconf1.5.66 +debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 @@ -70,9 +70,9 @@ libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.1 libcroco30.6.12-2 libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl3-gnutls7.58.0-2ubuntu3.6 -libcurl47.58.0-2ubuntu3.6 -libcurl4-openssl-dev7.58.0-2ubuntu3.6 +libcurl3-gnutls7.58.0-2ubuntu3.7 +libcurl47.58.0-2ubuntu3.7 +libcurl4-openssl-dev7.58.0-2ubuntu3.7 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1 libdebconfclient00.213ubuntu1 From 2b2eb0592e59ff24d9978b43d5befe3cd9a6d24b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 8 Jun 2019 11:25:21 -0400 Subject: [PATCH 036/790] Bot Updating Templated Files --- Jenkinsfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Jenkinsfile b/Jenkinsfile index d7945fd2..914edeb3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -467,6 +467,7 @@ pipeline { docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ + --shm-size=1gb \ -v /var/run/docker.sock:/var/run/docker.sock \ -e IMAGE=\"${IMAGE}\" \ -e DELAY_START=\"${CI_DELAY}\" \ From 35fe53aa1d7c7b1395e6cee2e6cc5adb41d2f41a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 10 Jun 2019 12:55:38 -0400 Subject: [PATCH 037/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 73d3c615..82369658 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 apt1.6.10 -apt-transport-https1.6.10 +apt-transport-https1.6.11 apt-utils1.6.10 base-files10.1ubuntu2.4 base-passwd3.5.44 @@ -74,7 +74,7 @@ libcurl3-gnutls7.58.0-2ubuntu3.7 libcurl47.58.0-2ubuntu3.7 libcurl4-openssl-dev7.58.0-2ubuntu3.7 libdatrie10.2.10-7 -libdb5.35.3.28-13.1ubuntu1 +libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.1 libdrm22.4.95-1~18.04.1 @@ -97,7 +97,7 @@ libgif75.1.4-2 libglib2.0-02.56.4-0ubuntu0.18.04.2 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1 +libgnutls303.5.18-1ubuntu1.1 libgomp18.3.0-6ubuntu1~18.04 libgpg-error01.27-6 libgraphite2-31.3.11-2 @@ -316,7 +316,7 @@ librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2 libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2 -libseccomp22.3.1-2.1ubuntu4.1 +libseccomp22.4.1-0ubuntu0.18.04.2 libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 From 84a172e525f922cc9922f48620a4824c53aea8f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Jun 2019 15:31:54 +0000 Subject: [PATCH 038/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 82369658..ba0d04e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -28,7 +28,7 @@ findutils4.6.0+git+20170828-2 fontconfig2.12.6-0ubuntu2 fontconfig-config2.12.6-0ubuntu2 fonts-dejavu-core2.37-1 -gcc-8-base8.3.0-6ubuntu1~18.04 +gcc-8-base8.3.0-6ubuntu1~18.04.1 gnupg2.2.4-1ubuntu1.2 gnupg-l10n2.2.4-1ubuntu1.2 gnupg-utils2.2.4-1ubuntu1.2 @@ -86,7 +86,7 @@ libfdisk12.31.1-0.4ubuntu3.3 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 -libgcc11:8.3.0-6ubuntu1~18.04 +libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 @@ -98,7 +98,7 @@ libglib2.0-02.56.4-0ubuntu0.18.04.2 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 -libgomp18.3.0-6ubuntu1~18.04 +libgomp18.3.0-6ubuntu1~18.04.1 libgpg-error01.27-6 libgraphite2-31.3.11-2 libgsm11.0.13-4build1 @@ -330,7 +330,7 @@ libsqlite3-03.22.0-1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.0g-2ubuntu4.3 -libstdc++68.3.0-6ubuntu1~18.04 +libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 libsystemd0237-3ubuntu10.21 libtasn1-64.13-2 From 7b0e60d1bf0522b381fa53cd3a02f7634a432183 Mon Sep 17 00:00:00 2001 From: Mateusz Furdyna <17548441+SirFerdek@users.noreply.github.com> Date: Sun, 16 Jun 2019 23:59:14 +0200 Subject: [PATCH 039/790] Fix umask - get umask from environment Makes it consistent with other linuxserver.io images. --- README.md | 4 ++++ readme-vars.yml | 6 ++++++ root/etc/services.d/lidarr/run | 4 ++++ 3 files changed, 14 insertions(+) diff --git a/README.md b/README.md index 62b9eac4..bd1fbba6 100644 --- a/README.md +++ b/README.md @@ -61,6 +61,7 @@ docker create \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ + -e UMASK_SET=022 `#optional` \ -p 8686:8686 \ -v :/config \ -v :/music \ @@ -85,6 +86,7 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London + - UMASK_SET=022 #optional volumes: - :/config - :/music @@ -104,6 +106,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | +| `-e UMASK_SET=022` | control permissions of files and directories created by Sonarr | | `-v /config` | Configuration files for Lidarr. | | `-v /music` | Music files. | | `-v /downloads` | Path to your download folder for music. | @@ -190,6 +193,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **13.06.19:** - Add env variable for setting umask. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **08.03.19:** - Rebase to Bionic, use proposed endpoint for libchromaprint. * **26.01.19:** - Add pipeline logic and multi arch. diff --git a/readme-vars.yml b/readme-vars.yml index 70271af3..fd6b4e86 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -25,6 +25,11 @@ param_container_name: "{{ project_name }}" param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } +# optional env variables +opt_param_usage_include_env: true +opt_param_env_vars: + - { env_var: "UMASK_SET", env_value: "022", desc: "control permissions of files and directories created by Sonarr"} + param_usage_include_vols: true param_volumes: - { vol_path: "/config", vol_host_path: "", desc: "Configuration files for Lidarr." } @@ -41,6 +46,7 @@ app_setup_block: | # changelog changelogs: + - { date: "13.06.19:", desc: "Add env variable for setting umask." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint." } - { date: "26.01.19:", desc: "Add pipeline logic and multi arch." } diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run index c26d1163..4be2f1b8 100644 --- a/root/etc/services.d/lidarr/run +++ b/root/etc/services.d/lidarr/run @@ -2,6 +2,10 @@ # cd /app/lidarr || exit +UMASK_SET=${UMASK_SET:-022} +umask "$UMASK_SET" + + exec \ s6-setuidgid abc mono --debug /app/lidarr/Lidarr.exe \ -nobrowser -data=/config From 5a42c1853ba537ce1aeb80e5acc3c619e319cf95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Jun 2019 07:57:58 +0000 Subject: [PATCH 040/790] Bot Updating Package Versions --- package_versions.txt | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ba0d04e5..a374b464 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,13 +1,13 @@ adduser3.116ubuntu1 -apt1.6.10 +apt1.6.11 apt-transport-https1.6.11 -apt-utils1.6.10 +apt-utils1.6.11 base-files10.1ubuntu2.4 base-passwd3.5.44 bash4.4.18-2ubuntu1.1 -binutils2.30-21ubuntu1~18.04.1 -binutils-common2.30-21ubuntu1~18.04.1 -binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.1 +binutils2.30-21ubuntu1~18.04.2 +binutils-common2.30-21ubuntu1~18.04.2 +binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1 ca-certificates20180409 @@ -46,8 +46,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 -libapt-inst2.01.6.10 -libapt-pkg5.01.6.10 +libapt-inst2.01.6.11 +libapt-pkg5.01.6.11 libasn1-8-heimdal7.5.0+dfsg-1 libassuan02.5.1-2 libattr11:2.4.47-2build1 @@ -56,7 +56,7 @@ libaudit-common1:2.8.2-1ubuntu1 libavcodec577:3.4.6-0ubuntu0.18.04.1 libavformat577:3.4.6-0ubuntu0.18.04.1 libavutil557:3.4.6-0ubuntu0.18.04.1 -libbinutils2.30-21ubuntu1~18.04.1 +libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.3 libbluray21:1.0.2-3 libbsd00.8.7-1 @@ -94,7 +94,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 -libglib2.0-02.56.4-0ubuntu0.18.04.2 +libglib2.0-02.56.4-0ubuntu0.18.04.3 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 @@ -306,8 +306,8 @@ libpixman-1-00.34.0-2 libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.1 libpsl50.19.1-5build1 -libpython2.7-minimal2.7.15~rc1-1ubuntu0.1 -libpython2.7-stdlib2.7.15~rc1-1ubuntu0.1 +libpython2.7-minimal2.7.15-4ubuntu4~18.04 +libpython2.7-stdlib2.7.15-4ubuntu4~18.04 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -329,7 +329,7 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 -libssl1.11.1.0g-2ubuntu4.3 +libssl1.11.1.1-1ubuntu2.1~18.04.1 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 libsystemd0237-3ubuntu10.21 @@ -394,7 +394,7 @@ mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.0g-2ubuntu4.3 +openssl1.1.1-1ubuntu2.1~18.04.1 passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1 perl5.26.1-6ubuntu0.3 @@ -405,8 +405,8 @@ pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.1 publicsuffix20180223.1310-1 python2.7.15~rc1-1 -python2.72.7.15~rc1-1ubuntu0.1 -python2.7-minimal2.7.15~rc1-1ubuntu0.1 +python2.72.7.15-4ubuntu4~18.04 +python2.7-minimal2.7.15-4ubuntu4~18.04 python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 From 805dc79d63e67263c10952668f5abf8cc974398e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 27 Jun 2019 12:59:11 +0000 Subject: [PATCH 041/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a374b464..16a42708 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -326,13 +326,13 @@ libsmartcols12.31.1-0.4ubuntu3.3 libsnappy1v51.1.7-1 libsoxr00.1.2-3 libspeex11.2~rc1.2-1ubuntu2 -libsqlite3-03.22.0-1 +libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 -libssl1.11.1.1-1ubuntu2.1~18.04.1 +libssl1.11.1.1-1ubuntu2.1~18.04.2 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.21 +libsystemd0237-3ubuntu10.22 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.21 +libudev1237-3ubuntu10.22 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 @@ -394,7 +394,7 @@ mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.1 +openssl1.1.1-1ubuntu2.1~18.04.2 passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1 perl5.26.1-6ubuntu0.3 @@ -412,7 +412,7 @@ readline-common7.0-3 sed4.4-2 sensible-utils0.0.12 shared-mime-info1.9-2 -sqlite33.22.0-1 +sqlite33.22.0-1ubuntu0.1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019a-0ubuntu0.18.04 From 2ca04eee882952f1677ddadebe43ac6c7c8d422e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Jul 2019 16:24:47 +0100 Subject: [PATCH 042/790] Bot Updating Templated Files --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index bd1fbba6..2ff43cc2 100644 --- a/README.md +++ b/README.md @@ -170,6 +170,9 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once lidarr ``` + +**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using Docker Compose. + * You can also remove the old dangling images: `docker image prune` ## Building locally From 81fb5d38280c3ba421388c0521da02541de04f3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Jul 2019 16:40:48 +0100 Subject: [PATCH 043/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 16a42708..4f9edac6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ binutils2.30-21ubuntu1~18.04.2 binutils-common2.30-21ubuntu1~18.04.2 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 -bzip21.0.6-8.1 +bzip21.0.6-8.1ubuntu0.1 ca-certificates20180409 ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 @@ -60,7 +60,7 @@ libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.3 libbluray21:1.0.2-3 libbsd00.8.7-1 -libbz2-1.01.0.6-8.1 +libbz2-1.01.0.6-8.1ubuntu0.1 libc62.27-3ubuntu1 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 @@ -77,10 +77,10 @@ libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libdpkg-perl1.19.0.5ubuntu2.1 -libdrm22.4.95-1~18.04.1 -libdrm-common2.4.95-1~18.04.1 +libdrm22.4.97-1ubuntu1~18.04.1 +libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 -libexpat12.2.5-3 +libexpat12.2.5-3ubuntu0.1 libext2fs21.44.1-1ubuntu1.1 libfdisk12.31.1-0.4ubuntu3.3 libffi63.2.1-8 @@ -329,10 +329,10 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 -libssl1.11.1.1-1ubuntu2.1~18.04.2 +libssl1.11.1.1-1ubuntu2.1~18.04.3 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.22 +libsystemd0237-3ubuntu10.23 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.22 +libudev1237-3ubuntu10.23 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 @@ -394,7 +394,7 @@ mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.2 +openssl1.1.1-1ubuntu2.1~18.04.3 passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1 perl5.26.1-6ubuntu0.3 From 3b0b7a78602f72ce16ce3d4a2a50dec81e301328 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 10 Jul 2019 06:57:51 +0100 Subject: [PATCH 044/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4f9edac6..fcc42a81 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,7 +9,7 @@ binutils2.30-21ubuntu1~18.04.2 binutils-common2.30-21ubuntu1~18.04.2 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 -bzip21.0.6-8.1ubuntu0.1 +bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 @@ -60,7 +60,7 @@ libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.3 libbluray21:1.0.2-3 libbsd00.8.7-1 -libbz2-1.01.0.6-8.1ubuntu0.1 +libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 From 6504a95a20fc33f31ec7f39c0e3e2fe7c63a01dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 17 Jul 2019 01:55:35 +0000 Subject: [PATCH 045/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fcc42a81..2942e7f1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ apt-transport-https1.6.11 apt-utils1.6.11 base-files10.1ubuntu2.4 base-passwd3.5.44 -bash4.4.18-2ubuntu1.1 +bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.2 binutils-common2.30-21ubuntu1~18.04.2 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 @@ -94,7 +94,7 @@ libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 -libglib2.0-02.56.4-0ubuntu0.18.04.3 +libglib2.0-02.56.4-0ubuntu0.18.04.4 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.3 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.23 +libsystemd0237-3ubuntu10.24 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.23 +libudev1237-3ubuntu10.24 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 @@ -351,7 +351,7 @@ libvorbis0a1.3.5-4.2 libvorbisenc21.3.5-4.2 libvorbisfile31.3.5-4.2 libvpx51.7.0-3 -libwavpack15.1.0-2ubuntu1.3 +libwavpack15.1.0-2ubuntu1.4 libwebp60.6.1-2 libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 @@ -415,7 +415,7 @@ shared-mime-info1.9-2 sqlite33.22.0-1ubuntu0.1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2019a-0ubuntu0.18.04 +tzdata2019b-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 From 6bf9ddd736a3892740388fffc05b606a045de809 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Jul 2019 21:57:06 +0200 Subject: [PATCH 046/790] Bot Updating Package Versions --- package_versions.txt | 326 +++++++++++++++++++++---------------------- 1 file changed, 159 insertions(+), 167 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2942e7f1..e55f6bf8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,8 +11,7 @@ binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 -ca-certificates-mono5.20.1.19-0xamarin2+ubuntu1804b1 -cli-common0.9+xamarin8+ubuntu1804b1 +ca-certificates-mono6.0.0.313-0xamarin3+ubuntu1804b1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.7 dash0.5.8-2.10 @@ -90,7 +89,7 @@ libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 -libgdiplus5.6.1-0xamarin1+ubuntu1804b1 +libgdiplus5.6.1-0xamarin6+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 @@ -126,151 +125,151 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.2 libldap-common2.4.45+dfsg-1ubuntu1.2 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmediainfo0v519.04-1 +libmediainfo0v519.07-1 libmms00.6.4-2 -libmono-2.0-dev5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-accessibility4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-cairo4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-cecil-private-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-codecontracts4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-corlib4.5-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-cscompmgd0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-csharp4.0c-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-custommarshalers4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-data-tds4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-db2-1.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-debugger-soft4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n4.0-all5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n-cjk4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n-mideast4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n-other4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n-rare4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-i18n-west4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-management4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-build4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-oracle4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-parallel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-peapi4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-posix4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-rabbitmq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-relaxng4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-security4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmonosgen-2.0-15.20.1.19-0xamarin2+ubuntu1804b1 -libmonosgen-2.0-dev5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-sharpzip4.84-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-simd4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-smdiagnostics0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-sqlite4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-configuration4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-configuration-install4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-core4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data-entity4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data-services4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-data-services-client4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-deployment4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-drawing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-drawing-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-dynamic4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-identitymodel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-io-compression4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-json4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-ldap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-management4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-messaging4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-net4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-net-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-numerics4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-core2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-reflection-context4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-security4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-transactions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-extensions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-http4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-mobile4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-mvc3.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-routing4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-services4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-webpages2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-windows4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-windows-forms4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-xaml4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-xml4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-xml-linq4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-tasklets4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-webbrowser4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-webmatrix-data4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-windowsbase4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil5.20.1.19-0xamarin2+ubuntu1804b1 +libmono-2.0-dev6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-accessibility4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-cairo4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-cecil-private-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-cecil-vb0.9-cil4.7-0xamarin2+ubuntu1804b1 +libmono-cil-dev6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-codecontracts4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-corlib4.5-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-cscompmgd0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-csharp4.0c-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-custommarshalers4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-data-tds4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-db2-1.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-debugger-soft4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n4.0-all6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n-cjk4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n-mideast4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n-other4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n-rare4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-i18n-west4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-ldap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-management4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-messaging4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-build4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-visualbasic10.0-cil4.7-0xamarin2+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-oracle4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-parallel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-peapi4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-posix4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-rabbitmq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-relaxng4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-security4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmonosgen-2.0-16.0.0.313-0xamarin3+ubuntu1804b1 +libmonosgen-2.0-dev6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-sharpzip4.84-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-simd4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-smdiagnostics0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-sqlite4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-configuration4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-configuration-install4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-core4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data-entity4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data-linq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data-services4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-data-services-client4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-deployment4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-drawing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-drawing-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-dynamic4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-identitymodel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-io-compression4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-json4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-ldap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-management4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-messaging4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-net4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-net-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-numerics4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-core2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-reflection-context4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-runtime4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-security4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-transactions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-extensions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-mobile4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-mvc3.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-razor2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-routing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-services4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-windows4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-windows-forms4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-xaml4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-xml4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-xml-linq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-tasklets4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-webbrowser4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-webmatrix-data4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-windowsbase4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 libmount12.31.1-0.4ubuntu3.3 libmp3lame03.100-2 libmpg123-01.25.10-1 @@ -280,13 +279,6 @@ libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libnpth01.5-3 libnuma12.0.11-2.1ubuntu0.1 -libnunit-cil-dev2.6.4+dfsg-1 -libnunit-console-runner2.6.3-cil2.6.4+dfsg-1 -libnunit-core2.6.3-cil2.6.4+dfsg-1 -libnunit-core-interfaces2.6.3-cil2.6.4+dfsg-1 -libnunit-framework2.6.3-cil2.6.4+dfsg-1 -libnunit-mocks2.6.3-cil2.6.4+dfsg-1 -libnunit-util2.6.3-cil2.6.4+dfsg-1 libogg01.3.2-1 libonig46.7.0-1 libopenjp2-72.3.0-1 @@ -329,7 +321,7 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.1 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 -libssl1.11.1.1-1ubuntu2.1~18.04.3 +libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 libsystemd0237-3ubuntu10.24 @@ -378,23 +370,23 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo19.04-1 +mediainfo19.07-1 mime-support3.60ubuntu1 -mono-4.0-gac5.20.1.19-0xamarin2+ubuntu1804b1 -mono-devel5.20.1.19-0xamarin2+ubuntu1804b1 -mono-gac5.20.1.19-0xamarin2+ubuntu1804b1 -mono-mcs5.20.1.19-0xamarin2+ubuntu1804b1 -mono-roslyn5.20.1.19-0xamarin2+ubuntu1804b1 -mono-runtime5.20.1.19-0xamarin2+ubuntu1804b1 -mono-runtime-common5.20.1.19-0xamarin2+ubuntu1804b1 -mono-runtime-sgen5.20.1.19-0xamarin2+ubuntu1804b1 -mono-vbnc4.7-0xamarin1+ubuntu1804b1 -mono-xbuild5.20.1.19-0xamarin2+ubuntu1804b1 +mono-4.0-gac6.0.0.313-0xamarin3+ubuntu1804b1 +mono-devel6.0.0.313-0xamarin3+ubuntu1804b1 +mono-gac6.0.0.313-0xamarin3+ubuntu1804b1 +mono-mcs6.0.0.313-0xamarin3+ubuntu1804b1 +mono-roslyn6.0.0.313-0xamarin3+ubuntu1804b1 +mono-runtime6.0.0.313-0xamarin3+ubuntu1804b1 +mono-runtime-common6.0.0.313-0xamarin3+ubuntu1804b1 +mono-runtime-sgen6.0.0.313-0xamarin3+ubuntu1804b1 +mono-vbnc4.7-0xamarin2+ubuntu1804b1 +mono-xbuild6.0.0.313-0xamarin3+ubuntu1804b1 mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.3 +openssl1.1.1-1ubuntu2.1~18.04.4 passwd1:4.5-1ubuntu2 patch2.7.6-2ubuntu1 perl5.26.1-6ubuntu0.3 From 74428be2b73c2b31daada5185d3a871bc35846c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 29 Jul 2019 20:02:14 +0100 Subject: [PATCH 047/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e55f6bf8..d68e2276 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.11 apt-transport-https1.6.11 apt-utils1.6.11 -base-files10.1ubuntu2.4 +base-files10.1ubuntu2.5 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.2 @@ -388,7 +388,7 @@ ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.4 passwd1:4.5-1ubuntu2 -patch2.7.6-2ubuntu1 +patch2.7.6-2ubuntu1.1 perl5.26.1-6ubuntu0.3 perl-base5.26.1-6ubuntu0.3 perl-modules-5.265.26.1-6ubuntu0.3 From a84b90cd4ce468afa64133ad3654c7ba5fb20501 Mon Sep 17 00:00:00 2001 From: thelamer Date: Thu, 1 Aug 2019 17:44:12 -0700 Subject: [PATCH 048/790] Rebase to Linuxserver LTS mono version --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- README.md | 1 + readme-vars.yml | 1 + 5 files changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 43d48f0e..a17f6775 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/mono:amd64-bionic +FROM lsiobase/mono:LTS # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index b9639197..ac257221 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm64v8-bionic +FROM lsiobase/mono:arm64v8-LTS # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 10595798..a3239887 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/mono:arm32v6-bionic +FROM lsiobase/mono:arm32v7-LTS # set version label ARG BUILD_DATE diff --git a/README.md b/README.md index 2ff43cc2..1477da3f 100644 --- a/README.md +++ b/README.md @@ -196,6 +196,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **01.08.19:** - Rebase to Linuxserver LTS mono version. * **13.06.19:** - Add env variable for setting umask. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. * **08.03.19:** - Rebase to Bionic, use proposed endpoint for libchromaprint. diff --git a/readme-vars.yml b/readme-vars.yml index fd6b4e86..1930f47a 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -46,6 +46,7 @@ app_setup_block: | # changelog changelogs: + - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - { date: "13.06.19:", desc: "Add env variable for setting umask." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - { date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint." } From 67ee82815629dbda250686d32fa4fac2ab296f89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Aug 2019 23:07:39 -0400 Subject: [PATCH 049/790] Bot Updating Package Versions --- package_versions.txt | 322 ++++++++++++++++++++++--------------------- 1 file changed, 165 insertions(+), 157 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d68e2276..13d9bf63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,8 @@ binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 -ca-certificates-mono6.0.0.313-0xamarin3+ubuntu1804b1 +ca-certificates-mono5.14.0.177-0xamarin3+ubuntu1804b1 +cli-common0.9+xamarin7+ubuntu1804b1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.7 dash0.5.8-2.10 @@ -89,7 +90,7 @@ libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 -libgdiplus5.6.1-0xamarin6+ubuntu1804b1 +libgdiplus5.6-0xamarin5+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 @@ -121,155 +122,155 @@ libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.2 -libldap-common2.4.45+dfsg-1ubuntu1.2 +libldap-2.4-22.4.45+dfsg-1ubuntu1.3 +libldap-common2.4.45+dfsg-1ubuntu1.3 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmediainfo0v519.07-1 libmms00.6.4-2 -libmono-2.0-dev6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-accessibility4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-cairo4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-cecil-private-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-cecil-vb0.9-cil4.7-0xamarin2+ubuntu1804b1 -libmono-cil-dev6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-codecontracts4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-corlib4.5-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-cscompmgd0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-csharp4.0c-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-custommarshalers4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-data-tds4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-db2-1.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-debugger-soft4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n4.0-all6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n-cjk4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n-mideast4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n-other4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n-rare4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-i18n-west4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-ldap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-management4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-messaging4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-build4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-visualbasic10.0-cil4.7-0xamarin2+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-oracle4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-parallel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-peapi4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-posix4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-rabbitmq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-relaxng4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-security4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmonosgen-2.0-16.0.0.313-0xamarin3+ubuntu1804b1 -libmonosgen-2.0-dev6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-sharpzip4.84-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-simd4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-smdiagnostics0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-sqlite4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-configuration4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-configuration-install4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-core4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data-entity4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data-linq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data-services4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-data-services-client4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-deployment4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-drawing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-drawing-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-dynamic4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-identitymodel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-io-compression4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-json4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-ldap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-management4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-messaging4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-net4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-net-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-numerics4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-core2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-reflection-context4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-runtime4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-security4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-transactions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-extensions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-http4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-mobile4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-mvc3.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-razor2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-routing4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-services4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-windows4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-windows-forms4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-xaml4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-xml4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-xml-linq4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-tasklets4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-webbrowser4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-webmatrix-data4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-windowsbase4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil6.0.0.313-0xamarin3+ubuntu1804b1 +libmono-2.0-dev5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-accessibility4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-cairo4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-cecil-private-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 +libmono-cil-dev5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-codecontracts4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-corlib4.5-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-cscompmgd0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-csharp4.0c-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-custommarshalers4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-data-tds4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-db2-1.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-debugger-soft4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n4.0-all5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n-cjk4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n-mideast4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n-other4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n-rare4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-i18n-west4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-ldap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-management4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-messaging4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-build4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-oracle4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-parallel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-peapi4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-posix4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-rabbitmq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-relaxng4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-security4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmonosgen-2.0-15.14.0.177-0xamarin3+ubuntu1804b1 +libmonosgen-2.0-dev5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-sharpzip4.84-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-simd4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-smdiagnostics0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-sqlite4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-configuration4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-configuration-install4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-core4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data-entity4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data-linq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data-services4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-data-services-client4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-deployment4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-drawing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-drawing-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-dynamic4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-identitymodel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-io-compression4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-json4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-ldap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-management4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-messaging4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-net4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-net-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-numerics4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-core2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-reflection-context4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-runtime4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-security4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-transactions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-extensions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-mobile4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-mvc3.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-razor2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-routing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-services4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-windows4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-windows-forms4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-xaml4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-xml4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-xml-linq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-tasklets4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-webbrowser4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-webmatrix-data4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-windowsbase4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 libmount12.31.1-0.4ubuntu3.3 libmp3lame03.100-2 libmpg123-01.25.10-1 @@ -279,6 +280,13 @@ libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libnpth01.5-3 libnuma12.0.11-2.1ubuntu0.1 +libnunit-cil-dev2.6.4+dfsg-1 +libnunit-console-runner2.6.3-cil2.6.4+dfsg-1 +libnunit-core2.6.3-cil2.6.4+dfsg-1 +libnunit-core-interfaces2.6.3-cil2.6.4+dfsg-1 +libnunit-framework2.6.3-cil2.6.4+dfsg-1 +libnunit-mocks2.6.3-cil2.6.4+dfsg-1 +libnunit-util2.6.3-cil2.6.4+dfsg-1 libogg01.3.2-1 libonig46.7.0-1 libopenjp2-72.3.0-1 @@ -372,16 +380,16 @@ make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 mediainfo19.07-1 mime-support3.60ubuntu1 -mono-4.0-gac6.0.0.313-0xamarin3+ubuntu1804b1 -mono-devel6.0.0.313-0xamarin3+ubuntu1804b1 -mono-gac6.0.0.313-0xamarin3+ubuntu1804b1 -mono-mcs6.0.0.313-0xamarin3+ubuntu1804b1 -mono-roslyn6.0.0.313-0xamarin3+ubuntu1804b1 -mono-runtime6.0.0.313-0xamarin3+ubuntu1804b1 -mono-runtime-common6.0.0.313-0xamarin3+ubuntu1804b1 -mono-runtime-sgen6.0.0.313-0xamarin3+ubuntu1804b1 -mono-vbnc4.7-0xamarin2+ubuntu1804b1 -mono-xbuild6.0.0.313-0xamarin3+ubuntu1804b1 +mono-4.0-gac5.14.0.177-0xamarin3+ubuntu1804b1 +mono-devel5.14.0.177-0xamarin3+ubuntu1804b1 +mono-gac5.14.0.177-0xamarin3+ubuntu1804b1 +mono-mcs5.14.0.177-0xamarin3+ubuntu1804b1 +mono-roslyn5.14.0.177-0xamarin3+ubuntu1804b1 +mono-runtime5.14.0.177-0xamarin3+ubuntu1804b1 +mono-runtime-common5.14.0.177-0xamarin3+ubuntu1804b1 +mono-runtime-sgen5.14.0.177-0xamarin3+ubuntu1804b1 +mono-vbnc4.7-0xamarin1+ubuntu1804b1 +mono-xbuild5.14.0.177-0xamarin3+ubuntu1804b1 mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From 0adb7053da12e2f192ddef0d13cb764683dab47c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 8 Aug 2019 18:03:08 -0400 Subject: [PATCH 050/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 13d9bf63..3e6b3d2f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.11 apt-transport-https1.6.11 apt-utils1.6.11 -base-files10.1ubuntu2.5 +base-files10.1ubuntu2.6 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.2 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.24 +libsystemd0237-3ubuntu10.25 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.24 +libudev1237-3ubuntu10.25 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.3 libva22.1.0-3 From a89a280d8dc7c7ec4189ec6ae7407bc468c5642d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Aug 2019 01:57:53 +0100 Subject: [PATCH 051/790] Bot Updating Package Versions --- package_versions.txt | 306 +++++++++++++++++++++---------------------- 1 file changed, 153 insertions(+), 153 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3e6b3d2f..1596d3a1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,8 +11,8 @@ binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.3 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 -ca-certificates-mono5.14.0.177-0xamarin3+ubuntu1804b1 -cli-common0.9+xamarin7+ubuntu1804b1 +ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 +cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.7 dash0.5.8-2.10 @@ -90,7 +90,7 @@ libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 libgdbm51.14.1-6 libgdbm-compat41.14.1-6 -libgdiplus5.6-0xamarin5+ubuntu1804b1 +libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libgif75.1.4-2 @@ -128,149 +128,149 @@ liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmediainfo0v519.07-1 libmms00.6.4-2 -libmono-2.0-dev5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-accessibility4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-cairo4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-cecil-private-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-cairo4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-cecil-private-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-codecontracts4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-corlib4.5-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-cscompmgd0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-csharp4.0c-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-custommarshalers4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-data-tds4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-db2-1.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-debugger-soft4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n4.0-all5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n-cjk4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n-mideast4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n-other4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n-rare4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-i18n-west4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-ldap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-management4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-messaging4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-build4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-cil-dev5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-codecontracts4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-compilerservices-symbolwriter4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-corlib4.5-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-cscompmgd0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-csharp4.0c-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-custommarshalers4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-data-tds4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-db2-1.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-debugger-soft4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-all5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n-cjk4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n-mideast4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n-other4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n-rare4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-i18n-west4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-ldap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-management4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-messaging4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-messaging-rabbitmq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-build4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-engine4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-framework4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-csharp4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-oracle4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-parallel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-peapi4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-posix4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-rabbitmq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-relaxng4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-security4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmonosgen-2.0-15.14.0.177-0xamarin3+ubuntu1804b1 -libmonosgen-2.0-dev5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-sharpzip4.84-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-simd4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-smdiagnostics0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-sqlite4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-configuration4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-configuration-install4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-core4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data-entity4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data-linq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data-services4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-data-services-client4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-deployment4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-drawing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-drawing-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-dynamic4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-identitymodel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-io-compression4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-json4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-ldap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-management4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-messaging4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-net4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-net-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-numerics4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-core2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-reflection-context4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-runtime4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-security4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-transactions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-extensions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-http4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-mobile4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-mvc3.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-razor2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-routing4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-services4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-windows4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-windows-forms4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-xaml4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-xml4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-xml-linq4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-tasklets4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-webbrowser4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-webmatrix-data4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-windowsbase4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil5.14.0.177-0xamarin3+ubuntu1804b1 +libmono-microsoft-visualc10.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-microsoft-web-infrastructure1.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-oracle4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-parallel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-peapi4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-posix4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-rabbitmq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-relaxng4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-security4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-15.20.1.34-0xamarin4+ubuntu1804b1 +libmonosgen-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-sharpzip4.84-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-simd4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-smdiagnostics0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-sqlite4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-composition4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-componentmodel-dataannotations4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-configuration4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-configuration-install4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-core4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data-datasetextensions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data-entity4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data-linq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data-services4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-data-services-client4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-deployment4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-drawing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-drawing-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-dynamic4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-enterpriseservices4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-identitymodel-selectors4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-io-compression4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-io-compression-filesystem4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-json4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-json-microsoft4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-ldap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-ldap-protocols4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-management4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-messaging4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-net4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-net-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-net-http-formatting4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-net-http-webrequest4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-numerics4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-numerics-vectors4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-core2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-debugger2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-experimental2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-interfaces2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-linq2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-observable-aliases0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-platformservices2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-providers2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-runtime-remoting2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-forms2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reactive-windows-threading2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-reflection-context4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-runtime4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-runtime-caching4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-runtime-durableinstancing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-security4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-activation4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-discovery4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-internals0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-routing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-servicemodel-web4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-serviceprocess4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-threading-tasks-dataflow4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-transactions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-abstractions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-applicationservices4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-dynamicdata4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-extensions-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-http-selfhost4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-http-webhost4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-mobile4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-mvc3.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-razor2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-regularexpressions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-routing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-services4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-deployment2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-web-webpages-razor2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-windows4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-workflow-activities4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-workflow-componentmodel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-workflow-runtime4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-xaml4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-xml4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-xml-linq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-system-xml-serialization4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-tasklets4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-webbrowser4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-webmatrix-data4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-windowsbase4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 +libmono-xbuild-tasks4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmount12.31.1-0.4ubuntu3.3 libmp3lame03.100-2 libmpg123-01.25.10-1 @@ -380,16 +380,16 @@ make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 mediainfo19.07-1 mime-support3.60ubuntu1 -mono-4.0-gac5.14.0.177-0xamarin3+ubuntu1804b1 -mono-devel5.14.0.177-0xamarin3+ubuntu1804b1 -mono-gac5.14.0.177-0xamarin3+ubuntu1804b1 -mono-mcs5.14.0.177-0xamarin3+ubuntu1804b1 -mono-roslyn5.14.0.177-0xamarin3+ubuntu1804b1 -mono-runtime5.14.0.177-0xamarin3+ubuntu1804b1 -mono-runtime-common5.14.0.177-0xamarin3+ubuntu1804b1 -mono-runtime-sgen5.14.0.177-0xamarin3+ubuntu1804b1 +mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 +mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 +mono-gac5.20.1.34-0xamarin4+ubuntu1804b1 +mono-mcs5.20.1.34-0xamarin4+ubuntu1804b1 +mono-roslyn5.20.1.34-0xamarin4+ubuntu1804b1 +mono-runtime5.20.1.34-0xamarin4+ubuntu1804b1 +mono-runtime-common5.20.1.34-0xamarin4+ubuntu1804b1 +mono-runtime-sgen5.20.1.34-0xamarin4+ubuntu1804b1 mono-vbnc4.7-0xamarin1+ubuntu1804b1 -mono-xbuild5.14.0.177-0xamarin3+ubuntu1804b1 +mono-xbuild5.20.1.34-0xamarin4+ubuntu1804b1 mount2.31.1-0.4ubuntu3.3 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 From cbb94c1378587f00a628bbbb323aeb96fba3a84e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 23 Aug 2019 04:02:50 -0400 Subject: [PATCH 052/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1596d3a1..55f3065c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.1 -dpkg-dev1.19.0.5ubuntu2.1 +dpkg-dev1.19.0.5ubuntu2.2 e2fsprogs1.44.1-1ubuntu1.1 fdisk2.31.1-0.4ubuntu3.3 findutils4.6.0+git+20170828-2 @@ -76,7 +76,7 @@ libcurl4-openssl-dev7.58.0-2ubuntu3.7 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.1 +libdpkg-perl1.19.0.5ubuntu2.2 libdrm22.4.97-1ubuntu1~18.04.1 libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 @@ -93,7 +93,7 @@ libgdbm-compat41.14.1-6 libgdiplus5.6.1-0xamarin1+ubuntu1804b1 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 -libgif75.1.4-2 +libgif75.1.4-2ubuntu0.1 libglib2.0-02.56.4-0ubuntu0.18.04.4 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 @@ -289,7 +289,7 @@ libnunit-mocks2.6.3-cil2.6.4+dfsg-1 libnunit-util2.6.3-cil2.6.4+dfsg-1 libogg01.3.2-1 libonig46.7.0-1 -libopenjp2-72.3.0-1 +libopenjp2-72.3.0-2build0.18.04.1 libopenmpt00.3.6-1 libopus01.1.2-1ubuntu1 libp11-kit00.23.9-2 From 92a93372d42e587716710dda6b89a0d32dbc181f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Sep 2019 14:52:16 -0400 Subject: [PATCH 053/790] Bot Updating Templated Files --- Jenkinsfile | 15 +++++++++++++-- README.md | 40 +++++++++++++++++++++++++--------------- 2 files changed, 38 insertions(+), 17 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 914edeb3..4f857f54 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -59,6 +59,14 @@ pipeline { echo none fi''', returnStdout: true).trim() + env.FUNDING_TAG = sh( + script: '''#!/bin/bash + if [ -e ./.github/FUNDING.yml ] ; then + cat ./.github/FUNDING.yml | md5sum | cut -c1-8 + else + echo none + fi''', + returnStdout: true).trim() } script{ env.LS_RELEASE_NUMBER = sh( @@ -226,15 +234,18 @@ pipeline { docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || \ [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ] || \ - [ "$(cat ${TEMPDIR}/${LS_REPO}/LICENSE | md5sum | cut -c1-8)" != "${LICENSE_TAG}" ]; then + [ "$(cat ${TEMPDIR}/${LS_REPO}/LICENSE | md5sum | cut -c1-8)" != "${LICENSE_TAG}" ] || \ + [ "$(cat ${TEMPDIR}/${LS_REPO}/.github/FUNDING.yml | md5sum | cut -c1-8)" != "${FUNDING_TAG}" ]; then mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git checkout -f preview cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/repo/${LS_REPO}/ cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ cp ${TEMPDIR}/docker-${CONTAINER_NAME}/LICENSE ${TEMPDIR}/repo/${LS_REPO}/ + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.github/FUNDING.yml ${TEMPDIR}/repo/${LS_REPO}/.github/FUNDING.yml cd ${TEMPDIR}/repo/${LS_REPO}/ - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md LICENSE + git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md LICENSE ./.github/FUNDING.yml git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git commit -m 'Bot Updating Templated Files' git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} diff --git a/README.md b/README.md index 1477da3f..3512fe9e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) +[![Blog](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") +[![Discord](https://img.shields.io/discord/354974912613449730.svg?style=flat-square&color=E68523&label=Discord&logo=discord&logoColor=FFFFFF)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") +[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?style=flat-square&color=E68523&logo=discourse&logoColor=FFFFFF)](https://discourse.linuxserver.io "post on our community forum.") +[![Fleet](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") +[![Podcast](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Podcast)](https://anchor.fm/linuxserverio "on hiatus. Coming back soon (late 2018).") +[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Open%20Collective%20Supporters)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") + The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- * regular and timely application updates @@ -9,17 +16,20 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r * regular security updates Find us at: -* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. -* [IRC](https://irc.linuxserver.io) - on freenode at `#linuxserver.io`. Our primary support channel is Discord. * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! +* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. +* [Discourse](https://discourse.linuxserver.io) - post on our community forum. +* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. +* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). +* [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) -[![](https://img.shields.io/discord/354974912613449730.svg?logo=discord&label=LSIO%20Discord&style=flat-square)](https://discord.gg/YWrKVTn) -[![](https://images.microbadger.com/badges/version/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") -[![](https://images.microbadger.com/badges/image/linuxserver/lidarr.svg)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") -![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg) -![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg) -[![Build Status](https://ci.linuxserver.io/buildStatus/icon?job=Docker-Pipeline-Builders/docker-lidarr/master)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523)](https://github.com/linuxserver/docker-lidarr/releases) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") +[![MicroBadger Size](https://img.shields.io/microbadger/image-size/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/lidarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/lidarr) +[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/) [![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. @@ -28,7 +38,7 @@ Find us at: ## Supported Architectures -Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). Simply pulling `linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. @@ -136,17 +146,17 @@ Access the webui at `:8686`, for more information check out [Lidarr](ht * Shell access whilst the container is running: `docker exec -it lidarr /bin/bash` * To monitor the logs of the container in realtime: `docker logs -f lidarr` -* container version number +* container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` * image version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` ## Updating Info -Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. - -Below are the instructions for updating containers: - +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. + +Below are the instructions for updating containers: + ### Via Docker Run/Create * Update the image: `docker pull linuxserver/lidarr` * Stop the running container: `docker stop lidarr` @@ -177,7 +187,7 @@ Below are the instructions for updating containers: ## Building locally -If you want to make local modifications to these images for development purposes or just to customize the logic: +If you want to make local modifications to these images for development purposes or just to customize the logic: ``` git clone https://github.com/linuxserver/docker-lidarr.git cd docker-lidarr From 86ce3fdd0ebc9a763b837cab2daca5c513809985 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Sep 2019 19:53:12 +0100 Subject: [PATCH 054/790] Bot Updating Templated Files --- .github/FUNDING.yml | 1 + 1 file changed, 1 insertion(+) create mode 100755 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100755 index 00000000..79722137 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1 @@ +open_collective: linuxserver From bbca3a315bf57c7a17f3a83b61e8349dacf59270 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 Sep 2019 19:55:33 +0100 Subject: [PATCH 055/790] Bot Updating Package Versions --- package_versions.txt | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 55f3065c..fd08d66e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.2 binutils-common2.30-21ubuntu1~18.04.2 binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 -bsdutils1:2.31.1-0.4ubuntu3.3 +bsdutils1:2.31.1-0.4ubuntu3.4 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 @@ -20,10 +20,10 @@ debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 -dpkg1.19.0.5ubuntu2.1 +dpkg1.19.0.5ubuntu2.2 dpkg-dev1.19.0.5ubuntu2.2 e2fsprogs1.44.1-1ubuntu1.1 -fdisk2.31.1-0.4ubuntu3.3 +fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 fontconfig2.12.6-0ubuntu2 fontconfig-config2.12.6-0ubuntu2 @@ -57,7 +57,7 @@ libavcodec577:3.4.6-0ubuntu0.18.04.1 libavformat577:3.4.6-0ubuntu0.18.04.1 libavutil557:3.4.6-0ubuntu0.18.04.1 libbinutils2.30-21ubuntu1~18.04.2 -libblkid12.31.1-0.4ubuntu3.3 +libblkid12.31.1-0.4ubuntu3.4 libbluray21:1.0.2-3 libbsd00.8.7-1 libbz2-1.01.0.6-8.1ubuntu0.2 @@ -82,7 +82,7 @@ libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.1 libext2fs21.44.1-1ubuntu1.1 -libfdisk12.31.1-0.4ubuntu3.3 +libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2 @@ -122,8 +122,8 @@ libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 libksba81.3.5-2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.3 -libldap-common2.4.45+dfsg-1ubuntu1.3 +libldap-2.4-22.4.45+dfsg-1ubuntu1.4 +libldap-common2.4.45+dfsg-1ubuntu1.4 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmediainfo0v519.07-1 @@ -271,7 +271,7 @@ libmono-webbrowser4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmono-webmatrix-data4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmono-windowsbase4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmono-xbuild-tasks4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmount12.31.1-0.4ubuntu3.3 +libmount12.31.1-0.4ubuntu3.4 libmp3lame03.100-2 libmpg123-01.25.10-1 libncurses56.1-1ubuntu1.18.04 @@ -304,7 +304,7 @@ libpcre32:8.39-9 libperl5.265.26.1-6ubuntu0.3 libpixman-1-00.34.0-2 libpng16-161.6.34-1ubuntu0.18.04.2 -libprocps62:3.3.12-3ubuntu1.1 +libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 libpython2.7-minimal2.7.15-4ubuntu4~18.04 libpython2.7-stdlib2.7.15-4ubuntu4~18.04 @@ -322,7 +322,7 @@ libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 libshine33.1.1-1 -libsmartcols12.31.1-0.4ubuntu3.3 +libsmartcols12.31.1-0.4ubuntu3.4 libsnappy1v51.1.7-1 libsoxr00.1.2-3 libspeex11.2~rc1.2-1ubuntu2 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.25 +libsystemd0237-3ubuntu10.28 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,9 +340,9 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.25 +libudev1237-3ubuntu10.28 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.3 +libuuid12.31.1-0.4ubuntu3.4 libva22.1.0-3 libva-drm22.1.0-3 libva-x11-22.1.0-3 @@ -370,7 +370,7 @@ libxml22.9.4+dfsg1-6.1ubuntu1.2 libxrender11:0.9.10-1 libxvidcore42:1.3.5-1 libzen0v50.4.37-1 -libzstd11.3.3+dfsg-2ubuntu1 +libzstd11.3.3+dfsg-2ubuntu1.1 libzvbi00.2.35-13 libzvbi-common0.2.35-13 locales2.27-3ubuntu1 @@ -390,7 +390,7 @@ mono-runtime-common5.20.1.34-0xamarin4+ubuntu1804b1 mono-runtime-sgen5.20.1.34-0xamarin4+ubuntu1804b1 mono-vbnc4.7-0xamarin1+ubuntu1804b1 mono-xbuild5.20.1.34-0xamarin4+ubuntu1804b1 -mount2.31.1-0.4ubuntu3.3 +mount2.31.1-0.4ubuntu3.4 multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 @@ -402,7 +402,7 @@ perl-base5.26.1-6ubuntu0.3 perl-modules-5.265.26.1-6ubuntu0.3 pinentry-curses1.1.0-1 pkg-config0.29.1-0ubuntu2 -procps2:3.3.12-3ubuntu1.1 +procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 python2.7.15~rc1-1 python2.72.7.15-4ubuntu4~18.04 @@ -419,6 +419,6 @@ tzdata2019b-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 -util-linux2.31.1-0.4ubuntu3.3 +util-linux2.31.1-0.4ubuntu3.4 xz-utils5.2.2-1.3 zlib1g1:1.2.11.dfsg-0ubuntu2 From 71aceac2911559b88aedf186b383c20c29b4c1c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 13 Sep 2019 18:54:44 +0100 Subject: [PATCH 056/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fd08d66e..524ae964 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ ca-certificates20180409 ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.7 +curl7.58.0-2ubuntu3.8 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -70,9 +70,9 @@ libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.1 libcroco30.6.12-2 libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl3-gnutls7.58.0-2ubuntu3.7 -libcurl47.58.0-2ubuntu3.7 -libcurl4-openssl-dev7.58.0-2ubuntu3.7 +libcurl3-gnutls7.58.0-2ubuntu3.8 +libcurl47.58.0-2ubuntu3.8 +libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 @@ -126,7 +126,7 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmediainfo0v519.07-1 +libmediainfo0v519.09-1 libmms00.6.4-2 libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 @@ -306,8 +306,8 @@ libpixman-1-00.34.0-2 libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 -libpython2.7-minimal2.7.15-4ubuntu4~18.04 -libpython2.7-stdlib2.7.15-4ubuntu4~18.04 +libpython2.7-minimal2.7.15-4ubuntu4~18.04.1 +libpython2.7-stdlib2.7.15-4ubuntu4~18.04.1 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -378,7 +378,7 @@ login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo19.07-1 +mediainfo19.09-1 mime-support3.60ubuntu1 mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 @@ -405,8 +405,8 @@ pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 python2.7.15~rc1-1 -python2.72.7.15-4ubuntu4~18.04 -python2.7-minimal2.7.15-4ubuntu4~18.04 +python2.72.7.15-4ubuntu4~18.04.1 +python2.7-minimal2.7.15-4ubuntu4~18.04.1 python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 From 2c039597de908d2dab875febc7bfac07a0baf4df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Sep 2019 16:28:08 +0100 Subject: [PATCH 057/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 524ae964..339793c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 -apt1.6.11 -apt-transport-https1.6.11 -apt-utils1.6.11 +apt1.6.12 +apt-transport-https1.6.12 +apt-utils1.6.12 base-files10.1ubuntu2.6 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -46,8 +46,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 -libapt-inst2.01.6.11 -libapt-pkg5.01.6.11 +libapt-inst2.01.6.12 +libapt-pkg5.01.6.12 libasn1-8-heimdal7.5.0+dfsg-1 libassuan02.5.1-2 libattr11:2.4.47-2build1 @@ -80,7 +80,7 @@ libdpkg-perl1.19.0.5ubuntu2.2 libdrm22.4.97-1ubuntu1~18.04.1 libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 -libexpat12.2.5-3ubuntu0.1 +libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.1 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.28 +libsystemd0237-3ubuntu10.29 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.28 +libudev1237-3ubuntu10.29 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 libva22.1.0-3 From b5b687eaf9b7d806f7a29de0ea33706218700801 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 27 Sep 2019 05:56:41 -0400 Subject: [PATCH 058/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 339793c3..6198b259 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.2 -dpkg-dev1.19.0.5ubuntu2.2 +dpkg-dev1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.1 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 @@ -76,7 +76,7 @@ libcurl4-openssl-dev7.58.0-2ubuntu3.8 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.2 +libdpkg-perl1.19.0.5ubuntu2.3 libdrm22.4.97-1ubuntu1~18.04.1 libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 From 6a9c05a68df17395c52dc574226be6998d552867 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Oct 2019 11:32:50 -0400 Subject: [PATCH 059/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6198b259..d4918759 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -20,9 +20,9 @@ debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 dirmngr2.2.4-1ubuntu1.2 -dpkg1.19.0.5ubuntu2.2 +dpkg1.19.0.5ubuntu2.3 dpkg-dev1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.1 +e2fsprogs1.44.1-1ubuntu1.2 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 fontconfig2.12.6-0ubuntu2 @@ -39,7 +39,7 @@ gpgsm2.2.4-1ubuntu1.2 gpgv2.2.4-1ubuntu1.2 gpg-wks-client2.2.4-1ubuntu1.2 gpg-wks-server2.2.4-1ubuntu1.2 -grep3.1-2 +grep3.1-2build1 gzip1.6-5ubuntu1 hostname3.20 init-system-helpers1.51 @@ -67,7 +67,7 @@ libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libchromaprint11.4.3-1 libchromaprint-tools1.4.3-1 -libcom-err21.44.1-1ubuntu1.1 +libcom-err21.44.1-1ubuntu1.2 libcroco30.6.12-2 libcrystalhd31:0.0~git20110715.fdd2f19-12 libcurl3-gnutls7.58.0-2ubuntu3.8 @@ -81,7 +81,7 @@ libdrm22.4.97-1ubuntu1~18.04.1 libdrm-common2.4.97-1ubuntu1~18.04.1 libexif120.6.21-4 libexpat12.2.5-3ubuntu0.2 -libext2fs21.44.1-1ubuntu1.1 +libext2fs21.44.1-1ubuntu1.2 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 @@ -327,7 +327,7 @@ libsnappy1v51.1.7-1 libsoxr00.1.2-3 libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.1 -libss21.44.1-1ubuntu1.1 +libss21.44.1-1ubuntu1.2 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 From 868398ff74b61a47698e89720a46f5ed9276c88e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Oct 2019 16:25:04 +0100 Subject: [PATCH 060/790] Bot Updating Templated Files --- Jenkinsfile | 52 +++++++++++++++++++--------------------------------- 1 file changed, 19 insertions(+), 33 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4f857f54..519a929b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -2,6 +2,10 @@ pipeline { agent { label 'X86-64-MULTI' } + options { + buildDiscarder(logRotator(numToKeepStr: '10', daysToKeepStr: '60')) + parallelsAlwaysFailFast() + } // Input to determine if this is a package check parameters { string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') @@ -51,22 +55,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.LICENSE_TAG = sh( - script: '''#!/bin/bash - if [ -e LICENSE ] ; then - cat LICENSE | md5sum | cut -c1-8 - else - echo none - fi''', - returnStdout: true).trim() - env.FUNDING_TAG = sh( - script: '''#!/bin/bash - if [ -e ./.github/FUNDING.yml ] ; then - cat ./.github/FUNDING.yml | md5sum | cut -c1-8 - else - echo none - fi''', - returnStdout: true).trim() + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md' } script{ env.LS_RELEASE_NUMBER = sh( @@ -230,35 +219,32 @@ pipeline { TEMPDIR=$(mktemp -d) docker pull linuxserver/jenkins-builder:latest docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest - docker pull linuxserver/doc-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/readme linuxserver/doc-builder:latest - if [ "$(md5sum ${TEMPDIR}/${LS_REPO}/Jenkinsfile | awk '{ print $1 }')" != "$(md5sum Jenkinsfile | awk '{ print $1 }')" ] || \ - [ "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/README.md | awk '{ print $1 }')" != "$(md5sum README.md | awk '{ print $1 }')" ] || \ - [ "$(cat ${TEMPDIR}/${LS_REPO}/LICENSE | md5sum | cut -c1-8)" != "${LICENSE_TAG}" ] || \ - [ "$(cat ${TEMPDIR}/${LS_REPO}/.github/FUNDING.yml | md5sum | cut -c1-8)" != "${FUNDING_TAG}" ]; then + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]]; then mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git checkout -f preview - cp ${TEMPDIR}/${CONTAINER_NAME}/README.md ${TEMPDIR}/repo/${LS_REPO}/ - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/LICENSE ${TEMPDIR}/repo/${LS_REPO}/ + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f preview + cd ${TEMPDIR}/docker-${CONTAINER_NAME} mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.github/FUNDING.yml ${TEMPDIR}/repo/${LS_REPO}/.github/FUNDING.yml + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ cd ${TEMPDIR}/repo/${LS_REPO}/ - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git add Jenkinsfile README.md LICENSE ./.github/FUNDING.yml - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git commit -m 'Bot Updating Templated Files' - git --git-dir ${TEMPDIR}/repo/${LS_REPO}/.git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + git add ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [[ "${BRANCH_NAME}" == "master" ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ + if [[ "${BRANCH_NAME}" == "master" ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ cd ${TEMPDIR}/gitbook/docker-documentation/ git add images/docker-${CONTAINER_NAME}.md - git commit -m 'Bot Updating Templated Files' + git commit -m 'Bot Updating Documentation' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all fi rm -Rf ${TEMPDIR}''' From 2ff536a456ae81ff0e0d5b7c93d1daccc1202ffc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Oct 2019 11:26:30 -0400 Subject: [PATCH 061/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 37 +++++++++++++++++++++----------- .github/PULL_REQUEST_TEMPLATE.md | 30 +++++++++++++++++++++++--- 2 files changed, 52 insertions(+), 15 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index c73c33be..97e3e85e 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,21 +1,34 @@ - - [linuxserverurl]: https://linuxserver.io [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - +If you are new to Docker or this application our issue tracker is **ONLY** used for reporting bugs or requesting features. Please use [our discord server](https://discord.gg/YWrKVTn) for general support. + + + +------------------------------ - - - - +## Expected Behavior + +## Current Behavior + - +## Steps to Reproduce + + +1. +2. +3. +4. - - +## Environment +**OS:** +**CPU architecture:** x86_64/arm32/arm64 +**How docker service was installed:** + -## Thanks, team linuxserver.io +## Command used to create docker container (run/create/compose/screenshot) + +## Docker logs + diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index f6a6381d..26d50318 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,10 +6,34 @@ - + + - + -## Thanks, team linuxserver.io + + + + + + +------------------------------ + +We welcome all PR’s though this doesn’t guarantee it will be accepted. + +## Description: + + +## Benefits of this PR and context: + + +## How Has This Been Tested? + + + + + +## Source / References: + From 6948c10aa1176a7a09cc95f978d578c52f369b98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Oct 2019 16:35:38 +0100 Subject: [PATCH 062/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d4918759..12904de6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -306,8 +306,8 @@ libpixman-1-00.34.0-2 libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 -libpython2.7-minimal2.7.15-4ubuntu4~18.04.1 -libpython2.7-stdlib2.7.15-4ubuntu4~18.04.1 +libpython2.7-minimal2.7.15-4ubuntu4~18.04.2 +libpython2.7-stdlib2.7.15-4ubuntu4~18.04.2 libpython-stdlib2.7.15~rc1-1 libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 @@ -405,8 +405,8 @@ pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 python2.7.15~rc1-1 -python2.72.7.15-4ubuntu4~18.04.1 -python2.7-minimal2.7.15-4ubuntu4~18.04.1 +python2.72.7.15-4ubuntu4~18.04.2 +python2.7-minimal2.7.15-4ubuntu4~18.04.2 python-minimal2.7.15~rc1-1 readline-common7.0-3 sed4.4-2 @@ -415,7 +415,7 @@ shared-mime-info1.9-2 sqlite33.22.0-1ubuntu0.1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2019b-0ubuntu0.18.04 +tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 ucf3.0038 unzip6.0-21ubuntu1 From c36a6e2754a1ae989695bd421d305ecc339185f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Oct 2019 15:02:43 -0400 Subject: [PATCH 063/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12904de6..4ed1dffb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,7 +2,7 @@ adduser3.116ubuntu1 apt1.6.12 apt-transport-https1.6.12 apt-utils1.6.12 -base-files10.1ubuntu2.6 +base-files10.1ubuntu2.7 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 binutils2.30-21ubuntu1~18.04.2 @@ -332,7 +332,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 libswresample27:3.4.6-0ubuntu0.18.04.1 -libsystemd0237-3ubuntu10.29 +libsystemd0237-3ubuntu10.31 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -340,7 +340,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.2 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.29 +libudev1237-3ubuntu10.31 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 libva22.1.0-3 From e663c8767560cde61c3395b48239a6e4518c0f70 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Oct 2019 11:28:40 -0400 Subject: [PATCH 064/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4ed1dffb..a2cae58f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -337,7 +337,7 @@ libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 libtheora01.1.1+dfsg.1-14 -libtiff54.0.9-5ubuntu0.2 +libtiff54.0.9-5ubuntu0.3 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 libudev1237-3ubuntu10.31 From 1e35487dff75d2d4249e7b5bcd76af5ac6078852 Mon Sep 17 00:00:00 2001 From: thelamer Date: Tue, 29 Oct 2019 20:32:39 -0700 Subject: [PATCH 065/790] swapping preview over to netcore builds --- Dockerfile | 15 +++++++-------- Dockerfile.aarch64 | 15 +++++++-------- Dockerfile.armhf | 15 +++++++-------- README.md | 1 + readme-vars.yml | 1 + root/etc/cont-init.d/30-config | 1 - root/etc/services.d/lidarr/run | 5 ++--- 7 files changed, 25 insertions(+), 28 deletions(-) diff --git a/Dockerfile b/Dockerfile index a17f6775..90d677e1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,11 +1,11 @@ -FROM lsiobase/mono:LTS +FROM lsiobase/ubuntu:bionic # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -16,24 +16,23 @@ RUN \ echo "**** install packages ****" && \ apt-get update && \ apt-get install --no-install-recommends -y \ - libchromaprint-tools \ - jq && \ + jq \ + libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "${lidarr_url}" && \ + "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr --strip-components=1 && \ echo "**** cleanup ****" && \ rm -rf \ + /app/lidarr/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* @@ -43,4 +42,4 @@ COPY root/ / # ports and volumes EXPOSE 8686 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index ac257221..acb9fd32 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,11 +1,11 @@ -FROM lsiobase/mono:arm64v8-LTS +FROM lsiobase/ubuntu:arm64v8-bionic # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -16,24 +16,23 @@ RUN \ echo "**** install packages ****" && \ apt-get update && \ apt-get install --no-install-recommends -y \ - libchromaprint-tools \ - jq && \ + jq \ + libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "${lidarr_url}" && \ + "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr --strip-components=1 && \ echo "**** cleanup ****" && \ rm -rf \ + /app/lidarr/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* @@ -43,4 +42,4 @@ COPY root/ / # ports and volumes EXPOSE 8686 -VOLUME /config /downloads /music +VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a3239887..bac9beb1 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,11 +1,11 @@ -FROM lsiobase/mono:arm32v7-LTS +FROM lsiobase/ubuntu:bionic # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="sparklyballs" +LABEL maintainer="thelamer" # environment settings ARG DEBIAN_FRONTEND="noninteractive" @@ -16,24 +16,23 @@ RUN \ echo "**** install packages ****" && \ apt-get update && \ apt-get install --no-install-recommends -y \ - libchromaprint-tools \ - jq && \ + jq \ + libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ - lidarr_url=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r "first(.[] | select(.version == \"${LIDARR_RELEASE}\")) | .url") && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "${lidarr_url}" && \ + "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr --strip-components=1 && \ echo "**** cleanup ****" && \ rm -rf \ + /app/lidarr/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* @@ -43,4 +42,4 @@ COPY root/ / # ports and volumes EXPOSE 8686 -VOLUME /config /downloads /music +VOLUME /config diff --git a/README.md b/README.md index 3512fe9e..abf8145d 100644 --- a/README.md +++ b/README.md @@ -206,6 +206,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **29.10.19:** - Switch preview branch to netcore builds. * **01.08.19:** - Rebase to Linuxserver LTS mono version. * **13.06.19:** - Add env variable for setting umask. * **23.03.19:** - Switching to new Base images, shift to arm32v7 tag. diff --git a/readme-vars.yml b/readme-vars.yml index 1930f47a..cf75ce59 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -46,6 +46,7 @@ app_setup_block: | # changelog changelogs: + - { date: "29.10.19:", desc: "Switch preview branch to netcore builds." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - { date: "13.06.19:", desc: "Add env variable for setting umask." } - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 978151ad..4a5264a5 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,5 +2,4 @@ # permissions chown -R abc:abc \ - /app/lidarr \ /config diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run index 4be2f1b8..a88357dc 100644 --- a/root/etc/services.d/lidarr/run +++ b/root/etc/services.d/lidarr/run @@ -1,11 +1,10 @@ #!/usr/bin/with-contenv bash -# cd /app/lidarr || exit +# cd /app/lidarr || exit UMASK_SET=${UMASK_SET:-022} umask "$UMASK_SET" - exec \ - s6-setuidgid abc mono --debug /app/lidarr/Lidarr.exe \ + s6-setuidgid abc /app/lidarr/Lidarr \ -nobrowser -data=/config From 9d93963589435e3ebf0424d7604b7d9c07f2fc79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Oct 2019 00:34:31 -0400 Subject: [PATCH 066/790] Bot Updating Package Versions --- package_versions.txt | 297 ------------------------------------------- 1 file changed, 297 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a2cae58f..2a9501b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,44 +1,24 @@ adduser3.116ubuntu1 apt1.6.12 -apt-transport-https1.6.12 apt-utils1.6.12 base-files10.1ubuntu2.7 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -binutils2.30-21ubuntu1~18.04.2 -binutils-common2.30-21ubuntu1~18.04.2 -binutils-x86-64-linux-gnu2.30-21ubuntu1~18.04.2 bsdutils1:2.31.1-0.4ubuntu3.4 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 -ca-certificates-mono5.20.1.34-0xamarin4+ubuntu1804b1 -cli-common0.9+xamarin8+ubuntu1804b1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.8 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 -dirmngr2.2.4-1ubuntu1.2 dpkg1.19.0.5ubuntu2.3 -dpkg-dev1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.2 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 -fontconfig2.12.6-0ubuntu2 -fontconfig-config2.12.6-0ubuntu2 -fonts-dejavu-core2.37-1 gcc-8-base8.3.0-6ubuntu1~18.04.1 -gnupg2.2.4-1ubuntu1.2 -gnupg-l10n2.2.4-1ubuntu1.2 -gnupg-utils2.2.4-1ubuntu1.2 -gpg2.2.4-1ubuntu1.2 -gpg-agent2.2.4-1ubuntu1.2 -gpgconf2.2.4-1ubuntu1.2 -gpgsm2.2.4-1ubuntu1.2 gpgv2.2.4-1ubuntu1.2 -gpg-wks-client2.2.4-1ubuntu1.2 -gpg-wks-server2.2.4-1ubuntu1.2 grep3.1-2build1 gzip1.6-5ubuntu1 hostname3.20 @@ -49,62 +29,28 @@ libacl12.2.52-3build1 libapt-inst2.01.6.12 libapt-pkg5.01.6.12 libasn1-8-heimdal7.5.0+dfsg-1 -libassuan02.5.1-2 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libavcodec577:3.4.6-0ubuntu0.18.04.1 -libavformat577:3.4.6-0ubuntu0.18.04.1 -libavutil557:3.4.6-0ubuntu0.18.04.1 -libbinutils2.30-21ubuntu1~18.04.2 libblkid12.31.1-0.4ubuntu3.4 -libbluray21:1.0.2-3 -libbsd00.8.7-1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 -libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 -libchromaprint11.4.3-1 -libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.2 -libcroco30.6.12-2 -libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl3-gnutls7.58.0-2ubuntu3.8 libcurl47.58.0-2ubuntu3.8 -libcurl4-openssl-dev7.58.0-2ubuntu3.8 -libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libdpkg-perl1.19.0.5ubuntu2.3 -libdrm22.4.97-1ubuntu1~18.04.1 -libdrm-common2.4.97-1ubuntu1~18.04.1 -libexif120.6.21-4 -libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.2 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 -libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2 libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 -libgdbm51.14.1-6 -libgdbm-compat41.14.1-6 -libgdiplus5.6.1-0xamarin1+ubuntu1804b1 -libgdk-pixbuf2.0-02.36.11-2 -libgdk-pixbuf2.0-common2.36.11-2 -libgif75.1.4-2ubuntu0.1 -libglib2.0-02.56.4-0ubuntu0.18.04.4 -libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.1 -libgomp18.3.0-6ubuntu1~18.04.1 libgpg-error01.27-6 -libgraphite2-31.3.11-2 -libgsm11.0.13-4build1 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.1 -libharfbuzz0b1.7.2-1ubuntu1 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 @@ -112,206 +58,31 @@ libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3 libidn2-02.0.4-1.1build2 -libjbig02.1-3.1build1 -libjpeg88c-2ubuntu8 -libjpeg-turbo81.5.2-0ubuntu5.18.04.1 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 -libksba81.3.5-2 libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmediainfo0v519.09-1 -libmms00.6.4-2 -libmono-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-accessibility4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-cairo4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-cecil-private-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-cecil-vb0.9-cil4.7-0xamarin1+ubuntu1804b1 -libmono-cil-dev5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-codecontracts4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-compilerservices-symbolwriter4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-corlib4.5-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-cscompmgd0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-csharp4.0c-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-custommarshalers4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-data-tds4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-db2-1.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-debugger-soft4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-all5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n-cjk4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n-mideast4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n-other4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n-rare4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-i18n-west4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-ldap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-management4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-messaging4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-messaging-rabbitmq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-build4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-engine4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-framework4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-tasks-v4.0-4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-build-utilities-v4.0-4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-csharp4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-visualbasic10.0-cil4.7-0xamarin1+ubuntu1804b1 -libmono-microsoft-visualc10.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-microsoft-web-infrastructure1.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-oracle4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-parallel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-peapi4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-posix4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-rabbitmq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-relaxng4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-security4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-15.20.1.34-0xamarin4+ubuntu1804b1 -libmonosgen-2.0-dev5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-sharpzip4.84-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-simd4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-smdiagnostics0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-sqlite4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-composition4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-componentmodel-dataannotations4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-configuration4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-configuration-install4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-core4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data-datasetextensions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data-entity4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data-linq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data-services4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-data-services-client4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-deployment4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-drawing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-drawing-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-dynamic4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-enterpriseservices4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-identitymodel-selectors4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-io-compression4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-io-compression-filesystem4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-json4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-json-microsoft4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-ldap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-ldap-protocols4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-management4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-messaging4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-net4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-net-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-net-http-formatting4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-net-http-webrequest4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-numerics4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-numerics-vectors4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-core2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-debugger2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-experimental2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-interfaces2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-linq2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-observable-aliases0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-platformservices2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-providers2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-runtime-remoting2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-forms2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reactive-windows-threading2.2-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-reflection-context4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-runtime4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-runtime-caching4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-runtime-durableinstancing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-runtime-serialization-formatters-soap4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-security4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-activation4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-discovery4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-internals0.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-routing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-servicemodel-web4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-serviceprocess4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-threading-tasks-dataflow4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-transactions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-abstractions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-applicationservices4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-dynamicdata4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-extensions-design4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-http4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-http-selfhost4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-http-webhost4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-mobile4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-mvc3.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-razor2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-regularexpressions4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-routing4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-services4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-deployment2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-web-webpages-razor2.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-windows4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-windows-forms-datavisualization4.0a-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-workflow-activities4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-workflow-componentmodel4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-workflow-runtime4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-xaml4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-xml4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-xml-linq4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-system-xml-serialization4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-tasklets4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-webbrowser4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-webmatrix-data4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-windowsbase4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 -libmono-xbuild-tasks4.0-cil5.20.1.34-0xamarin4+ubuntu1804b1 libmount12.31.1-0.4ubuntu3.4 -libmp3lame03.100-2 -libmpg123-01.25.10-1 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 -libnpth01.5-3 -libnuma12.0.11-2.1ubuntu0.1 -libnunit-cil-dev2.6.4+dfsg-1 -libnunit-console-runner2.6.3-cil2.6.4+dfsg-1 -libnunit-core2.6.3-cil2.6.4+dfsg-1 -libnunit-core-interfaces2.6.3-cil2.6.4+dfsg-1 -libnunit-framework2.6.3-cil2.6.4+dfsg-1 -libnunit-mocks2.6.3-cil2.6.4+dfsg-1 -libnunit-util2.6.3-cil2.6.4+dfsg-1 -libogg01.3.2-1 libonig46.7.0-1 -libopenjp2-72.3.0-2build0.18.04.1 -libopenmpt00.3.6-1 -libopus01.1.2-1ubuntu1 libp11-kit00.23.9-2 libpam0g1.1.8-3.6ubuntu2.18.04.1 libpam-modules1.1.8-3.6ubuntu2.18.04.1 libpam-modules-bin1.1.8-3.6ubuntu2.18.04.1 libpam-runtime1.1.8-3.6ubuntu2.18.04.1 -libpango-1.0-01.40.14-1ubuntu0.1 -libpangocairo-1.0-01.40.14-1ubuntu0.1 -libpangoft2-1.0-01.40.14-1ubuntu0.1 libpcre32:8.39-9 -libperl5.265.26.1-6ubuntu0.3 -libpixman-1-00.34.0-2 -libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 -libpython2.7-minimal2.7.15-4ubuntu4~18.04.2 -libpython2.7-stdlib2.7.15-4ubuntu4~18.04.2 -libpython-stdlib2.7.15~rc1-1 -libreadline77.0-3 libroken18-heimdal7.5.0+dfsg-1 -librsvg2-22.40.20-2 librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2 @@ -321,104 +92,36 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 -libshine33.1.1-1 libsmartcols12.31.1-0.4ubuntu3.4 -libsnappy1v51.1.7-1 -libsoxr00.1.2-3 -libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.2 -libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.2 libssl1.11.1.1-1ubuntu2.1~18.04.4 libstdc++68.3.0-6ubuntu1~18.04.1 -libswresample27:3.4.6-0ubuntu0.18.04.1 libsystemd0237-3ubuntu10.31 libtasn1-64.13-2 -libthai00.1.27-2 -libthai-data0.1.27-2 -libtheora01.1.1+dfsg.1-14 -libtiff54.0.9-5ubuntu0.3 libtinfo56.1-1ubuntu1.18.04 -libtwolame00.3.13-3 libudev1237-3ubuntu10.31 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 -libva22.1.0-3 -libva-drm22.1.0-3 -libva-x11-22.1.0-3 -libvdpau11.1.1-3ubuntu1 -libvorbis0a1.3.5-4.2 -libvorbisenc21.3.5-4.2 -libvorbisfile31.3.5-4.2 -libvpx51.7.0-3 -libwavpack15.1.0-2ubuntu1.4 -libwebp60.6.1-2 -libwebpmux30.6.1-2 libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.2 -libx11-data2:1.6.4-3ubuntu0.2 -libx264-1522:0.152.2854+gite9a5903-2 -libx265-1462.6-3 -libxau61:1.0.8-1 -libxcb11.13-2~ubuntu18.04 -libxcb-render01.13-2~ubuntu18.04 -libxcb-shm01.13-2~ubuntu18.04 -libxdmcp61:1.1.2-3 -libxext62:1.3.3-1 -libxfixes31:5.0.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.2 -libxrender11:0.9.10-1 -libxvidcore42:1.3.5-1 -libzen0v50.4.37-1 libzstd11.3.3+dfsg-2ubuntu1.1 -libzvbi00.2.35-13 -libzvbi-common0.2.35-13 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 -make4.1-9.1ubuntu1 mawk1.3.3-17ubuntu3 -mediainfo19.09-1 -mime-support3.60ubuntu1 -mono-4.0-gac5.20.1.34-0xamarin4+ubuntu1804b1 -mono-devel5.20.1.34-0xamarin4+ubuntu1804b1 -mono-gac5.20.1.34-0xamarin4+ubuntu1804b1 -mono-mcs5.20.1.34-0xamarin4+ubuntu1804b1 -mono-roslyn5.20.1.34-0xamarin4+ubuntu1804b1 -mono-runtime5.20.1.34-0xamarin4+ubuntu1804b1 -mono-runtime-common5.20.1.34-0xamarin4+ubuntu1804b1 -mono-runtime-sgen5.20.1.34-0xamarin4+ubuntu1804b1 -mono-vbnc4.7-0xamarin1+ubuntu1804b1 -mono-xbuild5.20.1.34-0xamarin4+ubuntu1804b1 mount2.31.1-0.4ubuntu3.4 -multiarch-support2.27-3ubuntu1 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.4 passwd1:4.5-1ubuntu2 -patch2.7.6-2ubuntu1.1 -perl5.26.1-6ubuntu0.3 perl-base5.26.1-6ubuntu0.3 -perl-modules-5.265.26.1-6ubuntu0.3 -pinentry-curses1.1.0-1 -pkg-config0.29.1-0ubuntu2 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 -python2.7.15~rc1-1 -python2.72.7.15-4ubuntu4~18.04.2 -python2.7-minimal2.7.15-4ubuntu4~18.04.2 -python-minimal2.7.15~rc1-1 -readline-common7.0-3 sed4.4-2 sensible-utils0.0.12 -shared-mime-info1.9-2 -sqlite33.22.0-1ubuntu0.1 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 -ucf3.0038 -unzip6.0-21ubuntu1 util-linux2.31.1-0.4ubuntu3.4 -xz-utils5.2.2-1.3 zlib1g1:1.2.11.dfsg-0ubuntu2 From 97ccae982d7e6e2964fb9e39c86cc94f71d280df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Nov 2019 18:52:05 +0000 Subject: [PATCH 067/790] Bot Updating Templated Files --- Jenkinsfile | 162 +++++++++++++++++++++++++++++++++++++++------------- README.md | 16 ++++-- 2 files changed, 133 insertions(+), 45 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 519a929b..433e18d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -14,6 +14,8 @@ pipeline { environment { BUILDS_DISCORD=credentials('build_webhook_url') GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') + GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') + GITLAB_NAMESPACE=credentials('gitlab-namespace-id') JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'LIDARR_RELEASE' @@ -128,6 +130,9 @@ pipeline { steps { script{ env.IMAGE = env.DOCKERHUB_IMAGE + env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { @@ -146,6 +151,9 @@ pipeline { steps { script{ env.IMAGE = env.DEV_DOCKERHUB_IMAGE + env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { @@ -164,6 +172,9 @@ pipeline { steps { script{ env.IMAGE = env.PR_DOCKERHUB_IMAGE + env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME + env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } else { @@ -271,6 +282,26 @@ pipeline { } } } + /* ####################### + GitLab Mirroring + ####################### */ + // Ping into Gitlab to mirror this repo and have a registry endpoint + stage("GitLab Mirror"){ + when { + environment name: 'EXIT_STATUS', value: '' + } + steps{ + sh '''curl -H "Content-Type: application/json" -H "Private-Token: ${GITLAB_TOKEN}" -X POST https://gitlab.com/api/v4/projects \ + -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ + "name":"'${LS_REPO}'", + "mirror":true,\ + "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ + "issues_access_level":"disabled",\ + "merge_requests_access_level":"disabled",\ + "repository_access_level":"enabled",\ + "visibility":"public"}' ''' + } + } /* ############### Build Container ############### */ @@ -502,19 +533,32 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { - echo 'Logging into DockerHub' sh '''#! /bin/bash - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + set -e + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + for PUSHIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:preview + docker push ${PUSHIMAGE}:preview + docker push ${PUSHIMAGE}:${META_TAG} + done + for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:${META_TAG} \ + ${DELETEIMAGE}:preview || : + done ''' - sh "docker tag ${IMAGE}:${META_TAG} ${IMAGE}:preview" - sh "docker push ${IMAGE}:preview" - sh "docker push ${IMAGE}:${META_TAG}" - sh '''docker rmi \ - ${IMAGE}:${META_TAG} \ - ${IMAGE}:preview || :''' - } } } @@ -531,46 +575,81 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { sh '''#! /bin/bash - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - ''' - sh '''#! /bin/bash + set -e + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin if [ "${CI}" == "false" ]; then docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} - fi''' - sh "docker tag ${IMAGE}:amd64-${META_TAG} ${IMAGE}:amd64-preview" - sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm32v7-preview" - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} ${IMAGE}:arm64v8-preview" - sh "docker push ${IMAGE}:amd64-${META_TAG}" - sh "docker push ${IMAGE}:arm32v7-${META_TAG}" - sh "docker push ${IMAGE}:arm64v8-${META_TAG}" - sh "docker push ${IMAGE}:amd64-preview" - sh "docker push ${IMAGE}:arm32v7-preview" - sh "docker push ${IMAGE}:arm64v8-preview" - sh "docker manifest push --purge ${IMAGE}:preview || :" - sh "docker manifest create ${IMAGE}:preview ${IMAGE}:amd64-preview ${IMAGE}:arm32v7-preview ${IMAGE}:arm64v8-preview" - sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm32v7-preview --os linux --arch arm" - sh "docker manifest annotate ${IMAGE}:preview ${IMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8" - sh "docker manifest push --purge ${IMAGE}:${META_TAG} || :" - sh "docker manifest create ${IMAGE}:${META_TAG} ${IMAGE}:amd64-${META_TAG} ${IMAGE}:arm32v7-${META_TAG} ${IMAGE}:arm64v8-${META_TAG}" - sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm32v7-${META_TAG} --os linux --arch arm" - sh "docker manifest annotate ${IMAGE}:${META_TAG} ${IMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8" - sh "docker manifest push --purge ${IMAGE}:preview" - sh "docker manifest push --purge ${IMAGE}:${META_TAG}" - sh '''docker rmi \ - ${IMAGE}:amd64-${META_TAG} \ - ${IMAGE}:amd64-preview \ - ${IMAGE}:arm32v7-${META_TAG} \ - ${IMAGE}:arm32v7-preview \ - ${IMAGE}:arm64v8-${META_TAG} \ - ${IMAGE}:arm64v8-preview \ + fi + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-preview + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-preview + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-preview + docker push ${MANIFESTIMAGE}:amd64-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:amd64-preview + docker push ${MANIFESTIMAGE}:arm32v7-preview + docker push ${MANIFESTIMAGE}:arm64v8-preview + docker manifest push --purge ${MANIFESTIMAGE}:preview || : + docker manifest create ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:amd64-preview ${MANIFESTIMAGE}:arm32v7-preview ${MANIFESTIMAGE}:arm64v8-preview + docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm32v7-preview --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : + docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:preview + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} + done + for LEGACYIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:preview + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} + docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-preview + docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-preview + docker push ${LEGACYIMAGE}:amd64-${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker push ${LEGACYIMAGE}:preview + docker push ${LEGACYIMAGE}:${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-preview + docker push ${LEGACYIMAGE}:arm64v8-preview + done + ''' + sh '''#! /bin/bash + for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + docker rmi \ + ${DELETEIMAGE}:amd64-${META_TAG} \ + ${DELETEIMAGE}:amd64-preview \ + ${DELETEIMAGE}:arm32v7-${META_TAG} \ + ${DELETEIMAGE}:arm32v7-preview \ + ${DELETEIMAGE}:arm64v8-${META_TAG} \ + ${DELETEIMAGE}:arm64v8-preview || : + done + docker rmi \ lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ - lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : + ''' } } } @@ -665,5 +744,8 @@ pipeline { } } } + cleanup { + cleanWs() + } } } diff --git a/README.md b/README.md index abf8145d..c37d8ce0 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,9 @@ [![Discord](https://img.shields.io/discord/354974912613449730.svg?style=flat-square&color=E68523&label=Discord&logo=discord&logoColor=FFFFFF)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?style=flat-square&color=E68523&logo=discourse&logoColor=FFFFFF)](https://discourse.linuxserver.io "post on our community forum.") [![Fleet](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") +[![GitHub](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver "view the source for all of our repositories.") [![Podcast](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Podcast)](https://anchor.fm/linuxserverio "on hiatus. Coming back soon (late 2018).") -[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Open%20Collective%20Supporters)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") +[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Supporters&logo=open%20collective&logoColor=FFFFFF)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- @@ -20,15 +21,20 @@ Find us at: * [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. +* [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. * [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523)](https://github.com/linuxserver/docker-lidarr/releases) + +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr/releases) +[![GitHub Package Repository](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub%20Package&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr/packages) +[![GitLab Container Registry](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab&logoColor=FFFFFF)](https://gitlab.com/Linuxserver.io/docker-lidarr/container_registry) +[![Quay.io](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/lidarr) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") -[![MicroBadger Size](https://img.shields.io/microbadger/image-size/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/lidarr) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://hub.docker.com/r/linuxserver/lidarr) +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/lidarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/lidarr) [![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/) [![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) From 65f14f0400029526713aa98fafd57a101e434f1a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 1 Nov 2019 19:05:49 +0000 Subject: [PATCH 068/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2a9501b8..11009989 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -57,7 +57,7 @@ libheimntlm0-heimdal7.5.0+dfsg-1 libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3 -libidn2-02.0.4-1.1build2 +libidn2-02.0.4-1.1ubuntu0.2 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.1 libkeyutils11.5.9-9.2ubuntu2 From 7336c9ece35d27085c08c729dc427815e209a3df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Nov 2019 11:28:12 -0500 Subject: [PATCH 069/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11009989..cde1a0cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -95,7 +95,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.4 libsqlite3-03.22.0-1ubuntu0.1 libss21.44.1-1ubuntu1.2 -libssl1.11.1.1-1ubuntu2.1~18.04.4 +libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 libsystemd0237-3ubuntu10.31 libtasn1-64.13-2 @@ -112,7 +112,7 @@ mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.4 +openssl1.1.1-1ubuntu2.1~18.04.5 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.3 procps2:3.3.12-3ubuntu1.2 From edc0f5bca86a9865233189a7cb8a1062800a7a10 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Nov 2019 11:24:45 -0500 Subject: [PATCH 070/790] Bot Updating Templated Files --- Jenkinsfile | 6 +++--- README.md | 14 ++++++++++++-- 2 files changed, 15 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 433e18d6..a2646eab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -619,7 +619,7 @@ pipeline { docker manifest push --purge ${MANIFESTIMAGE}:preview docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} done - for LEGACYIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}"; do + for LEGACYIMAGE in "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker tag ${IMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-${META_TAG} @@ -733,12 +733,12 @@ pipeline { sh 'echo "build aborted"' } else if (currentBuild.currentResult == "SUCCESS"){ - sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } else { - sh ''' curl -X POST --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } diff --git a/README.md b/README.md index c37d8ce0..d283f382 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?style=flat-square&color=E68523&logo=discourse&logoColor=FFFFFF)](https://discourse.linuxserver.io "post on our community forum.") [![Fleet](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") [![GitHub](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver "view the source for all of our repositories.") -[![Podcast](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Podcast)](https://anchor.fm/linuxserverio "on hiatus. Coming back soon (late 2018).") [![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Supporters&logo=open%20collective&logoColor=FFFFFF)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- @@ -22,7 +21,6 @@ Find us at: * [Discourse](https://discourse.linuxserver.io) - post on our community forum. * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. -* [Podcast](https://anchor.fm/linuxserverio) - on hiatus. Coming back soon (late 2018). * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) @@ -127,6 +125,18 @@ Container images are configured using parameters passed at runtime (such as thos | `-v /music` | Music files. | | `-v /downloads` | Path to your download folder for music. | +## Environment variables from files (Docker secrets) + +You can set any environment variable from a file by using a special prepend `FILE__`. + +As an example: + +``` +-e FILE__PASSWORD=/run/secrets/mysecretpassword +``` + +Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. + ## User / Group Identifiers When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. From f62e1ae997390816cd402465020321906cf75f1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 7 Dec 2019 11:29:52 -0500 Subject: [PATCH 071/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cde1a0cb..3d062845 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -93,14 +93,14 @@ libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.4 -libsqlite3-03.22.0-1ubuntu0.1 +libsqlite3-03.22.0-1ubuntu0.2 libss21.44.1-1ubuntu1.2 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.31 +libsystemd0237-3ubuntu10.33 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.31 +libudev1237-3ubuntu10.33 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.4 libwind0-heimdal7.5.0+dfsg-1 From c51da896870a605c36c2f90741e992ed3dd3d972 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Jan 2020 11:28:27 -0500 Subject: [PATCH 072/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3d062845..467a93bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -47,7 +47,7 @@ libffi63.2.1-8 libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.1 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.1 +libgnutls303.5.18-1ubuntu1.2 libgpg-error01.27-6 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.1 From 1954d62913bdf16a21458c8fb81c0ba69b6f82cb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Jan 2020 16:30:30 +0000 Subject: [PATCH 073/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 467a93bb..7be17607 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -45,7 +45,7 @@ libext2fs21.44.1-1ubuntu1.2 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 libgcc11:8.3.0-6ubuntu1~18.04.1 -libgcrypt201.8.1-4ubuntu1.1 +libgcrypt201.8.1-4ubuntu1.2 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.2 libgpg-error01.27-6 From e897699513a27e6c0a885cfc983b80dbc4502c1b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Feb 2020 11:27:39 -0500 Subject: [PATCH 074/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7be17607..58f78f02 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ debconf1.5.66ubuntu1 debianutils4.8.4 diffutils1:3.6-1 dpkg1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.2 +e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.4 findutils4.6.0+git+20170828-2 gcc-8-base8.3.0-6ubuntu1~18.04.1 @@ -37,17 +37,17 @@ libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 -libcom-err21.44.1-1ubuntu1.2 +libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 -libext2fs21.44.1-1ubuntu1.2 +libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.4 libffi63.2.1-8 libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.2 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.2 +libgnutls303.5.18-1ubuntu1.3 libgpg-error01.27-6 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.1 @@ -84,9 +84,9 @@ libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 libroken18-heimdal7.5.0+dfsg-1 librtmp12.4+20151223.gitfa8646d.1-1 -libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2 -libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2 -libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2 +libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1 +libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.1 +libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.1 libseccomp22.4.1-0ubuntu0.18.04.2 libselinux12.7-2build2 libsemanage12.7-2build2 @@ -94,7 +94,7 @@ libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.4 libsqlite3-03.22.0-1ubuntu0.2 -libss21.44.1-1ubuntu1.2 +libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 libsystemd0237-3ubuntu10.33 From 226505f79e79bf21f6e03b205cdc97b37ad364d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 7 Feb 2020 18:59:30 +0000 Subject: [PATCH 075/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 58f78f02..fd99463a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,10 +1,10 @@ adduser3.116ubuntu1 apt1.6.12 apt-utils1.6.12 -base-files10.1ubuntu2.7 +base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.4 +bsdutils1:2.31.1-0.4ubuntu3.5 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -15,7 +15,7 @@ debianutils4.8.4 diffutils1:3.6-1 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.4 +fdisk2.31.1-0.4ubuntu3.5 findutils4.6.0+git+20170828-2 gcc-8-base8.3.0-6ubuntu1~18.04.1 gpgv2.2.4-1ubuntu1.2 @@ -32,7 +32,7 @@ libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.4 +libblkid12.31.1-0.4ubuntu3.5 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 libcap-ng00.7.7-3.1 @@ -42,7 +42,7 @@ libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.4 +libfdisk12.31.1-0.4ubuntu3.5 libffi63.2.1-8 libgcc11:8.3.0-6ubuntu1~18.04.1 libgcrypt201.8.1-4ubuntu1.2 @@ -68,7 +68,7 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.4 +libmount12.31.1-0.4ubuntu3.5 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -92,7 +92,7 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 -libsmartcols12.31.1-0.4ubuntu3.4 +libsmartcols12.31.1-0.4ubuntu3.5 libsqlite3-03.22.0-1ubuntu0.2 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 @@ -102,14 +102,14 @@ libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.33 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.4 +libuuid12.31.1-0.4ubuntu3.5 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mount2.31.1-0.4ubuntu3.4 +mount2.31.1-0.4ubuntu3.5 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.5 @@ -123,5 +123,5 @@ sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 -util-linux2.31.1-0.4ubuntu3.4 +util-linux2.31.1-0.4ubuntu3.5 zlib1g1:1.2.11.dfsg-0ubuntu2 From 91cec877e01239911ffb5aa952f2993ea03fab7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Feb 2020 16:27:32 +0000 Subject: [PATCH 076/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fd99463a..f709d1ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.2 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.33 +libsystemd0237-3ubuntu10.38 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.33 +libudev1237-3ubuntu10.38 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libwind0-heimdal7.5.0+dfsg-1 From 0286c2a1b0a2fe46674c811989e95dfa23ce6a4f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 20 Feb 2020 03:54:56 +0000 Subject: [PATCH 077/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f709d1ac..eded2c06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.2 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 -libsystemd0237-3ubuntu10.38 +libsystemd0237-3ubuntu10.39 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.38 +libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.5 libwind0-heimdal7.5.0+dfsg-1 From f06cd55d672561b95089cc03ebcdd855720c12cc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 14 Mar 2020 16:37:17 +0000 Subject: [PATCH 078/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eded2c06..dcc196bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -93,7 +93,7 @@ libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.5 -libsqlite3-03.22.0-1ubuntu0.2 +libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.3.0-6ubuntu1~18.04.1 From bcef6e76a83d830c49a774909b57887046ef51ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Mar 2020 12:29:09 -0400 Subject: [PATCH 079/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dcc196bc..e4bcc5a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,7 +17,7 @@ dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.5 findutils4.6.0+git+20170828-2 -gcc-8-base8.3.0-6ubuntu1~18.04.1 +gcc-8-base8.3.0-26ubuntu1~18.04 gpgv2.2.4-1ubuntu1.2 grep3.1-2build1 gzip1.6-5ubuntu1 @@ -44,7 +44,7 @@ libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.5 libffi63.2.1-8 -libgcc11:8.3.0-6ubuntu1~18.04.1 +libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.3 @@ -56,7 +56,7 @@ libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 libhogweed43.4-1 libhx509-5-heimdal7.5.0+dfsg-1 -libicu6060.2-3ubuntu3 +libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.1 @@ -96,7 +96,7 @@ libsmartcols12.31.1-0.4ubuntu3.5 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 -libstdc++68.3.0-6ubuntu1~18.04.1 +libstdc++68.3.0-26ubuntu1~18.04 libsystemd0237-3ubuntu10.39 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 From 67a185ffdccac81a99eaebc749dfb46adfe08059 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Mar 2020 16:30:59 +0000 Subject: [PATCH 080/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e4bcc5a3..e2c3d724 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ apt-utils1.6.12 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.5 +bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20180409 coreutils8.28-1ubuntu1 @@ -15,7 +15,7 @@ debianutils4.8.4 diffutils1:3.6-1 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.5 +fdisk2.31.1-0.4ubuntu3.6 findutils4.6.0+git+20170828-2 gcc-8-base8.3.0-26ubuntu1~18.04 gpgv2.2.4-1ubuntu1.2 @@ -32,7 +32,7 @@ libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.5 +libblkid12.31.1-0.4ubuntu3.6 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1 libcap-ng00.7.7-3.1 @@ -42,7 +42,7 @@ libcurl47.58.0-2ubuntu3.8 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.5 +libfdisk12.31.1-0.4ubuntu3.6 libffi63.2.1-8 libgcc11:8.3.0-26ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 @@ -68,7 +68,7 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.4 libldap-common2.4.45+dfsg-1ubuntu1.4 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.5 +libmount12.31.1-0.4ubuntu3.6 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -92,7 +92,7 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 -libsmartcols12.31.1-0.4ubuntu3.5 +libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 @@ -102,14 +102,14 @@ libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.39 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.5 +libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mount2.31.1-0.4ubuntu3.5 +mount2.31.1-0.4ubuntu3.6 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.5 @@ -123,5 +123,5 @@ sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2019c-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 -util-linux2.31.1-0.4ubuntu3.5 +util-linux2.31.1-0.4ubuntu3.6 zlib1g1:1.2.11.dfsg-0ubuntu2 From 0bc049348d94f8bc8a9673f7242e7c2cba5e979f Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Fri, 3 Apr 2020 22:35:40 -0500 Subject: [PATCH 081/790] Move to /app --- Dockerfile | 7 ++++--- Dockerfile.aarch64 | 7 ++++--- Dockerfile.armhf | 7 ++++--- root/etc/services.d/lidarr/run | 4 +--- 4 files changed, 13 insertions(+), 12 deletions(-) diff --git a/Dockerfile b/Dockerfile index 90d677e1..29bb162c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -19,7 +19,7 @@ RUN \ jq \ libicu60 && \ echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr && \ + mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ @@ -29,10 +29,11 @@ RUN \ "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ - /app/lidarr --strip-components=1 && \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ - /app/lidarr/Lidarr.Update \ + /app/lidarr/bin/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index acb9fd32..31136ddd 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -19,7 +19,7 @@ RUN \ jq \ libicu60 && \ echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr && \ + mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ @@ -29,10 +29,11 @@ RUN \ "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ - /app/lidarr --strip-components=1 && \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ - /app/lidarr/Lidarr.Update \ + /app/lidarr/bin/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* diff --git a/Dockerfile.armhf b/Dockerfile.armhf index bac9beb1..df457fe2 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -19,7 +19,7 @@ RUN \ jq \ libicu60 && \ echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr && \ + mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ @@ -29,10 +29,11 @@ RUN \ "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ - /app/lidarr --strip-components=1 && \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ - /app/lidarr/Lidarr.Update \ + /app/lidarr/bin/Lidarr.Update \ /tmp/* \ /var/lib/apt/lists/* \ /var/tmp/* diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run index a88357dc..02239bcc 100644 --- a/root/etc/services.d/lidarr/run +++ b/root/etc/services.d/lidarr/run @@ -1,10 +1,8 @@ #!/usr/bin/with-contenv bash -# cd /app/lidarr || exit - UMASK_SET=${UMASK_SET:-022} umask "$UMASK_SET" exec \ - s6-setuidgid abc /app/lidarr/Lidarr \ + s6-setuidgid abc /app/lidarr/bin/Lidarr \ -nobrowser -data=/config From bceaee5f73af9dc62f785c43b2ffe13381a11fb9 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 5 Apr 2020 02:51:44 -0500 Subject: [PATCH 082/790] Update changelog --- readme-vars.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/readme-vars.yml b/readme-vars.yml index cf75ce59..94f92130 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -46,6 +46,7 @@ app_setup_block: | # changelog changelogs: + - { date: "05.04.20:", desc: "Move app to /app." } - { date: "29.10.19:", desc: "Switch preview branch to netcore builds." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - { date: "13.06.19:", desc: "Add env variable for setting umask." } From 0d22d5385d90ab3d08f957a8c8c2da207ad29fda Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Tue, 7 Apr 2020 17:35:29 -0500 Subject: [PATCH 083/790] Add donate link --- jenkins-vars.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 1c71ac81..eaef5ef8 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -26,3 +26,6 @@ repo_vars: - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' - CI_WEBPATH='' +sponsor_links: + - { name: "Lidarr", url: "https://opencollective.com/lidarr" } + From 615f88b87ada3d337136dca2f23602feb197af51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 7 Apr 2020 18:55:44 -0400 Subject: [PATCH 084/790] Bot Updating Templated Files --- .github/FUNDING.yml | 1 + Jenkinsfile | 2 +- README.md | 10 ++++++++-- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index 79722137..ec5e073a 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ open_collective: linuxserver +custom: ["https://opencollective.com/lidarr",] diff --git a/Jenkinsfile b/Jenkinsfile index a2646eab..105f41a0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( diff --git a/README.md b/README.md index d283f382..99d90857 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![GitHub](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver "view the source for all of our repositories.") [![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Supporters&logo=open%20collective&logoColor=FFFFFF)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") -The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring :- +The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: * regular and timely application updates * easy user mappings (PGID, PUID) @@ -91,7 +91,7 @@ Compatible with docker-compose v2 schemas. ``` --- -version: "2" +version: "2.1" services: lidarr: image: linuxserver/lidarr @@ -157,6 +157,11 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Access the webui at `:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). +## Docker Mods +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") + +We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above. + ## Support Info @@ -222,6 +227,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.04.20:** - Move app to /app. * **29.10.19:** - Switch preview branch to netcore builds. * **01.08.19:** - Rebase to Linuxserver LTS mono version. * **13.06.19:** - Add env variable for setting umask. From 850b4f9db460e2f482ddc40dbd32605202f11aa0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 00:56:44 +0200 Subject: [PATCH 085/790] Bot Updating Templated Files --- root/donate.txt | 1 + 1 file changed, 1 insertion(+) create mode 100755 root/donate.txt diff --git a/root/donate.txt b/root/donate.txt new file mode 100755 index 00000000..66aba597 --- /dev/null +++ b/root/donate.txt @@ -0,0 +1 @@ +Lidarr: https://opencollective.com/lidarr From 778fb19085774de6cd8dcd168514fd6dd6479b21 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 8 Apr 2020 01:07:12 +0200 Subject: [PATCH 086/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e2c3d724..14c8a88d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,7 +17,7 @@ dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.6 findutils4.6.0+git+20170828-2 -gcc-8-base8.3.0-26ubuntu1~18.04 +gcc-8-base8.4.0-1ubuntu1~18.04 gpgv2.2.4-1ubuntu1.2 grep3.1-2build1 gzip1.6-5ubuntu1 @@ -44,7 +44,7 @@ libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.6 libffi63.2.1-8 -libgcc11:8.3.0-26ubuntu1~18.04 +libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.3 @@ -96,7 +96,7 @@ libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 -libstdc++68.3.0-26ubuntu1~18.04 +libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.39 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 From 75ca1b4b98da3014c9c39195027a279433795f1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 May 2020 15:25:15 +0000 Subject: [PATCH 087/790] Bot Updating Templated Files --- .github/FUNDING.yml | 1 + Jenkinsfile | 142 ++++++++++++++++++++++++-------------------- 2 files changed, 77 insertions(+), 66 deletions(-) diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml index ec5e073a..816733a2 100755 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1,2 +1,3 @@ +github: linuxserver open_collective: linuxserver custom: ["https://opencollective.com/lidarr",] diff --git a/Jenkinsfile b/Jenkinsfile index 105f41a0..4dcc2f3a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -349,7 +349,9 @@ pipeline { sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - sh "docker push lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + retry(5) { + sh "docker push lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + } sh '''docker rmi \ ${IMAGE}:arm32v7-${META_TAG} \ lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' @@ -376,7 +378,9 @@ pipeline { sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + retry(5) { + sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + } sh '''docker rmi \ ${IMAGE}:arm64v8-${META_TAG} \ lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' @@ -541,18 +545,22 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { + retry(5) { + sh '''#! /bin/bash + set -e + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + for PUSHIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:preview + docker push ${PUSHIMAGE}:preview + docker push ${PUSHIMAGE}:${META_TAG} + done + ''' + } sh '''#! /bin/bash - set -e - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - for PUSHIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do - docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:preview - docker push ${PUSHIMAGE}:preview - docker push ${PUSHIMAGE}:${META_TAG} - done for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ @@ -583,59 +591,61 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { - sh '''#! /bin/bash - set -e - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - if [ "${CI}" == "false" ]; then - docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} - docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} - fi - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}"; do - docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-preview - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-preview - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-preview - docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-preview - docker push ${MANIFESTIMAGE}:arm32v7-preview - docker push ${MANIFESTIMAGE}:arm64v8-preview - docker manifest push --purge ${MANIFESTIMAGE}:preview || : - docker manifest create ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:amd64-preview ${MANIFESTIMAGE}:arm32v7-preview ${MANIFESTIMAGE}:arm64v8-preview - docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm32v7-preview --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:preview - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} - done - for LEGACYIMAGE in "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker tag ${IMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:preview - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-preview - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-preview - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:preview - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-preview - docker push ${LEGACYIMAGE}:arm64v8-preview - done - ''' + retry(5) { + sh '''#! /bin/bash + set -e + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + if [ "${CI}" == "false" ]; then + docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + fi + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-preview + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-preview + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-preview + docker push ${MANIFESTIMAGE}:amd64-${META_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:amd64-preview + docker push ${MANIFESTIMAGE}:arm32v7-preview + docker push ${MANIFESTIMAGE}:arm64v8-preview + docker manifest push --purge ${MANIFESTIMAGE}:preview || : + docker manifest create ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:amd64-preview ${MANIFESTIMAGE}:arm32v7-preview ${MANIFESTIMAGE}:arm64v8-preview + docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm32v7-preview --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : + docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:preview + docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} + done + for LEGACYIMAGE in "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:preview + docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} + docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-preview + docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-preview + docker push ${LEGACYIMAGE}:amd64-${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} + docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} + docker push ${LEGACYIMAGE}:preview + docker push ${LEGACYIMAGE}:${META_TAG} + docker push ${LEGACYIMAGE}:arm32v7-preview + docker push ${LEGACYIMAGE}:arm64v8-preview + done + ''' + } sh '''#! /bin/bash for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ From e9e0ab990039cc06802abfa7d058de0158efcae2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 May 2020 18:59:35 -0400 Subject: [PATCH 088/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 14c8a88d..78c49100 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -64,8 +64,8 @@ libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 -libldap-2.4-22.4.45+dfsg-1ubuntu1.4 -libldap-common2.4.45+dfsg-1ubuntu1.4 +libldap-2.4-22.4.45+dfsg-1ubuntu1.5 +libldap-common2.4.45+dfsg-1ubuntu1.5 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.5 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.39 +libsystemd0237-3ubuntu10.40 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.39 +libudev1237-3ubuntu10.40 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 From fcd7b030854b0ddf28ee675cb43dd287f0231363 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 May 2020 15:28:16 +0000 Subject: [PATCH 089/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 78c49100..817d7539 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.12 -apt-utils1.6.12 +apt1.6.12ubuntu0.1 +apt-utils1.6.12ubuntu0.1 base-files10.1ubuntu2.8 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -26,8 +26,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.1 libacl12.2.52-3build1 -libapt-inst2.01.6.12 -libapt-pkg5.01.6.12 +libapt-inst2.01.6.12ubuntu0.1 +libapt-pkg5.01.6.12ubuntu0.1 libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 @@ -121,7 +121,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2019c-0ubuntu0.18.04 +tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 util-linux2.31.1-0.4ubuntu3.6 zlib1g1:1.2.11.dfsg-0ubuntu2 From 5289ca7ee9388cd4f79013626b4515917e447d40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 May 2020 15:25:10 +0000 Subject: [PATCH 090/790] Bot Updating Templated Files --- Jenkinsfile | 53 +++++++++++++++++------------------------------------ README.md | 40 ++++++++++++++++++++++------------------ 2 files changed, 39 insertions(+), 54 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4dcc2f3a..1cca4996 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -130,7 +130,6 @@ pipeline { steps { script{ env.IMAGE = env.DOCKERHUB_IMAGE - env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { @@ -151,7 +150,6 @@ pipeline { steps { script{ env.IMAGE = env.DEV_DOCKERHUB_IMAGE - env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { @@ -172,7 +170,6 @@ pipeline { steps { script{ env.IMAGE = env.PR_DOCKERHUB_IMAGE - env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { @@ -537,22 +534,15 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' - ], - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' ] ]) { retry(5) { sh '''#! /bin/bash set -e - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - for PUSHIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:preview docker push ${PUSHIMAGE}:preview @@ -561,7 +551,7 @@ pipeline { ''' } sh '''#! /bin/bash - for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do + for DELETEIMAGE in "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ ${DELETEIMAGE}:preview || : @@ -583,18 +573,11 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' - ], - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' ] ]) { retry(5) { sh '''#! /bin/bash set -e - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin @@ -628,26 +611,24 @@ pipeline { docker manifest push --purge ${MANIFESTIMAGE}:preview docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} done - for LEGACYIMAGE in "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker tag ${IMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:preview - docker tag ${LEGACYIMAGE}:amd64-${META_TAG} ${LEGACYIMAGE}:${META_TAG} - docker tag ${LEGACYIMAGE}:arm32v7-${META_TAG} ${LEGACYIMAGE}:arm32v7-preview - docker tag ${LEGACYIMAGE}:arm64v8-${META_TAG} ${LEGACYIMAGE}:arm64v8-preview - docker push ${LEGACYIMAGE}:amd64-${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-${META_TAG} - docker push ${LEGACYIMAGE}:arm64v8-${META_TAG} - docker push ${LEGACYIMAGE}:preview - docker push ${LEGACYIMAGE}:${META_TAG} - docker push ${LEGACYIMAGE}:arm32v7-preview - docker push ${LEGACYIMAGE}:arm64v8-preview - done + docker tag ${IMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${META_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${META_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-${META_TAG} + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:preview + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} + docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-preview + docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-preview + docker push ${GITHUBIMAGE}:amd64-${META_TAG} + docker push ${GITHUBIMAGE}:arm32v7-${META_TAG} + docker push ${GITHUBIMAGE}:arm64v8-${META_TAG} + docker push ${GITHUBIMAGE}:preview + docker push ${GITHUBIMAGE}:${META_TAG} + docker push ${GITHUBIMAGE}:arm32v7-preview + docker push ${GITHUBIMAGE}:arm64v8-preview ''' } sh '''#! /bin/bash - for DELETEIMAGE in "${QUAYIMAGE}" "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:amd64-${META_TAG} \ ${DELETEIMAGE}:amd64-preview \ diff --git a/README.md b/README.md index 99d90857..dda40f66 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) -[![Blog](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") -[![Discord](https://img.shields.io/discord/354974912613449730.svg?style=flat-square&color=E68523&label=Discord&logo=discord&logoColor=FFFFFF)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") -[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?style=flat-square&color=E68523&logo=discourse&logoColor=FFFFFF)](https://discourse.linuxserver.io "post on our community forum.") -[![Fleet](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") -[![GitHub](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver "view the source for all of our repositories.") -[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?style=flat-square&color=E68523&label=Supporters&logo=open%20collective&logoColor=FFFFFF)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") +[![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") +[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") +[![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") +[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") +[![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") +[![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: @@ -25,16 +25,15 @@ Find us at: # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) -[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr) -[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?style=flat-square&color=E68523&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr/releases) -[![GitHub Package Repository](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitHub%20Package&logo=github&logoColor=FFFFFF)](https://github.com/linuxserver/docker-lidarr/packages) -[![GitLab Container Registry](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab&logoColor=FFFFFF)](https://gitlab.com/Linuxserver.io/docker-lidarr/container_registry) -[![Quay.io](https://img.shields.io/static/v1.svg?style=flat-square&color=E68523&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/lidarr) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?style=flat-square&color=E68523)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") -[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?style=flat-square&color=E68523&label=pulls&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/lidarr) -[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?style=flat-square&color=E68523&label=stars&logo=docker&logoColor=FFFFFF)](https://hub.docker.com/r/linuxserver/lidarr) -[![Build Status](https://ci.linuxserver.io/view/all/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/badge/icon?style=flat-square)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/master/) -[![](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/badge.svg)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) +[![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr) +[![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) +[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/Linuxserver.io/docker-lidarr/container_registry) +[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") +[![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) +[![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) +[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fpreview%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/preview/) +[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flspipepr%2Flidarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. @@ -127,7 +126,7 @@ Container images are configured using parameters passed at runtime (such as thos ## Environment variables from files (Docker secrets) -You can set any environment variable from a file by using a special prepend `FILE__`. +You can set any environment variable from a file by using a special prepend `FILE__`. As an example: @@ -137,6 +136,11 @@ As an example: Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. +## Umask for running applications + +For all of our images we provide the ability to override the default umask settings for services started within the containers using the optional `-e UMASK=022` setting. +Keep in mind umask is not chmod it subtracts from permissions based on it's value it does not add. Please read up [here](https://en.wikipedia.org/wiki/Umask) before asking for support. + ## User / Group Identifiers When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. @@ -158,7 +162,7 @@ Access the webui at `:8686`, for more information check out [Lidarr](ht ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?style=for-the-badge&color=E68523&label=mods&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=mods&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above. From 6975ac6efb00519130df28dc6159931d619ec44a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 May 2020 15:34:03 +0000 Subject: [PATCH 091/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 817d7539..f5814573 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -95,12 +95,12 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.6 libsqlite3-03.22.0-1ubuntu0.3 libss21.44.1-1ubuntu1.3 -libssl1.11.1.1-1ubuntu2.1~18.04.5 +libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.40 +libsystemd0237-3ubuntu10.41 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.40 +libudev1237-3ubuntu10.41 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 @@ -112,7 +112,7 @@ mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.6 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.5 +openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.3 procps2:3.3.12-3ubuntu1.2 From c172192a5b4bbbec8892b7bcf8fc8b84a820b00d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Jun 2020 11:24:48 -0400 Subject: [PATCH 092/790] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index dda40f66..7fe8abdc 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fpreview%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/preview/) -[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flspipepr%2Flidarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) +[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flinuxserver%2Flidarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. From 436fc5b0a27db980c054062d45490346c513f0e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Jun 2020 11:28:55 -0400 Subject: [PATCH 093/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f5814573..15e5205f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20180409 +ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.8 dash0.5.8-2.10 From f8f75b33501ba804f59624e765265454b55eff84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Jun 2020 15:27:20 +0000 Subject: [PATCH 094/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 15e5205f..57986a3f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -93,7 +93,7 @@ libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.6 -libsqlite3-03.22.0-1ubuntu0.3 +libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 From 1a042006c8b0e142826e51bf4c14fe339e53e30e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Jun 2020 15:27:59 +0000 Subject: [PATCH 095/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 57986a3f..0e7bbe62 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.8 +curl7.58.0-2ubuntu3.9 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -38,7 +38,7 @@ libc62.27-3ubuntu1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.8 +libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 From 6bce321bb7abc285c5949cfd1fefdfded5c137bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Jul 2020 04:56:30 +0000 Subject: [PATCH 096/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0e7bbe62..f7241a59 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -87,7 +87,7 @@ librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.1 libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.1 -libseccomp22.4.1-0ubuntu0.18.04.2 +libseccomp22.4.3-1ubuntu3.18.04.2 libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 From 9d3ed200c5517ecff44c70ddc8343745c95a082b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 11 Jul 2020 11:27:30 -0400 Subject: [PATCH 097/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f7241a59..4921a0d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -105,7 +105,7 @@ libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 -locales2.27-3ubuntu1 +locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 From 39f30ab512b5610d47e44686a3b16a4d0a19ea26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Jul 2020 11:27:54 -0400 Subject: [PATCH 098/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4921a0d5..6bb3d5cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,9 +34,9 @@ libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libblkid12.31.1-0.4ubuntu3.6 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1 +libc62.27-3ubuntu1.2 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1 +libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.9 libdb5.35.3.28-13.1ubuntu1.1 @@ -47,7 +47,7 @@ libffi63.2.1-8 libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.3 +libgnutls303.5.18-1ubuntu1.4 libgpg-error01.27-6 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.1 From 4bea4c2fc071fdee6404a3b3443e82ef24aa1af2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 23 Jul 2020 21:08:53 -0400 Subject: [PATCH 099/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6bb3d5cd..00531eca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -64,8 +64,8 @@ libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 -libldap-2.4-22.4.45+dfsg-1ubuntu1.5 -libldap-common2.4.45+dfsg-1ubuntu1.5 +libldap-2.4-22.4.45+dfsg-1ubuntu1.6 +libldap-common2.4.45+dfsg-1ubuntu1.6 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.6 From 13eed04e85f0489debed64da2e4c0d2b3ef165a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 1 Aug 2020 15:33:15 +0000 Subject: [PATCH 100/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 00531eca..d5480513 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -87,7 +87,7 @@ librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.1 libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.1 -libseccomp22.4.3-1ubuntu3.18.04.2 +libseccomp22.4.3-1ubuntu3.18.04.3 libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 From fa1e9b909246a641a1f00ad6413e736dd90f796e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 Aug 2020 05:52:46 +0000 Subject: [PATCH 101/790] Bot Updating Templated Files --- Jenkinsfile | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1cca4996..6b04573c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -236,7 +236,7 @@ pipeline { cd ${TEMPDIR}/repo/${LS_REPO} git checkout -f preview cd ${TEMPDIR}/docker-${CONTAINER_NAME} - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ cd ${TEMPDIR}/repo/${LS_REPO}/ git add ${TEMPLATED_FILES} @@ -690,6 +690,10 @@ pipeline { ] ]) { sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull lsiodev/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ @@ -697,7 +701,9 @@ pipeline { -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ -e DOCKER_REPOSITORY=${IMAGE} \ -e GIT_BRANCH=master \ - lsiodev/readme-sync bash -c 'node sync' ''' + -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ + lsiodev/readme-sync bash -c 'node sync' + rm -Rf ${TEMPDIR} ''' } } } From e710b37858c757a3342fff6dae1c5ca97290c5dc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 3 Aug 2020 05:53:57 +0000 Subject: [PATCH 102/790] Bot Updating Templated Files --- .github/workflows/greetings.yml | 13 +++++++++++++ .github/workflows/stale.yml | 23 +++++++++++++++++++++++ 2 files changed, 36 insertions(+) create mode 100755 .github/workflows/greetings.yml create mode 100755 .github/workflows/stale.yml diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml new file mode 100755 index 00000000..11e3c6cb --- /dev/null +++ b/.github/workflows/greetings.yml @@ -0,0 +1,13 @@ +name: Greetings + +on: [pull_request, issues] + +jobs: + greeting: + runs-on: ubuntu-latest + steps: + - uses: actions/first-interaction@v1 + with: + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [issue template](https://github.com/linuxserver/docker-lidarr/.github/ISSUE_TEMPLATE.md)!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/.github/PULL_REQUEST_TEMPLATE.md)!' + repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml new file mode 100755 index 00000000..1806420a --- /dev/null +++ b/.github/workflows/stale.yml @@ -0,0 +1,23 @@ +name: Mark stale issues and pull requests + +on: + schedule: + - cron: "30 1 * * *" + +jobs: + stale: + + runs-on: ubuntu-latest + + steps: + - uses: actions/stale@v1 + with: + stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." + stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." + stale-issue-label: 'no-issue-activity' + stale-pr-label: 'no-pr-activity' + days-before-stale: 30 + days-before-close: 365 + exempt-issue-labels: 'awaiting-approval,work-in-progress' + exempt-pr-labels: 'awaiting-approval,work-in-progress' + repo-token: ${{ secrets.GITHUB_TOKEN }} From 33c5b266c9a13d668b7df04c49652b1649ce48c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 12 Aug 2020 17:55:09 +0000 Subject: [PATCH 103/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d5480513..3d627c33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 -base-files10.1ubuntu2.8 +base-files10.1ubuntu2.9 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.41 +libsystemd0237-3ubuntu10.42 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.41 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.6 libwind0-heimdal7.5.0+dfsg-1 From 47dc0891b488ed3dfbe9a3c527a877d59bbf7b71 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Aug 2020 17:52:37 +0000 Subject: [PATCH 104/790] Bot Updating Templated Files --- .github/workflows/greetings.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 11e3c6cb..430a95a9 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -1,6 +1,6 @@ name: Greetings -on: [pull_request, issues] +on: [pull_request_target, issues] jobs: greeting: From 1f970b91a4a9b424eb49960047164b977651ec84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 19 Aug 2020 13:57:06 -0400 Subject: [PATCH 105/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3d627c33..1b067084 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.6 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.9 +curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -38,7 +38,7 @@ libc62.27-3ubuntu1.2 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.9 +libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 From 140260ded4086c8eddf36fabea3beed5faf4ee95 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 10 Sep 2020 07:55:17 +0100 Subject: [PATCH 106/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1b067084..2fa69bd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 apt1.6.12ubuntu0.1 apt-utils1.6.12ubuntu0.1 -base-files10.1ubuntu2.9 +base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.6 @@ -75,10 +75,10 @@ libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libonig46.7.0-1 libp11-kit00.23.9-2 -libpam0g1.1.8-3.6ubuntu2.18.04.1 -libpam-modules1.1.8-3.6ubuntu2.18.04.1 -libpam-modules-bin1.1.8-3.6ubuntu2.18.04.1 -libpam-runtime1.1.8-3.6ubuntu2.18.04.1 +libpam0g1.1.8-3.6ubuntu2.18.04.2 +libpam-modules1.1.8-3.6ubuntu2.18.04.2 +libpam-modules-bin1.1.8-3.6ubuntu2.18.04.2 +libpam-runtime1.1.8-3.6ubuntu2.18.04.2 libpcre32:8.39-9 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 From 27380156164363c7d0f2f9c743f1701f1b8fce9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Sep 2020 23:54:51 -0400 Subject: [PATCH 107/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2fa69bd7..d3ee4fb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ apt-utils1.6.12ubuntu0.1 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.6 +bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20190110~18.04.1 coreutils8.28-1ubuntu1 @@ -15,10 +15,10 @@ debianutils4.8.4 diffutils1:3.6-1 dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.6 +fdisk2.31.1-0.4ubuntu3.7 findutils4.6.0+git+20170828-2 gcc-8-base8.4.0-1ubuntu1~18.04 -gpgv2.2.4-1ubuntu1.2 +gpgv2.2.4-1ubuntu1.3 grep3.1-2build1 gzip1.6-5ubuntu1 hostname3.20 @@ -32,7 +32,7 @@ libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 -libblkid12.31.1-0.4ubuntu3.6 +libblkid12.31.1-0.4ubuntu3.7 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1.2 libcap-ng00.7.7-3.1 @@ -42,7 +42,7 @@ libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.6 +libfdisk12.31.1-0.4ubuntu3.7 libffi63.2.1-8 libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 @@ -68,7 +68,7 @@ libldap-2.4-22.4.45+dfsg-1ubuntu1.6 libldap-common2.4.45+dfsg-1ubuntu1.6 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.6 +libmount12.31.1-0.4ubuntu3.7 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 @@ -92,7 +92,7 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 -libsmartcols12.31.1-0.4ubuntu3.6 +libsmartcols12.31.1-0.4ubuntu3.7 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 @@ -102,14 +102,14 @@ libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.6 +libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 locales2.27-3ubuntu1.2 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 -mount2.31.1-0.4ubuntu3.6 +mount2.31.1-0.4ubuntu3.7 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.6 @@ -123,5 +123,5 @@ sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 tzdata2020a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 -util-linux2.31.1-0.4ubuntu3.6 +util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From a7cf65c477c5616312ebda7dbe9dc429372476bf Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 27 Sep 2020 09:49:45 -0500 Subject: [PATCH 108/790] Move preview branch/tag to nightly. --- README.md | 25 +++++++++++++++---------- readme-vars.yml | 15 ++++++++++----- 2 files changed, 25 insertions(+), 15 deletions(-) diff --git a/README.md b/README.md index 7fe8abdc..3c9c7769 100644 --- a/README.md +++ b/README.md @@ -60,7 +60,7 @@ This image provides various versions that are available via tags. `latest` tag u | Tag | Description | | :----: | --- | | latest | Stable Lidarr releases. | -| preview | Nightly Lidarr Releases. | +| nightly | Nightly Lidarr Releases. | ## Usage @@ -76,9 +76,9 @@ docker create \ -e TZ=Europe/London \ -e UMASK_SET=022 `#optional` \ -p 8686:8686 \ - -v :/config \ - -v :/music \ - -v :/downloads \ + -v /path/to/appdata/config:/config \ + -v /path/to/music:/music \ + -v /path/to/downloads:/downloads \ --restart unless-stopped \ linuxserver/lidarr ``` @@ -101,9 +101,9 @@ services: - TZ=Europe/London - UMASK_SET=022 #optional volumes: - - :/config - - :/music - - :/downloads + - /path/to/appdata/config:/config + - /path/to/music:/music + - /path/to/downloads:/downloads ports: - 8686:8686 restart: unless-stopped @@ -119,10 +119,10 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | -| `-e UMASK_SET=022` | control permissions of files and directories created by Sonarr | +| `-e UMASK_SET=022` | control permissions of files and directories created by Lidarr | | `-v /config` | Configuration files for Lidarr. | -| `-v /music` | Music files. | -| `-v /downloads` | Path to your download folder for music. | +| `-v /music` | Music files (See note in Application setup). | +| `-v /downloads` | Path to your download folder for music (See note in Application setup). | ## Environment variables from files (Docker secrets) @@ -160,6 +160,10 @@ In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as bel Access the webui at `:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). +Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. + +Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. + ## Docker Mods [![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=mods&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") @@ -231,6 +235,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **27.09.20:** - Move preview branch/tag to nightly. * **05.04.20:** - Move app to /app. * **29.10.19:** - Switch preview branch to netcore builds. * **01.08.19:** - Rebase to Linuxserver LTS mono version. diff --git a/readme-vars.yml b/readme-vars.yml index 94f92130..64a343c5 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -17,7 +17,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Lidarr releases." } - - { tag: "preview", desc: "Nightly Lidarr Releases." } + - { tag: "nightly", desc: "Nightly Lidarr Releases." } # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional' @@ -28,13 +28,13 @@ param_env_vars: # optional env variables opt_param_usage_include_env: true opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "022", desc: "control permissions of files and directories created by Sonarr"} + - { env_var: "UMASK_SET", env_value: "022", desc: "control permissions of files and directories created by Lidarr"} param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "", desc: "Configuration files for Lidarr." } - - { vol_path: "/music", vol_host_path: "", desc: "Music files." } - - { vol_path: "/downloads", vol_host_path: "", desc: "Path to your download folder for music." } + - { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files for Lidarr." } + - { vol_path: "/music", vol_host_path: "/path/to/music", desc: "Music files (See note in Application setup)." } + - { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Path to your download folder for music (See note in Application setup)." } param_usage_include_ports: true param_ports: - { external_port: "8686", internal_port: "8686", port_desc: "Application WebUI" } @@ -44,8 +44,13 @@ app_setup_block_enabled: true app_setup_block: | Access the webui at `:8686`, for more information check out [Lidarr]({{ project_url }}). + Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. + + Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. + # changelog changelogs: + - { date: "27.09.20:", desc: "Move preview branch/tag to nightly." } - { date: "05.04.20:", desc: "Move app to /app." } - { date: "29.10.19:", desc: "Switch preview branch to netcore builds." } - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } From b72808a0b93c19b249088552049ac607dee0d236 Mon Sep 17 00:00:00 2001 From: Eric Nemchik Date: Sun, 27 Sep 2020 10:17:22 -0500 Subject: [PATCH 109/790] Fix nightly tag --- Jenkinsfile | 78 ++++++++++++++++++++++++------------------------ README.md | 2 +- jenkins-vars.yml | 5 ++-- 3 files changed, 42 insertions(+), 43 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6b04573c..a2c9ee15 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( - script: '''docker run --rm alexeiled/skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':preview 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + script: '''docker run --rm alexeiled/skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':nightly 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -121,10 +121,10 @@ pipeline { } } } - // If this is a preview build use live docker endpoints + // If this is a nightly build use live docker endpoints stage("Set ENV live build"){ when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' } steps { @@ -144,7 +144,7 @@ pipeline { // If this is a dev build use dev docker endpoints stage("Set ENV dev build"){ when { - not {branch "preview"} + not {branch "nightly"} environment name: 'CHANGE_ID', value: '' } steps { @@ -215,7 +215,7 @@ pipeline { // Use helper containers to render templated files stage('Update-Templates') { when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' expression { env.CONTAINER_NAME != null @@ -226,7 +226,7 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) @@ -234,7 +234,7 @@ pipeline { mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f preview + git checkout -f nightly cd ${TEMPDIR}/docker-${CONTAINER_NAME} mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ @@ -266,7 +266,7 @@ pipeline { // Exit the build if the Templated files were just updated stage('Template-exit') { when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'FILES_UPDATED', value: 'true' expression { @@ -389,7 +389,7 @@ pipeline { // Take the image we just built and dump package versions for comparison stage('Update-packages') { when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'EXIT_STATUS', value: '' } @@ -417,7 +417,7 @@ pipeline { echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/${LS_REPO} - git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f preview + git --git-dir ${TEMPDIR}/${LS_REPO}/.git checkout -f nightly cp ${TEMPDIR}/package_versions.txt ${TEMPDIR}/${LS_REPO}/ cd ${TEMPDIR}/${LS_REPO}/ wait @@ -441,7 +441,7 @@ pipeline { // Exit the build if the package file was just updated stage('PACKAGE-exit') { when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'PACKAGE_UPDATED', value: 'true' environment name: 'EXIT_STATUS', value: '' @@ -455,7 +455,7 @@ pipeline { // Exit the build if this is just a package check and there are no changes to push stage('PACKAGECHECK-exit') { when { - branch "preview" + branch "nightly" environment name: 'CHANGE_ID', value: '' environment name: 'PACKAGE_UPDATED', value: 'false' environment name: 'EXIT_STATUS', value: '' @@ -544,8 +544,8 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:preview - docker push ${PUSHIMAGE}:preview + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly + docker push ${PUSHIMAGE}:nightly docker push ${PUSHIMAGE}:${META_TAG} done ''' @@ -554,7 +554,7 @@ pipeline { for DELETEIMAGE in "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ - ${DELETEIMAGE}:preview || : + ${DELETEIMAGE}:nightly || : done ''' } @@ -591,51 +591,51 @@ pipeline { docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-preview - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-preview - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-preview + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-nightly + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-nightly + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-preview - docker push ${MANIFESTIMAGE}:arm32v7-preview - docker push ${MANIFESTIMAGE}:arm64v8-preview - docker manifest push --purge ${MANIFESTIMAGE}:preview || : - docker manifest create ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:amd64-preview ${MANIFESTIMAGE}:arm32v7-preview ${MANIFESTIMAGE}:arm64v8-preview - docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm32v7-preview --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:preview ${MANIFESTIMAGE}:arm64v8-preview --os linux --arch arm64 --variant v8 + docker push ${MANIFESTIMAGE}:amd64-nightly + docker push ${MANIFESTIMAGE}:arm32v7-nightly + docker push ${MANIFESTIMAGE}:arm64v8-nightly + docker manifest push --purge ${MANIFESTIMAGE}:nightly || : + docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly + docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm64v8-nightly --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:preview + docker manifest push --purge ${MANIFESTIMAGE}:nightly docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} done docker tag ${IMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-${META_TAG} - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:preview + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:nightly docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} - docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-preview - docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-preview + docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-nightly + docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-nightly docker push ${GITHUBIMAGE}:amd64-${META_TAG} docker push ${GITHUBIMAGE}:arm32v7-${META_TAG} docker push ${GITHUBIMAGE}:arm64v8-${META_TAG} - docker push ${GITHUBIMAGE}:preview + docker push ${GITHUBIMAGE}:nightly docker push ${GITHUBIMAGE}:${META_TAG} - docker push ${GITHUBIMAGE}:arm32v7-preview - docker push ${GITHUBIMAGE}:arm64v8-preview + docker push ${GITHUBIMAGE}:arm32v7-nightly + docker push ${GITHUBIMAGE}:arm64v8-nightly ''' } sh '''#! /bin/bash for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:amd64-${META_TAG} \ - ${DELETEIMAGE}:amd64-preview \ + ${DELETEIMAGE}:amd64-nightly \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ - ${DELETEIMAGE}:arm32v7-preview \ + ${DELETEIMAGE}:arm32v7-nightly \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-preview || : + ${DELETEIMAGE}:arm64v8-nightly || : done docker rmi \ lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ @@ -647,7 +647,7 @@ pipeline { // If this is a public release tag it in the LS Github stage('Github-Tag-Push-Release') { when { - branch "preview" + branch "nightly" expression { env.LS_RELEASE != env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } @@ -659,14 +659,14 @@ pipeline { sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ -d '{"tag":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to preview",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ "type": "commit",\ "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ - "target_commitish": "preview",\ + "target_commitish": "nightly",\ "name": "'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json @@ -693,7 +693,7 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=preview -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull lsiodev/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ diff --git a/README.md b/README.md index 3c9c7769..97e1c990 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ Find us at: [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) -[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fpreview%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/preview/) +[![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/) [![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flinuxserver%2Flidarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index eaef5ef8..0f2e303d 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -4,8 +4,8 @@ project_name: docker-lidarr external_type: custom_json release_type: prerelease -release_tag: preview -ls_branch: preview +release_tag: nightly +ls_branch: nightly repo_vars: - JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' - JSON_PATH = '.[0].version' @@ -28,4 +28,3 @@ repo_vars: - CI_WEBPATH='' sponsor_links: - { name: "Lidarr", url: "https://opencollective.com/lidarr" } - From e59e84f453af5b42e2b9f247a211b06a749b6f09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Oct 2020 03:23:35 +0000 Subject: [PATCH 110/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 12 ++++-- .github/PULL_REQUEST_TEMPLATE.md | 10 +++-- .github/workflows/greetings.yml | 4 +- Jenkinsfile | 28 ++++++++++++- README.md | 70 +++++++++++++++++--------------- 5 files changed, 80 insertions(+), 44 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 97e3e85e..39a2563d 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,7 +1,10 @@ [linuxserverurl]: https://linuxserver.io [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] -If you are new to Docker or this application our issue tracker is **ONLY** used for reporting bugs or requesting features. Please use [our discord server](https://discord.gg/YWrKVTn) for general support. + + + + @@ -22,9 +25,10 @@ If you are new to Docker or this application our issue tracker is **ONLY** used 4. ## Environment -**OS:** -**CPU architecture:** x86_64/arm32/arm64 -**How docker service was installed:** +**OS:** +**CPU architecture:** x86_64/arm32/arm64 +**How docker service was installed:** + ## Command used to create docker container (run/create/compose/screenshot) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 26d50318..c5fc34e9 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -2,11 +2,11 @@ [linuxserverurl]: https://linuxserver.io [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - + - + @@ -21,7 +21,11 @@ ------------------------------ -We welcome all PR’s though this doesn’t guarantee it will be accepted. + - [ ] I have read the [contributing](https://github.com/linuxserver/docker-lidarr/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications + +------------------------------ + + ## Description: diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 430a95a9..321cf370 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [issue template](https://github.com/linuxserver/docker-lidarr/.github/ISSUE_TEMPLATE.md)!' - pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/.github/PULL_REQUEST_TEMPLATE.md)!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [issue template](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE.md)!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/Jenkinsfile b/Jenkinsfile index a2c9ee15..f2c1702c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -138,6 +138,7 @@ pipeline { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN } } } @@ -158,6 +159,7 @@ pipeline { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' } } @@ -178,6 +180,7 @@ pipeline { env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' } @@ -545,8 +548,10 @@ pipeline { for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} docker push ${PUSHIMAGE}:nightly docker push ${PUSHIMAGE}:${META_TAG} + docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} done ''' } @@ -554,6 +559,7 @@ pipeline { for DELETEIMAGE in "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ + ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:nightly || : done ''' @@ -594,12 +600,18 @@ pipeline { docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-nightly docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-nightly docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker push ${MANIFESTIMAGE}:amd64-nightly docker push ${MANIFESTIMAGE}:arm32v7-nightly docker push ${MANIFESTIMAGE}:arm64v8-nightly + docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker manifest push --purge ${MANIFESTIMAGE}:nightly || : docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm @@ -608,8 +620,12 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} --os linux --arch arm64 --variant v8 + docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:nightly docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} + docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} done docker tag ${IMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${META_TAG} @@ -618,6 +634,10 @@ pipeline { docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-nightly docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-nightly + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${EXT_RELEASE_TAG} + docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${EXT_RELEASE_TAG} + docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker push ${GITHUBIMAGE}:amd64-${META_TAG} docker push ${GITHUBIMAGE}:arm32v7-${META_TAG} docker push ${GITHUBIMAGE}:arm64v8-${META_TAG} @@ -625,6 +645,10 @@ pipeline { docker push ${GITHUBIMAGE}:${META_TAG} docker push ${GITHUBIMAGE}:arm32v7-nightly docker push ${GITHUBIMAGE}:arm64v8-nightly + docker push ${GITHUBIMAGE}:${EXT_RELEASE_TAG} + docker push ${GITHUBIMAGE}:amd64-${EXT_RELEASE_TAG} + docker push ${GITHUBIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${GITHUBIMAGE}:arm64v8-${EXT_RELEASE_TAG} ''' } sh '''#! /bin/bash @@ -693,7 +717,7 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest docker pull lsiodev/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ diff --git a/README.md b/README.md index 97e1c990..d2266174 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,6 @@ + + + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") @@ -66,29 +69,11 @@ This image provides various versions that are available via tags. `latest` tag u Here are some example snippets to help you get started creating a container. -### docker - -``` -docker create \ - --name=lidarr \ - -e PUID=1000 \ - -e PGID=1000 \ - -e TZ=Europe/London \ - -e UMASK_SET=022 `#optional` \ - -p 8686:8686 \ - -v /path/to/appdata/config:/config \ - -v /path/to/music:/music \ - -v /path/to/downloads:/downloads \ - --restart unless-stopped \ - linuxserver/lidarr -``` - - -### docker-compose +### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) Compatible with docker-compose v2 schemas. -``` +```yaml --- version: "2.1" services: @@ -109,6 +94,24 @@ services: restart: unless-stopped ``` +### docker cli + +``` +docker run -d \ + --name=lidarr \ + -e PUID=1000 \ + -e PGID=1000 \ + -e TZ=Europe/London \ + -e UMASK_SET=022 `#optional` \ + -p 8686:8686 \ + -v /path/to/appdata/config:/config \ + -v /path/to/music:/music \ + -v /path/to/downloads:/downloads \ + --restart unless-stopped \ + linuxserver/lidarr +``` + + ## Parameters Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. @@ -166,9 +169,9 @@ Another item to keep in mind, is that within lidarr itself, you should then map ## Docker Mods -[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=mods&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") +[![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=lidarr&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.") -We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) can be accessed via the dynamic badge above. +We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. ## Support Info @@ -186,14 +189,6 @@ Most of our images are static, versioned, and require an image update and contai Below are the instructions for updating containers: -### Via Docker Run/Create -* Update the image: `docker pull linuxserver/lidarr` -* Stop the running container: `docker stop lidarr` -* Delete the container: `docker rm lidarr` -* Recreate a new container with the same docker create parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) -* Start the new container: `docker start lidarr` -* You can also remove the old dangling images: `docker image prune` - ### Via Docker Compose * Update all images: `docker-compose pull` * or update a single image: `docker-compose pull lidarr` @@ -201,7 +196,14 @@ Below are the instructions for updating containers: * or update a single container: `docker-compose up -d lidarr` * You can also remove the old dangling images: `docker image prune` -### Via Watchtower auto-updater (especially useful if you don't remember the original parameters) +### Via Docker Run +* Update the image: `docker pull linuxserver/lidarr` +* Stop the running container: `docker stop lidarr` +* Delete the container: `docker rm lidarr` +* Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) +* You can also remove the old dangling images: `docker image prune` + +### Via Watchtower auto-updater (only use if you don't remember the original parameters) * Pull the latest image at its tag and replace it with the same env variables in one run: ``` docker run --rm \ @@ -209,10 +211,12 @@ Below are the instructions for updating containers: containrrr/watchtower \ --run-once lidarr ``` +* You can also remove the old dangling images: `docker image prune` -**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using Docker Compose. +**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). -* You can also remove the old dangling images: `docker image prune` +### Image Update Notifications - Diun (Docker Image Update Notifier) +* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. ## Building locally From 0c3a80e66567f50f4d8ec255fdbf6105e1090ca7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 5 Oct 2020 03:25:00 +0000 Subject: [PATCH 111/790] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 122 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 122 insertions(+) create mode 100755 .github/CONTRIBUTING.md diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md new file mode 100755 index 00000000..262038ba --- /dev/null +++ b/.github/CONTRIBUTING.md @@ -0,0 +1,122 @@ +# Contributing to lidarr + +## Gotchas + +* While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open. +* Read, and fill the Pull Request template + * If this is a fix for a typo in code or documentation in the README please file an issue + * If the PR is addressing an existing issue include, closes #\, in the body of the PR commit message +* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) + +## Common files + +| File | Use case | +| :----: | --- | +| `Dockerfile` | Dockerfile used to build amd64 images | +| `Dockerfile.aarch64` | Dockerfile used to build 64bit ARM architectures | +| `Dockerfile.armhf` | Dockerfile used to build 32bit ARM architectures | +| `Jenkinsfile` | This file is a product of our builder and should not be edited directly. This is used to build the image | +| `jenkins-vars.yml` | This file is used to generate the `Jenkinsfile` mentioned above, it only affects the build-process | +| `package_versions.txt` | This file is generated as a part of the build-process and should not be edited directly. It lists all the installed packages and their versions | +| `README.md` | This file is a product of our builder and should not be edited directly. This displays the readme for the repository and image registries | +| `readme-vars.yml` | This file is used to generate the `README.md` | + +## Readme + +If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-lidarr/edit/master/readme-vars.yml). + +These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. +Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-lidarr) + +### Fixing typos or clarify the text in the readme + +There are variables for multiple parts of the readme, the most common ones are: + +| Variable | Description | +| :----: | --- | +| `project_blurb` | This is the short excerpt shown above the project logo. | +| `app_setup_block` | This is the text that shows up under "Application Setup" if enabled | + +### Parameters + +The compose and run examples are also generated from these variables. + +We have a [reference file](https://github.com/linuxserver/docker-jenkins-builder/blob/master/vars/_container-vars-blank) in our Jenkins Builder. + +These are prefixed with `param_` for required parameters, or `opt_param` for optional parameters, except for `cap_add`. +Remember to enable param, if currently disabled. This differs between parameters, and can be seen in the reference file. + +Devices, environment variables, ports and volumes expects its variables in a certain way. + +### Devices + +```yml +param_devices: + - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } +opt_param_devices: + - { device_path: "/dev/dri", device_host_path: "/dev/dri", desc: "For hardware transcoding" } +``` + +### Environment variables + +```yml +param_env_vars: + - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } +opt_param_env_vars: + - { env_var: "VERSION", env_value: "latest", desc: "Supported values are LATEST, PLEXPASS or a specific version number." } +``` + +### Ports + +```yml +param_ports: + - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } +opt_param_ports: + - { external_port: "80", internal_port: "80", port_desc: "Application WebUI" } +``` + +### Volumes + +```yml +param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." } +opt_param_volumes: + - { vol_path: "/config", vol_host_path: "", desc: "Configuration files." } +``` + +### Testing template changes + +After you make any changes to the templates, you can use our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) to have the files updated from the modified templates. Please use the command found under `Running Locally` [on this page](https://github.com/linuxserver/docker-jenkins-builder/blob/master/README.md) to generate them prior to submitting a PR. + +## Dockerfiles + +We use multiple Dockerfiles in our repos, this is because sometimes some CPU architectures needs different packages to work. +If you are proposing additional packages to be added, ensure that you added the packages to all the Dockerfiles in alphabetical order. + +### Testing your changes + +``` +git clone https://github.com/linuxserver/docker-lidarr.git +cd docker-lidarr +docker build \ + --no-cache \ + --pull \ + -t linuxserver/lidarr:latest . +``` + +The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` +``` +docker run --rm --privileged multiarch/qemu-user-static:register --reset +``` + +Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. + +## Update the chagelog + +If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-lidarr/tree/master/root), add an entry to the changelog + +```yml +changelogs: + - { date: "DD.MM.YY:", desc: "Added some love to templates" } +``` From 9327981000c2ea9594e613138cd25cf1d16d300c Mon Sep 17 00:00:00 2001 From: thelamer Date: Mon, 2 Nov 2020 06:59:47 -0800 Subject: [PATCH 112/790] update baseimages --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 29bb162c..ece00cfe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 31136ddd..2d9ec143 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic # set version label ARG BUILD_DATE diff --git a/Dockerfile.armhf b/Dockerfile.armhf index df457fe2..8503387e 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM lsiobase/ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic # set version label ARG BUILD_DATE From 9fcc7bf47187ea1b4fae0882e4b15f6614e3bf80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 15:01:02 +0000 Subject: [PATCH 113/790] Bot Updating Templated Files --- Jenkinsfile | 162 ++++++++++++++++++++-------------------------------- README.md | 14 ++--- 2 files changed, 68 insertions(+), 108 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f2c1702c..1dac5894 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -43,7 +43,7 @@ pipeline { script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( - script: '''docker run --rm alexeiled/skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':nightly 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + script: '''docker run --rm ghcr.io/linuxserver/alexeiled-skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':nightly 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -130,7 +130,7 @@ pipeline { steps { script{ env.IMAGE = env.DOCKERHUB_IMAGE - env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER @@ -151,7 +151,7 @@ pipeline { steps { script{ env.IMAGE = env.DEV_DOCKERHUB_IMAGE - env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lsiodev-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA @@ -172,7 +172,7 @@ pipeline { steps { script{ env.IMAGE = env.PR_DOCKERHUB_IMAGE - env.GITHUBIMAGE = 'docker.pkg.github.com/' + env.LS_USER + '/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME + env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lspipepr-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST @@ -193,24 +193,24 @@ pipeline { } steps { withCredentials([ - string(credentialsId: 'spaces-key', variable: 'DO_KEY'), - string(credentialsId: 'spaces-secret', variable: 'DO_SECRET') + string(credentialsId: 'ci-tests-s3-key-id', variable: 'S3_KEY'), + string(credentialsId: 'ci-tests-s3-secret-access-key', variable: 'S3_SECRET') ]) { script{ - env.SHELLCHECK_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' + env.SHELLCHECK_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' } sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' sh '''#! /bin/bash set -e - docker pull lsiodev/spaces-file-upload:latest + docker pull ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest docker run --rm \ -e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \ -e FILE_NAME="shellcheck-result.xml" \ -e MIMETYPE="text/xml" \ -v ${WORKSPACE}:/mnt \ - -e SECRET_KEY=\"${DO_SECRET}\" \ - -e ACCESS_KEY=\"${DO_KEY}\" \ - -t lsiodev/spaces-file-upload:latest \ + -e SECRET_KEY=\"${S3_SECRET}\" \ + -e ACCESS_KEY=\"${S3_KEY}\" \ + -t ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest \ python /upload.py''' } } @@ -228,8 +228,8 @@ pipeline { sh '''#! /bin/bash set -e TEMPDIR=$(mktemp -d) - docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) @@ -334,28 +334,19 @@ pipeline { label 'ARMHF' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - echo 'Logging into DockerHub' - sh '''#! /bin/bash - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - ''' - sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm32v7-${META_TAG} lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - retry(5) { - sh "docker push lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - } - sh '''docker rmi \ - ${IMAGE}:arm32v7-${META_TAG} \ - lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + echo 'Logging into Github' + sh '''#! /bin/bash + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + ''' + sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" + retry(5) { + sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" } + sh '''docker rmi \ + ${IMAGE}:arm32v7-${META_TAG} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' } } stage('Build ARM64') { @@ -363,28 +354,19 @@ pipeline { label 'ARM64' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - echo 'Logging into DockerHub' - sh '''#! /bin/bash - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - ''' - sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm64v8-${META_TAG} lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - retry(5) { - sh "docker push lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" - } - sh '''docker rmi \ - ${IMAGE}:arm64v8-${META_TAG} \ - lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + echo 'Logging into Github' + sh '''#! /bin/bash + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + ''' + sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_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) { + sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" } + sh '''docker rmi \ + ${IMAGE}:arm64v8-${META_TAG} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' } } } @@ -483,20 +465,20 @@ pipeline { } steps { withCredentials([ - string(credentialsId: 'spaces-key', variable: 'DO_KEY'), - string(credentialsId: 'spaces-secret', variable: 'DO_SECRET') + string(credentialsId: 'ci-tests-s3-key-id', variable: 'S3_KEY'), + string(credentialsId: 'ci-tests-s3-secret-access-key ', variable: 'S3_SECRET') ]) { script{ - env.CI_URL = 'https://lsio-ci.ams3.digitaloceanspaces.com/' + env.IMAGE + '/' + env.META_TAG + '/index.html' + env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html' } sh '''#! /bin/bash set -e - docker pull lsiodev/ci:latest + docker pull ghcr.io/linuxserver/lsiodev-ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} - docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ --shm-size=1gb \ @@ -508,15 +490,15 @@ pipeline { -e PORT=\"${CI_PORT}\" \ -e SSL=\"${CI_SSL}\" \ -e BASE=\"${DIST_IMAGE}\" \ - -e SECRET_KEY=\"${DO_SECRET}\" \ - -e ACCESS_KEY=\"${DO_KEY}\" \ + -e SECRET_KEY=\"${S3_SECRET}\" \ + -e ACCESS_KEY=\"${S3_KEY}\" \ -e DOCKER_ENV=\"${CI_DOCKERENV}\" \ -e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ -e DO_REGION="ams3" \ -e DO_BUCKET="lsio-ci" \ - -t lsiodev/ci:latest \ + -t ghcr.io/linuxserver/lsiodev-ci:latest \ python /ci/ci.py''' } } @@ -543,7 +525,7 @@ pipeline { sh '''#! /bin/bash set -e echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} @@ -585,15 +567,15 @@ pipeline { sh '''#! /bin/bash set -e echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin - echo $GITHUB_TOKEN | docker login docker.pkg.github.com -u LinuxServer-CI --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin if [ "${CI}" == "false" ]; then - docker pull lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker pull lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} - docker tag lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}"; do + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}"; do docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} @@ -627,28 +609,6 @@ pipeline { docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} done - docker tag ${IMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-${META_TAG} - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:nightly - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${META_TAG} - docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-nightly - docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-nightly - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:amd64-${EXT_RELEASE_TAG} - docker tag ${GITHUBIMAGE}:amd64-${META_TAG} ${GITHUBIMAGE}:${EXT_RELEASE_TAG} - docker tag ${GITHUBIMAGE}:arm32v7-${META_TAG} ${GITHUBIMAGE}:arm32v7-${EXT_RELEASE_TAG} - docker tag ${GITHUBIMAGE}:arm64v8-${META_TAG} ${GITHUBIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker push ${GITHUBIMAGE}:amd64-${META_TAG} - docker push ${GITHUBIMAGE}:arm32v7-${META_TAG} - docker push ${GITHUBIMAGE}:arm64v8-${META_TAG} - docker push ${GITHUBIMAGE}:nightly - docker push ${GITHUBIMAGE}:${META_TAG} - docker push ${GITHUBIMAGE}:arm32v7-nightly - docker push ${GITHUBIMAGE}:arm64v8-nightly - docker push ${GITHUBIMAGE}:${EXT_RELEASE_TAG} - docker push ${GITHUBIMAGE}:amd64-${EXT_RELEASE_TAG} - docker push ${GITHUBIMAGE}:arm32v7-${EXT_RELEASE_TAG} - docker push ${GITHUBIMAGE}:arm64v8-${EXT_RELEASE_TAG} ''' } sh '''#! /bin/bash @@ -662,8 +622,8 @@ pipeline { ${DELETEIMAGE}:arm64v8-nightly || : done docker rmi \ - lsiodev/buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ - lsiodev/buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : + ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ + ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : ''' } } @@ -716,9 +676,9 @@ pipeline { sh '''#! /bin/bash set -e TEMPDIR=$(mktemp -d) - docker pull linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins linuxserver/jenkins-builder:latest - docker pull lsiodev/readme-sync + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + docker pull ghcr.io/linuxserver/lsiodev-readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ -e DOCKERHUB_PASSWORD=$DOCKERPASS \ @@ -726,7 +686,7 @@ pipeline { -e DOCKER_REPOSITORY=${IMAGE} \ -e GIT_BRANCH=master \ -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ - lsiodev/readme-sync bash -c 'node sync' + ghcr.io/linuxserver/lsiodev-readme-sync bash -c 'node sync' rm -Rf ${TEMPDIR} ''' } } diff --git a/README.md b/README.md index d2266174..f35ea19e 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/) -[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Flsio-ci.ams3.digitaloceanspaces.com%2Flinuxserver%2Flidarr%2Flatest%2Fci-status.yml)](https://lsio-ci.ams3.digitaloceanspaces.com/linuxserver/lidarr/latest/index.html) +[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Flidarr%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/lidarr/latest/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. @@ -46,7 +46,7 @@ Find us at: Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `ghcr.io/linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. The architectures supported by this image are: @@ -78,7 +78,7 @@ Compatible with docker-compose v2 schemas. version: "2.1" services: lidarr: - image: linuxserver/lidarr + image: ghcr.io/linuxserver/lidarr container_name: lidarr environment: - PUID=1000 @@ -108,7 +108,7 @@ docker run -d \ -v /path/to/music:/music \ -v /path/to/downloads:/downloads \ --restart unless-stopped \ - linuxserver/lidarr + ghcr.io/linuxserver/lidarr ``` @@ -181,7 +181,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' linuxserver/lidarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/lidarr` ## Updating Info @@ -197,7 +197,7 @@ Below are the instructions for updating containers: * You can also remove the old dangling images: `docker image prune` ### Via Docker Run -* Update the image: `docker pull linuxserver/lidarr` +* Update the image: `docker pull ghcr.io/linuxserver/lidarr` * Stop the running container: `docker stop lidarr` * Delete the container: `docker rm lidarr` * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) @@ -227,7 +227,7 @@ cd docker-lidarr docker build \ --no-cache \ --pull \ - -t linuxserver/lidarr:latest . + -t ghcr.io/linuxserver/lidarr:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From b065786af100a0db8a2d6cf72ed659172c3ffd0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 2 Nov 2020 15:07:25 +0000 Subject: [PATCH 114/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d3ee4fb0..2e499b5b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20190110~18.04.1 +ca-certificates20201027ubuntu0.18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.10 dash0.5.8-2.10 @@ -121,7 +121,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.1 -tzdata2020a-0ubuntu0.18.04 +tzdata2020d-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From 9ee77c7a73b131a345e504dda60b2769a5c283f5 Mon Sep 17 00:00:00 2001 From: aptalca Date: Thu, 12 Nov 2020 14:15:47 -0500 Subject: [PATCH 115/790] add trigger workflows --- .github/workflows/external_trigger.yml | 90 ++++++++++++++++++++++++++ .github/workflows/package_trigger.yml | 22 +++++++ 2 files changed, 112 insertions(+) create mode 100644 .github/workflows/external_trigger.yml create mode 100644 .github/workflows/package_trigger.yml diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml new file mode 100644 index 00000000..aafeac8e --- /dev/null +++ b/.github/workflows/external_trigger.yml @@ -0,0 +1,90 @@ +name: External Trigger Main + +on: + workflow_dispatch: + +jobs: + external-trigger-nightly: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: External Trigger + if: github.ref == 'refs/heads/nightly' + run: | + if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY }}" ]; then + echo "Github secret PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger." + exit 0 + fi + echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\"." + echo "Setting env vars" + JSON_URL='https://services.lidarr.audio/v1/update/nightly/changes?os=linux' + JSON_PATH='.[0].version' + BUILD_VERSION_ARG='LIDARR_RELEASE' + LS_USER='linuxserver' + LS_REPO='docker-lidarr' + CONTAINER_NAME='lidarr' + DOCKERHUB_IMAGE='linuxserver/lidarr' + DEV_DOCKERHUB_IMAGE='lsiodev/lidarr' + PR_DOCKERHUB_IMAGE='lspipepr/lidarr' + DIST_IMAGE='ubuntu' + MULTIARCH='true' + CI='true' + CI_WEB='true' + CI_PORT='8686' + CI_SSL='false' + CI_DELAY='120' + CI_DOCKERENV='TZ=US/Pacific' + CI_AUTH='user:password' + CI_WEBPATH='' + echo "Retrieving external version" + EXT_RELEASE=$(curl -s "${JSON_URL}" | jq -r ". | ${JSON_PATH}") + if [ -z "${EXT_RELEASE}" ]; then + echo "Can't retrieve external version, exiting" + FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + exit 1 + fi + echo "External version: ${EXT_RELEASE}" + echo "Retrieving last pushed version" + image="${LS_USER}/lidarr" + tag="nightly" + token=$(curl -s \ + "https://auth.docker.io/token?scope=repository:${image}:pull&service=registry.docker.io" \ + | jq -r '.token') + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://registry-1.docker.io/v2/${image}/manifests/${tag}" \ + | jq -r '.config.digest') + image_info=$(curl -sL \ + --header "Authorization: Bearer ${token}" \ + "https://registry-1.docker.io/v2/${image}/blobs/${digest}" \ + | jq -r '.container_config') + IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') + IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') + if [ -z "${IMAGE_VERSION}" ]; then + echo "Can't retrieve last pushed version, exiting" + FAILURE_REASON="Can't retrieve last pushed version for lidarr tag nightly" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + exit 1 + fi + echo "Last pushed version: ${IMAGE_VERSION}" + if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then + echo "Version ${EXT_RELEASE} already pushed, exiting" + exit 0 + else + echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" + curl -X POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} + echo "Notifying Discord" + TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml new file mode 100644 index 00000000..6f058da7 --- /dev/null +++ b/.github/workflows/package_trigger.yml @@ -0,0 +1,22 @@ +name: Package Trigger Main + +on: + workflow_dispatch: + +jobs: + package-trigger-nightly: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + + - name: Package Trigger + if: github.ref == 'refs/heads/nightly' + run: | + if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY }}" ]; then + echo "Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger." + exit 0 + fi + echo "Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\"." + curl -X POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ No newline at end of file From 3c57d75ae923e3e11a0a9162a587ba520d12ce33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 12 Nov 2020 21:17:04 -0500 Subject: [PATCH 116/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2e499b5b..579da817 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,9 +34,9 @@ libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libblkid12.31.1-0.4ubuntu3.7 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 +libc62.27-3ubuntu1.3 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 +libc-bin2.27-3ubuntu1.3 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -64,8 +64,8 @@ libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.1 libkrb5support01.16-2ubuntu0.1 -libldap-2.4-22.4.45+dfsg-1ubuntu1.6 -libldap-common2.4.45+dfsg-1ubuntu1.6 +libldap-2.4-22.4.45+dfsg-1ubuntu1.7 +libldap-common2.4.45+dfsg-1ubuntu1.7 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 @@ -97,15 +97,15 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.42 +libsystemd0237-3ubuntu10.43 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 +libudev1237-3ubuntu10.43 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 -locales2.27-3ubuntu1.2 +locales2.27-3ubuntu1.3 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 @@ -114,7 +114,7 @@ ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.6 passwd1:4.5-1ubuntu2 -perl-base5.26.1-6ubuntu0.3 +perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 sed4.4-2 From 3bc68461de96714ce7c0d4b93924acc22b945d7a Mon Sep 17 00:00:00 2001 From: aptalca Date: Mon, 16 Nov 2020 13:28:26 -0500 Subject: [PATCH 117/790] update workflows --- .github/workflows/external_trigger.yml | 45 +++++++------------ .../workflows/external_trigger_scheduler.yml | 41 +++++++++++++++++ .../workflows/package_trigger_scheduler.yml | 42 +++++++++++++++++ 3 files changed, 98 insertions(+), 30 deletions(-) create mode 100644 .github/workflows/external_trigger_scheduler.yml create mode 100644 .github/workflows/package_trigger_scheduler.yml diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index aafeac8e..d731f294 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -17,28 +17,8 @@ jobs: exit 0 fi echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\"." - echo "Setting env vars" - JSON_URL='https://services.lidarr.audio/v1/update/nightly/changes?os=linux' - JSON_PATH='.[0].version' - BUILD_VERSION_ARG='LIDARR_RELEASE' - LS_USER='linuxserver' - LS_REPO='docker-lidarr' - CONTAINER_NAME='lidarr' - DOCKERHUB_IMAGE='linuxserver/lidarr' - DEV_DOCKERHUB_IMAGE='lsiodev/lidarr' - PR_DOCKERHUB_IMAGE='lspipepr/lidarr' - DIST_IMAGE='ubuntu' - MULTIARCH='true' - CI='true' - CI_WEB='true' - CI_PORT='8686' - CI_SSL='false' - CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' - CI_WEBPATH='' echo "Retrieving external version" - EXT_RELEASE=$(curl -s "${JSON_URL}" | jq -r ". | ${JSON_PATH}") + EXT_RELEASE=$(curl -s "https://services.lidarr.audio/v1/update/nightly/changes?os" | jq -r ". | .[0].version") if [ -z "${EXT_RELEASE}" ]; then echo "Can't retrieve external version, exiting" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" @@ -49,19 +29,24 @@ jobs: fi echo "External version: ${EXT_RELEASE}" echo "Retrieving last pushed version" - image="${LS_USER}/lidarr" + image="linuxserver/lidarr" tag="nightly" - token=$(curl -s \ - "https://auth.docker.io/token?scope=repository:${image}:pull&service=registry.docker.io" \ + token=$(curl -sX GET \ + "https://ghcr.io/token?scope=repository%3Alinuxserver%2Flidarr%3Apull" \ | jq -r '.token') - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://registry-1.docker.io/v2/${image}/manifests/${tag}" \ - | jq -r '.config.digest') + multidigest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${tag}" \ + | jq -r 'first(.manifests[].digest)') + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ + | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ - "https://registry-1.docker.io/v2/${image}/blobs/${digest}" \ + "https://ghcr.io/v2/${image}/blobs/${digest}" \ | jq -r '.container_config') IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml new file mode 100644 index 00000000..d98ea46b --- /dev/null +++ b/.github/workflows/external_trigger_scheduler.yml @@ -0,0 +1,41 @@ +name: External Trigger Scheduler + +on: + schedule: + - cron: '25 * * * *' + workflow_dispatch: + +jobs: + external-trigger-scheduler: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + with: + fetch-depth: '0' + + - name: External Trigger Scheduler + run: | + git for-each-ref --format='%(refname:short)' refs/remotes + docker pull ghcr.io/linuxserver/yq + for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + do + br=$(echo "$br" | sed 's|origin/||g') + echo "Evaluating branch ${br}" + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ + | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + if [ "$br" == "$ls_branch" ]; then + echo "${br} is a live branch, checking workflow." + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then + echo "Workflow exists. Triggering external trigger workflow for branch ${br}." + curl -iX POST \ + -H "Authorization: token ${{ secrets.CR_PAT }}" \ + -H "Accept: application/vnd.github.v3+json" \ + -d "{\"ref\":\"refs/heads/${br}\"}" \ + https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/external_trigger.yml/dispatches + else + echo "Workflow doesn't exist; skipping trigger." + fi + else + echo "${br} appears to be a dev branch; skipping trigger." + fi + done diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml new file mode 100644 index 00000000..b1b31286 --- /dev/null +++ b/.github/workflows/package_trigger_scheduler.yml @@ -0,0 +1,42 @@ +name: Package Trigger Scheduler + +on: + schedule: + - cron: '00 0 * * 0' + workflow_dispatch: + +jobs: + package-trigger-scheduler: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2.3.3 + with: + fetch-depth: '0' + + - name: Package Trigger Scheduler + run: | + git for-each-ref --format='%(refname:short)' refs/remotes + docker pull ghcr.io/linuxserver/yq + for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + do + br=$(echo "$br" | sed 's|origin/||g') + echo "Evaluating branch ${br}" + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ + | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + if [ "${br}" == "${ls_branch}" ]; then + echo "Branch ${br} appears to be live; triggering." + if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then + echo "Workflow exists. Triggering package trigger workflow for branch ${br}." + curl -iX POST \ + -H "Authorization: token ${{ secrets.CR_PAT }}" \ + -H "Accept: application/vnd.github.v3+json" \ + -d "{\"ref\":\"refs/heads/${br}\"}" \ + https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/package_trigger.yml/dispatches + sleep 30 + else + echo "Workflow doesn't exist; skipping trigger." + fi + else + echo "${br} appears to be a dev branch; skipping trigger." + fi + done From f29a1cf3c5d6d5740027e7aec4722b13701a2541 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 18 Nov 2020 17:32:13 +0000 Subject: [PATCH 118/790] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 579da817..b13e08b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -24,7 +24,7 @@ gzip1.6-5ubuntu1 hostname3.20 init-system-helpers1.51 jq1.5+dfsg-2 -krb5-locales1.16-2ubuntu0.1 +krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 libapt-inst2.01.6.12ubuntu0.1 libapt-pkg5.01.6.12ubuntu0.1 @@ -34,9 +34,9 @@ libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libblkid12.31.1-0.4ubuntu3.7 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.3 +libc62.27-3ubuntu1.2 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.3 +libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.10 libdb5.35.3.28-13.1ubuntu1.1 @@ -50,7 +50,7 @@ libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.4 libgpg-error01.27-6 libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.1 +libgssapi-krb5-21.16-2ubuntu0.2 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 @@ -59,13 +59,13 @@ libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 libjq11.5+dfsg-2 -libk5crypto31.16-2ubuntu0.1 +libk5crypto31.16-2ubuntu0.2 libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.1 -libkrb5support01.16-2ubuntu0.1 -libldap-2.4-22.4.45+dfsg-1ubuntu1.7 -libldap-common2.4.45+dfsg-1ubuntu1.7 +libkrb5-31.16-2ubuntu0.2 +libkrb5support01.16-2ubuntu0.2 +libldap-2.4-22.4.45+dfsg-1ubuntu1.8 +libldap-common2.4.45+dfsg-1ubuntu1.8 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.6 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.43 +libsystemd0237-3ubuntu10.42 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.43 +libudev1237-3ubuntu10.42 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From dab725061fe9ac691aebb3d5efb59d83c15f9ff0 Mon Sep 17 00:00:00 2001 From: hotio <26902309+hotio@users.noreply.github.com> Date: Sat, 21 Nov 2020 14:52:19 +0100 Subject: [PATCH 119/790] update url --- Dockerfile | 4 ++-- Dockerfile.aarch64 | 4 ++-- Dockerfile.armhf | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index ece00cfe..1851713b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -21,12 +21,12 @@ RUN \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2d9ec143..2f866033 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -21,12 +21,12 @@ RUN \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 8503387e..e2fbbf66 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -21,12 +21,12 @@ RUN \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://services.lidarr.audio/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ tar ixzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ From 4b4b9a80ead9d78b086ac2f54568bfd63d73db03 Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 21 Nov 2020 17:48:24 -0500 Subject: [PATCH 120/790] update jenkins-vars.yml and trigger workflows --- .github/workflows/external_trigger.yml | 44 ++++++++++++------- .../workflows/external_trigger_scheduler.yml | 12 ++--- .github/workflows/package_trigger.yml | 20 +++++++-- .../workflows/package_trigger_scheduler.yml | 18 +++++--- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 6 files changed, 66 insertions(+), 32 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index d731f294..ec3b56e4 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -13,22 +13,22 @@ jobs: if: github.ref == 'refs/heads/nightly' run: | if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY }}" ]; then - echo "Github secret PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger." + echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" exit 0 fi - echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\"." - echo "Retrieving external version" - EXT_RELEASE=$(curl -s "https://services.lidarr.audio/v1/update/nightly/changes?os" | jq -r ". | .[0].version") - if [ -z "${EXT_RELEASE}" ]; then - echo "Can't retrieve external version, exiting" + echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" + echo "**** Retrieving external version ****" + EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os" | jq -r ". | .[0].version") + if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then + echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - echo "External version: ${EXT_RELEASE}" - echo "Retrieving last pushed version" + echo "**** External version: ${EXT_RELEASE} ****" + echo "**** Retrieving last pushed version ****" image="linuxserver/lidarr" tag="nightly" token=$(curl -sX GET \ @@ -51,25 +51,37 @@ jobs: IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then - echo "Can't retrieve last pushed version, exiting" + echo "**** Can't retrieve last pushed version, exiting ****" FAILURE_REASON="Can't retrieve last pushed version for lidarr tag nightly" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - echo "Last pushed version: ${IMAGE_VERSION}" + echo "**** Last pushed version: ${IMAGE_VERSION} ****" if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "Version ${EXT_RELEASE} already pushed, exiting" + echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" exit 0 else - echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" - curl -X POST \ + echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" + response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} - echo "Notifying Discord" + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "**** Jenkins job queue url: ${response%$'\r'} ****" + echo "**** Sleeping 10 seconds until job starts ****" + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "**** Jenkins job build url: ${buildurl} ****" + echo "**** Attempting to change the Jenkins job description ****" + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + echo "**** Notifying Discord ****" TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n"}], + "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index d98ea46b..53208f30 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -15,27 +15,29 @@ jobs: - name: External Trigger Scheduler run: | + echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes + echo "**** Pulling the yq docker image ****" docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') - echo "Evaluating branch ${br}" + echo "**** Evaluating branch ${br} ****" ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) if [ "$br" == "$ls_branch" ]; then - echo "${br} is a live branch, checking workflow." + echo "**** Branch ${br} appears to be live; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then - echo "Workflow exists. Triggering external trigger workflow for branch ${br}." + echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/external_trigger.yml/dispatches else - echo "Workflow doesn't exist; skipping trigger." + echo "**** Workflow doesn't exist; skipping trigger. ****" fi else - echo "${br} appears to be a dev branch; skipping trigger." + echo "**** ${br} appears to be a dev branch; skipping trigger. ****" fi done diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 6f058da7..1ae2835c 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -13,10 +13,22 @@ jobs: if: github.ref == 'refs/heads/nightly' run: | if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY }}" ]; then - echo "Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger." + echo "**** Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" exit 0 fi - echo "Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\"." - curl -X POST \ + echo "**** Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\". ****" + response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ No newline at end of file + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "**** Jenkins job queue url: ${response%$'\r'} ****" + echo "**** Sleeping 10 seconds until job starts ****" + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "**** Jenkins job build url: ${buildurl} ****" + echo "**** Attempting to change the Jenkins job description ****" + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index b1b31286..a7717be8 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -15,18 +15,21 @@ jobs: - name: Package Trigger Scheduler run: | + echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes + echo "**** Pulling the yq docker image ****" docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') - echo "Evaluating branch ${br}" + echo "**** Evaluating branch ${br} ****" ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) if [ "${br}" == "${ls_branch}" ]; then - echo "Branch ${br} appears to be live; triggering." + echo "**** Branch ${br} appears to be live; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - echo "Workflow exists. Triggering package trigger workflow for branch ${br}." + echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" + triggered_branches="${triggered_branches}${br} " curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ @@ -34,9 +37,14 @@ jobs: https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/package_trigger.yml/dispatches sleep 30 else - echo "Workflow doesn't exist; skipping trigger." + echo "**** Workflow doesn't exist; skipping trigger. ****" fi else - echo "${br} appears to be a dev branch; skipping trigger." + echo "**** ${br} appears to be a dev branch; skipping trigger. ****" fi done + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" + echo "**** Notifying Discord ****" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Package Check Build(s) Triggered** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/Jenkinsfile b/Jenkinsfile index 1dac5894..5c74308e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') - JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' + JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 0f2e303d..20d9b8a8 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,7 +7,7 @@ release_type: prerelease release_tag: nightly ls_branch: nightly repo_vars: - - JSON_URL = 'https://services.lidarr.audio/v1/update/nightly/changes?os=linux' + - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?os=linux' - JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'LIDARR_RELEASE' - LS_USER = 'linuxserver' From da6bcc1e72233a8bdbbe40eaafb53f82749925ac Mon Sep 17 00:00:00 2001 From: aptalca Date: Sat, 21 Nov 2020 20:18:49 -0500 Subject: [PATCH 121/790] fix external trigger --- .github/workflows/external_trigger.yml | 2 +- .github/workflows/package_trigger_scheduler.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index ec3b56e4..517da9a5 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os" | jq -r ". | .[0].version") + EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os=linux" | jq -r ". | .[0].version") if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index a7717be8..c15e410a 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -46,5 +46,5 @@ jobs: echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" echo "**** Notifying Discord ****" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], + "description": "**Package Check Build(s) Triggered for lidarr** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} From a20565dbdb90fa3041dd512ab01dff4f6f5ce731 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Dec 2020 13:42:24 -0500 Subject: [PATCH 122/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b13e08b7..28acc738 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.12ubuntu0.1 -apt-utils1.6.12ubuntu0.1 +apt1.6.12ubuntu0.2 +apt-utils1.6.12ubuntu0.2 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20201027ubuntu0.18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.10 +curl7.58.0-2ubuntu3.12 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -26,8 +26,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 -libapt-inst2.01.6.12ubuntu0.1 -libapt-pkg5.01.6.12ubuntu0.1 +libapt-inst2.01.6.12ubuntu0.2 +libapt-pkg5.01.6.12ubuntu0.2 libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1 @@ -38,7 +38,7 @@ libc62.27-3ubuntu1.2 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.2 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.10 +libcurl47.58.0-2ubuntu3.12 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 @@ -95,7 +95,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.7 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 -libssl1.11.1.1-1ubuntu2.1~18.04.6 +libssl1.11.1.1-1ubuntu2.1~18.04.7 libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.42 libtasn1-64.13-2 @@ -112,7 +112,7 @@ mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.7 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.6 +openssl1.1.1-1ubuntu2.1~18.04.7 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From 7a1f0819d481dc2264cc29bbe8b8efdfaead9922 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 13:47:29 +0000 Subject: [PATCH 123/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 37 --------------------- Jenkinsfile | 70 +++++++++++++++++++++++++++------------ README.md | 2 +- 3 files changed, 50 insertions(+), 59 deletions(-) diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md index 39a2563d..8b137891 100644 --- a/.github/ISSUE_TEMPLATE.md +++ b/.github/ISSUE_TEMPLATE.md @@ -1,38 +1 @@ -[linuxserverurl]: https://linuxserver.io -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - - - - - - ------------------------------- - -## Expected Behavior - - -## Current Behavior - - -## Steps to Reproduce - - -1. -2. -3. -4. - -## Environment -**OS:** -**CPU architecture:** x86_64/arm32/arm64 -**How docker service was installed:** - - - -## Command used to create docker container (run/create/compose/screenshot) - - -## Docker logs - diff --git a/Jenkinsfile b/Jenkinsfile index 5c74308e..685ce433 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt ./.github/workflows/package_trigger.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/external_trigger.yml ./.github/workflows/external_trigger_scheduler.yml' } script{ env.LS_RELEASE_NUMBER = sh( @@ -133,12 +133,13 @@ pipeline { env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { - env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } - env.META_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER - env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN } } } @@ -154,12 +155,13 @@ pipeline { env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lsiodev-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { - env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } - env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA - env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' } } @@ -175,12 +177,13 @@ pipeline { env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lspipepr-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } else { - env.CI_TAGS = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } - env.META_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST - env.EXT_RELEASE_TAG = 'version-' + env.EXT_RELEASE_CLEAN + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' } @@ -240,9 +243,12 @@ pipeline { git checkout -f nightly cd ${TEMPDIR}/docker-${CONTAINER_NAME} mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows - cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + rm -f ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE.md + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : cd ${TEMPDIR}/repo/${LS_REPO}/ git add ${TEMPLATED_FILES} + git rm .github/ISSUE_TEMPLATE.md || : git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} @@ -312,8 +318,9 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + echo "Running on node: ${NODE_NAME}" sh "docker build --no-cache --pull -t ${IMAGE}:${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } // Build MultiArch Docker containers for push to LS Repo @@ -325,8 +332,9 @@ pipeline { parallel { stage('Build X86') { steps { + echo "Running on node: ${NODE_NAME}" sh "docker build --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } stage('Build ARMHF') { @@ -334,12 +342,13 @@ pipeline { label 'ARMHF' } steps { + echo "Running on node: ${NODE_NAME}" echo 'Logging into Github' sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" retry(5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -354,12 +363,13 @@ pipeline { label 'ARM64' } steps { + echo "Running on node: ${NODE_NAME}" echo 'Logging into Github' sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${META_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + --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) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -432,6 +442,13 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + sh '''#! /bin/bash + echo "Packages were updated. Cleaning up the image and exiting." + if [ "${MULTIARCH}" == "true" ]; then + docker rmi ${IMAGE}:amd64-${META_TAG} + else + docker rmi ${IMAGE}:${META_TAG} + fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -449,6 +466,13 @@ pipeline { } } steps { + sh '''#! /bin/bash + echo "There are no package updates. Cleaning up the image and exiting." + if [ "${MULTIARCH}" == "true" ]; then + docker rmi ${IMAGE}:amd64-${META_TAG} + else + docker rmi ${IMAGE}:${META_TAG} + fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -538,7 +562,7 @@ pipeline { ''' } sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "{GITLABIMAGE}" "${IMAGE}"; do + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ @@ -602,6 +626,7 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm 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}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 @@ -616,10 +641,13 @@ pipeline { docker rmi \ ${DELETEIMAGE}:amd64-${META_TAG} \ ${DELETEIMAGE}:amd64-nightly \ + ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-nightly \ + ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-nightly || : + ${DELETEIMAGE}:arm64v8-nightly \ + ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : done docker rmi \ ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ @@ -686,7 +714,7 @@ pipeline { -e DOCKER_REPOSITORY=${IMAGE} \ -e GIT_BRANCH=master \ -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ - ghcr.io/linuxserver/lsiodev-readme-sync bash -c 'node sync' + ghcr.io/linuxserver/lsiodev-readme-sync bash -c 'node sync' rm -Rf ${TEMPDIR} ''' } } diff --git a/README.md b/README.md index f35ea19e..2b38a9e1 100644 --- a/README.md +++ b/README.md @@ -31,7 +31,7 @@ Find us at: [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) -[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/Linuxserver.io/docker-lidarr/container_registry) +[![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-lidarr/container_registry) [![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) From 6463d9d05176f4444f7cb7608a69f4a5e00f9195 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 13:48:57 +0000 Subject: [PATCH 124/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE.md | 1 - .github/ISSUE_TEMPLATE/config.yml | 13 ++++++ .github/ISSUE_TEMPLATE/issue.bug.md | 40 +++++++++++++++++++ .github/ISSUE_TEMPLATE/issue.feature.md | 25 ++++++++++++ .github/workflows/external_trigger.yml | 4 ++ .../workflows/external_trigger_scheduler.yml | 2 +- .github/workflows/package_trigger.yml | 4 ++ .../workflows/package_trigger_scheduler.yml | 2 +- 8 files changed, 88 insertions(+), 3 deletions(-) delete mode 100644 .github/ISSUE_TEMPLATE.md create mode 100755 .github/ISSUE_TEMPLATE/config.yml create mode 100755 .github/ISSUE_TEMPLATE/issue.bug.md create mode 100755 .github/ISSUE_TEMPLATE/issue.feature.md diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md deleted file mode 100644 index 8b137891..00000000 --- a/.github/ISSUE_TEMPLATE.md +++ /dev/null @@ -1 +0,0 @@ - diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml new file mode 100755 index 00000000..193cc21e --- /dev/null +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -0,0 +1,13 @@ +blank_issues_enabled: false +contact_links: + - name: Discord chat support + url: https://discord.gg/YWrKVTn + about: Realtime support / chat with the community and the team. + + - name: Discourse discussion forum + url: https://discourse.linuxserver.io + about: Post on our community forum. + + - name: Documentation + url: https://docs.linuxserver.io/images/docker-lidarr + about: Documentation - information about all of our containers. diff --git a/.github/ISSUE_TEMPLATE/issue.bug.md b/.github/ISSUE_TEMPLATE/issue.bug.md new file mode 100755 index 00000000..4ede09db --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.bug.md @@ -0,0 +1,40 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- +[linuxserverurl]: https://linuxserver.io +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + + + + +------------------------------ + +## Expected Behavior + + +## Current Behavior + + +## Steps to Reproduce + + +1. +2. +3. +4. + +## Environment +**OS:** +**CPU architecture:** x86_64/arm32/arm64 +**How docker service was installed:** + + + +## Command used to create docker container (run/create/compose/screenshot) + + +## Docker logs + diff --git a/.github/ISSUE_TEMPLATE/issue.feature.md b/.github/ISSUE_TEMPLATE/issue.feature.md new file mode 100755 index 00000000..20a91fdb --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.feature.md @@ -0,0 +1,25 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- +[linuxserverurl]: https://linuxserver.io +[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] + + + + + + + + +------------------------------ + +## Desired Behavior + + +## Current Behavior + + +## Alternatives Considered + diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 517da9a5..3a176b87 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -27,6 +27,7 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi + EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') echo "**** External version: ${EXT_RELEASE} ****" echo "**** Retrieving last pushed version ****" image="linuxserver/lidarr" @@ -62,6 +63,9 @@ jobs: if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" exit 0 + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" + exit 0 else echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" response=$(curl -iX POST \ diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 53208f30..18f5b6bd 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2.3.3 with: fetch-depth: '0' - + - name: External Trigger Scheduler run: | echo "**** Branches found: ****" diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 1ae2835c..683b6fd0 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -16,6 +16,10 @@ jobs: echo "**** Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" exit 0 fi + if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" + exit 0 + fi echo "**** Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\". ****" response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index c15e410a..78066494 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v2.3.3 with: fetch-depth: '0' - + - name: Package Trigger Scheduler run: | echo "**** Branches found: ****" From ae2cae9c4d4c304246b1c1ba02aa17dd39c698a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 17 Dec 2020 23:52:24 -0500 Subject: [PATCH 125/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 28acc738..e6cc861d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -105,7 +105,7 @@ libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 libzstd11.3.3+dfsg-2ubuntu1.1 -locales2.27-3ubuntu1.3 +locales2.27-3ubuntu1.4 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 From 91d9ca696ec67c9d927598724dfdb4d8b1b30240 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Jan 2021 14:05:50 -0500 Subject: [PATCH 126/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e6cc861d..c1c51c2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -34,9 +34,9 @@ libaudit11:2.8.2-1ubuntu1 libaudit-common1:2.8.2-1ubuntu1 libblkid12.31.1-0.4ubuntu3.7 libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.2 +libc62.27-3ubuntu1.4 libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.2 +libc-bin2.27-3ubuntu1.4 libcom-err21.44.1-1ubuntu1.3 libcurl47.58.0-2ubuntu3.12 libdb5.35.3.28-13.1ubuntu1.1 @@ -74,7 +74,7 @@ libncursesw56.1-1ubuntu1.18.04 libnettle63.4-1 libnghttp2-141.30.0-1ubuntu1 libonig46.7.0-1 -libp11-kit00.23.9-2 +libp11-kit00.23.9-2ubuntu0.1 libpam0g1.1.8-3.6ubuntu2.18.04.2 libpam-modules1.1.8-3.6ubuntu2.18.04.2 libpam-modules-bin1.1.8-3.6ubuntu2.18.04.2 @@ -84,9 +84,9 @@ libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 libroken18-heimdal7.5.0+dfsg-1 librtmp12.4+20151223.gitfa8646d.1-1 -libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.1 -libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.1 -libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.1 +libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.3 +libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.3 +libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.3 libseccomp22.4.3-1ubuntu3.18.04.3 libselinux12.7-2build2 libsemanage12.7-2build2 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.7 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.42 +libsystemd0237-3ubuntu10.43 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.42 +libudev1237-3ubuntu10.43 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From 4b9e328169b76dbfc48d792bbed40cbcb19c5b31 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 13 Jan 2021 14:14:42 +0000 Subject: [PATCH 127/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 3 ++- .github/workflows/greetings.yml | 2 +- .../workflows/package_trigger_scheduler.yml | 2 +- Jenkinsfile | 19 ++++++++++++++++++- 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 3a176b87..719b427b 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -22,8 +22,9 @@ jobs: if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" + GHA_TRIGGER_URL="https://github.com/linuxserver/docker-lidarr/actions/runs/${{ github.run_id }}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, - "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n**Trigger URL:** '"${GHA_TRIGGER_URL}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 321cf370..8c45d2ce 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [issue template](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE.md)!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 78066494..b7c67a3c 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: Package Trigger Scheduler on: schedule: - - cron: '00 0 * * 0' + - cron: '54 14 * * 6' workflow_dispatch: jobs: diff --git a/Jenkinsfile b/Jenkinsfile index 685ce433..ca2737dd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -257,13 +257,30 @@ pipeline { fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [[ "${BRANCH_NAME}" == "master" ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then cp ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ cd ${TEMPDIR}/gitbook/docker-documentation/ git add images/docker-${CONTAINER_NAME}.md git commit -m 'Bot Updating Documentation' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml + fi + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then + echo "Image is on the ignore list, skipping Unraid template upload" + else + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + cd ${TEMPDIR}/unraid/templates/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all + fi + fi rm -Rf ${TEMPDIR}''' script{ env.FILES_UPDATED = sh( From 53cd04a0f4b9f1adf679411b27b778087b4c0d2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Jan 2021 14:20:21 -0500 Subject: [PATCH 128/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c1c51c2e..2f5d4893 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -120,8 +120,8 @@ publicsuffix20180223.1310-1 sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 -tar1.29b-2ubuntu0.1 -tzdata2020d-0ubuntu0.18.04 +tar1.29b-2ubuntu0.2 +tzdata2020f-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From 636e707a589b2c17d2af7163cb634c0130795651 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 20 Jan 2021 05:24:33 +0000 Subject: [PATCH 129/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2f5d4893..d3346c2d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.7 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.43 +libsystemd0237-3ubuntu10.44 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.43 +libudev1237-3ubuntu10.44 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From 632ba363e97bd45bee493a98a1224a717d5e43b0 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Wed, 20 Jan 2021 14:29:11 +0100 Subject: [PATCH 130/790] Deprecate UMASK_SET in favor of UMASK in baseimage --- README.md | 4 +--- readme-vars.yml | 5 ++--- root/etc/services.d/lidarr/run | 6 ++++-- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 2b38a9e1..9bcb134b 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,6 @@ services: - PUID=1000 - PGID=1000 - TZ=Europe/London - - UMASK_SET=022 #optional volumes: - /path/to/appdata/config:/config - /path/to/music:/music @@ -102,7 +101,6 @@ docker run -d \ -e PUID=1000 \ -e PGID=1000 \ -e TZ=Europe/London \ - -e UMASK_SET=022 `#optional` \ -p 8686:8686 \ -v /path/to/appdata/config:/config \ -v /path/to/music:/music \ @@ -122,7 +120,6 @@ Container images are configured using parameters passed at runtime (such as thos | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | -| `-e UMASK_SET=022` | control permissions of files and directories created by Lidarr | | `-v /config` | Configuration files for Lidarr. | | `-v /music` | Music files (See note in Application setup). | | `-v /downloads` | Path to your download folder for music (See note in Application setup). | @@ -239,6 +236,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **27.09.20:** - Move preview branch/tag to nightly. * **05.04.20:** - Move app to /app. * **29.10.19:** - Switch preview branch to netcore builds. diff --git a/readme-vars.yml b/readme-vars.yml index 64a343c5..826105cc 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -26,9 +26,7 @@ param_usage_include_env: true param_env_vars: - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } # optional env variables -opt_param_usage_include_env: true -opt_param_env_vars: - - { env_var: "UMASK_SET", env_value: "022", desc: "control permissions of files and directories created by Lidarr"} +opt_param_usage_include_env: false param_usage_include_vols: true param_volumes: @@ -50,6 +48,7 @@ app_setup_block: | # changelog changelogs: + - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "27.09.20:", desc: "Move preview branch/tag to nightly." } - { date: "05.04.20:", desc: "Move app to /app." } - { date: "29.10.19:", desc: "Switch preview branch to netcore builds." } diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run index 02239bcc..db20f417 100644 --- a/root/etc/services.d/lidarr/run +++ b/root/etc/services.d/lidarr/run @@ -1,7 +1,9 @@ #!/usr/bin/with-contenv bash -UMASK_SET=${UMASK_SET:-022} -umask "$UMASK_SET" +if [ -n "${UMASK_SET}" ] && [ -z "${UMASK}" ]; then + echo -e "You are using a legacy method of defining umask\nplease update your environment variable from UMASK_SET to UMASK\nto keep the functionality after July 2021" + umask ${UMASK_SET} +fi exec \ s6-setuidgid abc /app/lidarr/bin/Lidarr \ From b5cf80bb8d35522b390aca776d7b08a6f010c2ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 28 Jan 2021 13:09:15 -0500 Subject: [PATCH 131/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d3346c2d..72a65446 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,8 +30,8 @@ libapt-inst2.01.6.12ubuntu0.2 libapt-pkg5.01.6.12ubuntu0.2 libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 -libaudit11:2.8.2-1ubuntu1 -libaudit-common1:2.8.2-1ubuntu1 +libaudit11:2.8.2-1ubuntu1.1 +libaudit-common1:2.8.2-1ubuntu1.1 libblkid12.31.1-0.4ubuntu3.7 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1.4 From e134b195feea25b7eb2b9057f9156a854806664c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 5 Feb 2021 05:51:44 +0000 Subject: [PATCH 132/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 72a65446..5d8d9727 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -121,7 +121,7 @@ sed4.4-2 sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.2 -tzdata2020f-0ubuntu0.18.04 +tzdata2021a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.0 util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From 09487f98e3279d57c3d87eb1dae367f455d71fe0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Feb 2021 14:58:43 +0000 Subject: [PATCH 133/790] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 61 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ca2737dd..b118a742 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -233,10 +233,53 @@ pipeline { TEMPDIR=$(mktemp -d) docker pull ghcr.io/linuxserver/jenkins-builder:latest docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "Jenkinsfile is up to date." + fi + # Stage 2 - Delete old templates + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" + fi + done + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" + done + git commit -m 'Bot Updating Templated Files' + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - if [[ "${CURRENTHASH}" != "${NEWHASH}" ]]; then + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then mkdir -p ${TEMPDIR}/repo git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} cd ${TEMPDIR}/repo/${LS_REPO} @@ -244,11 +287,13 @@ pipeline { cd ${TEMPDIR}/docker-${CONTAINER_NAME} mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE - rm -f ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE.md cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore + fi git add ${TEMPLATED_FILES} - git rm .github/ISSUE_TEMPLATE.md || : git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} @@ -257,8 +302,8 @@ pipeline { fi mkdir -p ${TEMPDIR}/gitbook git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ cd ${TEMPDIR}/gitbook/docker-documentation/ git add images/docker-${CONTAINER_NAME}.md git commit -m 'Bot Updating Documentation' @@ -268,13 +313,13 @@ pipeline { git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then echo "Image is on the ignore list, skipping Unraid template upload" else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ cd ${TEMPDIR}/unraid/templates/ git add unraid/${CONTAINER_NAME}.xml git commit -m 'Bot Updating Unraid Template' @@ -514,7 +559,7 @@ pipeline { } sh '''#! /bin/bash set -e - docker pull ghcr.io/linuxserver/lsiodev-ci:latest + docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} @@ -539,7 +584,7 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e DO_REGION="ams3" \ -e DO_BUCKET="lsio-ci" \ - -t ghcr.io/linuxserver/lsiodev-ci:latest \ + -t ghcr.io/linuxserver/ci:latest \ python /ci/ci.py''' } } @@ -684,9 +729,9 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - echo "Pushing New tag for current commit ${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}" + echo "Pushing New tag for current commit ${META_TAG}" sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ - -d '{"tag":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ + -d '{"tag":"'${META_TAG}'",\ "object": "'${COMMIT_SHA}'",\ "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ "type": "commit",\ @@ -694,9 +739,9 @@ pipeline { echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json - echo '{"tag_name":"'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ + echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "nightly",\ - "name": "'${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}'",\ + "name": "'${META_TAG}'",\ "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done @@ -723,7 +768,7 @@ pipeline { TEMPDIR=$(mktemp -d) docker pull ghcr.io/linuxserver/jenkins-builder:latest docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - docker pull ghcr.io/linuxserver/lsiodev-readme-sync + docker pull ghcr.io/linuxserver/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ -e DOCKERHUB_PASSWORD=$DOCKERPASS \ @@ -731,7 +776,7 @@ pipeline { -e DOCKER_REPOSITORY=${IMAGE} \ -e GIT_BRANCH=master \ -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ - ghcr.io/linuxserver/lsiodev-readme-sync bash -c 'node sync' + ghcr.io/linuxserver/readme-sync bash -c 'node sync' rm -Rf ${TEMPDIR} ''' } } From 77944fcbb7d61a5911e316e79208264aef05225a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Feb 2021 15:00:25 +0000 Subject: [PATCH 134/790] Bot Updating Templated Files --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 96374c4e..6e8ad977 100644 --- a/.gitignore +++ b/.gitignore @@ -41,3 +41,4 @@ $RECYCLE.BIN/ Network Trash Folder Temporary Items .apdisk +.jenkins-external From 882c809df88eb9fa6166f6b1b9ad9ec3ef7a5496 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Feb 2021 15:07:16 +0000 Subject: [PATCH 135/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5d8d9727..2145c246 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,7 +6,7 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20201027ubuntu0.18.04.1 +ca-certificates20210119~18.04.1 coreutils8.28-1ubuntu1 curl7.58.0-2ubuntu3.12 dash0.5.8-2.10 @@ -64,8 +64,8 @@ libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.2 libkrb5support01.16-2ubuntu0.2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.8 -libldap-common2.4.45+dfsg-1ubuntu1.8 +libldap-2.4-22.4.45+dfsg-1ubuntu1.9 +libldap-common2.4.45+dfsg-1ubuntu1.9 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 From 60131bcce1f204f50e7e4792ef3a4d49c4771f89 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Feb 2021 18:46:14 +0000 Subject: [PATCH 136/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2145c246..5f46b066 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,7 +18,7 @@ e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.7 findutils4.6.0+git+20170828-2 gcc-8-base8.4.0-1ubuntu1~18.04 -gpgv2.2.4-1ubuntu1.3 +gpgv2.2.4-1ubuntu1.4 grep3.1-2build1 gzip1.6-5ubuntu1 hostname3.20 @@ -64,8 +64,8 @@ libkeyutils11.5.9-9.2ubuntu2 libkrb5-26-heimdal7.5.0+dfsg-1 libkrb5-31.16-2ubuntu0.2 libkrb5support01.16-2ubuntu0.2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.9 -libldap-common2.4.45+dfsg-1ubuntu1.9 +libldap-2.4-22.4.45+dfsg-1ubuntu1.10 +libldap-common2.4.45+dfsg-1ubuntu1.10 liblz4-10.0~r131-2ubuntu3 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 @@ -95,7 +95,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.7 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 -libssl1.11.1.1-1ubuntu2.1~18.04.7 +libssl1.11.1.1-1ubuntu2.1~18.04.8 libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.44 libtasn1-64.13-2 @@ -112,7 +112,7 @@ mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.7 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.7 +openssl1.1.1-1ubuntu2.1~18.04.8 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From ae903ffd8f8b9a059533f526f03813b59c2df157 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 12 Mar 2021 15:06:05 +0000 Subject: [PATCH 137/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5f46b066..43cb5e0c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -104,7 +104,7 @@ libudev1237-3ubuntu10.44 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 -libzstd11.3.3+dfsg-2ubuntu1.1 +libzstd11.3.3+dfsg-2ubuntu1.2 locales2.27-3ubuntu1.4 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 From a1e1a3d573468d7f3199415567b71c105fe99237 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 24 Mar 2021 01:38:45 -0400 Subject: [PATCH 138/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 43cb5e0c..8119847d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.8 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.44 +libsystemd0237-3ubuntu10.45 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.44 +libudev1237-3ubuntu10.45 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From 4b6cad899eec5b0699365e7cc770d9c74f498498 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 2 Apr 2021 05:01:22 +0000 Subject: [PATCH 139/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8119847d..cc2b1d75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -95,7 +95,7 @@ libsepol12.7-1 libsmartcols12.31.1-0.4ubuntu3.7 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 -libssl1.11.1.1-1ubuntu2.1~18.04.8 +libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 libsystemd0237-3ubuntu10.45 libtasn1-64.13-2 @@ -112,7 +112,7 @@ mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.7 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.8 +openssl1.1.1-1ubuntu2.1~18.04.9 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From 9d0a3fd7c43e33c58c9b93e039f648b783c78fe7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Apr 2021 15:06:22 +0000 Subject: [PATCH 140/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cc2b1d75..6e7dd9de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20210119~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.12 +curl7.58.0-2ubuntu3.13 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -38,7 +38,7 @@ libc62.27-3ubuntu1.4 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.4 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.12 +libcurl47.58.0-2ubuntu3.13 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 @@ -122,6 +122,6 @@ sensible-utils0.0.12 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.2 tzdata2021a-0ubuntu0.18.04 -ubuntu-keyring2018.09.18.1~18.04.0 +ubuntu-keyring2018.09.18.1~18.04.2 util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From c2f2b5d56012ca19be4cbe9e4b1b7b8fb381e266 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 15 Apr 2021 13:03:23 +0000 Subject: [PATCH 141/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6e7dd9de..f593cc85 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.12ubuntu0.2 -apt-utils1.6.12ubuntu0.2 +apt1.6.13 +apt-utils1.6.13 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -26,8 +26,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 -libapt-inst2.01.6.12ubuntu0.2 -libapt-pkg5.01.6.12ubuntu0.2 +libapt-inst2.01.6.13 +libapt-pkg5.01.6.13 libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1.1 From 2dc0747a59e487a2698a7773bc6dd34048cd50c7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 15:58:14 +0100 Subject: [PATCH 142/790] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++++++++++++++----------- 1 file changed, 71 insertions(+), 17 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b118a742..bd6a61d6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/greetings.yml ./.github/workflows/stale.yml ./root/donate.txt ./.github/workflows/package_trigger.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/external_trigger.yml ./.github/workflows/external_trigger_scheduler.yml' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -309,22 +309,24 @@ pipeline { git commit -m 'Bot Updating Documentation' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all fi - mkdir -p ${TEMPDIR}/unraid + mkdir -p ${TEMPDIR}/unraid git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + cd ${TEMPDIR}/unraid/templates/ if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, skipping Unraid template upload" + echo "Image is on the ignore list, removing Unraid template" + git rm unraid/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Removing Deprecated Unraid Template' || : else cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - cd ${TEMPDIR}/unraid/templates/ git add unraid/${CONTAINER_NAME}.xml git commit -m 'Bot Updating Unraid Template' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all fi + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all fi rm -Rf ${TEMPDIR}''' script{ @@ -381,8 +383,21 @@ pipeline { } steps { echo "Running on node: ${NODE_NAME}" - sh "docker build --no-cache --pull -t ${IMAGE}:${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-lidarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-lidarr\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Lidarr\" \ + --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ + --no-cache --pull -t ${IMAGE}:${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } // Build MultiArch Docker containers for push to LS Repo @@ -395,8 +410,21 @@ pipeline { stage('Build X86') { steps { echo "Running on node: ${NODE_NAME}" - sh "docker build --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-lidarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-lidarr\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Lidarr\" \ + --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ + --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } stage('Build ARMHF') { @@ -409,8 +437,21 @@ pipeline { sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' - sh "docker build --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-lidarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-lidarr\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Lidarr\" \ + --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ + --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ + --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" retry(5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -430,8 +471,21 @@ pipeline { sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' - sh "docker build --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh "docker build \ + --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ + --label \"org.opencontainers.image.authors=linuxserver.io\" \ + --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ + --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-lidarr\" \ + --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-lidarr\" \ + --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ + --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.vendor=linuxserver.io\" \ + --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ + --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ + --label \"org.opencontainers.image.title=Lidarr\" \ + --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ + --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --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) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" @@ -742,7 +796,7 @@ pipeline { echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "nightly",\ "name": "'${META_TAG}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n**Remote Changes:**\\n\\n' > start + "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' @@ -767,7 +821,7 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest docker pull ghcr.io/linuxserver/readme-sync docker run --rm=true \ -e DOCKERHUB_USERNAME=$DOCKERUSER \ From e3fba089f1f1dc8e6fa974193d42c796a9a2e350 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Apr 2021 15:59:22 +0100 Subject: [PATCH 143/790] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 11 +++--- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/external_trigger.yml | 2 +- .github/workflows/greetings.yml | 4 +- README.md | 55 ++++++++++++++------------ 5 files changed, 40 insertions(+), 34 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 262038ba..dc0755d5 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -24,7 +24,7 @@ ## Readme If you would like to change our readme, please __**do not**__ directly edit the readme, as it is auto-generated on each commit. -Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-lidarr/edit/master/readme-vars.yml). +Instead edit the [readme-vars.yml](https://github.com/linuxserver/docker-lidarr/edit/nightly/readme-vars.yml). These variables are used in a template for our [Jenkins Builder](https://github.com/linuxserver/docker-jenkins-builder) as part of an ansible play. Most of these variables are also carried over to [docs.linuxserver.io](https://docs.linuxserver.io/images/docker-lidarr) @@ -96,7 +96,7 @@ If you are proposing additional packages to be added, ensure that you added the ### Testing your changes -``` +```bash git clone https://github.com/linuxserver/docker-lidarr.git cd docker-lidarr docker build \ @@ -106,15 +106,16 @@ docker build \ ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` -``` + +```bash docker run --rm --privileged multiarch/qemu-user-static:register --reset ``` Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. -## Update the chagelog +## Update the changelog -If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-lidarr/tree/master/root), add an entry to the changelog +If you are modifying the Dockerfiles or any of the startup scripts in [root](https://github.com/linuxserver/docker-lidarr/tree/nightly/root), add an entry to the changelog ```yml changelogs: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index c5fc34e9..0ead7c35 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -21,7 +21,7 @@ ------------------------------ - - [ ] I have read the [contributing](https://github.com/linuxserver/docker-lidarr/blob/master/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications + - [ ] I have read the [contributing](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/CONTRIBUTING.md) guideline and understand that I have made the correct modifications ------------------------------ diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 719b427b..72bc2aca 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os=linux" | jq -r ". | .[0].version") + EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os=linux" | jq -r '. | .[0].version') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 8c45d2ce..17ed5e97 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-lidarr/blob/master/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' - pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/master/.github/PULL_REQUEST_TEMPLATE.md)!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' + pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/README.md b/README.md index 9bcb134b..99ec209d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ - + [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) @@ -12,13 +12,14 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container release featuring: - * regular and timely application updates - * easy user mappings (PGID, PUID) - * custom base image with s6 overlay - * weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth - * regular security updates +* regular and timely application updates +* easy user mappings (PGID, PUID) +* custom base image with s6 overlay +* weekly base OS updates with common layers across the entire LinuxServer.io ecosystem to minimise space usage, down time and bandwidth +* regular security updates Find us at: + * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. @@ -65,6 +66,14 @@ This image provides various versions that are available via tags. `latest` tag u | latest | Stable Lidarr releases. | | nightly | Nightly Lidarr Releases. | +## Application Setup + +Access the webui at `:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). + +Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. + +Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. + ## Usage Here are some example snippets to help you get started creating a container. @@ -95,7 +104,7 @@ services: ### docker cli -``` +```bash docker run -d \ --name=lidarr \ -e PUID=1000 \ @@ -109,7 +118,6 @@ docker run -d \ ghcr.io/linuxserver/lidarr ``` - ## Parameters Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `:` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. @@ -130,7 +138,7 @@ You can set any environment variable from a file by using a special prepend `FIL As an example: -``` +```bash -e FILE__PASSWORD=/run/secrets/mysecretpassword ``` @@ -149,28 +157,17 @@ Ensure any volume directories on the host are owned by the same user you specify In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below: -``` +```bash $ id username uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) ``` - -  -## Application Setup - -Access the webui at `:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). - -Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. - -Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. - - ## Docker Mods + [![Docker Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=lidarr&query=%24.mods%5B%27lidarr%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=lidarr "view available mods for this container.") [![Docker Universal Mods](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=universal&query=%24.mods%5B%27universal%27%5D.mod_count&url=https%3A%2F%2Fraw.githubusercontent.com%2Flinuxserver%2Fdocker-mods%2Fmaster%2Fmod-list.yml)](https://mods.linuxserver.io/?mod=universal "view available universal mods.") We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to enable additional functionality within the containers. The list of Mods available for this image (if any) as well as universal mods that can be applied to any one of our images can be accessed via the dynamic badges above. - ## Support Info * Shell access whilst the container is running: `docker exec -it lidarr /bin/bash` @@ -187,6 +184,7 @@ Most of our images are static, versioned, and require an image update and contai Below are the instructions for updating containers: ### Via Docker Compose + * Update all images: `docker-compose pull` * or update a single image: `docker-compose pull lidarr` * Let compose update all containers as necessary: `docker-compose up -d` @@ -194,6 +192,7 @@ Below are the instructions for updating containers: * You can also remove the old dangling images: `docker image prune` ### Via Docker Run + * Update the image: `docker pull ghcr.io/linuxserver/lidarr` * Stop the running container: `docker stop lidarr` * Delete the container: `docker rm lidarr` @@ -201,24 +200,29 @@ Below are the instructions for updating containers: * You can also remove the old dangling images: `docker image prune` ### Via Watchtower auto-updater (only use if you don't remember the original parameters) + * Pull the latest image at its tag and replace it with the same env variables in one run: - ``` + + ```bash docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock \ containrrr/watchtower \ --run-once lidarr ``` + * You can also remove the old dangling images: `docker image prune` **Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). ### Image Update Notifications - Diun (Docker Image Update Notifier) + * We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. ## Building locally If you want to make local modifications to these images for development purposes or just to customize the logic: -``` + +```bash git clone https://github.com/linuxserver/docker-lidarr.git cd docker-lidarr docker build \ @@ -228,7 +232,8 @@ docker build \ ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` -``` + +```bash docker run --rm --privileged multiarch/qemu-user-static:register --reset ``` From 1b93ac2e8ddf8839fd7b185a65295113bd3fba35 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Apr 2021 15:04:19 +0000 Subject: [PATCH 144/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f593cc85..9bbb1d28 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -54,7 +54,7 @@ libgssapi-krb5-21.16-2ubuntu0.2 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 -libhogweed43.4-1 +libhogweed43.4-1ubuntu0.1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 @@ -71,7 +71,7 @@ liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 -libnettle63.4-1 +libnettle63.4-1ubuntu0.1 libnghttp2-141.30.0-1ubuntu1 libonig46.7.0-1 libp11-kit00.23.9-2ubuntu0.1 @@ -87,7 +87,7 @@ librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.3 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.3 libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.3 -libseccomp22.4.3-1ubuntu3.18.04.3 +libseccomp22.5.1-1ubuntu1~18.04.1 libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.45 +libsystemd0237-3ubuntu10.46 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.45 +libudev1237-3ubuntu10.46 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From aede9f9c41733bd2d1a90bb51085af446bcceb24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 22 May 2021 11:01:53 -0400 Subject: [PATCH 145/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9bbb1d28..2db7547c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.46 +libsystemd0237-3ubuntu10.47 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.46 +libudev1237-3ubuntu10.47 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From 3b924c8b52a19dac9b82cfaec98920c0488ae439 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Jun 2021 15:01:30 +0000 Subject: [PATCH 146/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2db7547c..346b02d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -66,7 +66,7 @@ libkrb5-31.16-2ubuntu0.2 libkrb5support01.16-2ubuntu0.2 libldap-2.4-22.4.45+dfsg-1ubuntu1.10 libldap-common2.4.45+dfsg-1ubuntu1.10 -liblz4-10.0~r131-2ubuntu3 +liblz4-10.0~r131-2ubuntu3.1 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 libncurses56.1-1ubuntu1.18.04 @@ -75,10 +75,10 @@ libnettle63.4-1ubuntu0.1 libnghttp2-141.30.0-1ubuntu1 libonig46.7.0-1 libp11-kit00.23.9-2ubuntu0.1 -libpam0g1.1.8-3.6ubuntu2.18.04.2 -libpam-modules1.1.8-3.6ubuntu2.18.04.2 -libpam-modules-bin1.1.8-3.6ubuntu2.18.04.2 -libpam-runtime1.1.8-3.6ubuntu2.18.04.2 +libpam0g1.1.8-3.6ubuntu2.18.04.3 +libpam-modules1.1.8-3.6ubuntu2.18.04.3 +libpam-modules-bin1.1.8-3.6ubuntu2.18.04.3 +libpam-runtime1.1.8-3.6ubuntu2.18.04.3 libpcre32:8.39-9 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 From cfef7df9853090e3bf06a0e8f349a682b0845304 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Jun 2021 03:43:12 +0000 Subject: [PATCH 147/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 346b02d3..4eb48de3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -54,7 +54,7 @@ libgssapi-krb5-21.16-2ubuntu0.2 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 -libhogweed43.4-1ubuntu0.1 +libhogweed43.4.1-0ubuntu0.18.04.1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 @@ -71,7 +71,7 @@ liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 -libnettle63.4-1ubuntu0.1 +libnettle63.4.1-0ubuntu0.18.04.1 libnghttp2-141.30.0-1ubuntu1 libonig46.7.0-1 libp11-kit00.23.9-2ubuntu0.1 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.47 +libsystemd0237-3ubuntu10.48 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.47 +libudev1237-3ubuntu10.48 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From e6f7017f90503cf8a036cbfae40416ce614307e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Jul 2021 15:00:22 +0000 Subject: [PATCH 148/790] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index bd6a61d6..7308bbea 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -57,7 +57,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -262,7 +262,6 @@ pipeline { git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} cd ${TEMPDIR}/repo/${LS_REPO} git checkout -f nightly - cd ${TEMPDIR}/docker-${CONTAINER_NAME} for i in ${TEMPLATES_TO_DELETE}; do git rm "${i}" done @@ -523,6 +522,15 @@ pipeline { apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \ sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "fedora" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + rpm -qa > /tmp/package_versions.txt && \ + sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' + elif [ "${DIST_IMAGE}" == "arch" ]; then + docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ + pacman -Q > /tmp/package_versions.txt && \ + chmod 777 /tmp/package_versions.txt' fi NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" From f78a2995ca486d4ea1c0a4ce6b59c5dd6d0ba099 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Jul 2021 15:01:46 +0000 Subject: [PATCH 149/790] Bot Updating Templated Files --- .editorconfig | 20 ++++++++++++++++++++ .github/CONTRIBUTING.md | 2 +- .github/PULL_REQUEST_TEMPLATE.md | 2 +- .github/workflows/stale.yml | 2 +- README.md | 7 ++----- 5 files changed, 25 insertions(+), 8 deletions(-) create mode 100755 .editorconfig diff --git a/.editorconfig b/.editorconfig new file mode 100755 index 00000000..a92f7dfd --- /dev/null +++ b/.editorconfig @@ -0,0 +1,20 @@ +# This file is globally distributed to all container image projects from +# https://github.com/linuxserver/docker-jenkins-builder/blob/master/.editorconfig + +# top-most EditorConfig file +root = true + +# Unix-style newlines with a newline ending every file +[*] +end_of_line = lf +insert_final_newline = true +# trim_trailing_whitespace may cause unintended issues and should not be globally set true +trim_trailing_whitespace = false + +[{Dockerfile*,**.yml}] +indent_style = space +indent_size = 2 + +[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}] +indent_style = space +indent_size = 4 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index dc0755d5..0b357717 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,7 +4,7 @@ * While contributing make sure to make all your changes before creating a Pull Request, as our pipeline builds each commit after the PR is open. * Read, and fill the Pull Request template - * If this is a fix for a typo in code or documentation in the README please file an issue + * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR * If the PR is addressing an existing issue include, closes #\, in the body of the PR commit message * If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 0ead7c35..8d452ebe 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -6,7 +6,7 @@ - + diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 1806420a..3b3846ee 100755 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v1 + - uses: actions/stale@v3 with: stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." diff --git a/README.md b/README.md index 99ec209d..b88ec54e 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,6 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) [![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-lidarr/container_registry) -[![MicroBadger Layers](https://img.shields.io/microbadger/layers/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge)](https://microbadger.com/images/linuxserver/lidarr "Get your own version badge on microbadger.com") [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/) @@ -78,9 +77,7 @@ Another item to keep in mind, is that within lidarr itself, you should then map Here are some example snippets to help you get started creating a container. -### docker-compose ([recommended](https://docs.linuxserver.io/general/docker-compose)) - -Compatible with docker-compose v2 schemas. +### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) ```yaml --- @@ -102,7 +99,7 @@ services: restart: unless-stopped ``` -### docker cli +### docker cli ([click here for more info](https://docs.docker.com/engine/reference/commandline/cli/)) ```bash docker run -d \ From 7ce065d902ac966693707eedd64967d7fb3dd881 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 10 Jul 2021 15:02:01 +0000 Subject: [PATCH 150/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4eb48de3..0e77339e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ adduser3.116ubuntu1 -apt1.6.13 -apt-utils1.6.13 +apt1.6.14 +apt-utils1.6.14 base-files10.1ubuntu2.10 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 @@ -26,8 +26,8 @@ init-system-helpers1.51 jq1.5+dfsg-2 krb5-locales1.16-2ubuntu0.2 libacl12.2.52-3build1 -libapt-inst2.01.6.13 -libapt-pkg5.01.6.13 +libapt-inst2.01.6.14 +libapt-pkg5.01.6.14 libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1.1 From 221c571807feace8a00055f68265b0b38fe11370 Mon Sep 17 00:00:00 2001 From: Roxedus Date: Mon, 12 Jul 2021 08:42:34 +0200 Subject: [PATCH 151/790] Use runtime when checking for updates. --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 48 +++++++++++++------------- Dockerfile.aarch64 | 48 +++++++++++++------------- Dockerfile.armhf | 48 +++++++++++++------------- Jenkinsfile | 2 +- README.md | 17 ++++++--- jenkins-vars.yml | 2 +- readme-vars.yml | 11 ++++++ root/etc/cont-init.d/30-config | 2 +- root/etc/services.d/lidarr/run | 8 ++--- 10 files changed, 104 insertions(+), 84 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 72bc2aca..a9d7bdb3 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?os=linux" | jq -r '. | .[0].version') + EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux" | jq -r '. | .[0].version') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" diff --git a/Dockerfile b/Dockerfile index 1851713b..12967ecd 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,30 +13,30 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu60 && \ - echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr/bin && \ - if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ - /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu60 && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr/bin && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo "**** cleanup ****" && \ + rm -rf \ + /app/lidarr/bin/Lidarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2f866033..2008fa9b 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -13,30 +13,30 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu60 && \ - echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr/bin && \ - if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ - /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu60 && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr/bin && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo "**** cleanup ****" && \ + rm -rf \ + /app/lidarr/bin/Lidarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index e2fbbf66..cd475a3d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -13,30 +13,30 @@ ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ - echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ - jq \ - libicu60 && \ - echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr/bin && \ - if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?os=linux" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ - /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/lib/apt/lists/* \ - /var/tmp/* + echo "**** install packages ****" && \ + apt-get update && \ + apt-get install --no-install-recommends -y \ + jq \ + libicu60 && \ + echo "**** install lidarr ****" && \ + mkdir -p /app/lidarr/bin && \ + if [ -z ${LIDARR_RELEASE+x} ]; then \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + | jq -r '.[0].version'); \ + fi && \ + curl -o \ + /tmp/lidarr.tar.gz -L \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ + tar ixzf \ + /tmp/lidarr.tar.gz -C \ + /app/lidarr/bin --strip-components=1 && \ + echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo "**** cleanup ****" && \ + rm -rf \ + /app/lidarr/bin/Lidarr.Update \ + /tmp/* \ + /var/lib/apt/lists/* \ + /var/tmp/* # copy local files COPY root/ / diff --git a/Jenkinsfile b/Jenkinsfile index 7308bbea..473cf6ce 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,7 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?os=linux' + JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' diff --git a/README.md b/README.md index b88ec54e..67b0bc13 100644 --- a/README.md +++ b/README.md @@ -73,6 +73,14 @@ Special Note: Following our current folder structure will result in an inability Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. +### Media folders + +We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. + +Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. + +The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. + ## Usage Here are some example snippets to help you get started creating a container. @@ -92,8 +100,8 @@ services: - TZ=Europe/London volumes: - /path/to/appdata/config:/config - - /path/to/music:/music - - /path/to/downloads:/downloads + - /path/to/music:/music #optional + - /path/to/downloads:/downloads #optional ports: - 8686:8686 restart: unless-stopped @@ -109,8 +117,8 @@ docker run -d \ -e TZ=Europe/London \ -p 8686:8686 \ -v /path/to/appdata/config:/config \ - -v /path/to/music:/music \ - -v /path/to/downloads:/downloads \ + -v /path/to/music:/music `#optional` \ + -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ ghcr.io/linuxserver/lidarr ``` @@ -238,6 +246,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **11.07.21:** - Make the paths clearer to the user. * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **27.09.20:** - Move preview branch/tag to nightly. * **05.04.20:** - Move app to /app. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 20d9b8a8..a59b0932 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -7,7 +7,7 @@ release_type: prerelease release_tag: nightly ls_branch: nightly repo_vars: - - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?os=linux' + - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux' - JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'LIDARR_RELEASE' - LS_USER = 'linuxserver' diff --git a/readme-vars.yml b/readme-vars.yml index 826105cc..0bca47eb 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -31,6 +31,8 @@ opt_param_usage_include_env: false param_usage_include_vols: true param_volumes: - { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files for Lidarr." } +opt_param_usage_include_vols: true +opt_param_volumes: - { vol_path: "/music", vol_host_path: "/path/to/music", desc: "Music files (See note in Application setup)." } - { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Path to your download folder for music (See note in Application setup)." } param_usage_include_ports: true @@ -46,8 +48,17 @@ app_setup_block: | Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. + ### Media folders + + We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. + + Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. + + The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. + # changelog changelogs: + - { date: "11.07.21:", desc: "Make the paths clearer to the user." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "27.09.20:", desc: "Move preview branch/tag to nightly." } - { date: "05.04.20:", desc: "Move app to /app." } diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config index 4a5264a5..05c47079 100644 --- a/root/etc/cont-init.d/30-config +++ b/root/etc/cont-init.d/30-config @@ -2,4 +2,4 @@ # permissions chown -R abc:abc \ - /config + /config diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run index db20f417..4ea5359c 100644 --- a/root/etc/services.d/lidarr/run +++ b/root/etc/services.d/lidarr/run @@ -1,10 +1,10 @@ #!/usr/bin/with-contenv bash if [ -n "${UMASK_SET}" ] && [ -z "${UMASK}" ]; then - echo -e "You are using a legacy method of defining umask\nplease update your environment variable from UMASK_SET to UMASK\nto keep the functionality after July 2021" - umask ${UMASK_SET} + echo -e "You are using a legacy method of defining umask\nplease update your environment variable from UMASK_SET to UMASK\nto keep the functionality after July 2021" + umask ${UMASK_SET} fi exec \ - s6-setuidgid abc /app/lidarr/bin/Lidarr \ - -nobrowser -data=/config + s6-setuidgid abc /app/lidarr/bin/Lidarr \ + -nobrowser -data=/config From 0b0200c2311577df9ba09473656217a4a613a284 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 24 Jul 2021 17:01:18 +0200 Subject: [PATCH 152/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0e77339e..f8cd9863 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -20,7 +20,7 @@ findutils4.6.0+git+20170828-2 gcc-8-base8.4.0-1ubuntu1~18.04 gpgv2.2.4-1ubuntu1.4 grep3.1-2build1 -gzip1.6-5ubuntu1 +gzip1.6-5ubuntu1.1 hostname3.20 init-system-helpers1.51 jq1.5+dfsg-2 From 5b477720cf66c5ee0424ba3f63f1a4ea5df8fd93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 30 Jul 2021 01:33:57 +0200 Subject: [PATCH 153/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f8cd9863..08fe42fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20210119~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.13 +curl7.58.0-2ubuntu3.14 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -38,7 +38,7 @@ libc62.27-3ubuntu1.4 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.4 libcom-err21.44.1-1ubuntu1.3 -libcurl47.58.0-2ubuntu3.13 +libcurl47.58.0-2ubuntu3.14 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 libext2fs21.44.1-1ubuntu1.3 @@ -97,10 +97,10 @@ libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 -libsystemd0237-3ubuntu10.48 +libsystemd0237-3ubuntu10.49 libtasn1-64.13-2 libtinfo56.1-1ubuntu1.18.04 -libudev1237-3ubuntu10.48 +libudev1237-3ubuntu10.49 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libwind0-heimdal7.5.0+dfsg-1 From 874569cdbba0a5922f1104eaa96d37179aefe9d9 Mon Sep 17 00:00:00 2001 From: chbmb Date: Sun, 1 Aug 2021 15:49:05 +0100 Subject: [PATCH 154/790] Add libchromaprint tools Add libchromaprint tools. Fixes issue with fpcalc not being found, no issue filed, reported in Discord. [Report]https://discord.com/channels/354974912613449730/506925392603512839/871319431589019648) [Proposed Fix](https://discord.com/channels/354974912613449730/506925392603512839/871323782457987144) [Confirmed Fix](https://discord.com/channels/354974912613449730/506925392603512839/871388111295348746) e4517c --- Dockerfile | 1 + Dockerfile.aarch64 | 1 + Dockerfile.armhf | 1 + readme-vars.yml | 1 + 4 files changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 12967ecd..7696d4ba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,6 +17,7 @@ RUN \ apt-get update && \ apt-get install --no-install-recommends -y \ jq \ + libchromaprint-tools \ libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2008fa9b..e507952b 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -17,6 +17,7 @@ RUN \ apt-get update && \ apt-get install --no-install-recommends -y \ jq \ + libchromaprint-tools \ libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index cd475a3d..b6b6dd16 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -17,6 +17,7 @@ RUN \ apt-get update && \ apt-get install --no-install-recommends -y \ jq \ + libchromaprint-tools \ libicu60 && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ diff --git a/readme-vars.yml b/readme-vars.yml index 0bca47eb..082f2c81 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -58,6 +58,7 @@ app_setup_block: | # changelog changelogs: + - { date: "01.08.21:", desc: "Add libchromaprint-tools." } - { date: "11.07.21:", desc: "Make the paths clearer to the user." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - { date: "27.09.20:", desc: "Move preview branch/tag to nightly." } From 58131c0d0d51b33cd3ab2d594b2c65ff23b67ddf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Aug 2021 17:07:19 +0200 Subject: [PATCH 155/790] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 67b0bc13..437fa2ca 100644 --- a/README.md +++ b/README.md @@ -246,6 +246,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **01.08.21:** - Add libchromaprint-tools. * **11.07.21:** - Make the paths clearer to the user. * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. * **27.09.20:** - Move preview branch/tag to nightly. From b44eb0b233087666ad230c79ec5077b3535ccead Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sun, 1 Aug 2021 17:11:27 +0200 Subject: [PATCH 156/790] Bot Updating Package Versions --- package_versions.txt | 84 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 84 insertions(+) diff --git a/package_versions.txt b/package_versions.txt index 08fe42fd..748e7756 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,6 +17,9 @@ dpkg1.19.0.5ubuntu2.3 e2fsprogs1.44.1-1ubuntu1.3 fdisk2.31.1-0.4ubuntu3.7 findutils4.6.0+git+20170828-2 +fontconfig2.12.6-0ubuntu2 +fontconfig-config2.12.6-0ubuntu2 +fonts-dejavu-core2.37-1 gcc-8-base8.4.0-1ubuntu1~18.04 gpgv2.2.4-1ubuntu1.4 grep3.1-2build1 @@ -32,25 +35,49 @@ libasn1-8-heimdal7.5.0+dfsg-1 libattr11:2.4.47-2build1 libaudit11:2.8.2-1ubuntu1.1 libaudit-common1:2.8.2-1ubuntu1.1 +libavcodec577:3.4.8-0ubuntu0.2 +libavformat577:3.4.8-0ubuntu0.2 +libavutil557:3.4.8-0ubuntu0.2 libblkid12.31.1-0.4ubuntu3.7 +libbluray21:1.0.2-3 +libbsd00.8.7-1ubuntu0.1 libbz2-1.01.0.6-8.1ubuntu0.2 libc62.27-3ubuntu1.4 +libcairo21.15.10-2ubuntu0.1 libcap-ng00.7.7-3.1 libc-bin2.27-3ubuntu1.4 +libchromaprint11.4.3-1 +libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.3 +libcroco30.6.12-2 +libcrystalhd31:0.0~git20110715.fdd2f19-12 libcurl47.58.0-2ubuntu3.14 +libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 +libdrm22.4.101-2~18.04.1 +libdrm-common2.4.101-2~18.04.1 +libexpat12.2.5-3ubuntu0.2 libext2fs21.44.1-1ubuntu1.3 libfdisk12.31.1-0.4ubuntu3.7 libffi63.2.1-8 +libfontconfig12.12.6-0ubuntu2 +libfreetype62.8.1-2ubuntu2.1 libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.2 +libgdk-pixbuf2.0-02.36.11-2 +libgdk-pixbuf2.0-common2.36.11-2 +libglib2.0-02.56.4-0ubuntu0.18.04.8 +libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.4 +libgomp18.4.0-1ubuntu1~18.04 libgpg-error01.27-6 +libgraphite2-31.3.11-2 +libgsm11.0.13-4build1 libgssapi3-heimdal7.5.0+dfsg-1 libgssapi-krb5-21.16-2ubuntu0.2 +libharfbuzz0b1.7.2-1ubuntu1 libhcrypto4-heimdal7.5.0+dfsg-1 libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 @@ -58,6 +85,9 @@ libhogweed43.4.1-0ubuntu0.18.04.1 libhx509-5-heimdal7.5.0+dfsg-1 libicu6060.2-3ubuntu3.1 libidn2-02.0.4-1.1ubuntu0.2 +libjbig02.1-3.1build1 +libjpeg88c-2ubuntu8 +libjpeg-turbo81.5.2-0ubuntu5.18.04.4 libjq11.5+dfsg-2 libk5crypto31.16-2ubuntu0.2 libkeyutils11.5.9-9.2ubuntu2 @@ -69,20 +99,33 @@ libldap-common2.4.45+dfsg-1ubuntu1.10 liblz4-10.0~r131-2ubuntu3.1 liblzma55.2.2-1.3 libmount12.31.1-0.4ubuntu3.7 +libmp3lame03.100-2 +libmpg123-01.25.10-1 libncurses56.1-1ubuntu1.18.04 libncursesw56.1-1ubuntu1.18.04 libnettle63.4.1-0ubuntu0.18.04.1 libnghttp2-141.30.0-1ubuntu1 +libnuma12.0.11-2.1ubuntu0.1 +libogg01.3.2-1 libonig46.7.0-1 +libopenjp2-72.3.0-2build0.18.04.1 +libopenmpt00.3.6-1 +libopus01.1.2-1ubuntu1 libp11-kit00.23.9-2ubuntu0.1 libpam0g1.1.8-3.6ubuntu2.18.04.3 libpam-modules1.1.8-3.6ubuntu2.18.04.3 libpam-modules-bin1.1.8-3.6ubuntu2.18.04.3 libpam-runtime1.1.8-3.6ubuntu2.18.04.3 +libpango-1.0-01.40.14-1ubuntu0.1 +libpangocairo-1.0-01.40.14-1ubuntu0.1 +libpangoft2-1.0-01.40.14-1ubuntu0.1 libpcre32:8.39-9 +libpixman-1-00.34.0-2 +libpng16-161.6.34-1ubuntu0.18.04.2 libprocps62:3.3.12-3ubuntu1.2 libpsl50.19.1-5build1 libroken18-heimdal7.5.0+dfsg-1 +librsvg2-22.40.20-2ubuntu0.2 librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.3 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.3 @@ -92,24 +135,63 @@ libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 libsepol12.7-1 +libshine33.1.1-1 libsmartcols12.31.1-0.4ubuntu3.7 +libsnappy1v51.1.7-1 +libsoxr00.1.2-3 +libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 +libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 +libswresample27:3.4.8-0ubuntu0.2 libsystemd0237-3ubuntu10.49 libtasn1-64.13-2 +libthai00.1.27-2 +libthai-data0.1.27-2 +libtheora01.1.1+dfsg.1-14 +libtiff54.0.9-5ubuntu0.4 libtinfo56.1-1ubuntu1.18.04 +libtwolame00.3.13-3 libudev1237-3ubuntu10.49 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 +libva22.1.0-3 +libva-drm22.1.0-3 +libva-x11-22.1.0-3 +libvdpau11.1.1-3ubuntu1 +libvorbis0a1.3.5-4.2 +libvorbisenc21.3.5-4.2 +libvorbisfile31.3.5-4.2 +libvpx51.7.0-3ubuntu0.18.04.1 +libwavpack15.1.0-2ubuntu1.5 +libwebp60.6.1-2ubuntu0.18.04.1 +libwebpmux30.6.1-2ubuntu0.18.04.1 libwind0-heimdal7.5.0+dfsg-1 +libx11-62:1.6.4-3ubuntu0.4 +libx11-data2:1.6.4-3ubuntu0.4 +libx264-1522:0.152.2854+gite9a5903-2 +libx265-1462.6-3 +libxau61:1.0.8-1ubuntu1 +libxcb11.13-2~ubuntu18.04 +libxcb-render01.13-2~ubuntu18.04 +libxcb-shm01.13-2~ubuntu18.04 +libxdmcp61:1.1.2-3 +libxext62:1.3.3-1 +libxfixes31:5.0.3-1 +libxml22.9.4+dfsg1-6.1ubuntu1.4 +libxrender11:0.9.10-1 +libxvidcore42:1.3.5-1 libzstd11.3.3+dfsg-2ubuntu1.2 +libzvbi00.2.35-13 +libzvbi-common0.2.35-13 locales2.27-3ubuntu1.4 login1:4.5-1ubuntu2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.7 +multiarch-support2.27-3ubuntu1.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.9 @@ -119,9 +201,11 @@ procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 sed4.4-2 sensible-utils0.0.12 +shared-mime-info1.9-2 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.2 tzdata2021a-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.2 +ucf3.0038 util-linux2.31.1-0.4ubuntu3.7 zlib1g1:1.2.11.dfsg-0ubuntu2 From 0b88b4f47555d4afb3543009b0d848c4e08893ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 5 Aug 2021 13:30:44 +0200 Subject: [PATCH 157/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 748e7756..30ca715a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -146,7 +146,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 libssl1.11.1.1-1ubuntu2.1~18.04.9 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 -libsystemd0237-3ubuntu10.49 +libsystemd0237-3ubuntu10.50 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -154,7 +154,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.4 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.49 +libudev1237-3ubuntu10.50 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 From c9562fa6954add3cd967475ded0fab755733330e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 Aug 2021 07:31:30 +0200 Subject: [PATCH 158/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 30ca715a..3c1fd27f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -143,10 +143,10 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 -libssl1.11.1.1-1ubuntu2.1~18.04.9 +libssl1.11.1.1-1ubuntu2.1~18.04.10 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 -libsystemd0237-3ubuntu10.50 +libsystemd0237-3ubuntu10.51 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -154,7 +154,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.4 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.50 +libudev1237-3ubuntu10.51 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 @@ -194,7 +194,7 @@ mount2.31.1-0.4ubuntu3.7 multiarch-support2.27-3ubuntu1.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.9 +openssl1.1.1-1ubuntu2.1~18.04.10 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From c44ba3e55ae1da8c9e27dbb37e2607540217e6c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 28 Aug 2021 16:59:16 +0200 Subject: [PATCH 159/790] Bot Updating Templated Files --- Jenkinsfile | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 473cf6ce..62ccbeef 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -377,7 +377,9 @@ pipeline { // Build Docker container for push to LS Repo stage('Build-Single') { when { - environment name: 'MULTIARCH', value: 'false' + expression { + env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true' + } environment name: 'EXIT_STATUS', value: '' } steps { @@ -402,7 +404,10 @@ pipeline { // Build MultiArch Docker containers for push to LS Repo stage('Build-Multi') { when { - environment name: 'MULTIARCH', value: 'true' + allOf { + environment name: 'MULTIARCH', value: 'true' + expression { params.PACKAGE_CHECK == 'false' } + } environment name: 'EXIT_STATUS', value: '' } parallel { @@ -507,7 +512,7 @@ pipeline { sh '''#! /bin/bash set -e TEMPDIR=$(mktemp -d) - if [ "${MULTIARCH}" == "true" ]; then + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then LOCAL_CONTAINER=${IMAGE}:amd64-${META_TAG} else LOCAL_CONTAINER=${IMAGE}:${META_TAG} @@ -568,7 +573,7 @@ pipeline { steps { sh '''#! /bin/bash echo "Packages were updated. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ]; then + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then docker rmi ${IMAGE}:amd64-${META_TAG} else docker rmi ${IMAGE}:${META_TAG} @@ -592,7 +597,7 @@ pipeline { steps { sh '''#! /bin/bash echo "There are no package updates. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ]; then + if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then docker rmi ${IMAGE}:amd64-${META_TAG} else docker rmi ${IMAGE}:${META_TAG} From 3583c1ad84da24a8c6badd8d93f5492c602bdf04 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 4 Sep 2021 17:00:23 +0200 Subject: [PATCH 160/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3c1fd27f..b1a81b5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -143,7 +143,7 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 -libssl1.11.1.1-1ubuntu2.1~18.04.10 +libssl1.11.1.1-1ubuntu2.1~18.04.13 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 libsystemd0237-3ubuntu10.51 @@ -194,7 +194,7 @@ mount2.31.1-0.4ubuntu3.7 multiarch-support2.27-3ubuntu1.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.10 +openssl1.1.1-1ubuntu2.1~18.04.13 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From 09de002c75998c28f36cc3577c98f6b222b134fc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Sep 2021 17:00:19 +0200 Subject: [PATCH 161/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b1a81b5e..37bc8231 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ adduser3.116ubuntu1 apt1.6.14 apt-utils1.6.14 -base-files10.1ubuntu2.10 +base-files10.1ubuntu2.11 base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 From a8346a70f6ab6639d8b6d8464da0a11b650ebfd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 25 Sep 2021 17:00:04 +0200 Subject: [PATCH 162/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 37bc8231..d46126c2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,7 +8,7 @@ bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 ca-certificates20210119~18.04.1 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.14 +curl7.58.0-2ubuntu3.15 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -51,7 +51,7 @@ libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.3 libcroco30.6.12-2 libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl47.58.0-2ubuntu3.14 +libcurl47.58.0-2ubuntu3.15 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 @@ -64,13 +64,13 @@ libffi63.2.1-8 libfontconfig12.12.6-0ubuntu2 libfreetype62.8.1-2ubuntu2.1 libgcc11:8.4.0-1ubuntu1~18.04 -libgcrypt201.8.1-4ubuntu1.2 +libgcrypt201.8.1-4ubuntu1.3 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 libglib2.0-02.56.4-0ubuntu0.18.04.8 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.4 +libgnutls303.5.18-1ubuntu1.5 libgomp18.4.0-1ubuntu1~18.04 libgpg-error01.27-6 libgraphite2-31.3.11-2 @@ -146,7 +146,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 libssl1.11.1.1-1ubuntu2.1~18.04.13 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 -libsystemd0237-3ubuntu10.51 +libsystemd0237-3ubuntu10.52 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -154,7 +154,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.4 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.51 +libudev1237-3ubuntu10.52 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 From c51e8a8c566b6646922ce6e84c2aeeca85415be2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 29 Sep 2021 16:33:22 +0200 Subject: [PATCH 163/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d46126c2..83d809c1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,9 +6,9 @@ base-passwd3.5.44 bash4.4.18-2ubuntu1.2 bsdutils1:2.31.1-0.4ubuntu3.7 bzip21.0.6-8.1ubuntu0.2 -ca-certificates20210119~18.04.1 +ca-certificates20210119~18.04.2 coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.15 +curl7.58.0-2ubuntu3.16 dash0.5.8-2.10 debconf1.5.66ubuntu1 debianutils4.8.4 @@ -51,7 +51,7 @@ libchromaprint-tools1.4.3-1 libcom-err21.44.1-1ubuntu1.3 libcroco30.6.12-2 libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl47.58.0-2ubuntu3.15 +libcurl47.58.0-2ubuntu3.16 libdatrie10.2.10-7 libdb5.35.3.28-13.1ubuntu1.1 libdebconfclient00.213ubuntu1 From 451f215f53f71204861218c7c5c6b138d0db9987 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Oct 2021 04:43:17 +0200 Subject: [PATCH 164/790] Bot Updating Templated Files --- Jenkinsfile | 108 ++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 101 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 62ccbeef..f55666c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,6 +16,7 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') + SCARF_TOKEN=credentials('scarf_api_key') JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux' JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'LIDARR_RELEASE' @@ -118,6 +119,23 @@ pipeline { env.EXT_RELEASE_CLEAN = sh( script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', returnStdout: true).trim() + + env.SEMVER = (new Date()).format('YYYY.MM.dd') + def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)$/ + if (semver.find()) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" + } else { + semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)(?:\.(\d+))?(.*)$/ + if (semver.find()) { + if (semver[0][3]) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" + } else if (!semver[0][3] && !semver[0][4]) { + env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${(new Date()).format('YYYYMMdd')}" + } + } + } + + println("SEMVER: ${env.SEMVER}") } } } @@ -132,6 +150,7 @@ pipeline { env.IMAGE = env.DOCKERHUB_IMAGE env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { @@ -154,6 +173,7 @@ pipeline { env.IMAGE = env.DEV_DOCKERHUB_IMAGE env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lsiodev-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { @@ -176,6 +196,7 @@ pipeline { env.IMAGE = env.PR_DOCKERHUB_IMAGE env.GITHUBIMAGE = 'ghcr.io/' + env.LS_USER + '/lspipepr-' + env.CONTAINER_NAME env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME + env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST } else { @@ -371,6 +392,48 @@ pipeline { "visibility":"public"}' ''' } } + /* ####################### + Scarf.sh package registry + ####################### */ + // Add package to Scarf.sh and set permissions + stage("Scarf.sh package registry"){ + when { + branch "nightly" + environment name: 'EXIT_STATUS', value: '' + } + steps{ + sh '''#! /bin/bash + set -e + PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid') + if [ -z "${PACKAGE_UUID}" ]; then + echo "Adding package to Scarf.sh" + PACKAGE_UUID=$(curl -sX POST https://scarf.sh/api/v1/packages \ + -H "Authorization: Bearer ${SCARF_TOKEN}" \ + -H "Content-Type: application/json" \ + -d '{"name":"linuxserver/lidarr",\ + "shortDescription":"example description",\ + "libraryType":"docker",\ + "website":"https://github.com/linuxserver/docker-lidarr",\ + "backendUrl":"https://ghcr.io/linuxserver/lidarr",\ + "publicUrl":"https://lscr.io/linuxserver/lidarr"}' \ + | jq -r .uuid) + else + echo "Package already exists on Scarf.sh" + fi + echo "Setting permissions on Scarf.sh for package ${PACKAGE_UUID}" + curl -X POST https://scarf.sh/api/v1/packages/${PACKAGE_UUID}/permissions \ + -H "Authorization: Bearer ${SCARF_TOKEN}" \ + -H "Content-Type: application/json" \ + -d '[{"userQuery":"Spad","permissionLevel":"admin"},\ + {"userQuery":"roxedus","permissionLevel":"admin"},\ + {"userQuery":"nemchik","permissionLevel":"admin"},\ + {"userQuery":"driz","permissionLevel":"admin"},\ + {"userQuery":"aptalca","permissionLevel":"admin"},\ + {"userQuery":"saarg","permissionLevel":"admin"},\ + {"userQuery":"Stark","permissionLevel":"admin"}]' + ''' + } + } /* ############### Build Container ############### */ @@ -378,7 +441,7 @@ pipeline { stage('Build-Single') { when { expression { - env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true' + env.MULTIARCH == 'false' || params.PACKAGE_CHECK == 'true' } environment name: 'EXIT_STATUS', value: '' } @@ -672,6 +735,12 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { retry(5) { @@ -680,22 +749,26 @@ pipeline { echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} docker push ${PUSHIMAGE}:nightly docker push ${PUSHIMAGE}:${META_TAG} docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} + docker push ${PUSHIMAGE}:${SEMVER} done ''' } sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:${META_TAG} \ ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:nightly || : + ${DELETEIMAGE}:nightly \ + ${DELETEIMAGE}:${SEMVER} || : done ''' } @@ -714,6 +787,12 @@ pipeline { credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', usernameVariable: 'DOCKERUSER', passwordVariable: 'DOCKERPASS' + ], + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' ] ]) { retry(5) { @@ -722,13 +801,14 @@ pipeline { echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}"; do + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} @@ -738,6 +818,9 @@ pipeline { docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} @@ -747,6 +830,9 @@ pipeline { docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:amd64-${SEMVER} + docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} docker manifest push --purge ${MANIFESTIMAGE}:nightly || : docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm @@ -759,24 +845,32 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : + docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:nightly docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} done ''' } sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${IMAGE}"; do + for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do docker rmi \ ${DELETEIMAGE}:amd64-${META_TAG} \ ${DELETEIMAGE}:amd64-nightly \ ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:amd64-${SEMVER} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-nightly \ ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:arm32v7-${SEMVER} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ ${DELETEIMAGE}:arm64v8-nightly \ - ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : + ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} \ + ${DELETEIMAGE}:arm64v8-${SEMVER} || : done docker rmi \ ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ From cb0cada24045d93b0f24239ab79dfdcc9a66bb6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Oct 2021 04:44:22 +0200 Subject: [PATCH 165/790] Bot Updating Templated Files --- README.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 437fa2ca..2b046b5e 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,7 @@ Find us at: [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) [![GitLab Container Registry](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitLab%20Registry&logo=gitlab)](https://gitlab.com/linuxserver.io/docker-lidarr/container_registry) +[![Quay.io](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Quay.io)](https://quay.io/repository/linuxserver.io/lidarr) [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/) @@ -46,7 +47,7 @@ Find us at: Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `ghcr.io/linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. The architectures supported by this image are: @@ -92,7 +93,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: lidarr: - image: ghcr.io/linuxserver/lidarr + image: lscr.io/linuxserver/lidarr container_name: lidarr environment: - PUID=1000 @@ -120,7 +121,7 @@ docker run -d \ -v /path/to/music:/music `#optional` \ -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ - ghcr.io/linuxserver/lidarr + lscr.io/linuxserver/lidarr ``` ## Parameters @@ -180,7 +181,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' ghcr.io/linuxserver/lidarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/lidarr` ## Updating Info @@ -198,7 +199,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull ghcr.io/linuxserver/lidarr` +* Update the image: `docker pull lscr.io/linuxserver/lidarr` * Stop the running container: `docker stop lidarr` * Delete the container: `docker rm lidarr` * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) @@ -233,7 +234,7 @@ cd docker-lidarr docker build \ --no-cache \ --pull \ - -t ghcr.io/linuxserver/lidarr:latest . + -t lscr.io/linuxserver/lidarr:latest . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 88eb02ba4f0aefa2f201ed00be4bff3c438fe63d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 16 Oct 2021 17:00:23 +0200 Subject: [PATCH 166/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 83d809c1..b1ba978c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -204,7 +204,7 @@ sensible-utils0.0.12 shared-mime-info1.9-2 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.2 -tzdata2021a-0ubuntu0.18.04 +tzdata2021a-2ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.2 ucf3.0038 util-linux2.31.1-0.4ubuntu3.7 From a751c479c53a0e46ae85d4fd1f9aad093bc87768 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Nov 2021 16:01:19 +0100 Subject: [PATCH 167/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b1ba978c..84cd184f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -83,7 +83,7 @@ libheimbase1-heimdal7.5.0+dfsg-1 libheimntlm0-heimdal7.5.0+dfsg-1 libhogweed43.4.1-0ubuntu0.18.04.1 libhx509-5-heimdal7.5.0+dfsg-1 -libicu6060.2-3ubuntu3.1 +libicu6060.2-3ubuntu3.2 libidn2-02.0.4-1.1ubuntu0.2 libjbig02.1-3.1build1 libjpeg88c-2ubuntu8 @@ -204,7 +204,7 @@ sensible-utils0.0.12 shared-mime-info1.9-2 sysvinit-utils2.88dsf-59.10ubuntu1 tar1.29b-2ubuntu0.2 -tzdata2021a-2ubuntu0.18.04 +tzdata2021e-0ubuntu0.18.04 ubuntu-keyring2018.09.18.1~18.04.2 ucf3.0038 util-linux2.31.1-0.4ubuntu3.7 From 6d83f71dd135a21dd38aa1553825d7d149d08226 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Dec 2021 15:59:15 +0100 Subject: [PATCH 168/790] Bot Updating Templated Files --- Jenkinsfile | 88 ++++++++++++++++++++++++++++++----------------------- 1 file changed, 50 insertions(+), 38 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f55666c7..4df1a9cc 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -120,12 +120,11 @@ pipeline { script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', returnStdout: true).trim() - env.SEMVER = (new Date()).format('YYYY.MM.dd') - def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)$/ + def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)/ if (semver.find()) { env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" } else { - semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)(?:\.(\d+))?(.*)$/ + semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)(?:\.(\d+))?(.*)/ if (semver.find()) { if (semver[0][3]) { env.SEMVER = "${semver[0][1]}.${semver[0][2]}.${semver[0][3]}" @@ -135,7 +134,15 @@ pipeline { } } - println("SEMVER: ${env.SEMVER}") + if (env.SEMVER != null) { + if (BRANCH_NAME != "master" && BRANCH_NAME != "main") { + env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}" + } + println("SEMVER: ${env.SEMVER}") + } else { + println("No SEMVER detected") + } + } } } @@ -404,10 +411,10 @@ pipeline { steps{ sh '''#! /bin/bash set -e - PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid') + PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid') if [ -z "${PACKAGE_UUID}" ]; then echo "Adding package to Scarf.sh" - PACKAGE_UUID=$(curl -sX POST https://scarf.sh/api/v1/packages \ + curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ -H "Authorization: Bearer ${SCARF_TOKEN}" \ -H "Content-Type: application/json" \ -d '{"name":"linuxserver/lidarr",\ @@ -415,22 +422,10 @@ pipeline { "libraryType":"docker",\ "website":"https://github.com/linuxserver/docker-lidarr",\ "backendUrl":"https://ghcr.io/linuxserver/lidarr",\ - "publicUrl":"https://lscr.io/linuxserver/lidarr"}' \ - | jq -r .uuid) + "publicUrl":"https://lscr.io/linuxserver/lidarr"}' || : else echo "Package already exists on Scarf.sh" fi - echo "Setting permissions on Scarf.sh for package ${PACKAGE_UUID}" - curl -X POST https://scarf.sh/api/v1/packages/${PACKAGE_UUID}/permissions \ - -H "Authorization: Bearer ${SCARF_TOKEN}" \ - -H "Content-Type: application/json" \ - -d '[{"userQuery":"Spad","permissionLevel":"admin"},\ - {"userQuery":"roxedus","permissionLevel":"admin"},\ - {"userQuery":"nemchik","permissionLevel":"admin"},\ - {"userQuery":"driz","permissionLevel":"admin"},\ - {"userQuery":"aptalca","permissionLevel":"admin"},\ - {"userQuery":"saarg","permissionLevel":"admin"},\ - {"userQuery":"Stark","permissionLevel":"admin"}]' ''' } } @@ -754,11 +749,15 @@ pipeline { docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} + if [ -n "${SEMVER}" ]; then + docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} + fi docker push ${PUSHIMAGE}:nightly docker push ${PUSHIMAGE}:${META_TAG} docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} - docker push ${PUSHIMAGE}:${SEMVER} + if [ -n "${SEMVER}" ]; then + docker push ${PUSHIMAGE}:${SEMVER} + fi done ''' } @@ -767,8 +766,10 @@ pipeline { docker rmi \ ${DELETEIMAGE}:${META_TAG} \ ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:nightly \ - ${DELETEIMAGE}:${SEMVER} || : + ${DELETEIMAGE}:nightly || : + if [ -n "${SEMVER}" ]; then + docker rmi ${DELETEIMAGE}:${SEMVER} || : + fi done ''' } @@ -818,9 +819,11 @@ pipeline { docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + if [ -n "${SEMVER}" ]; then + docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} @@ -830,9 +833,11 @@ pipeline { docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker push ${MANIFESTIMAGE}:amd64-${SEMVER} - docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} - docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} + if [ -n "${SEMVER}" ]; then + docker push ${MANIFESTIMAGE}:amd64-${SEMVER} + docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} + docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi docker manifest push --purge ${MANIFESTIMAGE}:nightly || : docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm @@ -845,14 +850,18 @@ pipeline { docker manifest create ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} --os linux --arch arm64 --variant v8 - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : - docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 + if [ -n "${SEMVER}" ]; then + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : + docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm + docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} --os linux --arch arm64 --variant v8 + fi docker manifest push --purge ${MANIFESTIMAGE}:nightly docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} - docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} + if [ -n "${SEMVER}" ]; then + docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} + fi done ''' } @@ -862,15 +871,18 @@ pipeline { ${DELETEIMAGE}:amd64-${META_TAG} \ ${DELETEIMAGE}:amd64-nightly \ ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:amd64-${SEMVER} \ ${DELETEIMAGE}:arm32v7-${META_TAG} \ ${DELETEIMAGE}:arm32v7-nightly \ ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm32v7-${SEMVER} \ ${DELETEIMAGE}:arm64v8-${META_TAG} \ ${DELETEIMAGE}:arm64v8-nightly \ - ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm64v8-${SEMVER} || : + ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : + if [ -n "${SEMVER}" ]; then + docker rmi \ + ${DELETEIMAGE}:amd64-${SEMVER} \ + ${DELETEIMAGE}:arm32v7-${SEMVER} \ + ${DELETEIMAGE}:arm64v8-${SEMVER} || : + fi done docker rmi \ ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ From 47bd98fb2cbddd9ca5099d1c974289bca1bd9f15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Dec 2021 16:00:44 +0100 Subject: [PATCH 169/790] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 2b046b5e..3094e86c 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ Find us at: # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Flidarr?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Flidarr) [![GitHub Stars](https://img.shields.io/github/stars/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) From ec86bb78a5d39be646d779d84359fb1b0bbc6913 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 18 Dec 2021 16:04:30 +0100 Subject: [PATCH 170/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 84cd184f..b0707332 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -67,7 +67,7 @@ libgcc11:8.4.0-1ubuntu1~18.04 libgcrypt201.8.1-4ubuntu1.3 libgdk-pixbuf2.0-02.36.11-2 libgdk-pixbuf2.0-common2.36.11-2 -libglib2.0-02.56.4-0ubuntu0.18.04.8 +libglib2.0-02.56.4-0ubuntu0.18.04.9 libgme00.6.2-1 libgmp102:6.1.2+dfsg-2 libgnutls303.5.18-1ubuntu1.5 @@ -143,7 +143,7 @@ libspeex11.2~rc1.2-1ubuntu2 libsqlite3-03.22.0-1ubuntu0.4 libss21.44.1-1ubuntu1.3 libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 -libssl1.11.1.1-1ubuntu2.1~18.04.13 +libssl1.11.1.1-1ubuntu2.1~18.04.14 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 libsystemd0237-3ubuntu10.52 @@ -194,7 +194,7 @@ mount2.31.1-0.4ubuntu3.7 multiarch-support2.27-3ubuntu1.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.13 +openssl1.1.1-1ubuntu2.1~18.04.14 passwd1:4.5-1ubuntu2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 From 2a958a2c70c2f79bf291c227517f5578aa3484be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 24 Dec 2021 17:58:16 +0100 Subject: [PATCH 171/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b0707332..b2acf0cb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,7 +130,7 @@ librtmp12.4+20151223.gitfa8646d.1-1 libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.3 libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.3 libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.3 -libseccomp22.5.1-1ubuntu1~18.04.1 +libseccomp22.5.1-1ubuntu1~18.04.2 libselinux12.7-2build2 libsemanage12.7-2build2 libsemanage-common2.7-2build2 From e3f734c852196f4efa532bf6513357a57d344dd6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 15 Jan 2022 16:00:29 +0100 Subject: [PATCH 172/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b2acf0cb..1914f1e7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -146,7 +146,7 @@ libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 libssl1.11.1.1-1ubuntu2.1~18.04.14 libstdc++68.4.0-1ubuntu1~18.04 libswresample27:3.4.8-0ubuntu0.2 -libsystemd0237-3ubuntu10.52 +libsystemd0237-3ubuntu10.53 libtasn1-64.13-2 libthai00.1.27-2 libthai-data0.1.27-2 @@ -154,7 +154,7 @@ libtheora01.1.1+dfsg.1-14 libtiff54.0.9-5ubuntu0.4 libtinfo56.1-1ubuntu1.18.04 libtwolame00.3.13-3 -libudev1237-3ubuntu10.52 +libudev1237-3ubuntu10.53 libunistring20.9.9-0ubuntu2 libuuid12.31.1-0.4ubuntu3.7 libva22.1.0-3 From 934d7a23a8d05d67fc530da70bb2e4785740650d Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 4 Feb 2022 18:09:38 +0000 Subject: [PATCH 173/790] Rebase nightly to alpine --- .github/workflows/external_trigger.yml | 2 +- Dockerfile | 25 ++++++++++++------------- Dockerfile.aarch64 | 25 ++++++++++++------------- Dockerfile.armhf | 25 ++++++++++++------------- Jenkinsfile | 26 ++++++++++++-------------- README.md | 2 ++ jenkins-vars.yml | 8 +++----- readme-vars.yml | 2 ++ 8 files changed, 56 insertions(+), 59 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index a9d7bdb3..4648bb87 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -18,7 +18,7 @@ jobs: fi echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -s "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux" | jq -r '. | .[0].version') + EXT_RELEASE=$(curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" diff --git a/Dockerfile b/Dockerfile index 7696d4ba..32b15f1e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,42 +1,41 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-alpine:3.15 # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="Roxedus,thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libchromaprint-tools \ - libicu60 && \ + chromaprint \ + icu-libs \ + sqlite-libs && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=x64" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=x64" && \ + tar xzf \ + /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index e507952b..5e8f3a57 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,42 +1,41 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:arm64v8-bionic +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15 # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="Roxedus,thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libchromaprint-tools \ - libicu60 && \ + chromaprint \ + icu-libs \ + sqlite-libs && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm64" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm64" && \ + tar xzf \ + /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Dockerfile.armhf b/Dockerfile.armhf index b6b6dd16..a6532fa5 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,42 +1,41 @@ -FROM ghcr.io/linuxserver/baseimage-ubuntu:bionic +FROM ghcr.io/linuxserver/baseimage-alpine:3.15 # set version label ARG BUILD_DATE ARG VERSION ARG LIDARR_RELEASE LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="thelamer" +LABEL maintainer="Roxedus,thespad" # environment settings -ARG DEBIAN_FRONTEND="noninteractive" ARG LIDARR_BRANCH="nightly" ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ - apt-get update && \ - apt-get install --no-install-recommends -y \ + apk add -U --upgrade --no-cache \ + curl \ jq \ - libchromaprint-tools \ - libicu60 && \ + chromaprint \ + icu-libs \ + sqlite-libs && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linux" \ + LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ | jq -r '.[0].version'); \ fi && \ curl -o \ /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linux&runtime=netcore&arch=arm" && \ - tar ixzf \ - /tmp/lidarr.tar.gz -C \ + "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm" && \ + tar xzf \ + /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ /tmp/* \ - /var/lib/apt/lists/* \ /var/tmp/* # copy local files diff --git a/Jenkinsfile b/Jenkinsfile index 4df1a9cc..4c846b75 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,8 +17,6 @@ pipeline { GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') SCARF_TOKEN=credentials('scarf_api_key') - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux' - JSON_PATH = '.[0].version' BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-lidarr' @@ -26,7 +24,7 @@ pipeline { DOCKERHUB_IMAGE = 'linuxserver/lidarr' DEV_DOCKERHUB_IMAGE = 'lsiodev/lidarr' PR_DOCKERHUB_IMAGE = 'lspipepr/lidarr' - DIST_IMAGE = 'ubuntu' + DIST_IMAGE = 'alpine' MULTIARCH='true' CI='true' CI_WEB='true' @@ -101,16 +99,16 @@ pipeline { /* ######################## External Release Tagging ######################## */ - // If this is a custom json endpoint parse the return to get external tag - stage("Set ENV custom_json"){ - steps{ - script{ - env.EXT_RELEASE = sh( - script: '''curl -s ${JSON_URL} | jq -r ". | ${JSON_PATH}" ''', - returnStdout: true).trim() - env.RELEASE_LINK = env.JSON_URL - } - } + // If this is a custom command to determine version use that command + stage("Set tag custom bash"){ + steps{ + script{ + env.EXT_RELEASE = sh( + script: ''' curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version' ''', + returnStdout: true).trim() + env.RELEASE_LINK = 'custom_command' + } + } } // Sanitize the release tag and strip illegal docker or github characters stage("Sanitize tag"){ @@ -911,7 +909,7 @@ pipeline { "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash - echo "Data change at JSON endpoint ${JSON_URL}" > releasebody.json + echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "nightly",\ "name": "'${META_TAG}'",\ diff --git a/README.md b/README.md index 3094e86c..126a03e2 100644 --- a/README.md +++ b/README.md @@ -248,6 +248,8 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **04.02.22:** - Rebase nightly branch to Alpine. +* **30.12.21:** - Add nightly-alpine branch. * **01.08.21:** - Add libchromaprint-tools. * **11.07.21:** - Make the paths clearer to the user. * **20.01.21:** - Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index a59b0932..ba608b51 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -1,14 +1,12 @@ --- - # jenkins variables project_name: docker-lidarr -external_type: custom_json +external_type: na +custom_version_command: curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version' release_type: prerelease release_tag: nightly ls_branch: nightly repo_vars: - - JSON_URL = 'https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linux' - - JSON_PATH = '.[0].version' - BUILD_VERSION_ARG = 'LIDARR_RELEASE' - LS_USER = 'linuxserver' - LS_REPO = 'docker-lidarr' @@ -16,7 +14,7 @@ repo_vars: - DOCKERHUB_IMAGE = 'linuxserver/lidarr' - DEV_DOCKERHUB_IMAGE = 'lsiodev/lidarr' - PR_DOCKERHUB_IMAGE = 'lspipepr/lidarr' - - DIST_IMAGE = 'ubuntu' + - DIST_IMAGE = 'alpine' - MULTIARCH='true' - CI='true' - CI_WEB='true' diff --git a/readme-vars.yml b/readme-vars.yml index 082f2c81..a8f54f42 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -58,6 +58,8 @@ app_setup_block: | # changelog changelogs: + - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } + - { date: "30.12.21:", desc: "Add nightly-alpine branch." } - { date: "01.08.21:", desc: "Add libchromaprint-tools." } - { date: "11.07.21:", desc: "Make the paths clearer to the user." } - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } From 1167a35e071b71e65c4de3296f93fd0797b01f0e Mon Sep 17 00:00:00 2001 From: TheSpad Date: Fri, 4 Feb 2022 18:28:05 +0000 Subject: [PATCH 174/790] Add PackageAuthor link --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 32b15f1e..2509de95 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 5e8f3a57..97444880 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index a6532fa5..7d3ba33d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=linuxserver.io\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ From 39f9565390a45cf65ed5a729fe6deee215ab92a3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Feb 2022 16:00:15 +0100 Subject: [PATCH 175/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1914f1e7..2d146362 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -187,7 +187,7 @@ libzstd11.3.3+dfsg-2ubuntu1.2 libzvbi00.2.35-13 libzvbi-common0.2.35-13 locales2.27-3ubuntu1.4 -login1:4.5-1ubuntu2 +login1:4.5-1ubuntu2.2 lsb-base9.20170808ubuntu1 mawk1.3.3-17ubuntu3 mount2.31.1-0.4ubuntu3.7 @@ -195,7 +195,7 @@ multiarch-support2.27-3ubuntu1.4 ncurses-base6.1-1ubuntu1.18.04 ncurses-bin6.1-1ubuntu1.18.04 openssl1.1.1-1ubuntu2.1~18.04.14 -passwd1:4.5-1ubuntu2 +passwd1:4.5-1ubuntu2.2 perl-base5.26.1-6ubuntu0.5 procps2:3.3.12-3ubuntu1.2 publicsuffix20180223.1310-1 From ecaaa7bfea3fd6c1d70c34cd364f790d8471f103 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Feb 2022 11:38:01 +0100 Subject: [PATCH 176/790] Bot Updating Package Versions --- package_versions.txt | 312 ++++++++++++++----------------------------- 1 file changed, 101 insertions(+), 211 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2d146362..e1f13b9e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,211 +1,101 @@ -adduser3.116ubuntu1 -apt1.6.14 -apt-utils1.6.14 -base-files10.1ubuntu2.11 -base-passwd3.5.44 -bash4.4.18-2ubuntu1.2 -bsdutils1:2.31.1-0.4ubuntu3.7 -bzip21.0.6-8.1ubuntu0.2 -ca-certificates20210119~18.04.2 -coreutils8.28-1ubuntu1 -curl7.58.0-2ubuntu3.16 -dash0.5.8-2.10 -debconf1.5.66ubuntu1 -debianutils4.8.4 -diffutils1:3.6-1 -dpkg1.19.0.5ubuntu2.3 -e2fsprogs1.44.1-1ubuntu1.3 -fdisk2.31.1-0.4ubuntu3.7 -findutils4.6.0+git+20170828-2 -fontconfig2.12.6-0ubuntu2 -fontconfig-config2.12.6-0ubuntu2 -fonts-dejavu-core2.37-1 -gcc-8-base8.4.0-1ubuntu1~18.04 -gpgv2.2.4-1ubuntu1.4 -grep3.1-2build1 -gzip1.6-5ubuntu1.1 -hostname3.20 -init-system-helpers1.51 -jq1.5+dfsg-2 -krb5-locales1.16-2ubuntu0.2 -libacl12.2.52-3build1 -libapt-inst2.01.6.14 -libapt-pkg5.01.6.14 -libasn1-8-heimdal7.5.0+dfsg-1 -libattr11:2.4.47-2build1 -libaudit11:2.8.2-1ubuntu1.1 -libaudit-common1:2.8.2-1ubuntu1.1 -libavcodec577:3.4.8-0ubuntu0.2 -libavformat577:3.4.8-0ubuntu0.2 -libavutil557:3.4.8-0ubuntu0.2 -libblkid12.31.1-0.4ubuntu3.7 -libbluray21:1.0.2-3 -libbsd00.8.7-1ubuntu0.1 -libbz2-1.01.0.6-8.1ubuntu0.2 -libc62.27-3ubuntu1.4 -libcairo21.15.10-2ubuntu0.1 -libcap-ng00.7.7-3.1 -libc-bin2.27-3ubuntu1.4 -libchromaprint11.4.3-1 -libchromaprint-tools1.4.3-1 -libcom-err21.44.1-1ubuntu1.3 -libcroco30.6.12-2 -libcrystalhd31:0.0~git20110715.fdd2f19-12 -libcurl47.58.0-2ubuntu3.16 -libdatrie10.2.10-7 -libdb5.35.3.28-13.1ubuntu1.1 -libdebconfclient00.213ubuntu1 -libdrm22.4.101-2~18.04.1 -libdrm-common2.4.101-2~18.04.1 -libexpat12.2.5-3ubuntu0.2 -libext2fs21.44.1-1ubuntu1.3 -libfdisk12.31.1-0.4ubuntu3.7 -libffi63.2.1-8 -libfontconfig12.12.6-0ubuntu2 -libfreetype62.8.1-2ubuntu2.1 -libgcc11:8.4.0-1ubuntu1~18.04 -libgcrypt201.8.1-4ubuntu1.3 -libgdk-pixbuf2.0-02.36.11-2 -libgdk-pixbuf2.0-common2.36.11-2 -libglib2.0-02.56.4-0ubuntu0.18.04.9 -libgme00.6.2-1 -libgmp102:6.1.2+dfsg-2 -libgnutls303.5.18-1ubuntu1.5 -libgomp18.4.0-1ubuntu1~18.04 -libgpg-error01.27-6 -libgraphite2-31.3.11-2 -libgsm11.0.13-4build1 -libgssapi3-heimdal7.5.0+dfsg-1 -libgssapi-krb5-21.16-2ubuntu0.2 -libharfbuzz0b1.7.2-1ubuntu1 -libhcrypto4-heimdal7.5.0+dfsg-1 -libheimbase1-heimdal7.5.0+dfsg-1 -libheimntlm0-heimdal7.5.0+dfsg-1 -libhogweed43.4.1-0ubuntu0.18.04.1 -libhx509-5-heimdal7.5.0+dfsg-1 -libicu6060.2-3ubuntu3.2 -libidn2-02.0.4-1.1ubuntu0.2 -libjbig02.1-3.1build1 -libjpeg88c-2ubuntu8 -libjpeg-turbo81.5.2-0ubuntu5.18.04.4 -libjq11.5+dfsg-2 -libk5crypto31.16-2ubuntu0.2 -libkeyutils11.5.9-9.2ubuntu2 -libkrb5-26-heimdal7.5.0+dfsg-1 -libkrb5-31.16-2ubuntu0.2 -libkrb5support01.16-2ubuntu0.2 -libldap-2.4-22.4.45+dfsg-1ubuntu1.10 -libldap-common2.4.45+dfsg-1ubuntu1.10 -liblz4-10.0~r131-2ubuntu3.1 -liblzma55.2.2-1.3 -libmount12.31.1-0.4ubuntu3.7 -libmp3lame03.100-2 -libmpg123-01.25.10-1 -libncurses56.1-1ubuntu1.18.04 -libncursesw56.1-1ubuntu1.18.04 -libnettle63.4.1-0ubuntu0.18.04.1 -libnghttp2-141.30.0-1ubuntu1 -libnuma12.0.11-2.1ubuntu0.1 -libogg01.3.2-1 -libonig46.7.0-1 -libopenjp2-72.3.0-2build0.18.04.1 -libopenmpt00.3.6-1 -libopus01.1.2-1ubuntu1 -libp11-kit00.23.9-2ubuntu0.1 -libpam0g1.1.8-3.6ubuntu2.18.04.3 -libpam-modules1.1.8-3.6ubuntu2.18.04.3 -libpam-modules-bin1.1.8-3.6ubuntu2.18.04.3 -libpam-runtime1.1.8-3.6ubuntu2.18.04.3 -libpango-1.0-01.40.14-1ubuntu0.1 -libpangocairo-1.0-01.40.14-1ubuntu0.1 -libpangoft2-1.0-01.40.14-1ubuntu0.1 -libpcre32:8.39-9 -libpixman-1-00.34.0-2 -libpng16-161.6.34-1ubuntu0.18.04.2 -libprocps62:3.3.12-3ubuntu1.2 -libpsl50.19.1-5build1 -libroken18-heimdal7.5.0+dfsg-1 -librsvg2-22.40.20-2ubuntu0.2 -librtmp12.4+20151223.gitfa8646d.1-1 -libsasl2-22.1.27~101-g0780600+dfsg-3ubuntu2.3 -libsasl2-modules2.1.27~101-g0780600+dfsg-3ubuntu2.3 -libsasl2-modules-db2.1.27~101-g0780600+dfsg-3ubuntu2.3 -libseccomp22.5.1-1ubuntu1~18.04.2 -libselinux12.7-2build2 -libsemanage12.7-2build2 -libsemanage-common2.7-2build2 -libsepol12.7-1 -libshine33.1.1-1 -libsmartcols12.31.1-0.4ubuntu3.7 -libsnappy1v51.1.7-1 -libsoxr00.1.2-3 -libspeex11.2~rc1.2-1ubuntu2 -libsqlite3-03.22.0-1ubuntu0.4 -libss21.44.1-1ubuntu1.3 -libssh-gcrypt-40.8.0~20170825.94fa1e38-1ubuntu0.7 -libssl1.11.1.1-1ubuntu2.1~18.04.14 -libstdc++68.4.0-1ubuntu1~18.04 -libswresample27:3.4.8-0ubuntu0.2 -libsystemd0237-3ubuntu10.53 -libtasn1-64.13-2 -libthai00.1.27-2 -libthai-data0.1.27-2 -libtheora01.1.1+dfsg.1-14 -libtiff54.0.9-5ubuntu0.4 -libtinfo56.1-1ubuntu1.18.04 -libtwolame00.3.13-3 -libudev1237-3ubuntu10.53 -libunistring20.9.9-0ubuntu2 -libuuid12.31.1-0.4ubuntu3.7 -libva22.1.0-3 -libva-drm22.1.0-3 -libva-x11-22.1.0-3 -libvdpau11.1.1-3ubuntu1 -libvorbis0a1.3.5-4.2 -libvorbisenc21.3.5-4.2 -libvorbisfile31.3.5-4.2 -libvpx51.7.0-3ubuntu0.18.04.1 -libwavpack15.1.0-2ubuntu1.5 -libwebp60.6.1-2ubuntu0.18.04.1 -libwebpmux30.6.1-2ubuntu0.18.04.1 -libwind0-heimdal7.5.0+dfsg-1 -libx11-62:1.6.4-3ubuntu0.4 -libx11-data2:1.6.4-3ubuntu0.4 -libx264-1522:0.152.2854+gite9a5903-2 -libx265-1462.6-3 -libxau61:1.0.8-1ubuntu1 -libxcb11.13-2~ubuntu18.04 -libxcb-render01.13-2~ubuntu18.04 -libxcb-shm01.13-2~ubuntu18.04 -libxdmcp61:1.1.2-3 -libxext62:1.3.3-1 -libxfixes31:5.0.3-1 -libxml22.9.4+dfsg1-6.1ubuntu1.4 -libxrender11:0.9.10-1 -libxvidcore42:1.3.5-1 -libzstd11.3.3+dfsg-2ubuntu1.2 -libzvbi00.2.35-13 -libzvbi-common0.2.35-13 -locales2.27-3ubuntu1.4 -login1:4.5-1ubuntu2.2 -lsb-base9.20170808ubuntu1 -mawk1.3.3-17ubuntu3 -mount2.31.1-0.4ubuntu3.7 -multiarch-support2.27-3ubuntu1.4 -ncurses-base6.1-1ubuntu1.18.04 -ncurses-bin6.1-1ubuntu1.18.04 -openssl1.1.1-1ubuntu2.1~18.04.14 -passwd1:4.5-1ubuntu2.2 -perl-base5.26.1-6ubuntu0.5 -procps2:3.3.12-3ubuntu1.2 -publicsuffix20180223.1310-1 -sed4.4-2 -sensible-utils0.0.12 -shared-mime-info1.9-2 -sysvinit-utils2.88dsf-59.10ubuntu1 -tar1.29b-2ubuntu0.2 -tzdata2021e-0ubuntu0.18.04 -ubuntu-keyring2018.09.18.1~18.04.2 -ucf3.0038 -util-linux2.31.1-0.4ubuntu3.7 -zlib1g1:1.2.11.dfsg-0ubuntu2 +alpine-baselayout-3.2.0-r18 +alpine-keys-2.4-r1 +alsa-lib-1.2.5.1-r1 +aom-libs-3.2.0-r0 +apk-tools-2.12.7-r3 +bash-5.1.8-r0 +brotli-libs-1.0.9-r5 +busybox-1.34.1-r4 +ca-certificates-20211220-r0 +ca-certificates-bundle-20211220-r0 +chromaprint-1.5.0-r0 +coreutils-9.0-r2 +curl-7.80.0-r0 +expat-2.4.4-r0 +ffmpeg-libs-4.4.1-r2 +fontconfig-2.13.1-r4 +freetype-2.11.0-r0 +fribidi-1.0.11-r0 +glib-2.70.1-r0 +gmp-6.2.1-r1 +gnutls-3.7.1-r0 +graphite2-1.3.14-r0 +harfbuzz-3.0.0-r2 +icu-libs-69.1-r1 +jq-1.6-r1 +lame-3.100-r0 +libacl-2.2.53-r0 +libass-0.15.2-r0 +libattr-2.5.1-r1 +libblkid-2.37.3-r0 +libbsd-0.11.3-r1 +libbz2-1.0.8-r1 +libc-utils-0.7.2-r3 +libcrypto1.1-1.1.1l-r8 +libcurl-7.80.0-r0 +libdav1d-0.9.2-r0 +libdrm-2.4.109-r0 +libffi-3.4.2-r1 +libgcc-10.3.1_git20211027-r0 +libgomp-10.3.1_git20211027-r0 +libintl-0.21-r0 +libjpeg-turbo-2.1.2-r0 +libmd-1.0.3-r0 +libmount-2.37.3-r0 +libogg-1.3.5-r0 +libpciaccess-0.16-r0 +libpng-1.6.37-r1 +libproc-3.3.17-r0 +libretls-3.3.4-r2 +libsrt-1.4.2-r1 +libssh-0.9.6-r1 +libssl1.1-1.1.1l-r8 +libstdc++-10.3.1_git20211027-r0 +libtasn1-4.18.0-r0 +libtheora-1.1.1-r16 +libunistring-0.9.10-r1 +libuuid-2.37.3-r0 +libva-2.13.0-r0 +libvdpau-1.4-r0 +libvorbis-1.3.7-r0 +libvpx-1.10.0-r0 +libwebp-1.2.2-r0 +libx11-1.7.2-r0 +libxau-1.0.9-r0 +libxcb-1.14-r2 +libxdmcp-1.1.3-r0 +libxext-1.3.4-r0 +libxfixes-6.0.0-r0 +linux-pam-1.5.2-r0 +musl-1.2.2-r7 +musl-utils-1.2.2-r7 +ncurses-libs-6.3_p20211120-r0 +ncurses-terminfo-base-6.3_p20211120-r0 +nettle-3.7.3-r0 +nghttp2-libs-1.46.0-r0 +oniguruma-6.9.7.1-r0 +opus-1.3.1-r1 +p11-kit-0.24.0-r1 +pcre-8.45-r1 +procps-3.3.17-r0 +readline-8.1.1-r0 +s6-ipcserver-2.11.0.0-r0 +scanelf-1.3.3-r0 +sdl2-2.0.16-r4 +shadow-4.8.1-r1 +skalibs-2.11.0.0-r0 +soxr-0.1.3-r2 +sqlite-libs-3.36.0-r0 +ssl_client-1.34.1-r4 +tzdata-2021e-r0 +utmps-0.1.0.3-r0 +v4l-utils-libs-1.22.1-r1 +vidstab-1.1.0-r1 +vulkan-loader-1.2.196-r0 +wayland-libs-client-1.19.0-r1 +x264-libs-20210613-r0 +x265-libs-3.5-r0 +xvidcore-1.3.7-r1 +xz-5.2.5-r0 +xz-libs-5.2.5-r0 +zlib-1.2.11-r3 From 0b9e6fd62860b6e37fe26c27b4f5c9a8d834b066 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 16 Feb 2022 21:34:44 +0100 Subject: [PATCH 177/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e1f13b9e..dd8e1ffc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -27,7 +27,7 @@ lame-3.100-r0 libacl-2.2.53-r0 libass-0.15.2-r0 libattr-2.5.1-r1 -libblkid-2.37.3-r0 +libblkid-2.37.4-r0 libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 @@ -41,7 +41,7 @@ libgomp-10.3.1_git20211027-r0 libintl-0.21-r0 libjpeg-turbo-2.1.2-r0 libmd-1.0.3-r0 -libmount-2.37.3-r0 +libmount-2.37.4-r0 libogg-1.3.5-r0 libpciaccess-0.16-r0 libpng-1.6.37-r1 @@ -54,7 +54,7 @@ libstdc++-10.3.1_git20211027-r0 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 libunistring-0.9.10-r1 -libuuid-2.37.3-r0 +libuuid-2.37.4-r0 libva-2.13.0-r0 libvdpau-1.4-r0 libvorbis-1.3.7-r0 From 4817332ab526f9a5b84a908db68ccb8a6b595a60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 22 Feb 2022 03:44:52 +0100 Subject: [PATCH 178/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dd8e1ffc..fb608d17 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 curl-7.80.0-r0 -expat-2.4.4-r0 +expat-2.4.5-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 freetype-2.11.0-r0 From a9055d96bb5645d95c8da0778b3cbb6a54de6ac4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 26 Feb 2022 15:59:46 +0100 Subject: [PATCH 179/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fb608d17..be805cec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ alpine-keys-2.4-r1 alsa-lib-1.2.5.1-r1 aom-libs-3.2.0-r0 apk-tools-2.12.7-r3 -bash-5.1.8-r0 +bash-5.1.16-r0 brotli-libs-1.0.9-r5 busybox-1.34.1-r4 ca-certificates-20211220-r0 From 8bb6d277fae749023a0413a40c93367ca9ee7b8d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 5 Mar 2022 16:00:15 +0100 Subject: [PATCH 180/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index be805cec..b741d5b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 curl-7.80.0-r0 -expat-2.4.5-r0 +expat-2.4.6-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 freetype-2.11.0-r0 From a85a13cca39079d41cb8f979637a2e92fee9a89b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 7 Mar 2022 06:32:06 +0100 Subject: [PATCH 181/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b741d5b9..6e30de03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 curl-7.80.0-r0 -expat-2.4.6-r0 +expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 freetype-2.11.0-r0 From 3e059e7761e2e9df323af43c4a8d62187fc36a41 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Mon, 7 Mar 2022 17:50:28 +0000 Subject: [PATCH 182/790] Remove alpine warning --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Dockerfile.armhf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 2509de95..386065d5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 97444880..6a61f38c 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 7d3ba33d..1b393f5d 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -31,7 +31,7 @@ RUN \ tar xzf \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)\nPackageGlobalMessage=Warn: This image is now based on Alpine. Custom scripts using apt-get will need to be updated to use apk" > /app/lidarr/package_info && \ + echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ From c6862538d32da2846fb8218cfd9331c75728336a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Mar 2022 15:59:52 +0100 Subject: [PATCH 183/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6e30de03..068922b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ libblkid-2.37.4-r0 libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1l-r8 +libcrypto1.1-1.1.1n-r0 libcurl-7.80.0-r0 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 @@ -46,10 +46,10 @@ libogg-1.3.5-r0 libpciaccess-0.16-r0 libpng-1.6.37-r1 libproc-3.3.17-r0 -libretls-3.3.4-r2 +libretls-3.3.4-r3 libsrt-1.4.2-r1 libssh-0.9.6-r1 -libssl1.1-1.1.1l-r8 +libssl1.1-1.1.1n-r0 libstdc++-10.3.1_git20211027-r0 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 From b996e5fa3193bb706609dcd4541a0cb1c5aa62e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 23 Mar 2022 21:03:34 -0500 Subject: [PATCH 184/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 068922b0..5fc61919 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -87,7 +87,7 @@ skalibs-2.11.0.0-r0 soxr-0.1.3-r2 sqlite-libs-3.36.0-r0 ssl_client-1.34.1-r4 -tzdata-2021e-r0 +tzdata-2022a-r0 utmps-0.1.0.3-r0 v4l-utils-libs-1.22.1-r1 vidstab-1.1.0-r1 From 0960fedd2cb723ffd2459b17a3931765e21942f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 30 Mar 2022 04:09:18 +0200 Subject: [PATCH 185/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5fc61919..2efaf583 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ curl-7.80.0-r0 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 -freetype-2.11.0-r0 +freetype-2.11.1-r0 fribidi-1.0.11-r0 glib-2.70.1-r0 gmp-6.2.1-r1 @@ -98,4 +98,4 @@ x265-libs-3.5-r0 xvidcore-1.3.7-r1 xz-5.2.5-r0 xz-libs-5.2.5-r0 -zlib-1.2.11-r3 +zlib-1.2.12-r0 From 28f8c326261757a7fc1d84a5f19444b6e6429a34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 8 Apr 2022 22:05:05 -0500 Subject: [PATCH 186/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2efaf583..b69ca39a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ aom-libs-3.2.0-r0 apk-tools-2.12.7-r3 bash-5.1.16-r0 brotli-libs-1.0.9-r5 -busybox-1.34.1-r4 +busybox-1.34.1-r5 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 @@ -86,7 +86,7 @@ shadow-4.8.1-r1 skalibs-2.11.0.0-r0 soxr-0.1.3-r2 sqlite-libs-3.36.0-r0 -ssl_client-1.34.1-r4 +ssl_client-1.34.1-r5 tzdata-2022a-r0 utmps-0.1.0.3-r0 v4l-utils-libs-1.22.1-r1 From f9e025f6a99f57df0dac5c46db513f2ff544623d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 14 Apr 2022 08:44:54 -0500 Subject: [PATCH 187/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b69ca39a..bb846c42 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -96,6 +96,6 @@ wayland-libs-client-1.19.0-r1 x264-libs-20210613-r0 x265-libs-3.5-r0 xvidcore-1.3.7-r1 -xz-5.2.5-r0 -xz-libs-5.2.5-r0 +xz-5.2.5-r1 +xz-libs-5.2.5-r1 zlib-1.2.12-r0 From 59675d6a50a70c71547bccec5d89db21a19e4d13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 29 Apr 2022 13:34:34 +0200 Subject: [PATCH 188/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bb846c42..6cad4acf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 -curl-7.80.0-r0 +curl-7.80.0-r1 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 @@ -32,7 +32,7 @@ libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1n-r0 -libcurl-7.80.0-r0 +libcurl-7.80.0-r1 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 libffi-3.4.2-r1 @@ -98,4 +98,4 @@ x265-libs-3.5-r0 xvidcore-1.3.7-r1 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r0 +zlib-1.2.12-r1 From 162ccd793bedd45f4d9e5b34945a5660e4c7e62e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Apr 2022 04:30:06 +0200 Subject: [PATCH 189/790] Bot Updating Templated Files --- Jenkinsfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4c846b75..83593fa4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -343,9 +343,11 @@ pipeline { if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then cd ${TEMPDIR}/unraid/templates/ if grep -wq "${CONTAINER_NAME}" ${TEMPDIR}/unraid/templates/unraid/ignore.list; then - echo "Image is on the ignore list, removing Unraid template" - git rm unraid/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Removing Deprecated Unraid Template' || : + 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 unraid/${CONTAINER_NAME}.xml + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : else cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ git add unraid/${CONTAINER_NAME}.xml From 3ab4d6a581d1f03aaa5a601297eb6bacf3246fd9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Apr 2022 04:31:18 +0200 Subject: [PATCH 190/790] Bot Updating Templated Files --- README.md | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/README.md b/README.md index 126a03e2..8faa66d1 100644 --- a/README.md +++ b/README.md @@ -46,26 +46,26 @@ Find us at: ## Supported Architectures -Our images support multiple architectures such as `x86-64`, `arm64` and `armhf`. We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). -Simply pulling `lscr.io/linuxserver/lidarr` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. +Simply pulling `lscr.io/linuxserver/lidarr:nightly` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. The architectures supported by this image are: -| Architecture | Tag | -| :----: | --- | -| x86-64 | amd64-latest | -| arm64 | arm64v8-latest | -| armhf | arm32v7-latest | +| Architecture | Available | Tag | +| :----: | :----: | ---- | +| x86-64 | ✅ | amd64-\ | +| arm64 | ✅ | arm64v8-\ | +| armhf| ✅ | arm32v7-\ | ## Version Tags -This image provides various versions that are available via tags. `latest` tag usually provides the latest stable version. Others are considered under development and caution must be exercised when using them. +This image provides various versions that are available via tags. Please read the descriptions carefully and exercise caution when using unstable or development tags. -| Tag | Description | -| :----: | --- | -| latest | Stable Lidarr releases. | -| nightly | Nightly Lidarr Releases. | +| Tag | Available | Description | +| :----: | :----: |--- | +| latest | ✅ | Stable Lidarr releases. | +| nightly | ✅ | Nightly Lidarr Releases. | ## Application Setup @@ -94,7 +94,7 @@ Here are some example snippets to help you get started creating a container. version: "2.1" services: lidarr: - image: lscr.io/linuxserver/lidarr + image: lscr.io/linuxserver/lidarr:nightly container_name: lidarr environment: - PUID=1000 @@ -122,7 +122,7 @@ docker run -d \ -v /path/to/music:/music `#optional` \ -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ - lscr.io/linuxserver/lidarr + lscr.io/linuxserver/lidarr:nightly ``` ## Parameters @@ -182,7 +182,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to * container version number * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` * image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/lidarr` + * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/lidarr:nightly` ## Updating Info @@ -200,7 +200,7 @@ Below are the instructions for updating containers: ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/lidarr` +* Update the image: `docker pull lscr.io/linuxserver/lidarr:nightly` * Stop the running container: `docker stop lidarr` * Delete the container: `docker rm lidarr` * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) @@ -235,7 +235,7 @@ cd docker-lidarr docker build \ --no-cache \ --pull \ - -t lscr.io/linuxserver/lidarr:latest . + -t lscr.io/linuxserver/lidarr:nightly . ``` The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` From 452ea09dc3b11e58d39c14dbc4bcd105698584df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 3 May 2022 06:03:37 +0200 Subject: [PATCH 191/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 83593fa4..c7b96213 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -345,7 +345,7 @@ pipeline { if 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 unraid/${CONTAINER_NAME}.xml + git add -u unraid/${CONTAINER_NAME}.xml git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : git commit -m 'Bot Moving Deprecated Unraid Template' || : else From d9335c084632b98ce2b485ebbf6ced912ce651c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 6 May 2022 16:35:04 +0200 Subject: [PATCH 192/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6cad4acf..135b4210 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ curl-7.80.0-r1 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 -freetype-2.11.1-r0 +freetype-2.11.1-r1 fribidi-1.0.11-r0 glib-2.70.1-r0 gmp-6.2.1-r1 From 89e39dcd6384da462fcd38f375bf73d74d824ee3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 14 May 2022 17:00:07 +0200 Subject: [PATCH 193/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 135b4210..f9b0032c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,7 +31,7 @@ libblkid-2.37.4-r0 libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1n-r0 +libcrypto1.1-1.1.1o-r0 libcurl-7.80.0-r1 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 @@ -49,7 +49,7 @@ libproc-3.3.17-r0 libretls-3.3.4-r3 libsrt-1.4.2-r1 libssh-0.9.6-r1 -libssl1.1-1.1.1n-r0 +libssl1.1-1.1.1o-r0 libstdc++-10.3.1_git20211027-r0 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 From 64199686092afeeea6cf144ae19cc35635da6ca3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 21 May 2022 16:59:50 +0200 Subject: [PATCH 194/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f9b0032c..35abae2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ curl-7.80.0-r1 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 -freetype-2.11.1-r1 +freetype-2.11.1-r2 fribidi-1.0.11-r0 glib-2.70.1-r0 gmp-6.2.1-r1 From 06fa31c7315a7eb8430a3cf41c74e125345567bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 2 Jul 2022 17:00:12 +0200 Subject: [PATCH 195/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 35abae2e..bd392517 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 -curl-7.80.0-r1 +curl-7.80.0-r2 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 @@ -31,8 +31,8 @@ libblkid-2.37.4-r0 libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1o-r0 -libcurl-7.80.0-r1 +libcrypto1.1-1.1.1p-r0 +libcurl-7.80.0-r2 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 libffi-3.4.2-r1 @@ -49,7 +49,7 @@ libproc-3.3.17-r0 libretls-3.3.4-r3 libsrt-1.4.2-r1 libssh-0.9.6-r1 -libssl1.1-1.1.1o-r0 +libssl1.1-1.1.1p-r0 libstdc++-10.3.1_git20211027-r0 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 From ab824dc6b569604a6d9f77b730339c43acb6f7d6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Tue, 5 Jul 2022 23:28:47 -0500 Subject: [PATCH 196/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bd392517..fc144f87 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ aom-libs-3.2.0-r0 apk-tools-2.12.7-r3 bash-5.1.16-r0 brotli-libs-1.0.9-r5 -busybox-1.34.1-r5 +busybox-1.34.1-r6 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 @@ -31,7 +31,7 @@ libblkid-2.37.4-r0 libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1p-r0 +libcrypto1.1-1.1.1q-r0 libcurl-7.80.0-r2 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 @@ -49,7 +49,7 @@ libproc-3.3.17-r0 libretls-3.3.4-r3 libsrt-1.4.2-r1 libssh-0.9.6-r1 -libssl1.1-1.1.1p-r0 +libssl1.1-1.1.1q-r0 libstdc++-10.3.1_git20211027-r0 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 @@ -86,7 +86,7 @@ shadow-4.8.1-r1 skalibs-2.11.0.0-r0 soxr-0.1.3-r2 sqlite-libs-3.36.0-r0 -ssl_client-1.34.1-r5 +ssl_client-1.34.1-r6 tzdata-2022a-r0 utmps-0.1.0.3-r0 v4l-utils-libs-1.22.1-r1 From 8ed0eddf4ff4305a40e801969050f8b64aa1d40f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 23 Jul 2022 10:00:09 -0500 Subject: [PATCH 197/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fc144f87..953fb393 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ aom-libs-3.2.0-r0 apk-tools-2.12.7-r3 bash-5.1.16-r0 brotli-libs-1.0.9-r5 -busybox-1.34.1-r6 +busybox-1.34.1-r7 ca-certificates-20211220-r0 ca-certificates-bundle-20211220-r0 chromaprint-1.5.0-r0 @@ -69,8 +69,8 @@ libxfixes-6.0.0-r0 linux-pam-1.5.2-r0 musl-1.2.2-r7 musl-utils-1.2.2-r7 -ncurses-libs-6.3_p20211120-r0 -ncurses-terminfo-base-6.3_p20211120-r0 +ncurses-libs-6.3_p20211120-r1 +ncurses-terminfo-base-6.3_p20211120-r1 nettle-3.7.3-r0 nghttp2-libs-1.46.0-r0 oniguruma-6.9.7.1-r0 @@ -86,7 +86,7 @@ shadow-4.8.1-r1 skalibs-2.11.0.0-r0 soxr-0.1.3-r2 sqlite-libs-3.36.0-r0 -ssl_client-1.34.1-r6 +ssl_client-1.34.1-r7 tzdata-2022a-r0 utmps-0.1.0.3-r0 v4l-utils-libs-1.22.1-r1 From 05f60f09c299064040cd8da41d173d44adbd70eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 30 Jul 2022 17:00:04 +0200 Subject: [PATCH 198/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 953fb393..05f0c5c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -18,7 +18,7 @@ freetype-2.11.1-r2 fribidi-1.0.11-r0 glib-2.70.1-r0 gmp-6.2.1-r1 -gnutls-3.7.1-r0 +gnutls-3.7.1-r1 graphite2-1.3.14-r0 harfbuzz-3.0.0-r2 icu-libs-69.1-r1 From f666292fbd315050e15906744f201e8c16bb2f15 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Wed, 3 Aug 2022 08:55:14 -0500 Subject: [PATCH 199/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 05f0c5c9..20d00caa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -6,8 +6,8 @@ apk-tools-2.12.7-r3 bash-5.1.16-r0 brotli-libs-1.0.9-r5 busybox-1.34.1-r7 -ca-certificates-20211220-r0 -ca-certificates-bundle-20211220-r0 +ca-certificates-20220614-r0 +ca-certificates-bundle-20220614-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 curl-7.80.0-r2 From 5b3b35424d72016f491fc11916ce1869daf90341 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 6 Aug 2022 09:59:48 -0500 Subject: [PATCH 200/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 20d00caa..f5c728f5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -98,4 +98,4 @@ x265-libs-3.5-r0 xvidcore-1.3.7-r1 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r1 +zlib-1.2.12-r2 From d7c658d0e28d4a48286a99bd9e68dbcf8c9d36e5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 13 Aug 2022 10:00:09 -0500 Subject: [PATCH 201/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f5c728f5..454f5051 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -98,4 +98,4 @@ x265-libs-3.5-r0 xvidcore-1.3.7-r1 xz-5.2.5-r1 xz-libs-5.2.5-r1 -zlib-1.2.12-r2 +zlib-1.2.12-r3 From 1dd5428d795166e9cc93e52f4dc13e33e3327636 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 27 Aug 2022 16:59:54 +0200 Subject: [PATCH 202/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 454f5051..bc5f4d20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -87,7 +87,7 @@ skalibs-2.11.0.0-r0 soxr-0.1.3-r2 sqlite-libs-3.36.0-r0 ssl_client-1.34.1-r7 -tzdata-2022a-r0 +tzdata-2022c-r0 utmps-0.1.0.3-r0 v4l-utils-libs-1.22.1-r1 vidstab-1.1.0-r1 From f24dd8e8c34b8febe85c4d221f1d7c3d2366257a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 3 Sep 2022 10:00:26 -0500 Subject: [PATCH 203/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bc5f4d20..4bfd00db 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -10,7 +10,7 @@ ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 -curl-7.80.0-r2 +curl-7.80.0-r3 expat-2.4.7-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 @@ -32,7 +32,7 @@ libbsd-0.11.3-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1q-r0 -libcurl-7.80.0-r2 +libcurl-7.80.0-r3 libdav1d-0.9.2-r0 libdrm-2.4.109-r0 libffi-3.4.2-r1 From b5850b3f49f3351e8a7eeef825c2c6551926c83a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 17 Sep 2022 16:59:25 +0200 Subject: [PATCH 204/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index c7b96213..f6309703 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -710,7 +710,7 @@ pipeline { -e DO_REGION="ams3" \ -e DO_BUCKET="lsio-ci" \ -t ghcr.io/linuxserver/ci:latest \ - python /ci/ci.py''' + python3 test_build.py''' } } } From 94d8c2732bca9c7b96a6b02671c5638f631cd5e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 23 Sep 2022 05:19:14 +0200 Subject: [PATCH 205/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4bfd00db..c4348f5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-bundle-20220614-r0 chromaprint-1.5.0-r0 coreutils-9.0-r2 curl-7.80.0-r3 -expat-2.4.7-r0 +expat-2.4.9-r0 ffmpeg-libs-4.4.1-r2 fontconfig-2.13.1-r4 freetype-2.11.1-r2 From 3f0bdffb3cbb22da508e770659464c700d559a84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 14 Oct 2022 23:58:12 -0500 Subject: [PATCH 206/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c4348f5e..60c76510 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -60,7 +60,7 @@ libvdpau-1.4-r0 libvorbis-1.3.7-r0 libvpx-1.10.0-r0 libwebp-1.2.2-r0 -libx11-1.7.2-r0 +libx11-1.7.3.1-r0 libxau-1.0.9-r0 libxcb-1.14-r2 libxdmcp-1.1.3-r0 From 377aefea18e5d9876139df45b89d30cde39ec1a5 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 18:55:08 +0100 Subject: [PATCH 207/790] Rebase nightly to 3.16, migrate to s6v3 --- Dockerfile | 5 ++--- Dockerfile.aarch64 | 5 ++--- Dockerfile.armhf | 5 ++--- README.md | 2 ++ readme-vars.yml | 2 ++ .../init-config-end/dependencies.d/init-lidarr-config | 0 .../s6-rc.d/init-lidarr-config/dependencies.d/init-config | 0 root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run | 5 +++++ root/etc/s6-overlay/s6-rc.d/init-lidarr-config/type | 1 + root/etc/s6-overlay/s6-rc.d/init-lidarr-config/up | 1 + .../s6-rc.d/svc-lidarr/dependencies.d/init-services | 0 root/etc/s6-overlay/s6-rc.d/svc-lidarr/notification-fd | 1 + root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 6 ++++++ root/etc/s6-overlay/s6-rc.d/svc-lidarr/type | 1 + .../s6-overlay/s6-rc.d/user/contents.d/init-lidarr-config | 0 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-lidarr | 0 root/etc/services.d/lidarr/run | 0 17 files changed, 25 insertions(+), 9 deletions(-) create mode 100644 root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-lidarr-config create mode 100644 root/etc/s6-overlay/s6-rc.d/init-lidarr-config/dependencies.d/init-config create mode 100755 root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run create mode 100644 root/etc/s6-overlay/s6-rc.d/init-lidarr-config/type create mode 100644 root/etc/s6-overlay/s6-rc.d/init-lidarr-config/up create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-lidarr/dependencies.d/init-services create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-lidarr/notification-fd create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-lidarr/run create mode 100644 root/etc/s6-overlay/s6-rc.d/svc-lidarr/type create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/init-lidarr-config create mode 100644 root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-lidarr mode change 100644 => 100755 root/etc/services.d/lidarr/run diff --git a/Dockerfile b/Dockerfile index 386065d5..c64d8006 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.15 +FROM ghcr.io/linuxserver/baseimage-alpine:3.16 # set version label ARG BUILD_DATE @@ -14,8 +14,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ apk add -U --upgrade --no-cache \ - curl \ - jq \ chromaprint \ icu-libs \ sqlite-libs && \ @@ -43,4 +41,5 @@ COPY root/ / # ports and volumes EXPOSE 8686 + VOLUME /config diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 6a61f38c..57c4ce76 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.15 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 # set version label ARG BUILD_DATE @@ -14,8 +14,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ apk add -U --upgrade --no-cache \ - curl \ - jq \ chromaprint \ icu-libs \ sqlite-libs && \ @@ -43,4 +41,5 @@ COPY root/ / # ports and volumes EXPOSE 8686 + VOLUME /config diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 1b393f5d..165f498b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,4 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.15 +FROM ghcr.io/linuxserver/baseimage-alpine:3.16 # set version label ARG BUILD_DATE @@ -14,8 +14,6 @@ ENV XDG_CONFIG_HOME="/config/xdg" RUN \ echo "**** install packages ****" && \ apk add -U --upgrade --no-cache \ - curl \ - jq \ chromaprint \ icu-libs \ sqlite-libs && \ @@ -43,4 +41,5 @@ COPY root/ / # ports and volumes EXPOSE 8686 + VOLUME /config diff --git a/README.md b/README.md index 8faa66d1..9aff1fef 100644 --- a/README.md +++ b/README.md @@ -65,6 +65,7 @@ This image provides various versions that are available via tags. Please read th | Tag | Available | Description | | :----: | :----: |--- | | latest | ✅ | Stable Lidarr releases. | +| develop | ✅ | Develop Lidarr Releases. | | nightly | ✅ | Nightly Lidarr Releases. | ## Application Setup @@ -248,6 +249,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **27.10.22:** - Rebase nightly Alpine 3.16, migrate to s6v3. * **04.02.22:** - Rebase nightly branch to Alpine. * **30.12.21:** - Add nightly-alpine branch. * **01.08.21:** - Add libchromaprint-tools. diff --git a/readme-vars.yml b/readme-vars.yml index a8f54f42..9cc50893 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -17,6 +17,7 @@ available_architectures: development_versions: true development_versions_items: - { tag: "latest", desc: "Stable Lidarr releases." } + - { tag: "develop", desc: "Develop Lidarr Releases." } - { tag: "nightly", desc: "Nightly Lidarr Releases." } # container parameters @@ -58,6 +59,7 @@ app_setup_block: | # changelog changelogs: + - { date: "27.10.22:", desc: "Rebase nightly Alpine 3.16, migrate to s6v3." } - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } - { date: "30.12.21:", desc: "Add nightly-alpine branch." } - { date: "01.08.21:", desc: "Add libchromaprint-tools." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-lidarr-config b/root/etc/s6-overlay/s6-rc.d/init-config-end/dependencies.d/init-lidarr-config new file mode 100644 index 00000000..e69de29b diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/dependencies.d/init-config b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/dependencies.d/init-config new file mode 100644 index 00000000..e69de29b diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run new file mode 100755 index 00000000..05c47079 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run @@ -0,0 +1,5 @@ +#!/usr/bin/with-contenv bash + +# permissions +chown -R abc:abc \ + /config diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/type b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/type new file mode 100644 index 00000000..bdd22a18 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/type @@ -0,0 +1 @@ +oneshot diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/up b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/up new file mode 100644 index 00000000..3a838dac --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/up @@ -0,0 +1 @@ +/etc/s6-overlay/s6-rc.d/init-lidarr-config/run diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/dependencies.d/init-services b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/dependencies.d/init-services new file mode 100644 index 00000000..e69de29b diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/notification-fd b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/notification-fd new file mode 100644 index 00000000..00750edc --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/notification-fd @@ -0,0 +1 @@ +3 diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run new file mode 100755 index 00000000..a9cce0b0 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -0,0 +1,6 @@ +#!/usr/bin/with-contenv bash + +exec \ + s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8686" \ + cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ + -nobrowser -data=/config diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/type b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/type new file mode 100644 index 00000000..5883cff0 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/type @@ -0,0 +1 @@ +longrun diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-lidarr-config b/root/etc/s6-overlay/s6-rc.d/user/contents.d/init-lidarr-config new file mode 100644 index 00000000..e69de29b diff --git a/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-lidarr b/root/etc/s6-overlay/s6-rc.d/user/contents.d/svc-lidarr new file mode 100644 index 00000000..e69de29b diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run old mode 100644 new mode 100755 From 514da7f43d07f07226f0cec858db44346cf0d653 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 18:55:53 +0100 Subject: [PATCH 208/790] Delete legacy folders --- root/etc/cont-init.d/30-config | 5 ----- root/etc/services.d/lidarr/run | 10 ---------- 2 files changed, 15 deletions(-) delete mode 100644 root/etc/cont-init.d/30-config delete mode 100755 root/etc/services.d/lidarr/run diff --git a/root/etc/cont-init.d/30-config b/root/etc/cont-init.d/30-config deleted file mode 100644 index 05c47079..00000000 --- a/root/etc/cont-init.d/30-config +++ /dev/null @@ -1,5 +0,0 @@ -#!/usr/bin/with-contenv bash - -# permissions -chown -R abc:abc \ - /config diff --git a/root/etc/services.d/lidarr/run b/root/etc/services.d/lidarr/run deleted file mode 100755 index 4ea5359c..00000000 --- a/root/etc/services.d/lidarr/run +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/with-contenv bash - -if [ -n "${UMASK_SET}" ] && [ -z "${UMASK}" ]; then - echo -e "You are using a legacy method of defining umask\nplease update your environment variable from UMASK_SET to UMASK\nto keep the functionality after July 2021" - umask ${UMASK_SET} -fi - -exec \ - s6-setuidgid abc /app/lidarr/bin/Lidarr \ - -nobrowser -data=/config From 73270a773ccc8eca834ce3887150db1772ca81a6 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 18:56:40 +0100 Subject: [PATCH 209/790] Fix changelog typo --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 9cc50893..83dcf9ef 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -59,7 +59,7 @@ app_setup_block: | # changelog changelogs: - - { date: "27.10.22:", desc: "Rebase nightly Alpine 3.16, migrate to s6v3." } + - { date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3." } - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } - { date: "30.12.21:", desc: "Add nightly-alpine branch." } - { date: "01.08.21:", desc: "Add libchromaprint-tools." } From e1b46b0b2ee377195ae749239dbeb120acd54bf7 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 27 Oct 2022 20:29:55 +0100 Subject: [PATCH 210/790] Update CI path --- jenkins-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index ba608b51..f88d59bf 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -23,6 +23,6 @@ repo_vars: - CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' - - CI_WEBPATH='' + - CI_WEBPATH='/system/status' sponsor_links: - { name: "Lidarr", url: "https://opencollective.com/lidarr" } From d620b7fa2d46d498072b466eadb970cccbb08c62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 29 Oct 2022 06:48:13 +0200 Subject: [PATCH 211/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index f6309703..06fd7a9b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -33,7 +33,7 @@ pipeline { CI_DELAY='120' CI_DOCKERENV='TZ=US/Pacific' CI_AUTH='user:password' - CI_WEBPATH='' + CI_WEBPATH='/system/status' } stages { // Setup all the basic environment variables needed for the build From d4d390e4b5bc72d40736cd3462d5f17d5b5f936f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 23:49:44 -0500 Subject: [PATCH 212/790] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9aff1fef..55d94378 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions -* **27.10.22:** - Rebase nightly Alpine 3.16, migrate to s6v3. +* **27.10.22:** - Rebase nightly to Alpine 3.16, migrate to s6v3. * **04.02.22:** - Rebase nightly branch to Alpine. * **30.12.21:** - Add nightly-alpine branch. * **01.08.21:** - Add libchromaprint-tools. From ffc44f58bf4e192bb782758fe509de2b7d983306 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 28 Oct 2022 23:52:55 -0500 Subject: [PATCH 213/790] Bot Updating Package Versions --- package_versions.txt | 145 +++++++++++++++++++++++-------------------- 1 file changed, 76 insertions(+), 69 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 60c76510..4866f3e2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,100 +1,107 @@ -alpine-baselayout-3.2.0-r18 +alpine-baselayout-3.2.0-r23 +alpine-baselayout-data-3.2.0-r23 alpine-keys-2.4-r1 -alsa-lib-1.2.5.1-r1 -aom-libs-3.2.0-r0 -apk-tools-2.12.7-r3 -bash-5.1.16-r0 -brotli-libs-1.0.9-r5 -busybox-1.34.1-r7 +alsa-lib-1.2.7.2-r0 +aom-libs-3.3.0-r0 +apk-tools-2.12.9-r3 +bash-5.1.16-r2 +brotli-libs-1.0.9-r6 +busybox-1.35.0-r17 ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 -chromaprint-1.5.0-r0 -coreutils-9.0-r2 -curl-7.80.0-r3 -expat-2.4.9-r0 -ffmpeg-libs-4.4.1-r2 -fontconfig-2.13.1-r4 -freetype-2.11.1-r2 -fribidi-1.0.11-r0 -glib-2.70.1-r0 -gmp-6.2.1-r1 -gnutls-3.7.1-r1 -graphite2-1.3.14-r0 -harfbuzz-3.0.0-r2 -icu-libs-69.1-r1 +chromaprint-1.5.1-r1 +coreutils-9.1-r0 +curl-7.83.1-r3 +dbus-libs-1.14.4-r0 +expat-2.5.0-r0 +ffmpeg4-libs-4.4.1-r3 +flac-1.3.4-r0 +fontconfig-2.14.0-r0 +freetype-2.12.1-r0 +fribidi-1.0.12-r0 +glib-2.72.1-r0 +gmp-6.2.1-r2 +gnutls-3.7.7-r0 +graphite2-1.3.14-r1 +harfbuzz-4.3.0-r0 +icu-data-en-71.1-r2 +icu-libs-71.1-r2 jq-1.6-r1 lame-3.100-r0 -libacl-2.2.53-r0 -libass-0.15.2-r0 +libacl-2.3.1-r0 +libass-0.16.0-r0 +libasyncns-0.8-r1 libattr-2.5.1-r1 -libblkid-2.37.4-r0 -libbsd-0.11.3-r1 +libblkid-2.38-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 libcrypto1.1-1.1.1q-r0 -libcurl-7.80.0-r3 -libdav1d-0.9.2-r0 -libdrm-2.4.109-r0 +libcurl-7.83.1-r3 +libdav1d-1.0.0-r0 +libdrm-2.4.110-r0 libffi-3.4.2-r1 -libgcc-10.3.1_git20211027-r0 -libgomp-10.3.1_git20211027-r0 -libintl-0.21-r0 -libjpeg-turbo-2.1.2-r0 -libmd-1.0.3-r0 -libmount-2.37.4-r0 -libogg-1.3.5-r0 +libgcc-11.2.1_git20220219-r2 +libgomp-11.2.1_git20220219-r2 +libintl-0.21-r2 +libjpeg-turbo-2.1.3-r1 +libltdl-2.4.7-r0 +libmount-2.38-r1 +libogg-1.3.5-r1 libpciaccess-0.16-r0 libpng-1.6.37-r1 -libproc-3.3.17-r0 -libretls-3.3.4-r3 -libsrt-1.4.2-r1 +libproc-3.3.17-r1 +libpulse-15.0-r2 +libsndfile-1.1.0-r0 +libsrt-1.4.4-r0 libssh-0.9.6-r1 libssl1.1-1.1.1q-r0 -libstdc++-10.3.1_git20211027-r0 +libstdc++-11.2.1_git20220219-r2 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 -libunistring-0.9.10-r1 -libuuid-2.37.4-r0 -libva-2.13.0-r0 -libvdpau-1.4-r0 +libunistring-1.0-r0 +libva-2.14.0-r0 +libvdpau-1.5-r0 libvorbis-1.3.7-r0 -libvpx-1.10.0-r0 -libwebp-1.2.2-r0 -libx11-1.7.3.1-r0 +libvpx-1.11.0-r1 +libwebp-1.2.3-r0 +libx11-1.8-r0 libxau-1.0.9-r0 -libxcb-1.14-r2 +libxcb-1.15-r0 libxdmcp-1.1.3-r0 libxext-1.3.4-r0 libxfixes-6.0.0-r0 linux-pam-1.5.2-r0 -musl-1.2.2-r7 -musl-utils-1.2.2-r7 -ncurses-libs-6.3_p20211120-r1 -ncurses-terminfo-base-6.3_p20211120-r1 +musl-1.2.3-r0 +musl-utils-1.2.3-r0 +ncurses-libs-6.3_p20220521-r0 +ncurses-terminfo-base-6.3_p20220521-r0 nettle-3.7.3-r0 -nghttp2-libs-1.46.0-r0 -oniguruma-6.9.7.1-r0 +nghttp2-libs-1.47.0-r0 +numactl-2.0.14-r0 +oniguruma-6.9.8-r0 opus-1.3.1-r1 -p11-kit-0.24.0-r1 -pcre-8.45-r1 -procps-3.3.17-r0 -readline-8.1.1-r0 -s6-ipcserver-2.11.0.0-r0 -scanelf-1.3.3-r0 -sdl2-2.0.16-r4 -shadow-4.8.1-r1 -skalibs-2.11.0.0-r0 +orc-0.4.32-r0 +p11-kit-0.24.1-r0 +pcre-8.45-r2 +procps-3.3.17-r1 +readline-8.1.2-r0 +scanelf-1.3.4-r0 +sdl2-2.0.22-r0 +shadow-4.10-r3 +skalibs-2.11.2.0-r0 soxr-0.1.3-r2 -sqlite-libs-3.36.0-r0 -ssl_client-1.34.1-r7 +speexdsp-1.2.0-r0 +sqlite-libs-3.38.5-r0 +ssl_client-1.35.0-r17 +tdb-libs-1.4.6-r0 tzdata-2022c-r0 -utmps-0.1.0.3-r0 +utmps-libs-0.1.2.0-r0 v4l-utils-libs-1.22.1-r1 vidstab-1.1.0-r1 -vulkan-loader-1.2.196-r0 -wayland-libs-client-1.19.0-r1 -x264-libs-20210613-r0 -x265-libs-3.5-r0 +vulkan-loader-1.3.206-r0 +wayland-libs-client-1.20.0-r0 +x264-libs-0.163_git20210613-r0 +x265-libs-3.5-r3 xvidcore-1.3.7-r1 xz-5.2.5-r1 xz-libs-5.2.5-r1 From b1c4381d28560e9e9d7693bec141489278845d4c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Thu, 3 Nov 2022 14:16:51 +0100 Subject: [PATCH 214/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4866f3e2..130aed53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,7 +11,7 @@ ca-certificates-20220614-r0 ca-certificates-bundle-20220614-r0 chromaprint-1.5.1-r1 coreutils-9.1-r0 -curl-7.83.1-r3 +curl-7.83.1-r4 dbus-libs-1.14.4-r0 expat-2.5.0-r0 ffmpeg4-libs-4.4.1-r3 @@ -35,8 +35,8 @@ libattr-2.5.1-r1 libblkid-2.38-r1 libbz2-1.0.8-r1 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1q-r0 -libcurl-7.83.1-r3 +libcrypto1.1-1.1.1s-r0 +libcurl-7.83.1-r4 libdav1d-1.0.0-r0 libdrm-2.4.110-r0 libffi-3.4.2-r1 From dffc4980d5ce37609ac1f398c359ff54dcd5076e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Fri, 4 Nov 2022 21:40:36 +0100 Subject: [PATCH 215/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 130aed53..9161cb4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -71,7 +71,7 @@ libxdmcp-1.1.3-r0 libxext-1.3.4-r0 libxfixes-6.0.0-r0 linux-pam-1.5.2-r0 -musl-1.2.3-r0 +musl-1.2.3-r1 musl-utils-1.2.3-r0 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 From eabff78d83c81d32366595f1b288dc4606c463ff Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Nov 2022 14:59:29 +0000 Subject: [PATCH 216/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 4648bb87..a70d14f9 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,8 +48,12 @@ jobs: | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/blobs/${digest}" \ - | jq -r '.container_config') + "https://ghcr.io/v2/${image}/blobs/${digest}") + if [[ $(echo $image_info | jq -r '.container_config') == "null" ]]; then + image_info=$(echo $image_info | jq -r '.config') + else + image_info=$(echo $image_info | jq -r '.container_config') + fi IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then From 34fbbb35fe2edc6a1cb3ceea679ad74988aab669 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 12 Nov 2022 15:02:17 +0000 Subject: [PATCH 217/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9161cb4f..e7611bbe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -54,7 +54,7 @@ libpulse-15.0-r2 libsndfile-1.1.0-r0 libsrt-1.4.4-r0 libssh-0.9.6-r1 -libssl1.1-1.1.1q-r0 +libssl1.1-1.1.1s-r0 libstdc++-11.2.1_git20220219-r2 libtasn1-4.18.0-r0 libtheora-1.1.1-r16 @@ -71,8 +71,8 @@ libxdmcp-1.1.3-r0 libxext-1.3.4-r0 libxfixes-6.0.0-r0 linux-pam-1.5.2-r0 -musl-1.2.3-r1 -musl-utils-1.2.3-r0 +musl-1.2.3-r2 +musl-utils-1.2.3-r1 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nettle-3.7.3-r0 @@ -94,7 +94,7 @@ speexdsp-1.2.0-r0 sqlite-libs-3.38.5-r0 ssl_client-1.35.0-r17 tdb-libs-1.4.6-r0 -tzdata-2022c-r0 +tzdata-2022f-r1 utmps-libs-0.1.2.0-r0 v4l-utils-libs-1.22.1-r1 vidstab-1.1.0-r1 From d579f227fcf230903706604e6556b50d0282d026 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Sat, 19 Nov 2022 09:00:07 -0600 Subject: [PATCH 218/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7611bbe..235c0e57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -72,7 +72,7 @@ libxext-1.3.4-r0 libxfixes-6.0.0-r0 linux-pam-1.5.2-r0 musl-1.2.3-r2 -musl-utils-1.2.3-r1 +musl-utils-1.2.3-r2 ncurses-libs-6.3_p20220521-r0 ncurses-terminfo-base-6.3_p20220521-r0 nettle-3.7.3-r0 From 4080bef04a164db3e427b858786936e41fb26200 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Nov 2022 23:05:38 +0100 Subject: [PATCH 219/790] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 06fd7a9b..d31a8057 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.md ./.github/ISSUE_TEMPLATE/issue.feature.md ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -277,7 +277,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md" + OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" From ff2f0bc9bca4668631d3e602ed6ca29b01b73e86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Nov 2022 23:06:56 +0100 Subject: [PATCH 220/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.md | 40 ------------------------- .github/ISSUE_TEMPLATE/issue.feature.md | 25 ---------------- 2 files changed, 65 deletions(-) delete mode 100755 .github/ISSUE_TEMPLATE/issue.bug.md delete mode 100755 .github/ISSUE_TEMPLATE/issue.feature.md diff --git a/.github/ISSUE_TEMPLATE/issue.bug.md b/.github/ISSUE_TEMPLATE/issue.bug.md deleted file mode 100755 index 4ede09db..00000000 --- a/.github/ISSUE_TEMPLATE/issue.bug.md +++ /dev/null @@ -1,40 +0,0 @@ ---- -name: Bug report -about: Create a report to help us improve - ---- -[linuxserverurl]: https://linuxserver.io -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - - - - ------------------------------- - -## Expected Behavior - - -## Current Behavior - - -## Steps to Reproduce - - -1. -2. -3. -4. - -## Environment -**OS:** -**CPU architecture:** x86_64/arm32/arm64 -**How docker service was installed:** - - - -## Command used to create docker container (run/create/compose/screenshot) - - -## Docker logs - diff --git a/.github/ISSUE_TEMPLATE/issue.feature.md b/.github/ISSUE_TEMPLATE/issue.feature.md deleted file mode 100755 index 20a91fdb..00000000 --- a/.github/ISSUE_TEMPLATE/issue.feature.md +++ /dev/null @@ -1,25 +0,0 @@ ---- -name: Feature request -about: Suggest an idea for this project - ---- -[linuxserverurl]: https://linuxserver.io -[![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)][linuxserverurl] - - - - - - - - ------------------------------- - -## Desired Behavior - - -## Current Behavior - - -## Alternatives Considered - From 8b35899ba308fc20a0ec71e872e8f9395464980a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI Date: Mon, 28 Nov 2022 23:08:10 +0100 Subject: [PATCH 221/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 77 +++++++++++++++++++ .github/ISSUE_TEMPLATE/issue.feature.yml | 31 ++++++++ .github/workflows/external_trigger.yml | 2 +- .../workflows/external_trigger_scheduler.yml | 2 +- .github/workflows/greetings.yml | 2 +- .github/workflows/package_trigger.yml | 2 +- .../workflows/package_trigger_scheduler.yml | 2 +- .github/workflows/stale.yml | 2 +- 8 files changed, 114 insertions(+), 6 deletions(-) create mode 100755 .github/ISSUE_TEMPLATE/issue.bug.yml create mode 100755 .github/ISSUE_TEMPLATE/issue.feature.yml diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml new file mode 100755 index 00000000..59a10f56 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -0,0 +1,77 @@ +# Based on the issue template +name: Bug report +description: Create a report to help us improve +title: "[BUG] " +labels: [Bug] +body: + - type: checkboxes + attributes: + label: Is there an existing issue for this? + description: Please search to see if an issue already exists for the bug you encountered. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Current Behavior + description: Tell us what happens instead of the expected behavior. + validations: + required: true + - type: textarea + attributes: + label: Expected Behavior + description: Tell us what should happen. + validations: + required: false + - type: textarea + attributes: + label: Steps To Reproduce + description: Steps to reproduce the behavior. + placeholder: | + 1. In this environment... + 2. With this config... + 3. Run '...' + 4. See error... + validations: + required: true + - type: textarea + attributes: + label: Environment + description: | + examples: + - **OS**: Ubuntu 20.04 + - **How docker service was installed**: distro's packagemanager + value: | + - OS: + - How docker service was installed: + render: markdown + validations: + required: false + - type: dropdown + attributes: + label: CPU architecture + options: + - x86-64 + - arm64 + - armhf + validations: + required: true + - type: textarea + attributes: + label: Docker creation + description: | + Command used to create docker container + Provide your docker create/run command or compose yaml snippet, or a screenshot of settings if using a gui to create the container + render: bash + validations: + required: true + - type: textarea + attributes: + description: | + Provide a full docker log, output of "docker logs linuxserver.io" + label: Container logs + placeholder: | + Output of `docker logs linuxserver.io` + render: bash + validations: + required: true diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml new file mode 100755 index 00000000..099dcdb5 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/issue.feature.yml @@ -0,0 +1,31 @@ +# Based on the issue template +name: Feature request +description: Suggest an idea for this project +title: "[FEAT] <title>" +labels: [enhancement] +body: + - type: checkboxes + attributes: + label: Is this a new feature request? + description: Please search to see if a feature request already exists. + options: + - label: I have searched the existing issues + required: true + - type: textarea + attributes: + label: Wanted change + description: Tell us what you want to happen. + validations: + required: true + - type: textarea + attributes: + label: Reason for change + description: Justify your request, why do you want it, what is the benefit. + validations: + required: true + - type: textarea + attributes: + label: Proposed code change + description: Do you have a potential code change in mind? + validations: + required: false diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index a70d14f9..18c8401b 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-nightly: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 - name: External Trigger if: github.ref == 'refs/heads/nightly' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 18f5b6bd..b59ed1cc 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: external-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: '0' diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 17ed5e97..5c87c0d4 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.md) or [feature](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.feature.md) issue templates!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!' pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 683b6fd0..5a7e0a2d 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-nightly: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 - name: Package Trigger if: github.ref == 'refs/heads/nightly' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index b7c67a3c..12cb080f 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: package-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.3.3 + - uses: actions/checkout@v3.1.0 with: fetch-depth: '0' diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml index 3b3846ee..73dfe45a 100755 --- a/.github/workflows/stale.yml +++ b/.github/workflows/stale.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/stale@v3 + - uses: actions/stale@v6.0.1 with: stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." From 4574f230fb3455acbe8c5aee6412aa357f5a5df0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Dec 2022 16:00:00 +0100 Subject: [PATCH 222/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 235c0e57..9215812c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -56,7 +56,7 @@ libsrt-1.4.4-r0 libssh-0.9.6-r1 libssl1.1-1.1.1s-r0 libstdc++-11.2.1_git20220219-r2 -libtasn1-4.18.0-r0 +libtasn1-4.18.0-r1 libtheora-1.1.1-r16 libunistring-1.0-r0 libva-2.14.0-r0 From ae6ee87c1dd39c938bbf560112dc361fd5db616b Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Mon, 19 Dec 2022 17:41:47 +0000 Subject: [PATCH 223/790] Rebase nightly to 3.17 --- .github/workflows/call_invalid_helper.yml | 12 ++++++++++++ Dockerfile | 7 ++++--- Dockerfile.aarch64 | 7 ++++--- Dockerfile.armhf | 7 ++++--- README.md | 1 + readme-vars.yml | 1 + root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run | 3 ++- root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 1 + 8 files changed, 29 insertions(+), 10 deletions(-) create mode 100644 .github/workflows/call_invalid_helper.yml diff --git a/.github/workflows/call_invalid_helper.yml b/.github/workflows/call_invalid_helper.yml new file mode 100644 index 00000000..773767c2 --- /dev/null +++ b/.github/workflows/call_invalid_helper.yml @@ -0,0 +1,12 @@ +name: Comment on invalid interaction +on: + issues: + types: + - labeled +jobs: + add-comment-on-invalid: + if: github.event.label.name == 'invalid' + permissions: + issues: write + uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1 + secrets: inherit diff --git a/Dockerfile b/Dockerfile index c64d8006..0e62c278 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.16 +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-alpine:3.17 # set version label ARG BUILD_DATE @@ -33,8 +35,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 57c4ce76..7c5310db 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.16 +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17 # set version label ARG BUILD_DATE @@ -33,8 +35,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/Dockerfile.armhf b/Dockerfile.armhf index 165f498b..2b7ccc2b 100644 --- a/Dockerfile.armhf +++ b/Dockerfile.armhf @@ -1,4 +1,6 @@ -FROM ghcr.io/linuxserver/baseimage-alpine:3.16 +# syntax=docker/dockerfile:1 + +FROM ghcr.io/linuxserver/baseimage-alpine:3.17 # set version label ARG BUILD_DATE @@ -33,8 +35,7 @@ RUN \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ - /tmp/* \ - /var/tmp/* + /tmp/* # copy local files COPY root/ / diff --git a/README.md b/README.md index 55d94378..57c271a8 100644 --- a/README.md +++ b/README.md @@ -249,6 +249,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **19.12.22:** - Rebase nightly to Alpine 3.17. * **27.10.22:** - Rebase nightly to Alpine 3.16, migrate to s6v3. * **04.02.22:** - Rebase nightly branch to Alpine. * **30.12.21:** - Add nightly-alpine branch. diff --git a/readme-vars.yml b/readme-vars.yml index 83dcf9ef..537bc070 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -59,6 +59,7 @@ app_setup_block: | # changelog changelogs: + - { date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17." } - { date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3." } - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } - { date: "30.12.21:", desc: "Add nightly-alpine branch." } diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run index 05c47079..efea8517 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run @@ -1,5 +1,6 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash # permissions -chown -R abc:abc \ +lsiown -R abc:abc \ /config diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run index a9cce0b0..4f464e2b 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -1,4 +1,5 @@ #!/usr/bin/with-contenv bash +# shellcheck shell=bash exec \ s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8686" \ From 4ed1d962c97ac7419b77467f5e7e891a37ffe412 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Dec 2022 19:10:36 +0100 Subject: [PATCH 224/790] Bot Updating Package Versions --- package_versions.txt | 186 +++++++++++++++++++++++-------------------- 1 file changed, 98 insertions(+), 88 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9215812c..435f421c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,108 +1,118 @@ -alpine-baselayout-3.2.0-r23 -alpine-baselayout-data-3.2.0-r23 +alpine-baselayout-3.4.0-r0 +alpine-baselayout-data-3.4.0-r0 alpine-keys-2.4-r1 -alsa-lib-1.2.7.2-r0 -aom-libs-3.3.0-r0 -apk-tools-2.12.9-r3 -bash-5.1.16-r2 -brotli-libs-1.0.9-r6 -busybox-1.35.0-r17 -ca-certificates-20220614-r0 -ca-certificates-bundle-20220614-r0 -chromaprint-1.5.1-r1 +alpine-release-3.17.0-r0 +alsa-lib-1.2.8-r0 +aom-libs-3.5.0-r0 +apk-tools-2.12.10-r1 +bash-5.2.15-r0 +brotli-libs-1.0.9-r9 +busybox-1.35.0-r29 +busybox-binsh-1.35.0-r29 +ca-certificates-20220614-r3 +ca-certificates-bundle-20220614-r3 +chromaprint-1.5.1-r2 +cjson-1.7.15-r3 coreutils-9.1-r0 -curl-7.83.1-r4 +curl-7.86.0-r1 dbus-libs-1.14.4-r0 -expat-2.5.0-r0 -ffmpeg4-libs-4.4.1-r3 -flac-1.3.4-r0 -fontconfig-2.14.0-r0 +ffmpeg-libs-5.1.2-r1 +flac-libs-1.4.2-r0 +fontconfig-2.14.1-r0 freetype-2.12.1-r0 fribidi-1.0.12-r0 -glib-2.72.1-r0 +glib-2.74.3-r2 gmp-6.2.1-r2 -gnutls-3.7.7-r0 -graphite2-1.3.14-r1 -harfbuzz-4.3.0-r0 -icu-data-en-71.1-r2 -icu-libs-71.1-r2 -jq-1.6-r1 -lame-3.100-r0 -libacl-2.3.1-r0 +gnutls-3.7.8-r2 +graphite2-1.3.14-r2 +harfbuzz-5.3.1-r1 +hwdata-pci-0.364-r0 +icu-data-en-72.1-r1 +icu-libs-72.1-r1 +jq-1.6-r2 +lame-3.100-r2 +libacl-2.3.1-r1 libass-0.16.0-r0 libasyncns-0.8-r1 -libattr-2.5.1-r1 -libblkid-2.38-r1 -libbz2-1.0.8-r1 +libattr-2.5.1-r2 +libblkid-2.38.1-r0 +libbsd-0.11.7-r0 +libbz2-1.0.8-r4 libc-utils-0.7.2-r3 -libcrypto1.1-1.1.1s-r0 -libcurl-7.83.1-r4 -libdav1d-1.0.0-r0 -libdrm-2.4.110-r0 -libffi-3.4.2-r1 -libgcc-11.2.1_git20220219-r2 -libgomp-11.2.1_git20220219-r2 -libintl-0.21-r2 -libjpeg-turbo-2.1.3-r1 +libcrypto3-3.0.7-r0 +libcurl-7.86.0-r1 +libdav1d-1.0.0-r2 +libdrm-2.4.114-r0 +libexpat-2.5.0-r0 +libffi-3.4.4-r0 +libgcc-12.2.1_git20220924-r4 +libgomp-12.2.1_git20220924-r4 +libintl-0.21.1-r1 +libjpeg-turbo-2.1.4-r0 libltdl-2.4.7-r0 -libmount-2.38-r1 -libogg-1.3.5-r1 -libpciaccess-0.16-r0 -libpng-1.6.37-r1 -libproc-3.3.17-r1 -libpulse-15.0-r2 -libsndfile-1.1.0-r0 -libsrt-1.4.4-r0 -libssh-0.9.6-r1 -libssl1.1-1.1.1s-r0 -libstdc++-11.2.1_git20220219-r2 -libtasn1-4.18.0-r1 +libmd-1.0.4-r0 +libmount-2.38.1-r0 +libogg-1.3.5-r2 +libpciaccess-0.17-r0 +libpng-1.6.38-r0 +libproc-3.3.17-r2 +libpulse-16.1-r6 +librist-0.2.7-r0 +libsndfile-1.1.0-r2 +libsodium-1.0.18-r2 +libsrt-1.5.1-r0 +libssh-0.10.4-r0 +libssl3-3.0.7-r0 +libstdc++-12.2.1_git20220924-r4 +libtasn1-4.19.0-r0 libtheora-1.1.1-r16 -libunistring-1.0-r0 -libva-2.14.0-r0 +libunistring-1.1-r0 +libva-2.16.0-r0 libvdpau-1.5-r0 libvorbis-1.3.7-r0 -libvpx-1.11.0-r1 -libwebp-1.2.3-r0 -libx11-1.8-r0 -libxau-1.0.9-r0 +libvpx-1.12.0-r1 +libwebp-1.2.4-r1 +libx11-1.8.3-r0 +libxau-1.0.10-r0 libxcb-1.15-r0 -libxdmcp-1.1.3-r0 -libxext-1.3.4-r0 +libxdmcp-1.1.4-r0 +libxext-1.3.5-r0 libxfixes-6.0.0-r0 -linux-pam-1.5.2-r0 -musl-1.2.3-r2 -musl-utils-1.2.3-r2 -ncurses-libs-6.3_p20220521-r0 -ncurses-terminfo-base-6.3_p20220521-r0 -nettle-3.7.3-r0 -nghttp2-libs-1.47.0-r0 -numactl-2.0.14-r0 +libzmq-4.3.4-r1 +linux-pam-1.5.2-r1 +mbedtls-2.28.2-r0 +musl-1.2.3-r4 +musl-utils-1.2.3-r4 +ncurses-libs-6.3_p20221119-r0 +ncurses-terminfo-base-6.3_p20221119-r0 +nettle-3.8.1-r0 +nghttp2-libs-1.51.0-r0 +numactl-2.0.16-r0 oniguruma-6.9.8-r0 opus-1.3.1-r1 -orc-0.4.32-r0 -p11-kit-0.24.1-r0 -pcre-8.45-r2 -procps-3.3.17-r1 -readline-8.1.2-r0 -scanelf-1.3.4-r0 -sdl2-2.0.22-r0 -shadow-4.10-r3 -skalibs-2.11.2.0-r0 -soxr-0.1.3-r2 -speexdsp-1.2.0-r0 -sqlite-libs-3.38.5-r0 -ssl_client-1.35.0-r17 -tdb-libs-1.4.6-r0 +orc-0.4.33-r0 +p11-kit-0.24.1-r1 +pcre2-10.42-r0 +procps-3.3.17-r2 +readline-8.2.0-r0 +scanelf-1.3.5-r1 +sdl2-2.26.1-r0 +shadow-4.13-r0 +skalibs-2.12.0.1-r0 +soxr-0.1.3-r3 +speexdsp-1.2.1-r0 +sqlite-libs-3.40.0-r0 +ssl_client-1.35.0-r29 +svt-av1-libs-1.3.0-r0 +tdb-libs-1.4.7-r0 tzdata-2022f-r1 -utmps-libs-0.1.2.0-r0 -v4l-utils-libs-1.22.1-r1 -vidstab-1.1.0-r1 -vulkan-loader-1.3.206-r0 -wayland-libs-client-1.20.0-r0 -x264-libs-0.163_git20210613-r0 +utmps-libs-0.1.2.0-r1 +v4l-utils-libs-1.22.1-r2 +vidstab-1.1.0-r2 +wayland-libs-client-1.21.0-r1 +x264-libs-0.164_git20220602-r0 x265-libs-3.5-r3 xvidcore-1.3.7-r1 -xz-5.2.5-r1 -xz-libs-5.2.5-r1 -zlib-1.2.12-r3 +xz-5.2.9-r0 +xz-libs-5.2.9-r0 +zlib-1.2.13-r0 From a905d2d7739b726f91c4266ede4fe5047f5e8841 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 31 Dec 2022 16:00:10 +0100 Subject: [PATCH 225/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 435f421c..45a1e689 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,14 +14,14 @@ ca-certificates-bundle-20220614-r3 chromaprint-1.5.1-r2 cjson-1.7.15-r3 coreutils-9.1-r0 -curl-7.86.0-r1 +curl-7.87.0-r0 dbus-libs-1.14.4-r0 ffmpeg-libs-5.1.2-r1 flac-libs-1.4.2-r0 fontconfig-2.14.1-r0 freetype-2.12.1-r0 fribidi-1.0.12-r0 -glib-2.74.3-r2 +glib-2.74.4-r0 gmp-6.2.1-r2 gnutls-3.7.8-r2 graphite2-1.3.14-r2 @@ -40,7 +40,7 @@ libbsd-0.11.7-r0 libbz2-1.0.8-r4 libc-utils-0.7.2-r3 libcrypto3-3.0.7-r0 -libcurl-7.86.0-r1 +libcurl-7.87.0-r0 libdav1d-1.0.0-r2 libdrm-2.4.114-r0 libexpat-2.5.0-r0 @@ -101,7 +101,7 @@ shadow-4.13-r0 skalibs-2.12.0.1-r0 soxr-0.1.3-r3 speexdsp-1.2.1-r0 -sqlite-libs-3.40.0-r0 +sqlite-libs-3.40.1-r0 ssl_client-1.35.0-r29 svt-av1-libs-1.3.0-r0 tdb-libs-1.4.7-r0 From b835f0f3bcb1eaa741546056beea5eae9c0d90b2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 7 Jan 2023 15:59:44 +0100 Subject: [PATCH 226/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 45a1e689..3bec824f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -35,11 +35,11 @@ libacl-2.3.1-r1 libass-0.16.0-r0 libasyncns-0.8-r1 libattr-2.5.1-r2 -libblkid-2.38.1-r0 +libblkid-2.38.1-r1 libbsd-0.11.7-r0 libbz2-1.0.8-r4 libc-utils-0.7.2-r3 -libcrypto3-3.0.7-r0 +libcrypto3-3.0.7-r2 libcurl-7.87.0-r0 libdav1d-1.0.0-r2 libdrm-2.4.114-r0 @@ -51,7 +51,7 @@ libintl-0.21.1-r1 libjpeg-turbo-2.1.4-r0 libltdl-2.4.7-r0 libmd-1.0.4-r0 -libmount-2.38.1-r0 +libmount-2.38.1-r1 libogg-1.3.5-r2 libpciaccess-0.17-r0 libpng-1.6.38-r0 @@ -96,7 +96,7 @@ pcre2-10.42-r0 procps-3.3.17-r2 readline-8.2.0-r0 scanelf-1.3.5-r1 -sdl2-2.26.1-r0 +sdl2-2.26.2-r0 shadow-4.13-r0 skalibs-2.12.0.1-r0 soxr-0.1.3-r3 From 6dac1aa0ef396284f1c7f2b0704b7ffc46028971 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Jan 2023 15:59:55 +0100 Subject: [PATCH 227/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3bec824f..0a2c37a2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ alpine-baselayout-3.4.0-r0 alpine-baselayout-data-3.4.0-r0 alpine-keys-2.4-r1 -alpine-release-3.17.0-r0 +alpine-release-3.17.1-r0 alsa-lib-1.2.8-r0 aom-libs-3.5.0-r0 apk-tools-2.12.10-r1 @@ -9,8 +9,8 @@ bash-5.2.15-r0 brotli-libs-1.0.9-r9 busybox-1.35.0-r29 busybox-binsh-1.35.0-r29 -ca-certificates-20220614-r3 -ca-certificates-bundle-20220614-r3 +ca-certificates-20220614-r4 +ca-certificates-bundle-20220614-r4 chromaprint-1.5.1-r2 cjson-1.7.15-r3 coreutils-9.1-r0 @@ -62,7 +62,7 @@ libsndfile-1.1.0-r2 libsodium-1.0.18-r2 libsrt-1.5.1-r0 libssh-0.10.4-r0 -libssl3-3.0.7-r0 +libssl3-3.0.7-r2 libstdc++-12.2.1_git20220924-r4 libtasn1-4.19.0-r0 libtheora-1.1.1-r16 From 25d6bf4fddb46d4118aac836a10bd94392a90a1f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 19 Jan 2023 02:06:41 +0100 Subject: [PATCH 228/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0a2c37a2..bbb1a2fb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,7 +14,7 @@ ca-certificates-bundle-20220614-r4 chromaprint-1.5.1-r2 cjson-1.7.15-r3 coreutils-9.1-r0 -curl-7.87.0-r0 +curl-7.87.0-r1 dbus-libs-1.14.4-r0 ffmpeg-libs-5.1.2-r1 flac-libs-1.4.2-r0 @@ -40,7 +40,7 @@ libbsd-0.11.7-r0 libbz2-1.0.8-r4 libc-utils-0.7.2-r3 libcrypto3-3.0.7-r2 -libcurl-7.87.0-r0 +libcurl-7.87.0-r1 libdav1d-1.0.0-r2 libdrm-2.4.114-r0 libexpat-2.5.0-r0 From a8f6984cbd88db42d5852c7d00b82d757dd56a62 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Jan 2023 09:00:33 -0600 Subject: [PATCH 229/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bbb1a2fb..37127f01 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -21,7 +21,7 @@ flac-libs-1.4.2-r0 fontconfig-2.14.1-r0 freetype-2.12.1-r0 fribidi-1.0.12-r0 -glib-2.74.4-r0 +glib-2.74.5-r0 gmp-6.2.1-r2 gnutls-3.7.8-r2 graphite2-1.3.14-r2 From 5d5e3af3358bd5adb4ac1130327fc0583ea873f5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Jan 2023 19:56:20 -0600 Subject: [PATCH 230/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 37127f01..12ee9df9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -72,7 +72,7 @@ libvdpau-1.5-r0 libvorbis-1.3.7-r0 libvpx-1.12.0-r1 libwebp-1.2.4-r1 -libx11-1.8.3-r0 +libx11-1.8.3-r1 libxau-1.0.10-r0 libxcb-1.15-r0 libxdmcp-1.1.4-r0 From 198c8e10913d1efb39428ea67920d36185ce4c6c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Jan 2023 08:59:59 -0600 Subject: [PATCH 231/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 12ee9df9..e9b02c0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -87,7 +87,7 @@ ncurses-libs-6.3_p20221119-r0 ncurses-terminfo-base-6.3_p20221119-r0 nettle-3.8.1-r0 nghttp2-libs-1.51.0-r0 -numactl-2.0.16-r0 +numactl-2.0.16-r1 oniguruma-6.9.8-r0 opus-1.3.1-r1 orc-0.4.33-r0 From dd989e2cc82c02b14252feb92797a64982524123 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Feb 2023 20:53:34 -0600 Subject: [PATCH 232/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e9b02c0b..1cd3a8ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -72,7 +72,7 @@ libvdpau-1.5-r0 libvorbis-1.3.7-r0 libvpx-1.12.0-r1 libwebp-1.2.4-r1 -libx11-1.8.3-r1 +libx11-1.8.4-r0 libxau-1.0.10-r0 libxcb-1.15-r0 libxdmcp-1.1.4-r0 From 37b02cc2cc6924ea518fe15e9cca864a0f9b3025 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Feb 2023 04:11:03 +0100 Subject: [PATCH 233/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1cd3a8ef..09b5c378 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -39,7 +39,7 @@ libblkid-2.38.1-r1 libbsd-0.11.7-r0 libbz2-1.0.8-r4 libc-utils-0.7.2-r3 -libcrypto3-3.0.7-r2 +libcrypto3-3.0.8-r0 libcurl-7.87.0-r1 libdav1d-1.0.0-r2 libdrm-2.4.114-r0 @@ -49,7 +49,7 @@ libgcc-12.2.1_git20220924-r4 libgomp-12.2.1_git20220924-r4 libintl-0.21.1-r1 libjpeg-turbo-2.1.4-r0 -libltdl-2.4.7-r0 +libltdl-2.4.7-r1 libmd-1.0.4-r0 libmount-2.38.1-r1 libogg-1.3.5-r2 @@ -96,7 +96,7 @@ pcre2-10.42-r0 procps-3.3.17-r2 readline-8.2.0-r0 scanelf-1.3.5-r1 -sdl2-2.26.2-r0 +sdl2-2.26.3-r0 shadow-4.13-r0 skalibs-2.12.0.1-r0 soxr-0.1.3-r3 From 217e95649dcfaf10b205c97aeeb1a49b660346d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 14:59:05 +0000 Subject: [PATCH 234/790] Bot Updating Templated Files --- Jenkinsfile | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d31a8057..f6e51a52 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -66,7 +66,7 @@ pipeline { script{ env.LS_TAG_NUMBER = sh( script: '''#! /bin/bash - tagsha=$(git rev-list -n 1 ${LS_RELEASE} 2>/dev/null) + tagsha=$(git rev-list -n 1 nightly-${LS_RELEASE} 2>/dev/null) if [ "${tagsha}" == "${COMMIT_SHA}" ]; then echo ${LS_RELEASE_NUMBER} elif [ -z "${GIT_COMMIT}" ]; then @@ -805,19 +805,19 @@ pipeline { echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-nightly - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-nightly - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} + docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} + docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-nightly docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} @@ -825,13 +825,13 @@ pipeline { docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:amd64-nightly + docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} docker push ${MANIFESTIMAGE}:arm32v7-nightly - docker push ${MANIFESTIMAGE}:arm64v8-nightly - docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} + docker push ${MANIFESTIMAGE}:arm64v8-nightly docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker push ${MANIFESTIMAGE}:amd64-${SEMVER} @@ -977,12 +977,12 @@ pipeline { sh 'echo "build aborted"' } else if (currentBuild.currentResult == "SUCCESS"){ - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 1681177,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } else { - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://wiki.jenkins-ci.org/download/attachments/2916393/headshot.png","embeds": [{"color": 16711680,\ + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\ "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } From 697cfa8031e3a0f9d52e1e677e013f1fe85a1cf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 16:00:25 +0100 Subject: [PATCH 235/790] Bot Updating Templated Files --- .editorconfig | 2 +- .github/workflows/greetings.yml | 2 +- .github/workflows/permissions.yml | 9 +++++++++ README.md | 10 +++++----- 4 files changed, 16 insertions(+), 7 deletions(-) create mode 100755 .github/workflows/permissions.yml diff --git a/.editorconfig b/.editorconfig index a92f7dfd..5f150f35 100755 --- a/.editorconfig +++ b/.editorconfig @@ -15,6 +15,6 @@ trim_trailing_whitespace = false indent_style = space indent_size = 2 -[{**.sh,root/etc/cont-init.d/**,root/etc/services.d/**}] +[{**.sh,root/etc/s6-overlay/s6-rc.d/**,root/etc/cont-init.d/**,root/etc/services.d/**}] indent_style = space indent_size = 4 diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml index 5c87c0d4..72a89b15 100755 --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -8,6 +8,6 @@ jobs: steps: - uses: actions/first-interaction@v1 with: - issue-message: 'Thanks for opening your first issue here! Be sure to follow the [bug](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.bug.yml) or [feature](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/ISSUE_TEMPLATE/issue.feature.yml) issue templates!' + issue-message: 'Thanks for opening your first issue here! Be sure to follow the relevant issue templates, or risk having this issue marked as invalid.' pr-message: 'Thanks for opening this pull request! Be sure to follow the [pull request template](https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/PULL_REQUEST_TEMPLATE.md)!' repo-token: ${{ secrets.GITHUB_TOKEN }} diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml new file mode 100755 index 00000000..2df6b61b --- /dev/null +++ b/.github/workflows/permissions.yml @@ -0,0 +1,9 @@ +name: Permission check +on: + pull_request: + paths: + - '**/run' + - '**/finish' +jobs: + permission_check: + uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 diff --git a/README.md b/README.md index 57c271a8..1ffbec7a 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf| ✅ | arm32v7-\<version tag\> | +| armhf | ✅ | arm32v7-\<version tag\> | ## Version Tags @@ -67,7 +67,6 @@ This image provides various versions that are available via tags. Please read th | latest | ✅ | Stable Lidarr releases. | | develop | ✅ | Develop Lidarr Releases. | | nightly | ✅ | Nightly Lidarr Releases. | - ## Application Setup Access the webui at `<your-ip>:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). @@ -100,7 +99,7 @@ services: environment: - PUID=1000 - PGID=1000 - - TZ=Europe/London + - TZ=Etc/UTC volumes: - /path/to/appdata/config:/config - /path/to/music:/music #optional @@ -117,13 +116,14 @@ docker run -d \ --name=lidarr \ -e PUID=1000 \ -e PGID=1000 \ - -e TZ=Europe/London \ + -e TZ=Etc/UTC \ -p 8686:8686 \ -v /path/to/appdata/config:/config \ -v /path/to/music:/music `#optional` \ -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/lidarr:nightly + ``` ## Parameters @@ -135,7 +135,7 @@ Container images are configured using parameters passed at runtime (such as thos | `-p 8686` | Application WebUI | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | -| `-e TZ=Europe/London` | Specify a timezone to use EG Europe/London. | +| `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | | `-v /config` | Configuration files for Lidarr. | | `-v /music` | Music files (See note in Application setup). | | `-v /downloads` | Path to your download folder for music (See note in Application setup). | From 3d2c8525aa2f166aee90ee760a6b20f8361f046d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Feb 2023 16:07:46 +0100 Subject: [PATCH 236/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 09b5c378..b8750e9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -23,7 +23,7 @@ freetype-2.12.1-r0 fribidi-1.0.12-r0 glib-2.74.5-r0 gmp-6.2.1-r2 -gnutls-3.7.8-r2 +gnutls-3.7.8-r3 graphite2-1.3.14-r2 harfbuzz-5.3.1-r1 hwdata-pci-0.364-r0 From 35bc3b5420efee0581b194950c53caafecfdf032 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Feb 2023 16:00:08 +0100 Subject: [PATCH 237/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b8750e9c..40c8bcf4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ alpine-baselayout-3.4.0-r0 alpine-baselayout-data-3.4.0-r0 alpine-keys-2.4-r1 -alpine-release-3.17.1-r0 +alpine-release-3.17.2-r0 alsa-lib-1.2.8-r0 aom-libs-3.5.0-r0 apk-tools-2.12.10-r1 @@ -62,7 +62,7 @@ libsndfile-1.1.0-r2 libsodium-1.0.18-r2 libsrt-1.5.1-r0 libssh-0.10.4-r0 -libssl3-3.0.7-r2 +libssl3-3.0.8-r0 libstdc++-12.2.1_git20220924-r4 libtasn1-4.19.0-r0 libtheora-1.1.1-r16 From 0147955c2f2e4e8503c68097a7496c62e69b7192 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Fri, 24 Feb 2023 11:34:35 +0000 Subject: [PATCH 238/790] Use /ping endpoint for readiness checks --- root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check | 7 +++++++ root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check new file mode 100755 index 00000000..3e81cdf0 --- /dev/null +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check @@ -0,0 +1,7 @@ +#!/bin/bash + +if [[ $(curl -sL "http://localhost:8686/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then + exit 0 +else + exit 1 +fi diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run index 4f464e2b..00b84553 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -2,6 +2,6 @@ # shellcheck shell=bash exec \ - s6-notifyoncheck -d -n 300 -w 1000 -c "nc -z localhost 8686" \ + s6-notifyoncheck -d -n 300 -w 1000 \ cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ -nobrowser -data=/config From 036e0cda96c4b3a687a76feddda56334bee17fa1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Feb 2023 07:35:31 -0600 Subject: [PATCH 239/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 40c8bcf4..fc045fb5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -14,14 +14,14 @@ ca-certificates-bundle-20220614-r4 chromaprint-1.5.1-r2 cjson-1.7.15-r3 coreutils-9.1-r0 -curl-7.87.0-r1 +curl-7.87.0-r2 dbus-libs-1.14.4-r0 ffmpeg-libs-5.1.2-r1 flac-libs-1.4.2-r0 fontconfig-2.14.1-r0 freetype-2.12.1-r0 fribidi-1.0.12-r0 -glib-2.74.5-r0 +glib-2.74.6-r0 gmp-6.2.1-r2 gnutls-3.7.8-r3 graphite2-1.3.14-r2 @@ -40,7 +40,7 @@ libbsd-0.11.7-r0 libbz2-1.0.8-r4 libc-utils-0.7.2-r3 libcrypto3-3.0.8-r0 -libcurl-7.87.0-r1 +libcurl-7.87.0-r2 libdav1d-1.0.0-r2 libdrm-2.4.114-r0 libexpat-2.5.0-r0 From 98964a33e8edc5acbeb775bb5bb92ea2c1c13925 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Mar 2023 15:59:28 +0100 Subject: [PATCH 240/790] Bot Updating Templated Files --- Jenkinsfile | 46 ++++++++++++++++++---------------------------- 1 file changed, 18 insertions(+), 28 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index f6e51a52..3cbc8101 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -442,7 +442,8 @@ pipeline { } steps { echo "Running on node: ${NODE_NAME}" - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ @@ -455,7 +456,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ - --no-cache --pull -t ${IMAGE}:${META_TAG} \ + --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -472,7 +473,8 @@ pipeline { stage('Build X86') { steps { echo "Running on node: ${NODE_NAME}" - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ @@ -485,7 +487,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ - --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} \ + --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } @@ -499,7 +501,8 @@ pipeline { sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.armhf" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ @@ -512,7 +515,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ - --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} \ + --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} --platform=linux/arm/v7 \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" retry(5) { @@ -533,7 +536,8 @@ pipeline { sh '''#! /bin/bash echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin ''' - sh "docker build \ + sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64" + sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ --label \"org.opencontainers.image.authors=linuxserver.io\" \ --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ @@ -546,7 +550,7 @@ pipeline { --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ - --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} \ + --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ --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) { @@ -575,26 +579,12 @@ pipeline { else LOCAL_CONTAINER=${IMAGE}:${META_TAG} fi - if [ "${DIST_IMAGE}" == "alpine" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apk info -v > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "ubuntu" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - apt list -qq --installed | sed "s#/.*now ##g" | cut -d" " -f1 > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "fedora" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - rpm -qa > /tmp/package_versions.txt && \ - sort -o /tmp/package_versions.txt /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - elif [ "${DIST_IMAGE}" == "arch" ]; then - docker run --rm --entrypoint '/bin/sh' -v ${TEMPDIR}:/tmp ${LOCAL_CONTAINER} -c '\ - pacman -Q > /tmp/package_versions.txt && \ - chmod 777 /tmp/package_versions.txt' - fi + touch ${TEMPDIR}/package_versions.txt + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock:ro \ + -v ${TEMPDIR}:/tmp \ + ghcr.io/anchore/syft:latest \ + ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" if [ "${NEW_PACKAGE_TAG}" != "${PACKAGE_TAG}" ]; then From 0d212f6c17c6eb3f18f5abbd45807644f7c6646d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Mar 2023 16:02:52 +0100 Subject: [PATCH 241/790] Bot Updating Package Versions --- package_versions.txt | 454 ++++++++++++++++++++++++++++++++----------- 1 file changed, 336 insertions(+), 118 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fc045fb5..2660ea55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,118 +1,336 @@ -alpine-baselayout-3.4.0-r0 -alpine-baselayout-data-3.4.0-r0 -alpine-keys-2.4-r1 -alpine-release-3.17.2-r0 -alsa-lib-1.2.8-r0 -aom-libs-3.5.0-r0 -apk-tools-2.12.10-r1 -bash-5.2.15-r0 -brotli-libs-1.0.9-r9 -busybox-1.35.0-r29 -busybox-binsh-1.35.0-r29 -ca-certificates-20220614-r4 -ca-certificates-bundle-20220614-r4 -chromaprint-1.5.1-r2 -cjson-1.7.15-r3 -coreutils-9.1-r0 -curl-7.87.0-r2 -dbus-libs-1.14.4-r0 -ffmpeg-libs-5.1.2-r1 -flac-libs-1.4.2-r0 -fontconfig-2.14.1-r0 -freetype-2.12.1-r0 -fribidi-1.0.12-r0 -glib-2.74.6-r0 -gmp-6.2.1-r2 -gnutls-3.7.8-r3 -graphite2-1.3.14-r2 -harfbuzz-5.3.1-r1 -hwdata-pci-0.364-r0 -icu-data-en-72.1-r1 -icu-libs-72.1-r1 -jq-1.6-r2 -lame-3.100-r2 -libacl-2.3.1-r1 -libass-0.16.0-r0 -libasyncns-0.8-r1 -libattr-2.5.1-r2 -libblkid-2.38.1-r1 -libbsd-0.11.7-r0 -libbz2-1.0.8-r4 -libc-utils-0.7.2-r3 -libcrypto3-3.0.8-r0 -libcurl-7.87.0-r2 -libdav1d-1.0.0-r2 -libdrm-2.4.114-r0 -libexpat-2.5.0-r0 -libffi-3.4.4-r0 -libgcc-12.2.1_git20220924-r4 -libgomp-12.2.1_git20220924-r4 -libintl-0.21.1-r1 -libjpeg-turbo-2.1.4-r0 -libltdl-2.4.7-r1 -libmd-1.0.4-r0 -libmount-2.38.1-r1 -libogg-1.3.5-r2 -libpciaccess-0.17-r0 -libpng-1.6.38-r0 -libproc-3.3.17-r2 -libpulse-16.1-r6 -librist-0.2.7-r0 -libsndfile-1.1.0-r2 -libsodium-1.0.18-r2 -libsrt-1.5.1-r0 -libssh-0.10.4-r0 -libssl3-3.0.8-r0 -libstdc++-12.2.1_git20220924-r4 -libtasn1-4.19.0-r0 -libtheora-1.1.1-r16 -libunistring-1.1-r0 -libva-2.16.0-r0 -libvdpau-1.5-r0 -libvorbis-1.3.7-r0 -libvpx-1.12.0-r1 -libwebp-1.2.4-r1 -libx11-1.8.4-r0 -libxau-1.0.10-r0 -libxcb-1.15-r0 -libxdmcp-1.1.4-r0 -libxext-1.3.5-r0 -libxfixes-6.0.0-r0 -libzmq-4.3.4-r1 -linux-pam-1.5.2-r1 -mbedtls-2.28.2-r0 -musl-1.2.3-r4 -musl-utils-1.2.3-r4 -ncurses-libs-6.3_p20221119-r0 -ncurses-terminfo-base-6.3_p20221119-r0 -nettle-3.8.1-r0 -nghttp2-libs-1.51.0-r0 -numactl-2.0.16-r1 -oniguruma-6.9.8-r0 -opus-1.3.1-r1 -orc-0.4.33-r0 -p11-kit-0.24.1-r1 -pcre2-10.42-r0 -procps-3.3.17-r2 -readline-8.2.0-r0 -scanelf-1.3.5-r1 -sdl2-2.26.3-r0 -shadow-4.13-r0 -skalibs-2.12.0.1-r0 -soxr-0.1.3-r3 -speexdsp-1.2.1-r0 -sqlite-libs-3.40.1-r0 -ssl_client-1.35.0-r29 -svt-av1-libs-1.3.0-r0 -tdb-libs-1.4.7-r0 -tzdata-2022f-r1 -utmps-libs-0.1.2.0-r1 -v4l-utils-libs-1.22.1-r2 -vidstab-1.1.0-r2 -wayland-libs-client-1.21.0-r1 -x264-libs-0.164_git20220602-r0 -x265-libs-3.5-r3 -xvidcore-1.3.7-r1 -xz-5.2.9-r0 -xz-libs-5.2.9-r0 -zlib-1.2.13-r0 +NAME VERSION TYPE +Dapper 2.0.123 dotnet +DryIoc.Microsoft.DependencyInjection 6.0.2 dotnet +DryIoc.dll 5.1.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentValidation 8.6.2 dotnet +Ical.Net 4.2.0 dotnet +ImpromptuInterface 7.0.1 dotnet +Kveer.XmlRPC 1.2.0 dotnet +MailKit 2.15.0 dotnet +Microsoft.CSharp 4.5.0 dotnet +Microsoft.Data.SqlClient 2.1.2 dotnet +Microsoft.Data.SqlClient.SNI.runtime 2.1.1 dotnet +Microsoft.Extensions.Configuration 6.0.0 dotnet +Microsoft.Extensions.Configuration 6.0.1 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.0 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet +Microsoft.Extensions.Configuration.Json 6.0.0 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.0 dotnet +Microsoft.Extensions.DependencyInjection 6.0.0 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet +Microsoft.Extensions.Hosting 6.0.0 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.0 dotnet +Microsoft.Extensions.Logging 6.0.0 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet +Microsoft.Extensions.Logging.Console 6.0.0 dotnet +Microsoft.Extensions.Logging.Debug 6.0.0 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet +Microsoft.Extensions.Options 6.0.0 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet +Microsoft.Extensions.Primitives 6.0.0 dotnet +Microsoft.Identity.Client 4.21.1 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet +Microsoft.IdentityModel.Logging 6.8.0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0 dotnet +Microsoft.NETCore.Platforms 1.1.0 dotnet +Microsoft.NETCore.Platforms 5.0.0 dotnet +Microsoft.NETCore.Targets 1.1.0 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.Primitives 4.3.0 dotnet +Microsoft.Win32.Registry 5.0.0 dotnet +Microsoft.Win32.SystemEvents 6.0.0 dotnet +MimeKit 2.15.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet +MonoTorrent 2.0.7 dotnet +NETStandard.Library 1.6.1 dotnet +NLog 5.0.4 dotnet +NLog.Extensions.Logging 5.0.4 dotnet +NLog.Targets.Syslog 7.0.0 dotnet +Newtonsoft.Json 13.0.2 dotnet +NodaTime 3.0.0 dotnet +Npgsql 6.0.8 dotnet +Polly.Contrib.WaitAndRetry 1.1.1 dotnet +Portable.BouncyCastle 1.8.10 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0 dotnet +Servarr.FluentMigrator 3.3.2.9 dotnet +Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet +SharpZipLib 1.3.3 dotnet +SixLabors.ImageSharp 2.1.3 dotnet +SpotifyAPI.Web 4.2.2 dotnet +Swashbuckle.AspNetCore.Swagger 6.4.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.4.0 dotnet +System.AppContext 4.3.0 dotnet +System.Buffers 4.5.1 dotnet +System.Collections 4.3.0 dotnet +System.Collections.Concurrent 4.3.0 dotnet +System.ComponentModel 4.3.0 dotnet +System.ComponentModel.Annotations 4.4.1 dotnet +System.Configuration.ConfigurationManager 6.0.0 dotnet +System.Console 4.3.0 dotnet +System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet +System.Diagnostics.Debug 4.3.0 dotnet +System.Diagnostics.DiagnosticSource 6.0.0 dotnet +System.Diagnostics.EventLog 6.0.0 dotnet +System.Diagnostics.Tools 4.3.0 dotnet +System.Diagnostics.Tracing 4.3.0 dotnet +System.Drawing.Common 6.0.0 dotnet +System.Globalization 4.3.0 dotnet +System.Globalization.Calendars 4.3.0 dotnet +System.Globalization.Extensions 4.3.0 dotnet +System.IO 4.3.0 dotnet +System.IO.Abstractions 17.0.24 dotnet +System.IO.Compression 4.3.0 dotnet +System.IO.Compression.ZipFile 4.3.0 dotnet +System.IO.FileSystem 4.3.0 dotnet +System.IO.FileSystem.Primitives 4.3.0 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0 dotnet +System.Linq 4.3.0 dotnet +System.Linq.Expressions 4.3.0 dotnet +System.Memory 4.5.5 dotnet +System.Net.Http 4.3.0 dotnet +System.Net.NameResolution 4.3.0 dotnet +System.Net.Primitives 4.3.0 dotnet +System.Net.Sockets 4.3.0 dotnet +System.ObjectModel 4.3.0 dotnet +System.Private.Uri 4.3.0 dotnet +System.Reflection 4.3.0 dotnet +System.Reflection.Emit 4.3.0 dotnet +System.Reflection.Emit.ILGeneration 4.3.0 dotnet +System.Reflection.Emit.Lightweight 4.3.0 dotnet +System.Reflection.Extensions 4.3.0 dotnet +System.Reflection.Primitives 4.3.0 dotnet +System.Reflection.TypeExtensions 4.4.0 dotnet +System.Reflection.TypeExtensions 4.7.0 dotnet +System.Resources.ResourceManager 4.3.0 dotnet +System.Runtime 4.3.0 dotnet +System.Runtime.Caching 4.7.0 dotnet +System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet +System.Runtime.Extensions 4.3.0 dotnet +System.Runtime.Handles 4.3.0 dotnet +System.Runtime.InteropServices 4.3.0 dotnet +System.Runtime.InteropServices.RuntimeInformation 4.3.0 dotnet +System.Runtime.Loader 4.3.0 dotnet +System.Runtime.Numerics 4.3.0 dotnet +System.Security.AccessControl 6.0.0 dotnet +System.Security.Cryptography.Algorithms 4.3.0 dotnet +System.Security.Cryptography.Cng 4.7.0 dotnet +System.Security.Cryptography.Csp 4.3.0 dotnet +System.Security.Cryptography.Encoding 4.3.0 dotnet +System.Security.Cryptography.OpenSsl 4.3.0 dotnet +System.Security.Cryptography.Pkcs 4.7.0 dotnet +System.Security.Cryptography.Primitives 4.3.0 dotnet +System.Security.Cryptography.ProtectedData 6.0.0 dotnet +System.Security.Cryptography.X509Certificates 4.3.0 dotnet +System.Security.Permissions 6.0.0 dotnet +System.Security.Principal.Windows 5.0.0 dotnet +System.ServiceProcess.ServiceController 6.0.0 dotnet +System.Text.Encoding 4.3.0 dotnet +System.Text.Encoding.CodePages 5.0.0 dotnet +System.Text.Encoding.CodePages 6.0.0 dotnet +System.Text.Encoding.Extensions 4.3.0 dotnet +System.Text.Encodings.Web 6.0.0 dotnet +System.Text.Json 6.0.5 dotnet +System.Text.RegularExpressions 4.3.0 dotnet +System.Threading 4.3.0 dotnet +System.Threading.Tasks 4.3.0 dotnet +System.Threading.Tasks.Extensions 4.3.0 dotnet +System.Threading.ThreadPool 4.3.0 dotnet +System.Threading.Timer 4.3.0 dotnet +System.ValueTuple 4.5.0 dotnet +System.Windows.Extensions 6.0.0 dotnet +System.Xml.ReaderWriter 4.3.0 dotnet +System.Xml.XDocument 4.3.0 dotnet +TagLibSharp-Lidarr 2.2.0.27 dotnet +alpine-baselayout 3.4.0-r0 apk +alpine-baselayout-data 3.4.0-r0 apk +alpine-keys 2.4-r1 apk +alpine-release 3.17.2-r0 apk +alsa-lib 1.2.8-r0 apk +aom-libs 3.5.0-r0 apk +apk-tools 2.12.10-r1 apk +bash 5.2.15-r0 apk +brotli-libs 1.0.9-r9 apk +busybox 1.35.0 binary +busybox 1.35.0-r29 apk +busybox-binsh 1.35.0-r29 apk +ca-certificates 20220614-r4 apk +ca-certificates-bundle 20220614-r4 apk +chromaprint 1.5.1-r2 apk +cjson 1.7.15-r3 apk +coreutils 9.1-r0 apk +curl 7.88.1-r0 apk +dbus-libs 1.14.4-r0 apk +ffmpeg-libs 5.1.2-r1 apk +flac-libs 1.4.2-r0 apk +fontconfig 2.14.1-r0 apk +freetype 2.12.1-r0 apk +fribidi 1.0.12-r0 apk +glib 2.74.6-r0 apk +gmp 6.2.1-r2 apk +gnutls 3.7.8-r3 apk +graphite2 1.3.14-r2 apk +harfbuzz 5.3.1-r1 apk +hwdata-pci 0.364-r0 apk +icu-data-en 72.1-r1 apk +icu-libs 72.1-r1 apk +jq 1.6-r2 apk +lame 3.100-r2 apk +libacl 2.3.1-r1 apk +libass 0.16.0-r1 apk +libasyncns 0.8-r1 apk +libattr 2.5.1-r2 apk +libblkid 2.38.1-r1 apk +libbsd 0.11.7-r0 apk +libbz2 1.0.8-r4 apk +libc-utils 0.7.2-r3 apk +libcrypto3 3.0.8-r0 apk +libcurl 7.88.1-r0 apk +libdav1d 1.0.0-r2 apk +libdrm 2.4.114-r0 apk +libexpat 2.5.0-r0 apk +libffi 3.4.4-r0 apk +libgcc 12.2.1_git20220924-r4 apk +libgomp 12.2.1_git20220924-r4 apk +libintl 0.21.1-r1 apk +libjpeg-turbo 2.1.4-r0 apk +libltdl 2.4.7-r1 apk +libmd 1.0.4-r0 apk +libmount 2.38.1-r1 apk +libogg 1.3.5-r2 apk +libpciaccess 0.17-r0 apk +libpng 1.6.38-r0 apk +libproc 3.3.17-r2 apk +libpulse 16.1-r6 apk +librist 0.2.7-r0 apk +libsndfile 1.1.0-r2 apk +libsodium 1.0.18-r2 apk +libsrt 1.5.1-r0 apk +libssh 0.10.4-r0 apk +libssl3 3.0.8-r0 apk +libstdc++ 12.2.1_git20220924-r4 apk +libtasn1 4.19.0-r0 apk +libtheora 1.1.1-r16 apk +libunistring 1.1-r0 apk +libva 2.16.0-r0 apk +libvdpau 1.5-r0 apk +libvorbis 1.3.7-r0 apk +libvpx 1.12.0-r1 apk +libwebp 1.2.4-r1 apk +libx11 1.8.4-r0 apk +libxau 1.0.10-r0 apk +libxcb 1.15-r0 apk +libxdmcp 1.1.4-r0 apk +libxext 1.3.5-r0 apk +libxfixes 6.0.0-r0 apk +libzmq 4.3.4-r1 apk +linux-pam 1.5.2-r1 apk +mbedtls 2.28.2-r0 apk +musl 1.2.3-r4 apk +musl-utils 1.2.3-r4 apk +ncurses-libs 6.3_p20221119-r0 apk +ncurses-terminfo-base 6.3_p20221119-r0 apk +netcat-openbsd 1.130-r4 apk +nettle 3.8.1-r0 apk +nghttp2-libs 1.51.0-r0 apk +numactl 2.0.16-r1 apk +oniguruma 6.9.8-r0 apk +opus 1.3.1-r1 apk +orc 0.4.33-r0 apk +p11-kit 0.24.1-r1 apk +pcre2 10.42-r0 apk +procps 3.3.17-r2 apk +readline 8.2.0-r0 apk +runtime.any.System.Collections 4.3.0 dotnet +runtime.any.System.Diagnostics.Tools 4.3.0 dotnet +runtime.any.System.Diagnostics.Tracing 4.3.0 dotnet +runtime.any.System.Globalization 4.3.0 dotnet +runtime.any.System.Globalization.Calendars 4.3.0 dotnet +runtime.any.System.IO 4.3.0 dotnet +runtime.any.System.Reflection 4.3.0 dotnet +runtime.any.System.Reflection.Extensions 4.3.0 dotnet +runtime.any.System.Reflection.Primitives 4.3.0 dotnet +runtime.any.System.Resources.ResourceManager 4.3.0 dotnet +runtime.any.System.Runtime 4.3.0 dotnet +runtime.any.System.Runtime.Handles 4.3.0 dotnet +runtime.any.System.Runtime.InteropServices 4.3.0 dotnet +runtime.any.System.Text.Encoding 4.3.0 dotnet +runtime.any.System.Text.Encoding.Extensions 4.3.0 dotnet +runtime.any.System.Threading.Tasks 4.3.0 dotnet +runtime.any.System.Threading.Timer 4.3.0 dotnet +runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.native.System 4.3.0 dotnet +runtime.native.System.IO.Compression 4.3.0 dotnet +runtime.native.System.Net.Http 4.3.0 dotnet +runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet +runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet +runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.unix.Microsoft.Win32.Primitives 4.3.0 dotnet +runtime.unix.System.Console 4.3.0 dotnet +runtime.unix.System.Diagnostics.Debug 4.3.0 dotnet +runtime.unix.System.IO.FileSystem 4.3.0 dotnet +runtime.unix.System.Net.Primitives 4.3.0 dotnet +runtime.unix.System.Net.Sockets 4.3.0 dotnet +runtime.unix.System.Private.Uri 4.3.0 dotnet +runtime.unix.System.Runtime.Extensions 4.3.0 dotnet +scanelf 1.3.5-r1 apk +sdl2 2.26.3-r0 apk +shadow 4.13-r0 apk +skalibs 2.12.0.1-r0 apk +soxr 0.1.3-r3 apk +speexdsp 1.2.1-r0 apk +sqlite-libs 3.40.1-r0 apk +ssl_client 1.35.0-r29 apk +svt-av1-libs 1.3.0-r0 apk +tdb-libs 1.4.7-r0 apk +tzdata 2022f-r1 apk +utmps-libs 0.1.2.0-r1 apk +v4l-utils-libs 1.22.1-r2 apk +vidstab 1.1.0-r2 apk +wayland-libs-client 1.21.0-r1 apk +x264-libs 0.164_git20220602-r0 apk +x265-libs 3.5-r3 apk +xvidcore 1.3.7-r1 apk +xz 5.2.9-r0 apk +xz-libs 5.2.9-r0 apk +zlib 1.2.13-r0 apk From c3e90f552e4dabb7681568e79e415b77b73bdc31 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Mar 2023 10:00:11 -0500 Subject: [PATCH 242/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2660ea55..9632418a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,9 +190,9 @@ ca-certificates-bundle 2 chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk -curl 7.88.1-r0 apk +curl 7.88.1-r1 apk dbus-libs 1.14.4-r0 apk -ffmpeg-libs 5.1.2-r1 apk +ffmpeg-libs 5.1.2-r2 apk flac-libs 1.4.2-r0 apk fontconfig 2.14.1-r0 apk freetype 2.12.1-r0 apk @@ -215,8 +215,8 @@ libblkid 2 libbsd 0.11.7-r0 apk libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r0 apk -libcurl 7.88.1-r0 apk +libcrypto3 3.0.8-r1 apk +libcurl 7.88.1-r1 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk libexpat 2.5.0-r0 apk From 48d768318ba4b5799f3306d797aedf6d35eb624b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 09:59:27 -0500 Subject: [PATCH 243/790] Bot Updating Templated Files --- Jenkinsfile | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3cbc8101..281a1817 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,7 +56,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/stale.yml ./.github/workflows/call_invalid_helper.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } script{ env.LS_RELEASE_NUMBER = sh( @@ -230,17 +230,14 @@ pipeline { } sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' sh '''#! /bin/bash - set -e - docker pull ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest docker run --rm \ - -e DESTINATION=\"${IMAGE}/${META_TAG}/shellcheck-result.xml\" \ - -e FILE_NAME="shellcheck-result.xml" \ - -e MIMETYPE="text/xml" \ - -v ${WORKSPACE}:/mnt \ - -e SECRET_KEY=\"${S3_SECRET}\" \ - -e ACCESS_KEY=\"${S3_KEY}\" \ - -t ghcr.io/linuxserver/lsiodev-spaces-file-upload:latest \ - python /upload.py''' + -v ${WORKSPACE}:/mnt \ + -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ + -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ + ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + apk add --no-cache py3-pip && \ + pip install s3cmd && \ + s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' } } } @@ -277,7 +274,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # Stage 2 - Delete old templates - OLD_TEMPLATES=".github/ISSUE_TEMPLATE.md\n.github/ISSUE_TEMPLATE/issue.bug.md\n.github/ISSUE_TEMPLATE/issue.feature.md" + 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}" @@ -294,7 +291,7 @@ pipeline { git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old templates" + echo "Deleting old and deprecated templates" rm -Rf ${TEMPDIR} exit 0 else From 3c53cb2249af6cd98d5fcacff4a52911bcf18450 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 17:01:06 +0200 Subject: [PATCH 244/790] Bot Updating Templated Files --- .github/workflows/call_invalid_helper.yml | 12 ------------ .github/workflows/stale.yml | 23 ----------------------- 2 files changed, 35 deletions(-) delete mode 100644 .github/workflows/call_invalid_helper.yml delete mode 100755 .github/workflows/stale.yml diff --git a/.github/workflows/call_invalid_helper.yml b/.github/workflows/call_invalid_helper.yml deleted file mode 100644 index 773767c2..00000000 --- a/.github/workflows/call_invalid_helper.yml +++ /dev/null @@ -1,12 +0,0 @@ -name: Comment on invalid interaction -on: - issues: - types: - - labeled -jobs: - add-comment-on-invalid: - if: github.event.label.name == 'invalid' - permissions: - issues: write - uses: linuxserver/github-workflows/.github/workflows/invalid-interaction-helper.yml@v1 - secrets: inherit diff --git a/.github/workflows/stale.yml b/.github/workflows/stale.yml deleted file mode 100755 index 73dfe45a..00000000 --- a/.github/workflows/stale.yml +++ /dev/null @@ -1,23 +0,0 @@ -name: Mark stale issues and pull requests - -on: - schedule: - - cron: "30 1 * * *" - -jobs: - stale: - - runs-on: ubuntu-latest - - steps: - - uses: actions/stale@v6.0.1 - with: - stale-issue-message: "This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." - stale-pr-message: "This pull request has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions." - stale-issue-label: 'no-issue-activity' - stale-pr-label: 'no-pr-activity' - days-before-stale: 30 - days-before-close: 365 - exempt-issue-labels: 'awaiting-approval,work-in-progress' - exempt-pr-labels: 'awaiting-approval,work-in-progress' - repo-token: ${{ secrets.GITHUB_TOKEN }} From d35fa694469c4d29afbae7459d8fbb04cad16e19 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 17:02:40 +0200 Subject: [PATCH 245/790] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 14 ++++++++++++++ .github/workflows/call_issues_cron.yml | 13 +++++++++++++ .github/workflows/package_trigger_scheduler.yml | 2 +- .github/workflows/permissions.yml | 3 ++- 4 files changed, 30 insertions(+), 2 deletions(-) create mode 100755 .github/workflows/call_issue_pr_tracker.yml create mode 100755 .github/workflows/call_issues_cron.yml diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml new file mode 100755 index 00000000..87243e2c --- /dev/null +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -0,0 +1,14 @@ +name: Issue & PR Tracker + +on: + issues: + types: [opened,reopened,labeled,unlabeled] + pull_request_target: + types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled] + +jobs: + manage-project: + permissions: + issues: write + uses: linuxserver/github-workflows/.github/workflows/issue-pr-tracker.yml@v1 + secrets: inherit diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml new file mode 100755 index 00000000..99d5bd8a --- /dev/null +++ b/.github/workflows/call_issues_cron.yml @@ -0,0 +1,13 @@ +name: Mark stale issues and pull requests +on: + schedule: + - cron: '48 20 * * *' + workflow_dispatch: + +jobs: + stale: + permissions: + issues: write + pull-requests: write + uses: linuxserver/github-workflows/.github/workflows/issues-cron.yml@v1 + secrets: inherit diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 12cb080f..7a57eddb 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: Package Trigger Scheduler on: schedule: - - cron: '54 14 * * 6' + - cron: '12 1 * * 3' workflow_dispatch: jobs: diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml index 2df6b61b..1447bc55 100755 --- a/.github/workflows/permissions.yml +++ b/.github/workflows/permissions.yml @@ -1,9 +1,10 @@ name: Permission check on: - pull_request: + pull_request_target: paths: - '**/run' - '**/finish' + - '**/check' jobs: permission_check: uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 From e90eeab78a096219e5b14837e60c20aef88d78b0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Apr 2023 17:05:32 +0200 Subject: [PATCH 246/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9632418a..6da0fbca 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -192,7 +192,7 @@ cjson 1 coreutils 9.1-r0 apk curl 7.88.1-r1 apk dbus-libs 1.14.4-r0 apk -ffmpeg-libs 5.1.2-r2 apk +ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk fontconfig 2.14.1-r0 apk freetype 2.12.1-r0 apk @@ -215,7 +215,7 @@ libblkid 2 libbsd 0.11.7-r0 apk libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r1 apk +libcrypto3 3.0.8-r3 apk libcurl 7.88.1-r1 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk @@ -238,7 +238,7 @@ libsndfile 1 libsodium 1.0.18-r2 apk libsrt 1.5.1-r0 apk libssh 0.10.4-r0 apk -libssl3 3.0.8-r0 apk +libssl3 3.0.8-r1 apk libstdc++ 12.2.1_git20220924-r4 apk libtasn1 4.19.0-r0 apk libtheora 1.1.1-r16 apk @@ -256,7 +256,7 @@ libxext 1 libxfixes 6.0.0-r0 apk libzmq 4.3.4-r1 apk linux-pam 1.5.2-r1 apk -mbedtls 2.28.2-r0 apk +mbedtls 2.28.3-r0 apk musl 1.2.3-r4 apk musl-utils 1.2.3-r4 apk ncurses-libs 6.3_p20221119-r0 apk @@ -322,8 +322,8 @@ speexdsp 1 sqlite-libs 3.40.1-r0 apk ssl_client 1.35.0-r29 apk svt-av1-libs 1.3.0-r0 apk -tdb-libs 1.4.7-r0 apk -tzdata 2022f-r1 apk +tdb-libs 1.4.6-r0 apk +tzdata 2023b-r1 apk utmps-libs 0.1.2.0-r1 apk v4l-utils-libs 1.22.1-r2 apk vidstab 1.1.0-r2 apk From b3da800424ce7da1069f60aa82d1f339a26e536f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Apr 2023 04:00:58 +0200 Subject: [PATCH 247/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6da0fbca..9d14f4fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -176,7 +176,7 @@ TagLibSharp-Lidarr 2 alpine-baselayout 3.4.0-r0 apk alpine-baselayout-data 3.4.0-r0 apk alpine-keys 2.4-r1 apk -alpine-release 3.17.2-r0 apk +alpine-release 3.17.3-r0 apk alsa-lib 1.2.8-r0 apk aom-libs 3.5.0-r0 apk apk-tools 2.12.10-r1 apk @@ -238,7 +238,7 @@ libsndfile 1 libsodium 1.0.18-r2 apk libsrt 1.5.1-r0 apk libssh 0.10.4-r0 apk -libssl3 3.0.8-r1 apk +libssl3 3.0.8-r3 apk libstdc++ 12.2.1_git20220924-r4 apk libtasn1 4.19.0-r0 apk libtheora 1.1.1-r16 apk @@ -323,7 +323,7 @@ sqlite-libs 3 ssl_client 1.35.0-r29 apk svt-av1-libs 1.3.0-r0 apk tdb-libs 1.4.6-r0 apk -tzdata 2023b-r1 apk +tzdata 2023c-r0 apk utmps-libs 0.1.2.0-r1 apk v4l-utils-libs 1.22.1-r2 apk vidstab 1.1.0-r2 apk From 679f3d4783f0ebac99a44159351f8a3354e516d7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Apr 2023 04:13:13 +0200 Subject: [PATCH 248/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9d14f4fd..4ea0a8c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -314,7 +314,7 @@ runtime.unix.System.Net.Sockets 4 runtime.unix.System.Private.Uri 4.3.0 dotnet runtime.unix.System.Runtime.Extensions 4.3.0 dotnet scanelf 1.3.5-r1 apk -sdl2 2.26.3-r0 apk +sdl2 2.26.5-r0 apk shadow 4.13-r0 apk skalibs 2.12.0.1-r0 apk soxr 0.1.3-r3 apk From e8eb8b337e27cbde04b3ba1ad367e8bfcde94ccc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Apr 2023 23:22:57 -0500 Subject: [PATCH 249/790] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4ea0a8c4..137f5aa8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -17,18 +17,18 @@ Microsoft.Extensions.Configuration 6 Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.0 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet Microsoft.Extensions.Configuration.Json 6.0.0 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.0 dotnet -Microsoft.Extensions.DependencyInjection 6.0.0 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet -Microsoft.Extensions.Hosting 6.0.0 dotnet +Microsoft.Extensions.Hosting 6.0.1 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.0 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1 dotnet Microsoft.Extensions.Logging 6.0.0 dotnet Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet @@ -97,7 +97,7 @@ System.Collections 4 System.Collections.Concurrent 4.3.0 dotnet System.ComponentModel 4.3.0 dotnet System.ComponentModel.Annotations 4.4.1 dotnet -System.Configuration.ConfigurationManager 6.0.0 dotnet +System.Configuration.ConfigurationManager 6.0.1 dotnet System.Console 4.3.0 dotnet System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet System.Diagnostics.Debug 4.3.0 dotnet @@ -161,7 +161,7 @@ System.Text.Encoding.CodePages 5 System.Text.Encoding.CodePages 6.0.0 dotnet System.Text.Encoding.Extensions 4.3.0 dotnet System.Text.Encodings.Web 6.0.0 dotnet -System.Text.Json 6.0.5 dotnet +System.Text.Json 6.0.7 dotnet System.Text.RegularExpressions 4.3.0 dotnet System.Threading 4.3.0 dotnet System.Threading.Tasks 4.3.0 dotnet From f531ed9ce08d2e8b8b912f180c39de4d15299323 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Apr 2023 11:03:06 -0500 Subject: [PATCH 250/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 137f5aa8..6c96b47d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,7 +190,7 @@ ca-certificates-bundle 2 chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk -curl 7.88.1-r1 apk +curl 8.0.1-r0 apk dbus-libs 1.14.4-r0 apk ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk @@ -216,7 +216,7 @@ libbsd 0 libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk libcrypto3 3.0.8-r3 apk -libcurl 7.88.1-r1 apk +libcurl 8.0.1-r0 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk libexpat 2.5.0-r0 apk From fbf894160f4fe308deaa84796b39b8ca39e04bb9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 24 Apr 2023 21:10:20 +0000 Subject: [PATCH 251/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6c96b47d..e2ca1e0e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -215,7 +215,7 @@ libblkid 2 libbsd 0.11.7-r0 apk libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r3 apk +libcrypto3 3.0.8-r4 apk libcurl 8.0.1-r0 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk @@ -238,7 +238,7 @@ libsndfile 1 libsodium 1.0.18-r2 apk libsrt 1.5.1-r0 apk libssh 0.10.4-r0 apk -libssl3 3.0.8-r3 apk +libssl3 3.0.8-r4 apk libstdc++ 12.2.1_git20220924-r4 apk libtasn1 4.19.0-r0 apk libtheora 1.1.1-r16 apk From 3afab3c7ef02dc207be21ac0c12c7cc9299a4e96 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Apr 2023 02:13:41 +0000 Subject: [PATCH 252/790] Bot Updating Templated Files --- Jenkinsfile | 91 +++++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 85 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 281a1817..36bf2c83 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,10 +39,11 @@ pipeline { // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ + sh '''docker pull quay.io/skopeo/stable:v1 || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( - script: '''docker run --rm ghcr.io/linuxserver/alexeiled-skopeo sh -c 'skopeo inspect docker://docker.io/'${DOCKERHUB_IMAGE}':nightly 2>/dev/null' | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', + script: '''docker run --rm quay.io/skopeo/stable:v1 inspect docker://ghcr.io/${LS_USER}/${CONTAINER_NAME}:nightly 2>/dev/null | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() env.LS_RELEASE_NOTES = sh( script: '''cat readme-vars.yml | awk -F \\" '/date: "[0-9][0-9].[0-9][0-9].[0-9][0-9]:/ {print $4;exit;}' | sed -E ':a;N;$!ba;s/\\r{0,1}\\n/\\\\n/g' ''', @@ -228,7 +229,7 @@ pipeline { script{ env.SHELLCHECK_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/shellcheck-result.xml' } - sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-shellcheck/master/checkrun.sh | /bin/bash''' + sh '''curl -sL https://raw.githubusercontent.com/linuxserver/docker-jenkins-builder/master/checkrun.sh | /bin/bash''' sh '''#! /bin/bash docker run --rm \ -v ${WORKSPACE}:/mnt \ @@ -376,6 +377,26 @@ pipeline { } } } + // If this is a nightly build check the S6 service file perms + stage("Check S6 Service file Permissions"){ + when { + branch "nightly" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + script{ + sh '''#! /bin/bash + WRONG_PERM=$(find ./ -path "./.git" -prune -o \\( -name "run" -o -name "finish" -o -name "check" \\) -not -perm -u=x,g=x,o=x -print) + if [[ -n "${WRONG_PERM}" ]]; then + echo "The following S6 service files are missing the executable bit; canceling the faulty build: ${WRONG_PERM}" + exit 1 + else + echo "S6 service file perms look good." + fi ''' + } + } + } /* ####################### GitLab Mirroring ####################### */ @@ -668,6 +689,7 @@ pipeline { ]) { script{ env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html' + env.CI_JSON_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/report.json' } sh '''#! /bin/bash set -e @@ -694,8 +716,6 @@ pipeline { -e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ - -e DO_REGION="ams3" \ - -e DO_BUCKET="lsio-ci" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } @@ -949,8 +969,67 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/issues/${PULL_REQUEST}/comments \ - -d '{"body": "I am a bot, here are the test results for this PR: \\n'${CI_URL}' \\n'${SHELLCHECK_URL}'"}' ''' + sh '''#! /bin/bash + # Function to retrieve JSON data from URL + get_json() { + local url="$1" + local response=$(curl -s "$url") + if [ $? -ne 0 ]; then + echo "Failed to retrieve JSON data from $url" + return 1 + fi + local json=$(echo "$response" | jq .) + if [ $? -ne 0 ]; then + echo "Failed to parse JSON data from $url" + return 1 + fi + echo "$json" + } + + build_table() { + local data="$1" + + # Get the keys in the JSON data + local keys=$(echo "$data" | jq -r 'to_entries | map(.key) | .[]') + + # Check if keys are empty + if [ -z "$keys" ]; then + echo "JSON report data does not contain any keys or the report does not exist." + return 1 + fi + + # Build table header + local header="| Tag | Passed |\\n| --- | --- |\\n" + + # Loop through the JSON data to build the table rows + local rows="" + for build in $keys; do + local status=$(echo "$data" | jq -r ".[\\"$build\\"].test_success") + if [ "$status" = "true" ]; then + status="✅" + else + status="❌" + fi + local row="| "$build" | "$status" |\\n" + rows="${rows}${row}" + done + + local table="${header}${rows}" + local escaped_table=$(echo "$table" | sed 's/\"/\\\\"/g') + echo "$escaped_table" + } + + # Retrieve JSON data from URL + data=$(get_json "$CI_JSON_URL") + # Create table from JSON data + table=$(build_table "$data") + echo -e "$table" + + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}"''' + } } } From 1fe6375e38e6fcc3a48ddb30471d15d1015e7926 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Apr 2023 02:14:44 +0000 Subject: [PATCH 253/790] Bot Updating Templated Files --- .github/workflows/call_issue_pr_tracker.yml | 6 ++++-- .github/workflows/external_trigger.yml | 8 ++++++++ .../workflows/external_trigger_scheduler.yml | 18 ++++++++++-------- .github/workflows/package_trigger.yml | 4 ++++ .../workflows/package_trigger_scheduler.yml | 8 ++++---- 5 files changed, 30 insertions(+), 14 deletions(-) diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml index 87243e2c..2c307843 100755 --- a/.github/workflows/call_issue_pr_tracker.yml +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -2,9 +2,11 @@ name: Issue & PR Tracker on: issues: - types: [opened,reopened,labeled,unlabeled] + types: [opened,reopened,labeled,unlabeled,closed] pull_request_target: - types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled] + types: [opened,reopened,review_requested,review_request_removed,labeled,unlabeled,closed] + pull_request_review: + types: [submitted,edited,dismissed] jobs: manage-project: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 18c8401b..a7f4609c 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -14,9 +14,11 @@ jobs: run: | if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" + echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" EXT_RELEASE=$(curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then @@ -30,6 +32,7 @@ jobs: fi EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') echo "**** External version: ${EXT_RELEASE} ****" + echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving last pushed version ****" image="linuxserver/lidarr" tag="nightly" @@ -65,14 +68,18 @@ jobs: exit 1 fi echo "**** Last pushed version: ${IMAGE_VERSION} ****" + echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" + echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" + echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" + echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") @@ -82,6 +89,7 @@ jobs: buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" echo "**** Jenkins job build url: ${buildurl} ****" + echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY echo "**** Attempting to change the Jenkins job description ****" curl -iX POST \ "${buildurl}submitDescription" \ diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index b59ed1cc..0bfbd11b 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -2,7 +2,7 @@ name: External Trigger Scheduler on: schedule: - - cron: '25 * * * *' + - cron: '30 * * * *' workflow_dispatch: jobs: @@ -17,18 +17,18 @@ jobs: run: | echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes - echo "**** Pulling the yq docker image ****" - docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ - | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) - if [ "$br" == "$ls_branch" ]; then - echo "**** Branch ${br} appears to be live; checking workflow. ****" + ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml) + ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') + ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') + if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then + echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." + echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ @@ -36,8 +36,10 @@ jobs: https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/external_trigger.yml/dispatches else echo "**** Workflow doesn't exist; skipping trigger. ****" + echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****" + echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY fi done diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 5a7e0a2d..0365e35a 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -14,13 +14,16 @@ jobs: run: | if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY }}" ]; then echo "**** Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" + echo "Github secret \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" + echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi echo "**** Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\". ****" + echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") @@ -30,6 +33,7 @@ jobs: buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" echo "**** Jenkins job build url: ${buildurl} ****" + echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY echo "**** Attempting to change the Jenkins job description ****" curl -iX POST \ "${buildurl}submitDescription" \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 7a57eddb..af0a39b8 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -17,18 +17,16 @@ jobs: run: | echo "**** Branches found: ****" git for-each-ref --format='%(refname:short)' refs/remotes - echo "**** Pulling the yq docker image ****" - docker pull ghcr.io/linuxserver/yq for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) do br=$(echo "$br" | sed 's|origin/||g') echo "**** Evaluating branch ${br} ****" - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml \ - | docker run --rm -i --entrypoint yq ghcr.io/linuxserver/yq -r .ls_branch) + ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then echo "**** Branch ${br} appears to be live; checking workflow. ****" if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" + echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ @@ -38,9 +36,11 @@ jobs: sleep 30 else echo "**** Workflow doesn't exist; skipping trigger. ****" + echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else echo "**** ${br} appears to be a dev branch; skipping trigger. ****" + echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" From b242c779f1287c1b5bf1eb5fc137861c0161938f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Apr 2023 02:02:05 -0500 Subject: [PATCH 254/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e2ca1e0e..d979d11c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -4,7 +4,7 @@ DryIoc.Microsoft.DependencyInjection 6 DryIoc.dll 5.1.0 dotnet Dynamitey 2.0.9.136 dotnet Equ 2.3.0 dotnet -FluentValidation 8.6.2 dotnet +FluentValidation 9.5.4 dotnet Ical.Net 4.2.0 dotnet ImpromptuInterface 7.0.1 dotnet Kveer.XmlRPC 1.2.0 dotnet From dd2d45431a068f0db9628e1f6b91860adcb94997 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Apr 2023 06:55:36 +0000 Subject: [PATCH 255/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d979d11c..65df03b5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -89,8 +89,8 @@ Servarr.FluentMigrator.Runner.SqlServerCe 3 SharpZipLib 1.3.3 dotnet SixLabors.ImageSharp 2.1.3 dotnet SpotifyAPI.Web 4.2.2 dotnet -Swashbuckle.AspNetCore.Swagger 6.4.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.4.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0 dotnet System.AppContext 4.3.0 dotnet System.Buffers 4.5.1 dotnet System.Collections 4.3.0 dotnet From 76e348590e37b8ee1325780d82f0ea8a21e1c90d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 5 May 2023 12:11:51 +0000 Subject: [PATCH 256/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 65df03b5..3d25d650 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -237,7 +237,7 @@ librist 0 libsndfile 1.1.0-r2 apk libsodium 1.0.18-r2 apk libsrt 1.5.1-r0 apk -libssh 0.10.4-r0 apk +libssh 0.10.5-r0 apk libssl3 3.0.8-r4 apk libstdc++ 12.2.1_git20220924-r4 apk libtasn1 4.19.0-r0 apk From 20bc7770626532fb1da44c8f59994fede8ef625e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 May 2023 14:39:15 +0000 Subject: [PATCH 257/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3d25d650..0f37320f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -185,8 +185,8 @@ brotli-libs 1 busybox 1.35.0 binary busybox 1.35.0-r29 apk busybox-binsh 1.35.0-r29 apk -ca-certificates 20220614-r4 apk -ca-certificates-bundle 20220614-r4 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk From 7fc0309ea3fae2c324a72c3121074fe4da1fdfdf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 May 2023 23:45:09 +0000 Subject: [PATCH 258/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0f37320f..d4ebdd63 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -257,7 +257,7 @@ libxfixes 6 libzmq 4.3.4-r1 apk linux-pam 1.5.2-r1 apk mbedtls 2.28.3-r0 apk -musl 1.2.3-r4 apk +musl 1.2.3-r5 apk musl-utils 1.2.3-r4 apk ncurses-libs 6.3_p20221119-r0 apk ncurses-terminfo-base 6.3_p20221119-r0 apk From 9cdbe01742ee706a16c58a36980944eb0cd1688b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 May 2023 11:51:13 +0000 Subject: [PATCH 259/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d4ebdd63..69640a0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,7 +190,7 @@ ca-certificates-bundle 2 chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk -curl 8.0.1-r0 apk +curl 8.1.0-r1 apk dbus-libs 1.14.4-r0 apk ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk @@ -216,7 +216,7 @@ libbsd 0 libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk libcrypto3 3.0.8-r4 apk -libcurl 8.0.1-r0 apk +libcurl 8.1.0-r1 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk libexpat 2.5.0-r0 apk @@ -258,7 +258,7 @@ libzmq 4 linux-pam 1.5.2-r1 apk mbedtls 2.28.3-r0 apk musl 1.2.3-r5 apk -musl-utils 1.2.3-r4 apk +musl-utils 1.2.3-r5 apk ncurses-libs 6.3_p20221119-r0 apk ncurses-terminfo-base 6.3_p20221119-r0 apk netcat-openbsd 1.130-r4 apk From 1cdf687c36dab8d7e2084b939a99595546f405a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 May 2023 20:39:38 +0000 Subject: [PATCH 260/790] Bot Updating Templated Files --- Jenkinsfile | 121 ++++++++++++++++++++++------------------------------ 1 file changed, 50 insertions(+), 71 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 36bf2c83..bda4d181 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -39,7 +39,12 @@ pipeline { // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ - sh '''docker pull quay.io/skopeo/stable:v1 || : ''' + sh '''#! /bin/bash + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -204,12 +209,12 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } else { - env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } - env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST - env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-pr-' + env.PULL_REQUEST + env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' @@ -337,6 +342,8 @@ pipeline { git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then cd ${TEMPDIR}/unraid/templates/ @@ -428,8 +435,7 @@ pipeline { } steps{ sh '''#! /bin/bash - set -e - PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid') + PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid' || :) if [ -z "${PACKAGE_UUID}" ]; then echo "Adding package to Scarf.sh" curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ @@ -539,9 +545,12 @@ pipeline { retry(5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" } - sh '''docker rmi \ - ${IMAGE}:arm32v7-${META_TAG} \ - ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + sh '''#! /bin/bash + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : ''' } } stage('Build ARM64') { @@ -574,9 +583,12 @@ pipeline { retry(5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" } - sh '''docker rmi \ - ${IMAGE}:arm64v8-${META_TAG} \ - ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || :''' + sh '''#! /bin/bash + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : ''' } } } @@ -637,13 +649,6 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - sh '''#! /bin/bash - echo "Packages were updated. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then - docker rmi ${IMAGE}:amd64-${META_TAG} - else - docker rmi ${IMAGE}:${META_TAG} - fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -661,13 +666,6 @@ pipeline { } } steps { - sh '''#! /bin/bash - echo "There are no package updates. Cleaning up the image and exiting." - if [ "${MULTIARCH}" == "true" ] && [ "${PACKAGE_CHECK}" == "false" ]; then - docker rmi ${IMAGE}:amd64-${META_TAG} - else - docker rmi ${IMAGE}:${META_TAG} - fi''' script{ env.EXIT_STATUS = 'ABORTED' } @@ -768,17 +766,6 @@ pipeline { done ''' } - sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker rmi \ - ${DELETEIMAGE}:${META_TAG} \ - ${DELETEIMAGE}:${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:nightly || : - if [ -n "${SEMVER}" ]; then - docker rmi ${DELETEIMAGE}:${SEMVER} || : - fi - done - ''' } } } @@ -872,29 +859,6 @@ pipeline { done ''' } - sh '''#! /bin/bash - for DELETEIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker rmi \ - ${DELETEIMAGE}:amd64-${META_TAG} \ - ${DELETEIMAGE}:amd64-nightly \ - ${DELETEIMAGE}:amd64-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm32v7-${META_TAG} \ - ${DELETEIMAGE}:arm32v7-nightly \ - ${DELETEIMAGE}:arm32v7-${EXT_RELEASE_TAG} \ - ${DELETEIMAGE}:arm64v8-${META_TAG} \ - ${DELETEIMAGE}:arm64v8-nightly \ - ${DELETEIMAGE}:arm64v8-${EXT_RELEASE_TAG} || : - if [ -n "${SEMVER}" ]; then - docker rmi \ - ${DELETEIMAGE}:amd64-${SEMVER} \ - ${DELETEIMAGE}:arm32v7-${SEMVER} \ - ${DELETEIMAGE}:arm64v8-${SEMVER} || : - fi - done - docker rmi \ - ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} \ - ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || : - ''' } } } @@ -965,7 +929,6 @@ pipeline { stage('Pull Request Comment') { when { not {environment name: 'CHANGE_ID', value: ''} - environment name: 'CI', value: 'true' environment name: 'EXIT_STATUS', value: '' } steps { @@ -1019,16 +982,24 @@ pipeline { echo "$escaped_table" } - # Retrieve JSON data from URL - data=$(get_json "$CI_JSON_URL") - # Create table from JSON data - table=$(build_table "$data") - echo -e "$table" + if [[ "${CI}" = "true" ]]; then + # Retrieve JSON data from URL + data=$(get_json "$CI_JSON_URL") + # Create table from JSON data + table=$(build_table "$data") + echo -e "$table" - curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}"''' + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" + else + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" + fi + ''' } } @@ -1055,6 +1026,14 @@ pipeline { } } cleanup { + sh '''#! /bin/bash + echo "Performing docker system prune!!" + containers=$(docker ps -aq) + if [[ -n "${containers}" ]]; then + docker stop ${containers} + fi + docker system prune -af --volumes || : + ''' cleanWs() } } From 6dbda6a154a9d555a1ef62ade2f60d3d77c1a8db Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 May 2023 02:19:20 +0000 Subject: [PATCH 261/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 69640a0a..b2a273b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -247,7 +247,7 @@ libva 2 libvdpau 1.5-r0 apk libvorbis 1.3.7-r0 apk libvpx 1.12.0-r1 apk -libwebp 1.2.4-r1 apk +libwebp 1.2.4-r2 apk libx11 1.8.4-r0 apk libxau 1.0.10-r0 apk libxcb 1.15-r0 apk From e90961858b94e32f550ee8d967b6116766835d82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 May 2023 00:11:17 +0000 Subject: [PATCH 262/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2a273b4..46e24a86 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -197,7 +197,7 @@ flac-libs 1 fontconfig 2.14.1-r0 apk freetype 2.12.1-r0 apk fribidi 1.0.12-r0 apk -glib 2.74.6-r0 apk +glib 2.74.7-r0 apk gmp 6.2.1-r2 apk gnutls 3.7.8-r3 apk graphite2 1.3.14-r2 apk From 8d11f80a4517f8a7893fbfe680f0f2766c49446e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 May 2023 15:08:56 +0000 Subject: [PATCH 263/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 46e24a86..ab05fa3a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,7 +190,7 @@ ca-certificates-bundle 2 chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk -curl 8.1.0-r1 apk +curl 8.1.1-r1 apk dbus-libs 1.14.4-r0 apk ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk @@ -216,7 +216,7 @@ libbsd 0 libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk libcrypto3 3.0.8-r4 apk -libcurl 8.1.0-r1 apk +libcurl 8.1.1-r1 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk libexpat 2.5.0-r0 apk @@ -259,8 +259,8 @@ linux-pam 1 mbedtls 2.28.3-r0 apk musl 1.2.3-r5 apk musl-utils 1.2.3-r5 apk -ncurses-libs 6.3_p20221119-r0 apk -ncurses-terminfo-base 6.3_p20221119-r0 apk +ncurses-libs 6.3_p20221119-r1 apk +ncurses-terminfo-base 6.3_p20221119-r1 apk netcat-openbsd 1.130-r4 apk nettle 3.8.1-r0 apk nghttp2-libs 1.51.0-r0 apk From 3ef06e15bc53bfdd961151be9cc22586f04cdf81 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 May 2023 02:41:38 +0000 Subject: [PATCH 264/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ab05fa3a..720916ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -215,7 +215,7 @@ libblkid 2 libbsd 0.11.7-r0 apk libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk -libcrypto3 3.0.8-r4 apk +libcrypto3 3.0.9-r1 apk libcurl 8.1.1-r1 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk From 3745d23e06aed407d98bf361c8268d6b6fb14c6c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Jun 2023 21:53:09 +0000 Subject: [PATCH 265/790] Bot Updating Package Versions --- package_versions.txt | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 720916ce..7aa2ef37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,14 +1,14 @@ NAME VERSION TYPE Dapper 2.0.123 dotnet -DryIoc.Microsoft.DependencyInjection 6.0.2 dotnet -DryIoc.dll 5.1.0 dotnet +DryIoc.Microsoft.DependencyInjection 6.1.1 dotnet +DryIoc.dll 5.3.4 dotnet Dynamitey 2.0.9.136 dotnet Equ 2.3.0 dotnet FluentValidation 9.5.4 dotnet Ical.Net 4.2.0 dotnet ImpromptuInterface 7.0.1 dotnet Kveer.XmlRPC 1.2.0 dotnet -MailKit 2.15.0 dotnet +MailKit 3.6.0 dotnet Microsoft.CSharp 4.5.0 dotnet Microsoft.Data.SqlClient 2.1.2 dotnet Microsoft.Data.SqlClient.SNI.runtime 2.1.1 dotnet @@ -46,13 +46,12 @@ Microsoft.IdentityModel.Protocols 6 Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet Microsoft.IdentityModel.Tokens 6.8.0 dotnet Microsoft.NETCore.Platforms 1.1.0 dotnet -Microsoft.NETCore.Platforms 5.0.0 dotnet Microsoft.NETCore.Targets 1.1.0 dotnet Microsoft.OpenApi 1.2.3 dotnet Microsoft.Win32.Primitives 4.3.0 dotnet Microsoft.Win32.Registry 5.0.0 dotnet Microsoft.Win32.SystemEvents 6.0.0 dotnet -MimeKit 2.15.0 dotnet +MimeKit 3.6.0 dotnet Mono.Nat 3.0.1 dotnet Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 2.0.7 dotnet @@ -64,7 +63,7 @@ Newtonsoft.Json 1 NodaTime 3.0.0 dotnet Npgsql 6.0.8 dotnet Polly.Contrib.WaitAndRetry 1.1.1 dotnet -Portable.BouncyCastle 1.8.10 dotnet +Portable.BouncyCastle 1.9.0 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0 dotnet Servarr.FluentMigrator 3.3.2.9 dotnet @@ -87,12 +86,12 @@ Servarr.FluentMigrator.Runner.SqlAnywhere 3 Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet SharpZipLib 1.3.3 dotnet -SixLabors.ImageSharp 2.1.3 dotnet +SixLabors.ImageSharp 3.0.1 dotnet SpotifyAPI.Web 4.2.2 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0 dotnet System.AppContext 4.3.0 dotnet -System.Buffers 4.5.1 dotnet +System.Buffers 4.3.0 dotnet System.Collections 4.3.0 dotnet System.Collections.Concurrent 4.3.0 dotnet System.ComponentModel 4.3.0 dotnet @@ -106,6 +105,7 @@ System.Diagnostics.EventLog 6 System.Diagnostics.Tools 4.3.0 dotnet System.Diagnostics.Tracing 4.3.0 dotnet System.Drawing.Common 6.0.0 dotnet +System.Formats.Asn1 6.0.0 dotnet System.Globalization 4.3.0 dotnet System.Globalization.Calendars 4.3.0 dotnet System.Globalization.Extensions 4.3.0 dotnet @@ -131,7 +131,7 @@ System.Reflection.Emit.ILGeneration 4 System.Reflection.Emit.Lightweight 4.3.0 dotnet System.Reflection.Extensions 4.3.0 dotnet System.Reflection.Primitives 4.3.0 dotnet -System.Reflection.TypeExtensions 4.4.0 dotnet +System.Reflection.TypeExtensions 4.3.0 dotnet System.Reflection.TypeExtensions 4.7.0 dotnet System.Resources.ResourceManager 4.3.0 dotnet System.Runtime 4.3.0 dotnet @@ -145,11 +145,11 @@ System.Runtime.Loader 4 System.Runtime.Numerics 4.3.0 dotnet System.Security.AccessControl 6.0.0 dotnet System.Security.Cryptography.Algorithms 4.3.0 dotnet -System.Security.Cryptography.Cng 4.7.0 dotnet +System.Security.Cryptography.Cng 4.5.0 dotnet System.Security.Cryptography.Csp 4.3.0 dotnet System.Security.Cryptography.Encoding 4.3.0 dotnet System.Security.Cryptography.OpenSsl 4.3.0 dotnet -System.Security.Cryptography.Pkcs 4.7.0 dotnet +System.Security.Cryptography.Pkcs 6.0.0 dotnet System.Security.Cryptography.Primitives 4.3.0 dotnet System.Security.Cryptography.ProtectedData 6.0.0 dotnet System.Security.Cryptography.X509Certificates 4.3.0 dotnet @@ -157,7 +157,6 @@ System.Security.Permissions 6 System.Security.Principal.Windows 5.0.0 dotnet System.ServiceProcess.ServiceController 6.0.0 dotnet System.Text.Encoding 4.3.0 dotnet -System.Text.Encoding.CodePages 5.0.0 dotnet System.Text.Encoding.CodePages 6.0.0 dotnet System.Text.Encoding.Extensions 4.3.0 dotnet System.Text.Encodings.Web 6.0.0 dotnet @@ -190,7 +189,7 @@ ca-certificates-bundle 2 chromaprint 1.5.1-r2 apk cjson 1.7.15-r3 apk coreutils 9.1-r0 apk -curl 8.1.1-r1 apk +curl 8.1.2-r0 apk dbus-libs 1.14.4-r0 apk ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk @@ -216,7 +215,7 @@ libbsd 0 libbz2 1.0.8-r4 apk libc-utils 0.7.2-r3 apk libcrypto3 3.0.9-r1 apk -libcurl 8.1.1-r1 apk +libcurl 8.1.2-r0 apk libdav1d 1.0.0-r2 apk libdrm 2.4.114-r0 apk libexpat 2.5.0-r0 apk @@ -238,7 +237,7 @@ libsndfile 1 libsodium 1.0.18-r2 apk libsrt 1.5.1-r0 apk libssh 0.10.5-r0 apk -libssl3 3.0.8-r4 apk +libssl3 3.0.9-r1 apk libstdc++ 12.2.1_git20220924-r4 apk libtasn1 4.19.0-r0 apk libtheora 1.1.1-r16 apk From 3fcfec1e820d09469dffccdc4ebdf2811572dc34 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Tue, 6 Jun 2023 15:07:53 +0100 Subject: [PATCH 266/790] Rebase to 3.18 (nightly) --- .github/ISSUE_TEMPLATE/issue.bug.yml | 1 - Dockerfile | 5 +- Dockerfile.aarch64 | 5 +- Dockerfile.armhf | 46 ----------- Jenkinsfile | 78 ++++--------------- README.md | 3 +- jenkins-vars.yml | 1 + readme-vars.yml | 2 +- .../s6-overlay/s6-rc.d/svc-lidarr/data/check | 4 +- 9 files changed, 30 insertions(+), 115 deletions(-) delete mode 100644 Dockerfile.armhf diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index 59a10f56..ce3d19af 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -53,7 +53,6 @@ body: options: - x86-64 - arm64 - - armhf validations: required: true - type: textarea diff --git a/Dockerfile b/Dockerfile index 0e62c278..f71c0aa2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.17 +FROM ghcr.io/linuxserver/baseimage-alpine:3.18 # set version label ARG BUILD_DATE @@ -18,7 +18,8 @@ RUN \ apk add -U --upgrade --no-cache \ chromaprint \ icu-libs \ - sqlite-libs && \ + sqlite-libs \ + xmlstarlet && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 7c5310db..033c3c82 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.17 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18 # set version label ARG BUILD_DATE @@ -18,7 +18,8 @@ RUN \ apk add -U --upgrade --no-cache \ chromaprint \ icu-libs \ - sqlite-libs && \ + sqlite-libs \ + xmlstarlet && \ echo "**** install lidarr ****" && \ mkdir -p /app/lidarr/bin && \ if [ -z ${LIDARR_RELEASE+x} ]; then \ diff --git a/Dockerfile.armhf b/Dockerfile.armhf deleted file mode 100644 index 2b7ccc2b..00000000 --- a/Dockerfile.armhf +++ /dev/null @@ -1,46 +0,0 @@ -# syntax=docker/dockerfile:1 - -FROM ghcr.io/linuxserver/baseimage-alpine:3.17 - -# set version label -ARG BUILD_DATE -ARG VERSION -ARG LIDARR_RELEASE -LABEL build_version="Linuxserver.io version:- ${VERSION} Build-date:- ${BUILD_DATE}" -LABEL maintainer="Roxedus,thespad" - -# environment settings -ARG LIDARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" - -RUN \ - echo "**** install packages ****" && \ - apk add -U --upgrade --no-cache \ - chromaprint \ - icu-libs \ - sqlite-libs && \ - echo "**** install lidarr ****" && \ - mkdir -p /app/lidarr/bin && \ - if [ -z ${LIDARR_RELEASE+x} ]; then \ - LIDARR_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/changes?runtime=netcore&os=linuxmusl" \ - | jq -r '.[0].version'); \ - fi && \ - curl -o \ - /tmp/lidarr.tar.gz -L \ - "https://lidarr.servarr.com/v1/update/${LIDARR_BRANCH}/updatefile?version=${LIDARR_RELEASE}&os=linuxmusl&runtime=netcore&arch=arm" && \ - tar xzf \ - /tmp/lidarr.tar.gz -C \ - /app/lidarr/bin --strip-components=1 && \ - echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ - echo "**** cleanup ****" && \ - rm -rf \ - /app/lidarr/bin/Lidarr.Update \ - /tmp/* - -# copy local files -COPY root/ / - -# ports and volumes -EXPOSE 8686 - -VOLUME /config diff --git a/Jenkinsfile b/Jenkinsfile index bda4d181..8aca587d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -163,7 +163,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } else { env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER } @@ -186,7 +186,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lsiodev-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lsiodev-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } else { env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA } @@ -209,7 +209,7 @@ pipeline { env.GITLABIMAGE = 'registry.gitlab.com/linuxserver.io/' + env.LS_REPO + '/lspipepr-' + env.CONTAINER_NAME env.QUAYIMAGE = 'quay.io/linuxserver.io/lspipepr-' + env.CONTAINER_NAME if (env.MULTIARCH == 'true') { - env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm32v7-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + env.CI_TAGS = 'amd64-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST + '|arm64v8-nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } else { env.CI_TAGS = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA + '-pr-' + env.PULL_REQUEST } @@ -515,44 +515,6 @@ pipeline { --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." } } - stage('Build ARMHF') { - agent { - label 'ARMHF' - } - steps { - echo "Running on node: ${NODE_NAME}" - echo 'Logging into Github' - sh '''#! /bin/bash - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - ''' - sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.armhf" - sh "docker buildx build \ - --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ - --label \"org.opencontainers.image.authors=linuxserver.io\" \ - --label \"org.opencontainers.image.url=https://github.com/linuxserver/docker-lidarr/packages\" \ - --label \"org.opencontainers.image.documentation=https://docs.linuxserver.io/images/docker-lidarr\" \ - --label \"org.opencontainers.image.source=https://github.com/linuxserver/docker-lidarr\" \ - --label \"org.opencontainers.image.version=${EXT_RELEASE_CLEAN}-ls${LS_TAG_NUMBER}\" \ - --label \"org.opencontainers.image.revision=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.vendor=linuxserver.io\" \ - --label \"org.opencontainers.image.licenses=GPL-3.0-only\" \ - --label \"org.opencontainers.image.ref.name=${COMMIT_SHA}\" \ - --label \"org.opencontainers.image.title=Lidarr\" \ - --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ - --no-cache --pull -f Dockerfile.armhf -t ${IMAGE}:arm32v7-${META_TAG} --platform=linux/arm/v7 \ - --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." - sh "docker tag ${IMAGE}:arm32v7-${META_TAG} ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - retry(5) { - sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER}" - } - sh '''#! /bin/bash - containers=$(docker ps -aq) - if [[ -n "${containers}" ]]; then - docker stop ${containers} - fi - docker system prune -af --volumes || : ''' - } - } stage('Build ARM64') { agent { label 'ARM64' @@ -693,9 +655,7 @@ pipeline { set -e docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ @@ -798,8 +758,6 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm32v7-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm32v7-${META_TAG} docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi @@ -807,49 +765,47 @@ pipeline { docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-nightly docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker tag ${IMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-nightly - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${SEMVER} docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker push ${MANIFESTIMAGE}:amd64-${META_TAG} docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:amd64-nightly - docker push ${MANIFESTIMAGE}:arm32v7-${META_TAG} - docker push ${MANIFESTIMAGE}:arm32v7-nightly - docker push ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} docker push ${MANIFESTIMAGE}:arm64v8-nightly docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then docker push ${MANIFESTIMAGE}:amd64-${SEMVER} - docker push ${MANIFESTIMAGE}:arm32v7-${SEMVER} docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi docker manifest push --purge ${MANIFESTIMAGE}:nightly || : - docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:arm64v8-nightly - docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm32v7-nightly --os linux --arch arm + docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm64v8-nightly --os linux --arch arm64 --variant v8 docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} || : - docker manifest create ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:arm32v7-${META_TAG} --os linux --arch arm + 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}:arm32v7-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - docker manifest annotate ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm32v7-${EXT_RELEASE_TAG} --os linux --arch arm + 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 if [ -n "${SEMVER}" ]; then docker manifest push --purge ${MANIFESTIMAGE}:${SEMVER} || : - docker manifest create ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - docker manifest annotate ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:arm32v7-${SEMVER} --os linux --arch arm + 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-nightly") + if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-nightly || : + docker manifest create ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:amd64-nightly + docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-nightly + fi docker manifest push --purge ${MANIFESTIMAGE}:nightly docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} diff --git a/README.md b/README.md index 1ffbec7a..7722f4d8 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf | ✅ | arm32v7-\<version tag\> | +| armhf | ❌ | | ## Version Tags @@ -249,6 +249,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **06.06.23:** - Rebase nightly to Alpine 3.18. * **19.12.22:** - Rebase nightly to Alpine 3.17. * **27.10.22:** - Rebase nightly to Alpine 3.16, migrate to s6v3. * **04.02.22:** - Rebase nightly branch to Alpine. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index f88d59bf..25d2e0a2 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -6,6 +6,7 @@ custom_version_command: curl -sL https://lidarr.servarr.com/v1/update/nightly/ch release_type: prerelease release_tag: nightly ls_branch: nightly +build_armhf: false repo_vars: - BUILD_VERSION_ARG = 'LIDARR_RELEASE' - LS_USER = 'linuxserver' diff --git a/readme-vars.yml b/readme-vars.yml index 537bc070..26db4c28 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -11,7 +11,6 @@ project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_ available_architectures: - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - - { arch: "{{ arch_armhf }}", tag: "arm32v7-latest"} # development version development_versions: true @@ -59,6 +58,7 @@ app_setup_block: | # changelog changelogs: + - { date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18." } - { date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17." } - { date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3." } - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check index 3e81cdf0..0f8411b0 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/data/check @@ -1,6 +1,8 @@ #!/bin/bash -if [[ $(curl -sL "http://localhost:8686/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then +PORT=$(xmlstarlet sel -T -t -v /Config/Port /config/config.xml) + +if [[ $(curl -sL "http://localhost:${PORT:-8686}/ping" | jq -r '.status' 2>/dev/null) = "OK" ]]; then exit 0 else exit 1 From 0f1d2332a31e777e1236e1ff24135e1c1d399d25 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Tue, 6 Jun 2023 15:28:54 +0100 Subject: [PATCH 267/790] Quote url --- jenkins-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 25d2e0a2..39368afc 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -2,7 +2,7 @@ # jenkins variables project_name: docker-lidarr external_type: na -custom_version_command: curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version' +custom_version_command: curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version' release_type: prerelease release_tag: nightly ls_branch: nightly From 758367f8977899e4155e15d75d0610e2f232ca61 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Jun 2023 02:41:33 +0000 Subject: [PATCH 268/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7aa2ef37..9847803f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,7 +190,7 @@ chromaprint 1 cjson 1.7.15-r3 apk coreutils 9.1-r0 apk curl 8.1.2-r0 apk -dbus-libs 1.14.4-r0 apk +dbus-libs 1.14.8-r0 apk ffmpeg-libs 5.1.3-r0 apk flac-libs 1.4.2-r0 apk fontconfig 2.14.1-r0 apk From 126169ad6ca5594303adfc4267ecf70dc66bafd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Jun 2023 20:08:58 +0000 Subject: [PATCH 269/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8aca587d..deca7ca1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -110,7 +110,7 @@ pipeline { steps{ script{ env.EXT_RELEASE = sh( - script: ''' curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version' ''', + script: ''' curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version' ''', returnStdout: true).trim() env.RELEASE_LINK = 'custom_command' } From e13aca4766b0c59caf01f4d93a6fcc3e4ddd91f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Jun 2023 20:11:45 +0000 Subject: [PATCH 270/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index a7f4609c..679dcbc0 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -20,7 +20,7 @@ jobs: echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY echo "**** Retrieving external version ****" - EXT_RELEASE=$(curl -sL https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl | jq -r '.[0].version') + EXT_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version') if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "**** Can't retrieve external version, exiting ****" FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" From e1961df68986be3ac82de3d58528f4d82c121b93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Jun 2023 20:15:19 +0000 Subject: [PATCH 271/790] Bot Updating Package Versions --- package_versions.txt | 660 +++++++++++++++++++++---------------------- 1 file changed, 325 insertions(+), 335 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9847803f..482a2df5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,335 +1,325 @@ -NAME VERSION TYPE -Dapper 2.0.123 dotnet -DryIoc.Microsoft.DependencyInjection 6.1.1 dotnet -DryIoc.dll 5.3.4 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentValidation 9.5.4 dotnet -Ical.Net 4.2.0 dotnet -ImpromptuInterface 7.0.1 dotnet -Kveer.XmlRPC 1.2.0 dotnet -MailKit 3.6.0 dotnet -Microsoft.CSharp 4.5.0 dotnet -Microsoft.Data.SqlClient 2.1.2 dotnet -Microsoft.Data.SqlClient.SNI.runtime 2.1.1 dotnet -Microsoft.Extensions.Configuration 6.0.0 dotnet -Microsoft.Extensions.Configuration 6.0.1 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet -Microsoft.Extensions.Configuration.Json 6.0.0 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet -Microsoft.Extensions.Hosting 6.0.1 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1 dotnet -Microsoft.Extensions.Logging 6.0.0 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet -Microsoft.Extensions.Logging.Console 6.0.0 dotnet -Microsoft.Extensions.Logging.Debug 6.0.0 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet -Microsoft.Extensions.Options 6.0.0 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet -Microsoft.Extensions.Primitives 6.0.0 dotnet -Microsoft.Identity.Client 4.21.1 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet -Microsoft.IdentityModel.Logging 6.8.0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0 dotnet -Microsoft.NETCore.Platforms 1.1.0 dotnet -Microsoft.NETCore.Targets 1.1.0 dotnet -Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.Primitives 4.3.0 dotnet -Microsoft.Win32.Registry 5.0.0 dotnet -Microsoft.Win32.SystemEvents 6.0.0 dotnet -MimeKit 3.6.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet -MonoTorrent 2.0.7 dotnet -NETStandard.Library 1.6.1 dotnet -NLog 5.0.4 dotnet -NLog.Extensions.Logging 5.0.4 dotnet -NLog.Targets.Syslog 7.0.0 dotnet -Newtonsoft.Json 13.0.2 dotnet -NodaTime 3.0.0 dotnet -Npgsql 6.0.8 dotnet -Polly.Contrib.WaitAndRetry 1.1.1 dotnet -Portable.BouncyCastle 1.9.0 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0 dotnet -Servarr.FluentMigrator 3.3.2.9 dotnet -Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet -SharpZipLib 1.3.3 dotnet -SixLabors.ImageSharp 3.0.1 dotnet -SpotifyAPI.Web 4.2.2 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0 dotnet -System.AppContext 4.3.0 dotnet -System.Buffers 4.3.0 dotnet -System.Collections 4.3.0 dotnet -System.Collections.Concurrent 4.3.0 dotnet -System.ComponentModel 4.3.0 dotnet -System.ComponentModel.Annotations 4.4.1 dotnet -System.Configuration.ConfigurationManager 6.0.1 dotnet -System.Console 4.3.0 dotnet -System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet -System.Diagnostics.Debug 4.3.0 dotnet -System.Diagnostics.DiagnosticSource 6.0.0 dotnet -System.Diagnostics.EventLog 6.0.0 dotnet -System.Diagnostics.Tools 4.3.0 dotnet -System.Diagnostics.Tracing 4.3.0 dotnet -System.Drawing.Common 6.0.0 dotnet -System.Formats.Asn1 6.0.0 dotnet -System.Globalization 4.3.0 dotnet -System.Globalization.Calendars 4.3.0 dotnet -System.Globalization.Extensions 4.3.0 dotnet -System.IO 4.3.0 dotnet -System.IO.Abstractions 17.0.24 dotnet -System.IO.Compression 4.3.0 dotnet -System.IO.Compression.ZipFile 4.3.0 dotnet -System.IO.FileSystem 4.3.0 dotnet -System.IO.FileSystem.Primitives 4.3.0 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0 dotnet -System.Linq 4.3.0 dotnet -System.Linq.Expressions 4.3.0 dotnet -System.Memory 4.5.5 dotnet -System.Net.Http 4.3.0 dotnet -System.Net.NameResolution 4.3.0 dotnet -System.Net.Primitives 4.3.0 dotnet -System.Net.Sockets 4.3.0 dotnet -System.ObjectModel 4.3.0 dotnet -System.Private.Uri 4.3.0 dotnet -System.Reflection 4.3.0 dotnet -System.Reflection.Emit 4.3.0 dotnet -System.Reflection.Emit.ILGeneration 4.3.0 dotnet -System.Reflection.Emit.Lightweight 4.3.0 dotnet -System.Reflection.Extensions 4.3.0 dotnet -System.Reflection.Primitives 4.3.0 dotnet -System.Reflection.TypeExtensions 4.3.0 dotnet -System.Reflection.TypeExtensions 4.7.0 dotnet -System.Resources.ResourceManager 4.3.0 dotnet -System.Runtime 4.3.0 dotnet -System.Runtime.Caching 4.7.0 dotnet -System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet -System.Runtime.Extensions 4.3.0 dotnet -System.Runtime.Handles 4.3.0 dotnet -System.Runtime.InteropServices 4.3.0 dotnet -System.Runtime.InteropServices.RuntimeInformation 4.3.0 dotnet -System.Runtime.Loader 4.3.0 dotnet -System.Runtime.Numerics 4.3.0 dotnet -System.Security.AccessControl 6.0.0 dotnet -System.Security.Cryptography.Algorithms 4.3.0 dotnet -System.Security.Cryptography.Cng 4.5.0 dotnet -System.Security.Cryptography.Csp 4.3.0 dotnet -System.Security.Cryptography.Encoding 4.3.0 dotnet -System.Security.Cryptography.OpenSsl 4.3.0 dotnet -System.Security.Cryptography.Pkcs 6.0.0 dotnet -System.Security.Cryptography.Primitives 4.3.0 dotnet -System.Security.Cryptography.ProtectedData 6.0.0 dotnet -System.Security.Cryptography.X509Certificates 4.3.0 dotnet -System.Security.Permissions 6.0.0 dotnet -System.Security.Principal.Windows 5.0.0 dotnet -System.ServiceProcess.ServiceController 6.0.0 dotnet -System.Text.Encoding 4.3.0 dotnet -System.Text.Encoding.CodePages 6.0.0 dotnet -System.Text.Encoding.Extensions 4.3.0 dotnet -System.Text.Encodings.Web 6.0.0 dotnet -System.Text.Json 6.0.7 dotnet -System.Text.RegularExpressions 4.3.0 dotnet -System.Threading 4.3.0 dotnet -System.Threading.Tasks 4.3.0 dotnet -System.Threading.Tasks.Extensions 4.3.0 dotnet -System.Threading.ThreadPool 4.3.0 dotnet -System.Threading.Timer 4.3.0 dotnet -System.ValueTuple 4.5.0 dotnet -System.Windows.Extensions 6.0.0 dotnet -System.Xml.ReaderWriter 4.3.0 dotnet -System.Xml.XDocument 4.3.0 dotnet -TagLibSharp-Lidarr 2.2.0.27 dotnet -alpine-baselayout 3.4.0-r0 apk -alpine-baselayout-data 3.4.0-r0 apk -alpine-keys 2.4-r1 apk -alpine-release 3.17.3-r0 apk -alsa-lib 1.2.8-r0 apk -aom-libs 3.5.0-r0 apk -apk-tools 2.12.10-r1 apk -bash 5.2.15-r0 apk -brotli-libs 1.0.9-r9 apk -busybox 1.35.0 binary -busybox 1.35.0-r29 apk -busybox-binsh 1.35.0-r29 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk -chromaprint 1.5.1-r2 apk -cjson 1.7.15-r3 apk -coreutils 9.1-r0 apk -curl 8.1.2-r0 apk -dbus-libs 1.14.8-r0 apk -ffmpeg-libs 5.1.3-r0 apk -flac-libs 1.4.2-r0 apk -fontconfig 2.14.1-r0 apk -freetype 2.12.1-r0 apk -fribidi 1.0.12-r0 apk -glib 2.74.7-r0 apk -gmp 6.2.1-r2 apk -gnutls 3.7.8-r3 apk -graphite2 1.3.14-r2 apk -harfbuzz 5.3.1-r1 apk -hwdata-pci 0.364-r0 apk -icu-data-en 72.1-r1 apk -icu-libs 72.1-r1 apk -jq 1.6-r2 apk -lame 3.100-r2 apk -libacl 2.3.1-r1 apk -libass 0.16.0-r1 apk -libasyncns 0.8-r1 apk -libattr 2.5.1-r2 apk -libblkid 2.38.1-r1 apk -libbsd 0.11.7-r0 apk -libbz2 1.0.8-r4 apk -libc-utils 0.7.2-r3 apk -libcrypto3 3.0.9-r1 apk -libcurl 8.1.2-r0 apk -libdav1d 1.0.0-r2 apk -libdrm 2.4.114-r0 apk -libexpat 2.5.0-r0 apk -libffi 3.4.4-r0 apk -libgcc 12.2.1_git20220924-r4 apk -libgomp 12.2.1_git20220924-r4 apk -libintl 0.21.1-r1 apk -libjpeg-turbo 2.1.4-r0 apk -libltdl 2.4.7-r1 apk -libmd 1.0.4-r0 apk -libmount 2.38.1-r1 apk -libogg 1.3.5-r2 apk -libpciaccess 0.17-r0 apk -libpng 1.6.38-r0 apk -libproc 3.3.17-r2 apk -libpulse 16.1-r6 apk -librist 0.2.7-r0 apk -libsndfile 1.1.0-r2 apk -libsodium 1.0.18-r2 apk -libsrt 1.5.1-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.0.9-r1 apk -libstdc++ 12.2.1_git20220924-r4 apk -libtasn1 4.19.0-r0 apk -libtheora 1.1.1-r16 apk -libunistring 1.1-r0 apk -libva 2.16.0-r0 apk -libvdpau 1.5-r0 apk -libvorbis 1.3.7-r0 apk -libvpx 1.12.0-r1 apk -libwebp 1.2.4-r2 apk -libx11 1.8.4-r0 apk -libxau 1.0.10-r0 apk -libxcb 1.15-r0 apk -libxdmcp 1.1.4-r0 apk -libxext 1.3.5-r0 apk -libxfixes 6.0.0-r0 apk -libzmq 4.3.4-r1 apk -linux-pam 1.5.2-r1 apk -mbedtls 2.28.3-r0 apk -musl 1.2.3-r5 apk -musl-utils 1.2.3-r5 apk -ncurses-libs 6.3_p20221119-r1 apk -ncurses-terminfo-base 6.3_p20221119-r1 apk -netcat-openbsd 1.130-r4 apk -nettle 3.8.1-r0 apk -nghttp2-libs 1.51.0-r0 apk -numactl 2.0.16-r1 apk -oniguruma 6.9.8-r0 apk -opus 1.3.1-r1 apk -orc 0.4.33-r0 apk -p11-kit 0.24.1-r1 apk -pcre2 10.42-r0 apk -procps 3.3.17-r2 apk -readline 8.2.0-r0 apk -runtime.any.System.Collections 4.3.0 dotnet -runtime.any.System.Diagnostics.Tools 4.3.0 dotnet -runtime.any.System.Diagnostics.Tracing 4.3.0 dotnet -runtime.any.System.Globalization 4.3.0 dotnet -runtime.any.System.Globalization.Calendars 4.3.0 dotnet -runtime.any.System.IO 4.3.0 dotnet -runtime.any.System.Reflection 4.3.0 dotnet -runtime.any.System.Reflection.Extensions 4.3.0 dotnet -runtime.any.System.Reflection.Primitives 4.3.0 dotnet -runtime.any.System.Resources.ResourceManager 4.3.0 dotnet -runtime.any.System.Runtime 4.3.0 dotnet -runtime.any.System.Runtime.Handles 4.3.0 dotnet -runtime.any.System.Runtime.InteropServices 4.3.0 dotnet -runtime.any.System.Text.Encoding 4.3.0 dotnet -runtime.any.System.Text.Encoding.Extensions 4.3.0 dotnet -runtime.any.System.Threading.Tasks 4.3.0 dotnet -runtime.any.System.Threading.Timer 4.3.0 dotnet -runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.native.System 4.3.0 dotnet -runtime.native.System.IO.Compression 4.3.0 dotnet -runtime.native.System.Net.Http 4.3.0 dotnet -runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet -runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet -runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.unix.Microsoft.Win32.Primitives 4.3.0 dotnet -runtime.unix.System.Console 4.3.0 dotnet -runtime.unix.System.Diagnostics.Debug 4.3.0 dotnet -runtime.unix.System.IO.FileSystem 4.3.0 dotnet -runtime.unix.System.Net.Primitives 4.3.0 dotnet -runtime.unix.System.Net.Sockets 4.3.0 dotnet -runtime.unix.System.Private.Uri 4.3.0 dotnet -runtime.unix.System.Runtime.Extensions 4.3.0 dotnet -scanelf 1.3.5-r1 apk -sdl2 2.26.5-r0 apk -shadow 4.13-r0 apk -skalibs 2.12.0.1-r0 apk -soxr 0.1.3-r3 apk -speexdsp 1.2.1-r0 apk -sqlite-libs 3.40.1-r0 apk -ssl_client 1.35.0-r29 apk -svt-av1-libs 1.3.0-r0 apk -tdb-libs 1.4.6-r0 apk -tzdata 2023c-r0 apk -utmps-libs 0.1.2.0-r1 apk -v4l-utils-libs 1.22.1-r2 apk -vidstab 1.1.0-r2 apk -wayland-libs-client 1.21.0-r1 apk -x264-libs 0.164_git20220602-r0 apk -x265-libs 3.5-r3 apk -xvidcore 1.3.7-r1 apk -xz 5.2.9-r0 apk -xz-libs 5.2.9-r0 apk -zlib 1.2.13-r0 apk +NAME VERSION TYPE +Dapper 2.0.123 dotnet +DryIoc.Microsoft.DependencyInjection 6.1.1 dotnet +DryIoc.dll 5.3.4 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentValidation 9.5.4 dotnet +Ical.Net 4.2.0 dotnet +ImpromptuInterface 7.0.1 dotnet +Kveer.XmlRPC 1.2.0 dotnet +MailKit 3.6.0 dotnet +Microsoft.CSharp 4.5.0 dotnet +Microsoft.Data.SqlClient 2.1.2 dotnet +Microsoft.Data.SqlClient.SNI.runtime 2.1.1 dotnet +Microsoft.Extensions.Configuration 6.0.0 dotnet +Microsoft.Extensions.Configuration 6.0.1 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet +Microsoft.Extensions.Configuration.Json 6.0.0 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet +Microsoft.Extensions.Hosting 6.0.1 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1 dotnet +Microsoft.Extensions.Logging 6.0.0 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet +Microsoft.Extensions.Logging.Console 6.0.0 dotnet +Microsoft.Extensions.Logging.Debug 6.0.0 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet +Microsoft.Extensions.Options 6.0.0 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet +Microsoft.Extensions.Primitives 6.0.0 dotnet +Microsoft.Identity.Client 4.21.1 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet +Microsoft.IdentityModel.Logging 6.8.0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0 dotnet +Microsoft.NETCore.Platforms 1.1.0 dotnet +Microsoft.NETCore.Targets 1.1.0 dotnet +Microsoft.OpenApi 1.2.3 dotnet +Microsoft.Win32.Primitives 4.3.0 dotnet +Microsoft.Win32.Registry 5.0.0 dotnet +Microsoft.Win32.SystemEvents 6.0.0 dotnet +MimeKit 3.6.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet +MonoTorrent 2.0.7 dotnet +NETStandard.Library 1.6.1 dotnet +NLog 5.0.4 dotnet +NLog.Extensions.Logging 5.0.4 dotnet +NLog.Targets.Syslog 7.0.0 dotnet +Newtonsoft.Json 13.0.2 dotnet +NodaTime 3.0.0 dotnet +Npgsql 6.0.8 dotnet +Polly.Contrib.WaitAndRetry 1.1.1 dotnet +Portable.BouncyCastle 1.9.0 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0 dotnet +Servarr.FluentMigrator 3.3.2.9 dotnet +Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet +Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet +Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet +SharpZipLib 1.3.3 dotnet +SixLabors.ImageSharp 3.0.1 dotnet +SpotifyAPI.Web 4.2.2 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0 dotnet +System.AppContext 4.3.0 dotnet +System.Buffers 4.3.0 dotnet +System.Collections 4.3.0 dotnet +System.Collections.Concurrent 4.3.0 dotnet +System.ComponentModel 4.3.0 dotnet +System.ComponentModel.Annotations 4.4.1 dotnet +System.Configuration.ConfigurationManager 6.0.1 dotnet +System.Console 4.3.0 dotnet +System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet +System.Diagnostics.Debug 4.3.0 dotnet +System.Diagnostics.DiagnosticSource 6.0.0 dotnet +System.Diagnostics.EventLog 6.0.0 dotnet +System.Diagnostics.Tools 4.3.0 dotnet +System.Diagnostics.Tracing 4.3.0 dotnet +System.Drawing.Common 6.0.0 dotnet +System.Formats.Asn1 6.0.0 dotnet +System.Globalization 4.3.0 dotnet +System.Globalization.Calendars 4.3.0 dotnet +System.Globalization.Extensions 4.3.0 dotnet +System.IO 4.3.0 dotnet +System.IO.Abstractions 17.0.24 dotnet +System.IO.Compression 4.3.0 dotnet +System.IO.Compression.ZipFile 4.3.0 dotnet +System.IO.FileSystem 4.3.0 dotnet +System.IO.FileSystem.Primitives 4.3.0 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0 dotnet +System.Linq 4.3.0 dotnet +System.Linq.Expressions 4.3.0 dotnet +System.Memory 4.5.5 dotnet +System.Net.Http 4.3.0 dotnet +System.Net.NameResolution 4.3.0 dotnet +System.Net.Primitives 4.3.0 dotnet +System.Net.Sockets 4.3.0 dotnet +System.ObjectModel 4.3.0 dotnet +System.Private.Uri 4.3.0 dotnet +System.Reflection 4.3.0 dotnet +System.Reflection.Emit 4.3.0 dotnet +System.Reflection.Emit.ILGeneration 4.3.0 dotnet +System.Reflection.Emit.Lightweight 4.3.0 dotnet +System.Reflection.Extensions 4.3.0 dotnet +System.Reflection.Primitives 4.3.0 dotnet +System.Reflection.TypeExtensions 4.3.0 dotnet +System.Reflection.TypeExtensions 4.7.0 dotnet +System.Resources.ResourceManager 4.3.0 dotnet +System.Runtime 4.3.0 dotnet +System.Runtime.Caching 4.7.0 dotnet +System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet +System.Runtime.Extensions 4.3.0 dotnet +System.Runtime.Handles 4.3.0 dotnet +System.Runtime.InteropServices 4.3.0 dotnet +System.Runtime.InteropServices.RuntimeInformation 4.3.0 dotnet +System.Runtime.Loader 4.3.0 dotnet +System.Runtime.Numerics 4.3.0 dotnet +System.Security.AccessControl 6.0.0 dotnet +System.Security.Cryptography.Algorithms 4.3.0 dotnet +System.Security.Cryptography.Cng 4.5.0 dotnet +System.Security.Cryptography.Csp 4.3.0 dotnet +System.Security.Cryptography.Encoding 4.3.0 dotnet +System.Security.Cryptography.OpenSsl 4.3.0 dotnet +System.Security.Cryptography.Pkcs 6.0.0 dotnet +System.Security.Cryptography.Primitives 4.3.0 dotnet +System.Security.Cryptography.ProtectedData 6.0.0 dotnet +System.Security.Cryptography.X509Certificates 4.3.0 dotnet +System.Security.Permissions 6.0.0 dotnet +System.Security.Principal.Windows 5.0.0 dotnet +System.ServiceProcess.ServiceController 6.0.0 dotnet +System.Text.Encoding 4.3.0 dotnet +System.Text.Encoding.CodePages 6.0.0 dotnet +System.Text.Encoding.Extensions 4.3.0 dotnet +System.Text.Encodings.Web 6.0.0 dotnet +System.Text.Json 6.0.7 dotnet +System.Text.RegularExpressions 4.3.0 dotnet +System.Threading 4.3.0 dotnet +System.Threading.Tasks 4.3.0 dotnet +System.Threading.Tasks.Extensions 4.3.0 dotnet +System.Threading.ThreadPool 4.3.0 dotnet +System.Threading.Timer 4.3.0 dotnet +System.ValueTuple 4.5.0 dotnet +System.Windows.Extensions 6.0.0 dotnet +System.Xml.ReaderWriter 4.3.0 dotnet +System.Xml.XDocument 4.3.0 dotnet +TagLibSharp-Lidarr 2.2.0.27 dotnet +alpine-baselayout 3.4.3-r1 apk +alpine-baselayout-data 3.4.3-r1 apk +alpine-keys 2.4-r1 apk +alpine-release 3.18.0-r0 apk +aom-libs 3.6.1-r0 apk +apk-tools 2.14.0-r2 apk +bash 5.2.15-r5 apk +brotli-libs 1.0.9-r14 apk +busybox 1.36.1 binary +busybox 1.36.1-r0 apk +busybox-binsh 1.36.1-r0 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.15-r4 apk +coreutils 9.3-r1 apk +curl 8.1.2-r0 apk +ffmpeg-libavcodec 6.0-r14 apk +ffmpeg-libavformat 6.0-r14 apk +ffmpeg-libavutil 6.0-r14 apk +ffmpeg-libswresample 6.0-r14 apk +gmp 6.2.1-r3 apk +gnutls 3.8.0-r2 apk +hwdata-pci 0.370-r0 apk +icu-data-en 73.1-r1 apk +icu-libs 73.1-r1 apk +jq 1.6-r3 apk +lame-libs 3.100-r5 apk +lcms2 2.15-r2 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbluray 1.3.4-r0 apk +libbsd 0.11.7-r1 apk +libbz2 1.0.8-r5 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.1-r1 apk +libcurl 8.1.2-r0 apk +libdav1d 1.2.1-r0 apk +libdrm 2.4.115-r4 apk +libffi 3.4.4-r2 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgomp 12.2.1_git20220924-r10 apk +libgpg-error 1.47-r1 apk +libhwy 1.0.4-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libjxl 0.8.1-r5 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libogg 1.3.5-r4 apk +libopenmpt 0.7.1-r0 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.3-r1 apk +librist 0.2.7-r0 apk +libsodium 1.0.18-r3 apk +libsrt 1.5.1-r0 apk +libssh 0.10.5-r0 apk +libssl3 3.1.1-r1 apk +libstdc++ 12.2.1_git20220924-r10 apk +libtasn1 4.19.0-r1 apk +libtheora 1.1.1-r17 apk +libunistring 1.1-r1 apk +libva 2.18.0-r1 apk +libvdpau 1.5-r1 apk +libvorbis 1.3.7-r1 apk +libvpx 1.13.0-r1 apk +libwebp 1.3.0-r2 apk +libx11 1.8.4-r3 apk +libxau 1.0.11-r2 apk +libxcb 1.15-r1 apk +libxdmcp 1.1.4-r2 apk +libxext 1.3.5-r2 apk +libxfixes 6.0.1-r2 apk +libxml2 2.11.4-r0 apk +libxslt 1.1.38-r0 apk +libzmq 4.3.4-r4 apk +linux-pam 1.5.2-r10 apk +mbedtls 2.28.3-r1 apk +mpg123-libs 1.31.3-r1 apk +musl 1.2.4-r0 apk +musl-utils 1.2.4-r0 apk +ncurses-terminfo-base 6.4_p20230506-r0 apk +netcat-openbsd 1.219-r1 apk +nettle 3.8.1-r2 apk +nghttp2-libs 1.53.0-r0 apk +numactl 2.0.16-r4 apk +onevpl-libs 2023.2.1-r0 apk +oniguruma 6.9.8-r1 apk +opus 1.4-r0 apk +p11-kit 0.24.1-r2 apk +procps-ng 4.0.3-r1 apk +readline 8.2.1-r1 apk +runtime.any.System.Collections 4.3.0 dotnet +runtime.any.System.Diagnostics.Tools 4.3.0 dotnet +runtime.any.System.Diagnostics.Tracing 4.3.0 dotnet +runtime.any.System.Globalization 4.3.0 dotnet +runtime.any.System.Globalization.Calendars 4.3.0 dotnet +runtime.any.System.IO 4.3.0 dotnet +runtime.any.System.Reflection 4.3.0 dotnet +runtime.any.System.Reflection.Extensions 4.3.0 dotnet +runtime.any.System.Reflection.Primitives 4.3.0 dotnet +runtime.any.System.Resources.ResourceManager 4.3.0 dotnet +runtime.any.System.Runtime 4.3.0 dotnet +runtime.any.System.Runtime.Handles 4.3.0 dotnet +runtime.any.System.Runtime.InteropServices 4.3.0 dotnet +runtime.any.System.Text.Encoding 4.3.0 dotnet +runtime.any.System.Text.Encoding.Extensions 4.3.0 dotnet +runtime.any.System.Threading.Tasks 4.3.0 dotnet +runtime.any.System.Threading.Timer 4.3.0 dotnet +runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.native.System 4.3.0 dotnet +runtime.native.System.IO.Compression 4.3.0 dotnet +runtime.native.System.Net.Http 4.3.0 dotnet +runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet +runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet +runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet +runtime.unix.Microsoft.Win32.Primitives 4.3.0 dotnet +runtime.unix.System.Console 4.3.0 dotnet +runtime.unix.System.Diagnostics.Debug 4.3.0 dotnet +runtime.unix.System.IO.FileSystem 4.3.0 dotnet +runtime.unix.System.Net.Primitives 4.3.0 dotnet +runtime.unix.System.Net.Sockets 4.3.0 dotnet +runtime.unix.System.Private.Uri 4.3.0 dotnet +runtime.unix.System.Runtime.Extensions 4.3.0 dotnet +scanelf 1.3.7-r1 apk +shadow 4.13-r2 apk +skalibs 2.13.1.1-r1 apk +soxr 0.1.3-r5 apk +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r0 apk +svt-av1-libs 1.5.0-r0 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +wayland-libs-client 1.22.0-r2 apk +x264-libs 0.164_git20220602-r1 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r1 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 5901a029fa44ec9adee4cdb046604756dc5a6791 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Jun 2023 10:14:00 +0000 Subject: [PATCH 272/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 482a2df5..8c26ce1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -197,8 +197,8 @@ ffmpeg-libswresample 6 gmp 6.2.1-r3 apk gnutls 3.8.0-r2 apk hwdata-pci 0.370-r0 apk -icu-data-en 73.1-r1 apk -icu-libs 73.1-r1 apk +icu-data-en 73.2-r0 apk +icu-libs 73.2-r0 apk jq 1.6-r3 apk lame-libs 3.100-r5 apk lcms2 2.15-r2 apk @@ -220,7 +220,7 @@ libgpg-error 1 libhwy 1.0.4-r1 apk libidn2 2.3.4-r1 apk libintl 0.21.1-r7 apk -libjxl 0.8.1-r5 apk +libjxl 0.8.2-r0 apk libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libogg 1.3.5-r4 apk From 0dfe4f7b8c68f721fd1edac28efb090c3c2e0971 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Jun 2023 21:53:07 +0000 Subject: [PATCH 273/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8c26ce1e..28886f1f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -241,7 +241,7 @@ libvdpau 1 libvorbis 1.3.7-r1 apk libvpx 1.13.0-r1 apk libwebp 1.3.0-r2 apk -libx11 1.8.4-r3 apk +libx11 1.8.4-r4 apk libxau 1.0.11-r2 apk libxcb 1.15-r1 apk libxdmcp 1.1.4-r2 apk From e5408c8dc44c2642654d8cca79071b0df8af4cdf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Jun 2023 05:02:52 +0000 Subject: [PATCH 274/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 28886f1f..8c02a534 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -175,7 +175,7 @@ TagLibSharp-Lidarr 2 alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.0-r0 apk +alpine-release 3.18.2-r0 apk aom-libs 3.6.1-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk @@ -308,7 +308,7 @@ runtime.unix.System.Net.Sockets 4 runtime.unix.System.Private.Uri 4.3.0 dotnet runtime.unix.System.Runtime.Extensions 4.3.0 dotnet scanelf 1.3.7-r1 apk -shadow 4.13-r2 apk +shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk From d9f11e80cf226cd9b1f8da7bca2cc3c3d85b595a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 Jun 2023 02:21:43 +0000 Subject: [PATCH 275/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8c02a534..d5fb9ba9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -224,7 +224,7 @@ libjxl 0 libmd 1.0.4-r2 apk libncursesw 6.4_p20230506-r0 apk libogg 1.3.5-r4 apk -libopenmpt 0.7.1-r0 apk +libopenmpt 0.7.2-r0 apk libpciaccess 0.17-r2 apk libproc2 4.0.3-r1 apk librist 0.2.7-r0 apk From d7f2ce238afdd9fb549cb39177867cd39095d893 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 24 Jun 2023 18:14:30 +0000 Subject: [PATCH 276/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d5fb9ba9..aad5b855 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -190,10 +190,10 @@ chromaprint-libs 1 cjson 1.7.15-r4 apk coreutils 9.3-r1 apk curl 8.1.2-r0 apk -ffmpeg-libavcodec 6.0-r14 apk -ffmpeg-libavformat 6.0-r14 apk -ffmpeg-libavutil 6.0-r14 apk -ffmpeg-libswresample 6.0-r14 apk +ffmpeg-libavcodec 6.0-r15 apk +ffmpeg-libavformat 6.0-r15 apk +ffmpeg-libavutil 6.0-r15 apk +ffmpeg-libswresample 6.0-r15 apk gmp 6.2.1-r3 apk gnutls 3.8.0-r2 apk hwdata-pci 0.370-r0 apk @@ -313,7 +313,7 @@ skalibs 2 soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk ssl_client 1.36.1-r0 apk -svt-av1-libs 1.5.0-r0 apk +svt-av1-libs 1.6.0-r0 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk wayland-libs-client 1.22.0-r2 apk From 91ae8befcef5e7bd61b48c26fa64aa6d6cb18609 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 30 Jun 2023 11:28:09 +0000 Subject: [PATCH 277/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index aad5b855..2abca2d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -229,7 +229,7 @@ libpciaccess 0 libproc2 4.0.3-r1 apk librist 0.2.7-r0 apk libsodium 1.0.18-r3 apk -libsrt 1.5.1-r0 apk +libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk libssl3 3.1.1-r1 apk libstdc++ 12.2.1_git20220924-r10 apk @@ -240,7 +240,7 @@ libva 2 libvdpau 1.5-r1 apk libvorbis 1.3.7-r1 apk libvpx 1.13.0-r1 apk -libwebp 1.3.0-r2 apk +libwebp 1.3.1-r0 apk libx11 1.8.4-r4 apk libxau 1.0.11-r2 apk libxcb 1.15-r1 apk From 412c47e5970858b3f28b9d6999f579f1f78b0972 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 19:06:17 +0000 Subject: [PATCH 278/790] Bot Updating Templated Files --- Jenkinsfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index deca7ca1..0353cc28 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -280,7 +280,7 @@ pipeline { echo "Jenkinsfile is up to date." fi # 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" + 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" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -316,12 +316,13 @@ pipeline { mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : cd ${TEMPDIR}/repo/${LS_REPO}/ if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then echo ".jenkins-external" >> .gitignore git add .gitignore fi - git add ${TEMPLATED_FILES} + git add readme-vars.yml ${TEMPLATED_FILES} git commit -m 'Bot Updating Templated Files' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} From d3632e7988aaa098fd8d041a0ddc16522b1a7f38 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Jul 2023 19:08:40 +0000 Subject: [PATCH 279/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2abca2d0..15be780a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -197,8 +197,8 @@ ffmpeg-libswresample 6 gmp 6.2.1-r3 apk gnutls 3.8.0-r2 apk hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r0 apk -icu-libs 73.2-r0 apk +icu-data-en 73.2-r1 apk +icu-libs 73.2-r1 apk jq 1.6-r3 apk lame-libs 3.100-r5 apk lcms2 2.15-r2 apk From 4252e8ab4f24964ef6ad8adefd901b0415de2646 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jul 2023 17:29:53 +0000 Subject: [PATCH 280/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 15be780a..ffbc8f8e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -56,7 +56,7 @@ Mono.Nat 3 Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 2.0.7 dotnet NETStandard.Library 1.6.1 dotnet -NLog 5.0.4 dotnet +NLog 5.2.0 dotnet NLog.Extensions.Logging 5.0.4 dotnet NLog.Targets.Syslog 7.0.0 dotnet Newtonsoft.Json 13.0.2 dotnet From 1ece9b028f352312320a1649c343e0e611aee575 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 9 Jul 2023 12:36:11 +0000 Subject: [PATCH 281/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ffbc8f8e..998c5cd6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,8 +181,8 @@ apk-tools 2 bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk busybox 1.36.1 binary -busybox 1.36.1-r0 apk -busybox-binsh 1.36.1-r0 apk +busybox 1.36.1-r1 apk +busybox-binsh 1.36.1-r1 apk ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r6 apk @@ -312,7 +312,7 @@ shadow 4 skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r0 apk +ssl_client 1.36.1-r1 apk svt-av1-libs 1.6.0-r0 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk From d4daaae3c024c2687dff2661bb3b2ec5d9144419 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 13 Jul 2023 00:22:54 +0000 Subject: [PATCH 282/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 998c5cd6..d9f23137 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -197,8 +197,8 @@ ffmpeg-libswresample 6 gmp 6.2.1-r3 apk gnutls 3.8.0-r2 apk hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r1 apk -icu-libs 73.2-r1 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk jq 1.6-r3 apk lame-libs 3.100-r5 apk lcms2 2.15-r2 apk From e12935f1e83504b1f52f5f2e3e53a8a4498fe0a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Jul 2023 15:15:56 +0000 Subject: [PATCH 283/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d9f23137..6e6261ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -208,7 +208,7 @@ libbluray 1 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.1-r1 apk +libcrypto3 3.1.1-r2 apk libcurl 8.1.2-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk @@ -231,7 +231,7 @@ librist 0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.1-r1 apk +libssl3 3.1.1-r2 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From ee8385fda4b54ed9d499b468aa39ab86b1b38da9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 21 Jul 2023 05:23:28 +0000 Subject: [PATCH 284/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6e6261ed..c4adb99c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -208,7 +208,7 @@ libbluray 1 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.1-r2 apk +libcrypto3 3.1.1-r3 apk libcurl 8.1.2-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From 88203efdd477d465cdd6336abdab24ea288f4e48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Jul 2023 18:16:20 +0000 Subject: [PATCH 285/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c4adb99c..01cc7cd5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -189,7 +189,7 @@ chromaprint 1 chromaprint-libs 1.5.1-r6 apk cjson 1.7.15-r4 apk coreutils 9.3-r1 apk -curl 8.1.2-r0 apk +curl 8.2.0-r1 apk ffmpeg-libavcodec 6.0-r15 apk ffmpeg-libavformat 6.0-r15 apk ffmpeg-libavutil 6.0-r15 apk @@ -209,7 +209,7 @@ libbsd 0 libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.1-r3 apk -libcurl 8.1.2-r0 apk +libcurl 8.2.0-r1 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk libffi 3.4.4-r2 apk @@ -231,7 +231,7 @@ librist 0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.1-r2 apk +libssl3 3.1.1-r3 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk @@ -258,7 +258,7 @@ musl-utils 1 ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk nettle 3.8.1-r2 apk -nghttp2-libs 1.53.0-r0 apk +nghttp2-libs 1.55.1-r0 apk numactl 2.0.16-r4 apk onevpl-libs 2023.2.1-r0 apk oniguruma 6.9.8-r1 apk From cc2c5141b23ecb5a41c05b313baa73a0b965607d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 02:27:28 +0000 Subject: [PATCH 286/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 01cc7cd5..04638b78 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -253,7 +253,7 @@ libzmq 4 linux-pam 1.5.2-r10 apk mbedtls 2.28.3-r1 apk mpg123-libs 1.31.3-r1 apk -musl 1.2.4-r0 apk +musl 1.2.4-r1 apk musl-utils 1.2.4-r0 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk From 527c029adfe293016f79baec023c911ff7e5de82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 29 Jul 2023 16:00:27 +0000 Subject: [PATCH 287/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 04638b78..8eaa5663 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -181,15 +181,15 @@ apk-tools 2 bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk busybox 1.36.1 binary -busybox 1.36.1-r1 apk -busybox-binsh 1.36.1-r1 apk +busybox 1.36.1-r2 apk +busybox-binsh 1.36.1-r2 apk ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk cjson 1.7.15-r4 apk coreutils 9.3-r1 apk -curl 8.2.0-r1 apk +curl 8.2.1-r0 apk ffmpeg-libavcodec 6.0-r15 apk ffmpeg-libavformat 6.0-r15 apk ffmpeg-libavutil 6.0-r15 apk @@ -209,7 +209,7 @@ libbsd 0 libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.1-r3 apk -libcurl 8.2.0-r1 apk +libcurl 8.2.1-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk libffi 3.4.4-r2 apk @@ -254,7 +254,7 @@ linux-pam 1 mbedtls 2.28.3-r1 apk mpg123-libs 1.31.3-r1 apk musl 1.2.4-r1 apk -musl-utils 1.2.4-r0 apk +musl-utils 1.2.4-r1 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk nettle 3.8.1-r2 apk @@ -312,7 +312,7 @@ shadow 4 skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r1 apk +ssl_client 1.36.1-r2 apk svt-av1-libs 1.6.0-r0 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk From f0af8bb183ec311bdcba24958c0b3483518ddf80 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 05:25:52 +0000 Subject: [PATCH 288/790] Bot Updating Package Versions --- package_versions.txt | 808 ++++++++++++++++++++++++++----------------- 1 file changed, 483 insertions(+), 325 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8eaa5663..4b3065e1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,325 +1,483 @@ -NAME VERSION TYPE -Dapper 2.0.123 dotnet -DryIoc.Microsoft.DependencyInjection 6.1.1 dotnet -DryIoc.dll 5.3.4 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentValidation 9.5.4 dotnet -Ical.Net 4.2.0 dotnet -ImpromptuInterface 7.0.1 dotnet -Kveer.XmlRPC 1.2.0 dotnet -MailKit 3.6.0 dotnet -Microsoft.CSharp 4.5.0 dotnet -Microsoft.Data.SqlClient 2.1.2 dotnet -Microsoft.Data.SqlClient.SNI.runtime 2.1.1 dotnet -Microsoft.Extensions.Configuration 6.0.0 dotnet -Microsoft.Extensions.Configuration 6.0.1 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet -Microsoft.Extensions.Configuration.Json 6.0.0 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet -Microsoft.Extensions.Hosting 6.0.1 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1 dotnet -Microsoft.Extensions.Logging 6.0.0 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet -Microsoft.Extensions.Logging.Console 6.0.0 dotnet -Microsoft.Extensions.Logging.Debug 6.0.0 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet -Microsoft.Extensions.Options 6.0.0 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet -Microsoft.Extensions.Primitives 6.0.0 dotnet -Microsoft.Identity.Client 4.21.1 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet -Microsoft.IdentityModel.Logging 6.8.0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0 dotnet -Microsoft.NETCore.Platforms 1.1.0 dotnet -Microsoft.NETCore.Targets 1.1.0 dotnet -Microsoft.OpenApi 1.2.3 dotnet -Microsoft.Win32.Primitives 4.3.0 dotnet -Microsoft.Win32.Registry 5.0.0 dotnet -Microsoft.Win32.SystemEvents 6.0.0 dotnet -MimeKit 3.6.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet -MonoTorrent 2.0.7 dotnet -NETStandard.Library 1.6.1 dotnet -NLog 5.2.0 dotnet -NLog.Extensions.Logging 5.0.4 dotnet -NLog.Targets.Syslog 7.0.0 dotnet -Newtonsoft.Json 13.0.2 dotnet -NodaTime 3.0.0 dotnet -Npgsql 6.0.8 dotnet -Polly.Contrib.WaitAndRetry 1.1.1 dotnet -Portable.BouncyCastle 1.9.0 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0 dotnet -Servarr.FluentMigrator 3.3.2.9 dotnet -Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet -Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet -Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet -SharpZipLib 1.3.3 dotnet -SixLabors.ImageSharp 3.0.1 dotnet -SpotifyAPI.Web 4.2.2 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0 dotnet -System.AppContext 4.3.0 dotnet -System.Buffers 4.3.0 dotnet -System.Collections 4.3.0 dotnet -System.Collections.Concurrent 4.3.0 dotnet -System.ComponentModel 4.3.0 dotnet -System.ComponentModel.Annotations 4.4.1 dotnet -System.Configuration.ConfigurationManager 6.0.1 dotnet -System.Console 4.3.0 dotnet -System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet -System.Diagnostics.Debug 4.3.0 dotnet -System.Diagnostics.DiagnosticSource 6.0.0 dotnet -System.Diagnostics.EventLog 6.0.0 dotnet -System.Diagnostics.Tools 4.3.0 dotnet -System.Diagnostics.Tracing 4.3.0 dotnet -System.Drawing.Common 6.0.0 dotnet -System.Formats.Asn1 6.0.0 dotnet -System.Globalization 4.3.0 dotnet -System.Globalization.Calendars 4.3.0 dotnet -System.Globalization.Extensions 4.3.0 dotnet -System.IO 4.3.0 dotnet -System.IO.Abstractions 17.0.24 dotnet -System.IO.Compression 4.3.0 dotnet -System.IO.Compression.ZipFile 4.3.0 dotnet -System.IO.FileSystem 4.3.0 dotnet -System.IO.FileSystem.Primitives 4.3.0 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0 dotnet -System.Linq 4.3.0 dotnet -System.Linq.Expressions 4.3.0 dotnet -System.Memory 4.5.5 dotnet -System.Net.Http 4.3.0 dotnet -System.Net.NameResolution 4.3.0 dotnet -System.Net.Primitives 4.3.0 dotnet -System.Net.Sockets 4.3.0 dotnet -System.ObjectModel 4.3.0 dotnet -System.Private.Uri 4.3.0 dotnet -System.Reflection 4.3.0 dotnet -System.Reflection.Emit 4.3.0 dotnet -System.Reflection.Emit.ILGeneration 4.3.0 dotnet -System.Reflection.Emit.Lightweight 4.3.0 dotnet -System.Reflection.Extensions 4.3.0 dotnet -System.Reflection.Primitives 4.3.0 dotnet -System.Reflection.TypeExtensions 4.3.0 dotnet -System.Reflection.TypeExtensions 4.7.0 dotnet -System.Resources.ResourceManager 4.3.0 dotnet -System.Runtime 4.3.0 dotnet -System.Runtime.Caching 4.7.0 dotnet -System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet -System.Runtime.Extensions 4.3.0 dotnet -System.Runtime.Handles 4.3.0 dotnet -System.Runtime.InteropServices 4.3.0 dotnet -System.Runtime.InteropServices.RuntimeInformation 4.3.0 dotnet -System.Runtime.Loader 4.3.0 dotnet -System.Runtime.Numerics 4.3.0 dotnet -System.Security.AccessControl 6.0.0 dotnet -System.Security.Cryptography.Algorithms 4.3.0 dotnet -System.Security.Cryptography.Cng 4.5.0 dotnet -System.Security.Cryptography.Csp 4.3.0 dotnet -System.Security.Cryptography.Encoding 4.3.0 dotnet -System.Security.Cryptography.OpenSsl 4.3.0 dotnet -System.Security.Cryptography.Pkcs 6.0.0 dotnet -System.Security.Cryptography.Primitives 4.3.0 dotnet -System.Security.Cryptography.ProtectedData 6.0.0 dotnet -System.Security.Cryptography.X509Certificates 4.3.0 dotnet -System.Security.Permissions 6.0.0 dotnet -System.Security.Principal.Windows 5.0.0 dotnet -System.ServiceProcess.ServiceController 6.0.0 dotnet -System.Text.Encoding 4.3.0 dotnet -System.Text.Encoding.CodePages 6.0.0 dotnet -System.Text.Encoding.Extensions 4.3.0 dotnet -System.Text.Encodings.Web 6.0.0 dotnet -System.Text.Json 6.0.7 dotnet -System.Text.RegularExpressions 4.3.0 dotnet -System.Threading 4.3.0 dotnet -System.Threading.Tasks 4.3.0 dotnet -System.Threading.Tasks.Extensions 4.3.0 dotnet -System.Threading.ThreadPool 4.3.0 dotnet -System.Threading.Timer 4.3.0 dotnet -System.ValueTuple 4.5.0 dotnet -System.Windows.Extensions 6.0.0 dotnet -System.Xml.ReaderWriter 4.3.0 dotnet -System.Xml.XDocument 4.3.0 dotnet -TagLibSharp-Lidarr 2.2.0.27 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk -alpine-keys 2.4-r1 apk -alpine-release 3.18.2-r0 apk -aom-libs 3.6.1-r0 apk -apk-tools 2.14.0-r2 apk -bash 5.2.15-r5 apk -brotli-libs 1.0.9-r14 apk -busybox 1.36.1 binary -busybox 1.36.1-r2 apk -busybox-binsh 1.36.1-r2 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.15-r4 apk -coreutils 9.3-r1 apk -curl 8.2.1-r0 apk -ffmpeg-libavcodec 6.0-r15 apk -ffmpeg-libavformat 6.0-r15 apk -ffmpeg-libavutil 6.0-r15 apk -ffmpeg-libswresample 6.0-r15 apk -gmp 6.2.1-r3 apk -gnutls 3.8.0-r2 apk -hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r3 apk -lame-libs 3.100-r5 apk -lcms2 2.15-r2 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbluray 1.3.4-r0 apk -libbsd 0.11.7-r1 apk -libbz2 1.0.8-r5 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.1-r3 apk -libcurl 8.2.1-r0 apk -libdav1d 1.2.1-r0 apk -libdrm 2.4.115-r4 apk -libffi 3.4.4-r2 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgomp 12.2.1_git20220924-r10 apk -libgpg-error 1.47-r1 apk -libhwy 1.0.4-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libjxl 0.8.2-r0 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libogg 1.3.5-r4 apk -libopenmpt 0.7.2-r0 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.3-r1 apk -librist 0.2.7-r0 apk -libsodium 1.0.18-r3 apk -libsrt 1.5.2-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.1.1-r3 apk -libstdc++ 12.2.1_git20220924-r10 apk -libtasn1 4.19.0-r1 apk -libtheora 1.1.1-r17 apk -libunistring 1.1-r1 apk -libva 2.18.0-r1 apk -libvdpau 1.5-r1 apk -libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r1 apk -libwebp 1.3.1-r0 apk -libx11 1.8.4-r4 apk -libxau 1.0.11-r2 apk -libxcb 1.15-r1 apk -libxdmcp 1.1.4-r2 apk -libxext 1.3.5-r2 apk -libxfixes 6.0.1-r2 apk -libxml2 2.11.4-r0 apk -libxslt 1.1.38-r0 apk -libzmq 4.3.4-r4 apk -linux-pam 1.5.2-r10 apk -mbedtls 2.28.3-r1 apk -mpg123-libs 1.31.3-r1 apk -musl 1.2.4-r1 apk -musl-utils 1.2.4-r1 apk -ncurses-terminfo-base 6.4_p20230506-r0 apk -netcat-openbsd 1.219-r1 apk -nettle 3.8.1-r2 apk -nghttp2-libs 1.55.1-r0 apk -numactl 2.0.16-r4 apk -onevpl-libs 2023.2.1-r0 apk -oniguruma 6.9.8-r1 apk -opus 1.4-r0 apk -p11-kit 0.24.1-r2 apk -procps-ng 4.0.3-r1 apk -readline 8.2.1-r1 apk -runtime.any.System.Collections 4.3.0 dotnet -runtime.any.System.Diagnostics.Tools 4.3.0 dotnet -runtime.any.System.Diagnostics.Tracing 4.3.0 dotnet -runtime.any.System.Globalization 4.3.0 dotnet -runtime.any.System.Globalization.Calendars 4.3.0 dotnet -runtime.any.System.IO 4.3.0 dotnet -runtime.any.System.Reflection 4.3.0 dotnet -runtime.any.System.Reflection.Extensions 4.3.0 dotnet -runtime.any.System.Reflection.Primitives 4.3.0 dotnet -runtime.any.System.Resources.ResourceManager 4.3.0 dotnet -runtime.any.System.Runtime 4.3.0 dotnet -runtime.any.System.Runtime.Handles 4.3.0 dotnet -runtime.any.System.Runtime.InteropServices 4.3.0 dotnet -runtime.any.System.Text.Encoding 4.3.0 dotnet -runtime.any.System.Text.Encoding.Extensions 4.3.0 dotnet -runtime.any.System.Threading.Tasks 4.3.0 dotnet -runtime.any.System.Threading.Timer 4.3.0 dotnet -runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.native.System 4.3.0 dotnet -runtime.native.System.IO.Compression 4.3.0 dotnet -runtime.native.System.Net.Http 4.3.0 dotnet -runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet -runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 dotnet -runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.0 dotnet -runtime.unix.Microsoft.Win32.Primitives 4.3.0 dotnet -runtime.unix.System.Console 4.3.0 dotnet -runtime.unix.System.Diagnostics.Debug 4.3.0 dotnet -runtime.unix.System.IO.FileSystem 4.3.0 dotnet -runtime.unix.System.Net.Primitives 4.3.0 dotnet -runtime.unix.System.Net.Sockets 4.3.0 dotnet -runtime.unix.System.Private.Uri 4.3.0 dotnet -runtime.unix.System.Runtime.Extensions 4.3.0 dotnet -scanelf 1.3.7-r1 apk -shadow 4.13-r4 apk -skalibs 2.13.1.1-r1 apk -soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r2 apk -svt-av1-libs 1.6.0-r0 apk -tzdata 2023c-r1 apk -utmps-libs 0.1.2.1-r1 apk -wayland-libs-client 1.22.0-r2 apk -x264-libs 0.164_git20220602-r1 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r1 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +NAME VERSION TYPE +BouncyCastle.Crypto 1.9.0.1 dotnet +Dapper 2.0.123.33578 dotnet +DryIoc netstandard2.1 5.3.4.0 dotnet +DryIoc.Microsoft.DependencyInjection netstandard2.0 6.1.1.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet +FluentMigrator.Abstractions 3.3.2.9 dotnet +FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet +FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet +FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet +FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet +FluentMigrator.Runner 3.3.2.9 dotnet +FluentMigrator.Runner.Core 3.3.2.9 dotnet +FluentMigrator.Runner.Db2 3.3.2.9 dotnet +FluentMigrator.Runner.Firebird 3.3.2.9 dotnet +FluentMigrator.Runner.Hana 3.3.2.9 dotnet +FluentMigrator.Runner.MySql 3.3.2.9 dotnet +FluentMigrator.Runner.Oracle 3.3.2.9 dotnet +FluentMigrator.Runner.Postgres 3.3.2.9 dotnet +FluentMigrator.Runner.Redshift 3.3.2.9 dotnet +FluentMigrator.Runner.SQLite 3.3.2.9 dotnet +FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet +FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet +FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET .NET 6.0 13.0.2.27524 dotnet +Kveer.XmlRPC 1.2.0.0 dotnet +Lidarr 1.3.4.3440 dotnet +Lidarr.Api.V1 1.3.4.3440 dotnet +Lidarr.Common 1.3.4.3440 dotnet +Lidarr.Core 1.3.4.3440 dotnet +Lidarr.Host 1.3.4.3440 dotnet +Lidarr.Http 1.3.4.3440 dotnet +Lidarr.Mono 1.3.4.3440 dotnet +Lidarr.SignalR 1.3.4.3440 dotnet +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authentication 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authorization 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Components 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Components.Server 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Components.Web 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Cors 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.1623.17406 dotnet +Microsoft.AspNetCore.DataProtection 6.0.1623.17406 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.1623.17406 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Hosting 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Features 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Http.Results 6.0.1623.17406 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.1623.17406 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.1623.17406 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Identity 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Localization 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Metadata 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Razor 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.1623.17406 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.1623.17406 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Rewrite 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Routing 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.1623.17406 dotnet +Microsoft.AspNetCore.Session 6.0.1623.17406 dotnet +Microsoft.AspNetCore.SignalR 6.0.1623.17406 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.1623.17406 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.1623.17406 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.1623.17406 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.1623.17406 dotnet +Microsoft.AspNetCore.WebSockets 6.0.1623.17406 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.1623.17406 dotnet +Microsoft.CSharp 6.0.1623.17311 dotnet +Microsoft.Data.SqlClient 2.0.20168.4 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.1623.17406 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.1623.17406 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.1623.17406 dotnet +Microsoft.Extensions.Features 6.0.1623.17406 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.1623.17406 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1022.47605 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.1623.17406 dotnet +Microsoft.Extensions.Identity.Stores 6.0.1623.17406 dotnet +Microsoft.Extensions.Localization 6.0.1623.17406 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.1623.17406 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1122.52304 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.1623.17406 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.1623.17406 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012 dotnet +Microsoft.JSInterop 6.0.1623.17406 dotnet +Microsoft.Net.Http.Headers 6.0.1623.17406 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.1623.17311 dotnet +Microsoft.VisualBasic.Core 11.100.1623.17311 dotnet +Microsoft.Win32.Primitives 6.0.1623.17311 dotnet +Microsoft.Win32.Registry 6.0.1623.17311 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard.dll 1.0.0.0 dotnet +MonoTorrent 2.0.7 dotnet +NLog Syslog target 7.0.0.0 dotnet +NLog for NetStandard 2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging for .NET 5.0 5.0.4.221 dotnet +Noda Time 3.0.0.0 dotnet +Npgsql 6.0.8.0 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.0.1.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.1623.17311 dotnet +System.AppContext 6.0.1623.17311 dotnet +System.Buffers 6.0.1623.17311 dotnet +System.Collections 6.0.1623.17311 dotnet +System.Collections.Concurrent 6.0.1623.17311 dotnet +System.Collections.Immutable 6.0.1623.17311 dotnet +System.Collections.NonGeneric 6.0.1623.17311 dotnet +System.Collections.Specialized 6.0.1623.17311 dotnet +System.ComponentModel 6.0.1623.17311 dotnet +System.ComponentModel.Annotations 6.0.1623.17311 dotnet +System.ComponentModel.DataAnnotations 6.0.1623.17311 dotnet +System.ComponentModel.EventBasedAsync 6.0.1623.17311 dotnet +System.ComponentModel.Primitives 6.0.1623.17311 dotnet +System.ComponentModel.TypeConverter 6.0.1623.17311 dotnet +System.Configuration 6.0.1623.17311 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.1623.17311 dotnet +System.Core 6.0.1623.17311 dotnet +System.Data 6.0.1623.17311 dotnet +System.Data.Common 6.0.1623.17311 dotnet +System.Data.DataSetExtensions 6.0.1623.17311 dotnet +System.Data.SQLite Core 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.1623.17311 dotnet +System.Diagnostics.Debug 6.0.1623.17311 dotnet +System.Diagnostics.DiagnosticSource 6.0.1623.17311 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.1623.17311 dotnet +System.Diagnostics.Process 6.0.1623.17311 dotnet +System.Diagnostics.StackTrace 6.0.1623.17311 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.1623.17311 dotnet +System.Diagnostics.Tools 6.0.1623.17311 dotnet +System.Diagnostics.TraceSource 6.0.1623.17311 dotnet +System.Diagnostics.Tracing 6.0.1623.17311 dotnet +System.Drawing 6.0.1623.17311 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.1623.17311 dotnet +System.Dynamic.Runtime 6.0.1623.17311 dotnet +System.Formats.Asn1 6.0.1623.17311 dotnet +System.Globalization 6.0.1623.17311 dotnet +System.Globalization.Calendars 6.0.1623.17311 dotnet +System.Globalization.Extensions 6.0.1623.17311 dotnet +System.IO 6.0.1623.17311 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.1623.17311 dotnet +System.IO.Compression.Brotli 6.0.1623.17311 dotnet +System.IO.Compression.FileSystem 6.0.1623.17311 dotnet +System.IO.Compression.ZipFile 6.0.1623.17311 dotnet +System.IO.FileSystem 6.0.1623.17311 dotnet +System.IO.FileSystem.AccessControl 6.0.1623.17311 dotnet +System.IO.FileSystem.DriveInfo 6.0.1623.17311 dotnet +System.IO.FileSystem.Primitives 6.0.1623.17311 dotnet +System.IO.FileSystem.Watcher 6.0.1623.17311 dotnet +System.IO.IsolatedStorage 6.0.1623.17311 dotnet +System.IO.MemoryMappedFiles 6.0.1623.17311 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.1623.17311 dotnet +System.IO.Pipes.AccessControl 6.0.1623.17311 dotnet +System.IO.UnmanagedMemoryStream 6.0.1623.17311 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012 dotnet +System.Linq 6.0.1623.17311 dotnet +System.Linq.Expressions 6.0.1623.17311 dotnet +System.Linq.Parallel 6.0.1623.17311 dotnet +System.Linq.Queryable 6.0.1623.17311 dotnet +System.Memory 6.0.1623.17311 dotnet +System.Net 6.0.1623.17311 dotnet +System.Net.Http 6.0.1623.17311 dotnet +System.Net.Http.Json 6.0.1623.17311 dotnet +System.Net.HttpListener 6.0.1623.17311 dotnet +System.Net.Mail 6.0.1623.17311 dotnet +System.Net.NameResolution 6.0.1623.17311 dotnet +System.Net.NetworkInformation 6.0.1623.17311 dotnet +System.Net.Ping 6.0.1623.17311 dotnet +System.Net.Primitives 6.0.1623.17311 dotnet +System.Net.Quic 6.0.1623.17311 dotnet +System.Net.Requests 6.0.1623.17311 dotnet +System.Net.Security 6.0.1623.17311 dotnet +System.Net.ServicePoint 6.0.1623.17311 dotnet +System.Net.Sockets 6.0.1623.17311 dotnet +System.Net.WebClient 6.0.1623.17311 dotnet +System.Net.WebHeaderCollection 6.0.1623.17311 dotnet +System.Net.WebProxy 6.0.1623.17311 dotnet +System.Net.WebSockets 6.0.1623.17311 dotnet +System.Net.WebSockets.Client 6.0.1623.17311 dotnet +System.Numerics 6.0.1623.17311 dotnet +System.Numerics.Vectors 6.0.1623.17311 dotnet +System.ObjectModel 6.0.1623.17311 dotnet +System.Private.CoreLib 6.0.1623.17311 dotnet +System.Private.DataContractSerialization 6.0.1623.17311 dotnet +System.Private.Uri 6.0.1623.17311 dotnet +System.Private.Xml 6.0.1623.17311 dotnet +System.Private.Xml.Linq 6.0.1623.17311 dotnet +System.Reflection 6.0.1623.17311 dotnet +System.Reflection.DispatchProxy 6.0.1623.17311 dotnet +System.Reflection.Emit 6.0.1623.17311 dotnet +System.Reflection.Emit.ILGeneration 6.0.1623.17311 dotnet +System.Reflection.Emit.Lightweight 6.0.1623.17311 dotnet +System.Reflection.Extensions 6.0.1623.17311 dotnet +System.Reflection.Metadata 6.0.1623.17311 dotnet +System.Reflection.Primitives 6.0.1623.17311 dotnet +System.Reflection.TypeExtensions 6.0.1623.17311 dotnet +System.Resources.Reader 6.0.1623.17311 dotnet +System.Resources.ResourceManager 6.0.1623.17311 dotnet +System.Resources.Writer 6.0.1623.17311 dotnet +System.Runtime 6.0.1623.17311 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.1623.17311 dotnet +System.Runtime.Extensions 6.0.1623.17311 dotnet +System.Runtime.Handles 6.0.1623.17311 dotnet +System.Runtime.InteropServices 6.0.1623.17311 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.1623.17311 dotnet +System.Runtime.Intrinsics 6.0.1623.17311 dotnet +System.Runtime.Loader 6.0.1623.17311 dotnet +System.Runtime.Numerics 6.0.1623.17311 dotnet +System.Runtime.Serialization 6.0.1623.17311 dotnet +System.Runtime.Serialization.Formatters 6.0.1623.17311 dotnet +System.Runtime.Serialization.Json 6.0.1623.17311 dotnet +System.Runtime.Serialization.Primitives 6.0.1623.17311 dotnet +System.Runtime.Serialization.Xml 6.0.1623.17311 dotnet +System.Security 6.0.1623.17311 dotnet +System.Security.AccessControl 6.0.1623.17311 dotnet +System.Security.Claims 6.0.1623.17311 dotnet +System.Security.Cryptography.Algorithms 6.0.1623.17311 dotnet +System.Security.Cryptography.Cng 6.0.1623.17311 dotnet +System.Security.Cryptography.Csp 6.0.1623.17311 dotnet +System.Security.Cryptography.Encoding 6.0.1623.17311 dotnet +System.Security.Cryptography.OpenSsl 6.0.1623.17311 dotnet +System.Security.Cryptography.Pkcs 6.0.1423.7309 dotnet +System.Security.Cryptography.Primitives 6.0.1623.17311 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.1623.17311 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.1623.17311 dotnet +System.Security.Principal.Windows 6.0.1623.17311 dotnet +System.Security.SecureString 6.0.1623.17311 dotnet +System.ServiceModel.Web 6.0.1623.17311 dotnet +System.ServiceProcess 6.0.1623.17311 dotnet +System.ServiceProcess.ServiceController 6.0.21.52210 dotnet +System.Text.Encoding 6.0.1623.17311 dotnet +System.Text.Encoding.CodePages 6.0.1623.17311 dotnet +System.Text.Encoding.Extensions 6.0.1623.17311 dotnet +System.Text.Encodings.Web 6.0.1623.17311 dotnet +System.Text.Json 6.0.1623.17311 dotnet +System.Text.RegularExpressions 6.0.1623.17311 dotnet +System.Threading 6.0.1623.17311 dotnet +System.Threading.Channels 6.0.1623.17311 dotnet +System.Threading.Overlapped 6.0.1623.17311 dotnet +System.Threading.Tasks 6.0.1623.17311 dotnet +System.Threading.Tasks.Dataflow 6.0.1623.17311 dotnet +System.Threading.Tasks.Extensions 6.0.1623.17311 dotnet +System.Threading.Tasks.Parallel 6.0.1623.17311 dotnet +System.Threading.Thread 6.0.1623.17311 dotnet +System.Threading.ThreadPool 6.0.1623.17311 dotnet +System.Threading.Timer 6.0.1623.17311 dotnet +System.Transactions 6.0.1623.17311 dotnet +System.Transactions.Local 6.0.1623.17311 dotnet +System.ValueTuple 6.0.1623.17311 dotnet +System.Web 6.0.1623.17311 dotnet +System.Web.HttpUtility 6.0.1623.17311 dotnet +System.Windows 6.0.1623.17311 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.1623.17311 dotnet +System.Xml.Linq 6.0.1623.17311 dotnet +System.Xml.ReaderWriter 6.0.1623.17311 dotnet +System.Xml.Serialization 6.0.1623.17311 dotnet +System.Xml.XDocument 6.0.1623.17311 dotnet +System.Xml.XPath 6.0.1623.17311 dotnet +System.Xml.XPath.XDocument 6.0.1623.17311 dotnet +System.Xml.XmlDocument 6.0.1623.17311 dotnet +System.Xml.XmlSerializer 6.0.1623.17311 dotnet +TagLibSharp 2.2.0.27 dotnet +WindowsBase 6.0.1623.17311 dotnet +alpine-baselayout 3.4.3-r1 apk +alpine-baselayout-data 3.4.3-r1 apk +alpine-keys 2.4-r1 apk +alpine-release 3.18.2-r0 apk +aom-libs 3.6.1-r0 apk +apk-tools 2.14.0-r2 apk +bash 5.2.15-r5 apk +brotli-libs 1.0.9-r14 apk +busybox 1.36.1 binary +busybox 1.36.1-r2 apk +busybox-binsh 1.36.1-r2 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.15-r4 apk +coreutils 9.3-r1 apk +curl 8.2.1-r0 apk +ffmpeg-libavcodec 6.0-r15 apk +ffmpeg-libavformat 6.0-r15 apk +ffmpeg-libavutil 6.0-r15 apk +ffmpeg-libswresample 6.0-r15 apk +gmp 6.2.1-r3 apk +gnutls 3.8.0-r2 apk +hwdata-pci 0.370-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r3 apk +lame-libs 3.100-r5 apk +lcms2 2.15-r2 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbluray 1.3.4-r0 apk +libbsd 0.11.7-r1 apk +libbz2 1.0.8-r5 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.1-r3 apk +libcurl 8.2.1-r0 apk +libdav1d 1.2.1-r0 apk +libdrm 2.4.115-r4 apk +libffi 3.4.4-r2 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgomp 12.2.1_git20220924-r10 apk +libgpg-error 1.47-r1 apk +libhwy 1.0.4-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libjxl 0.8.2-r0 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libogg 1.3.5-r4 apk +libopenmpt 0.7.2-r0 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.3-r1 apk +librist 0.2.7-r0 apk +libsodium 1.0.18-r3 apk +libsrt 1.5.2-r0 apk +libssh 0.10.5-r0 apk +libssl3 3.1.1-r3 apk +libstdc++ 12.2.1_git20220924-r10 apk +libtasn1 4.19.0-r1 apk +libtheora 1.1.1-r17 apk +libunistring 1.1-r1 apk +libva 2.18.0-r1 apk +libvdpau 1.5-r1 apk +libvorbis 1.3.7-r1 apk +libvpx 1.13.0-r1 apk +libwebp 1.3.1-r0 apk +libx11 1.8.4-r4 apk +libxau 1.0.11-r2 apk +libxcb 1.15-r1 apk +libxdmcp 1.1.4-r2 apk +libxext 1.3.5-r2 apk +libxfixes 6.0.1-r2 apk +libxml2 2.11.4-r0 apk +libxslt 1.1.38-r0 apk +libzmq 4.3.4-r4 apk +linux-pam 1.5.2-r10 apk +mbedtls 2.28.3-r1 apk +mpg123-libs 1.31.3-r1 apk +mscorlib 6.0.1623.17311 dotnet +musl 1.2.4-r1 apk +musl-utils 1.2.4-r1 apk +ncurses-terminfo-base 6.4_p20230506-r0 apk +netcat-openbsd 1.219-r1 apk +netstandard 6.0.1623.17311 dotnet +nettle 3.8.1-r2 apk +nghttp2-libs 1.55.1-r0 apk +numactl 2.0.16-r4 apk +onevpl-libs 2023.2.1-r0 apk +oniguruma 6.9.8-r1 apk +opus 1.4-r0 apk +p11-kit 0.24.1-r2 apk +procps-ng 4.0.3-r1 apk +readline 8.2.1-r1 apk +scanelf 1.3.7-r1 apk +shadow 4.13-r4 apk +skalibs 2.13.1.1-r1 apk +soxr 0.1.3-r5 apk +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r2 apk +svt-av1-libs 1.6.0-r0 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +wayland-libs-client 1.22.0-r2 apk +x264-libs 0.164_git20220602-r1 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r1 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 1920812f7312d2bbf5835815f34723e4e5d59d8e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 15:48:34 +0000 Subject: [PATCH 289/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4b3065e1..09db116a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3440 dotnet -Lidarr.Api.V1 1.3.4.3440 dotnet -Lidarr.Common 1.3.4.3440 dotnet -Lidarr.Core 1.3.4.3440 dotnet -Lidarr.Host 1.3.4.3440 dotnet -Lidarr.Http 1.3.4.3440 dotnet -Lidarr.Mono 1.3.4.3440 dotnet -Lidarr.SignalR 1.3.4.3440 dotnet +Lidarr 1.3.4.3441 dotnet +Lidarr.Api.V1 1.3.4.3441 dotnet +Lidarr.Common 1.3.4.3441 dotnet +Lidarr.Core 1.3.4.3441 dotnet +Lidarr.Host 1.3.4.3441 dotnet +Lidarr.Http 1.3.4.3441 dotnet +Lidarr.Mono 1.3.4.3441 dotnet +Lidarr.SignalR 1.3.4.3441 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 6895e2c5b55e05fc8de79951b1ea76e13877c303 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Aug 2023 16:30:21 +0000 Subject: [PATCH 290/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 09db116a..51dd9791 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3441 dotnet -Lidarr.Api.V1 1.3.4.3441 dotnet -Lidarr.Common 1.3.4.3441 dotnet -Lidarr.Core 1.3.4.3441 dotnet -Lidarr.Host 1.3.4.3441 dotnet -Lidarr.Http 1.3.4.3441 dotnet -Lidarr.Mono 1.3.4.3441 dotnet -Lidarr.SignalR 1.3.4.3441 dotnet +Lidarr 1.3.4.3442 dotnet +Lidarr.Api.V1 1.3.4.3442 dotnet +Lidarr.Common 1.3.4.3442 dotnet +Lidarr.Core 1.3.4.3442 dotnet +Lidarr.Host 1.3.4.3442 dotnet +Lidarr.Http 1.3.4.3442 dotnet +Lidarr.Mono 1.3.4.3442 dotnet +Lidarr.SignalR 1.3.4.3442 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 94e5b9e18dd93e52d66f8b88d75b1978722da91a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 4 Aug 2023 15:20:58 +0000 Subject: [PATCH 291/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 51dd9791..2a3cc0ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3442 dotnet -Lidarr.Api.V1 1.3.4.3442 dotnet -Lidarr.Common 1.3.4.3442 dotnet -Lidarr.Core 1.3.4.3442 dotnet -Lidarr.Host 1.3.4.3442 dotnet -Lidarr.Http 1.3.4.3442 dotnet -Lidarr.Mono 1.3.4.3442 dotnet -Lidarr.SignalR 1.3.4.3442 dotnet +Lidarr 1.3.4.3450 dotnet +Lidarr.Api.V1 1.3.4.3450 dotnet +Lidarr.Common 1.3.4.3450 dotnet +Lidarr.Core 1.3.4.3450 dotnet +Lidarr.Host 1.3.4.3450 dotnet +Lidarr.Http 1.3.4.3450 dotnet +Lidarr.Mono 1.3.4.3450 dotnet +Lidarr.SignalR 1.3.4.3450 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -405,7 +405,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.1-r3 apk +libcrypto3 3.1.2-r0 apk libcurl 8.2.1-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk @@ -448,7 +448,7 @@ libxml2 2.11.4-r0 libxslt 1.1.38-r0 apk libzmq 4.3.4-r4 apk linux-pam 1.5.2-r10 apk -mbedtls 2.28.3-r1 apk +mbedtls 2.28.4-r0 apk mpg123-libs 1.31.3-r1 apk mscorlib 6.0.1623.17311 dotnet musl 1.2.4-r1 apk From ed911c28b1fcec9989aa895dff6f23278222ef3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Aug 2023 18:36:46 +0000 Subject: [PATCH 292/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2a3cc0ae..2a3c5ca9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3450 dotnet -Lidarr.Api.V1 1.3.4.3450 dotnet -Lidarr.Common 1.3.4.3450 dotnet -Lidarr.Core 1.3.4.3450 dotnet -Lidarr.Host 1.3.4.3450 dotnet -Lidarr.Http 1.3.4.3450 dotnet -Lidarr.Mono 1.3.4.3450 dotnet -Lidarr.SignalR 1.3.4.3450 dotnet +Lidarr 1.3.4.3456 dotnet +Lidarr.Api.V1 1.3.4.3456 dotnet +Lidarr.Common 1.3.4.3456 dotnet +Lidarr.Core 1.3.4.3456 dotnet +Lidarr.Host 1.3.4.3456 dotnet +Lidarr.Http 1.3.4.3456 dotnet +Lidarr.Mono 1.3.4.3456 dotnet +Lidarr.SignalR 1.3.4.3456 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -428,7 +428,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.1-r3 apk +libssl3 3.1.2-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From 8892045b0ecbd35caa5fa73cdf0e179d07472f36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Aug 2023 19:20:52 +0000 Subject: [PATCH 293/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2a3c5ca9..9e3f04a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3456 dotnet -Lidarr.Api.V1 1.3.4.3456 dotnet -Lidarr.Common 1.3.4.3456 dotnet -Lidarr.Core 1.3.4.3456 dotnet -Lidarr.Host 1.3.4.3456 dotnet -Lidarr.Http 1.3.4.3456 dotnet -Lidarr.Mono 1.3.4.3456 dotnet -Lidarr.SignalR 1.3.4.3456 dotnet +Lidarr 1.3.4.3458 dotnet +Lidarr.Api.V1 1.3.4.3458 dotnet +Lidarr.Common 1.3.4.3458 dotnet +Lidarr.Core 1.3.4.3458 dotnet +Lidarr.Host 1.3.4.3458 dotnet +Lidarr.Http 1.3.4.3458 dotnet +Lidarr.Mono 1.3.4.3458 dotnet +Lidarr.SignalR 1.3.4.3458 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 29e2bcdf198b442ee554f4f7dd1b8fc4691153dd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Aug 2023 13:54:19 +0000 Subject: [PATCH 294/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9e3f04a0..bf513243 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.4.3458 dotnet -Lidarr.Api.V1 1.3.4.3458 dotnet -Lidarr.Common 1.3.4.3458 dotnet -Lidarr.Core 1.3.4.3458 dotnet -Lidarr.Host 1.3.4.3458 dotnet -Lidarr.Http 1.3.4.3458 dotnet -Lidarr.Mono 1.3.4.3458 dotnet -Lidarr.SignalR 1.3.4.3458 dotnet +Lidarr 1.3.5.3464 dotnet +Lidarr.Api.V1 1.3.5.3464 dotnet +Lidarr.Common 1.3.5.3464 dotnet +Lidarr.Core 1.3.5.3464 dotnet +Lidarr.Host 1.3.5.3464 dotnet +Lidarr.Http 1.3.5.3464 dotnet +Lidarr.Mono 1.3.5.3464 dotnet +Lidarr.SignalR 1.3.5.3464 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 5417684a614e1d9f0ac206cb99af0042dbc8e640 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Aug 2023 16:19:00 +0000 Subject: [PATCH 295/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bf513243..9b78fb56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3464 dotnet -Lidarr.Api.V1 1.3.5.3464 dotnet -Lidarr.Common 1.3.5.3464 dotnet -Lidarr.Core 1.3.5.3464 dotnet -Lidarr.Host 1.3.5.3464 dotnet -Lidarr.Http 1.3.5.3464 dotnet -Lidarr.Mono 1.3.5.3464 dotnet -Lidarr.SignalR 1.3.5.3464 dotnet +Lidarr 1.3.5.3465 dotnet +Lidarr.Api.V1 1.3.5.3465 dotnet +Lidarr.Common 1.3.5.3465 dotnet +Lidarr.Core 1.3.5.3465 dotnet +Lidarr.Host 1.3.5.3465 dotnet +Lidarr.Http 1.3.5.3465 dotnet +Lidarr.Mono 1.3.5.3465 dotnet +Lidarr.SignalR 1.3.5.3465 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From bf2a9bd6de7233a83fe8e7872393f32ad05fd90e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Aug 2023 10:15:57 +0000 Subject: [PATCH 296/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9b78fb56..39c73849 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3465 dotnet -Lidarr.Api.V1 1.3.5.3465 dotnet -Lidarr.Common 1.3.5.3465 dotnet -Lidarr.Core 1.3.5.3465 dotnet -Lidarr.Host 1.3.5.3465 dotnet -Lidarr.Http 1.3.5.3465 dotnet -Lidarr.Mono 1.3.5.3465 dotnet -Lidarr.SignalR 1.3.5.3465 dotnet +Lidarr 1.3.5.3470 dotnet +Lidarr.Api.V1 1.3.5.3470 dotnet +Lidarr.Common 1.3.5.3470 dotnet +Lidarr.Core 1.3.5.3470 dotnet +Lidarr.Host 1.3.5.3470 dotnet +Lidarr.Http 1.3.5.3470 dotnet +Lidarr.Mono 1.3.5.3470 dotnet +Lidarr.SignalR 1.3.5.3470 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From f4d5a0c0735b24e1e47a68668fbec1e3a6c3f23b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 10 Aug 2023 10:41:05 +0000 Subject: [PATCH 297/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 39c73849..8987782e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3470 dotnet -Lidarr.Api.V1 1.3.5.3470 dotnet -Lidarr.Common 1.3.5.3470 dotnet -Lidarr.Core 1.3.5.3470 dotnet -Lidarr.Host 1.3.5.3470 dotnet -Lidarr.Http 1.3.5.3470 dotnet -Lidarr.Mono 1.3.5.3470 dotnet -Lidarr.SignalR 1.3.5.3470 dotnet +Lidarr 1.3.5.3471 dotnet +Lidarr.Api.V1 1.3.5.3471 dotnet +Lidarr.Common 1.3.5.3471 dotnet +Lidarr.Core 1.3.5.3471 dotnet +Lidarr.Host 1.3.5.3471 dotnet +Lidarr.Http 1.3.5.3471 dotnet +Lidarr.Mono 1.3.5.3471 dotnet +Lidarr.SignalR 1.3.5.3471 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 9e82787566bbe3637ec1246fe03d1d6d8ba3eed8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 11 Aug 2023 18:07:35 +0000 Subject: [PATCH 298/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8987782e..9b67bc53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3471 dotnet -Lidarr.Api.V1 1.3.5.3471 dotnet -Lidarr.Common 1.3.5.3471 dotnet -Lidarr.Core 1.3.5.3471 dotnet -Lidarr.Host 1.3.5.3471 dotnet -Lidarr.Http 1.3.5.3471 dotnet -Lidarr.Mono 1.3.5.3471 dotnet -Lidarr.SignalR 1.3.5.3471 dotnet +Lidarr 1.3.5.3474 dotnet +Lidarr.Api.V1 1.3.5.3474 dotnet +Lidarr.Common 1.3.5.3474 dotnet +Lidarr.Core 1.3.5.3474 dotnet +Lidarr.Host 1.3.5.3474 dotnet +Lidarr.Http 1.3.5.3474 dotnet +Lidarr.Mono 1.3.5.3474 dotnet +Lidarr.SignalR 1.3.5.3474 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 7426d585221b952f710d9e714214166f6466fc47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 12 Aug 2023 08:18:22 +0000 Subject: [PATCH 299/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9b67bc53..e15aa0e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3474 dotnet -Lidarr.Api.V1 1.3.5.3474 dotnet -Lidarr.Common 1.3.5.3474 dotnet -Lidarr.Core 1.3.5.3474 dotnet -Lidarr.Host 1.3.5.3474 dotnet -Lidarr.Http 1.3.5.3474 dotnet -Lidarr.Mono 1.3.5.3474 dotnet -Lidarr.SignalR 1.3.5.3474 dotnet +Lidarr 1.3.5.3475 dotnet +Lidarr.Api.V1 1.3.5.3475 dotnet +Lidarr.Common 1.3.5.3475 dotnet +Lidarr.Core 1.3.5.3475 dotnet +Lidarr.Host 1.3.5.3475 dotnet +Lidarr.Http 1.3.5.3475 dotnet +Lidarr.Mono 1.3.5.3475 dotnet +Lidarr.SignalR 1.3.5.3475 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 941e60945d42d5fb16eeaf5ca382de565f713982 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Aug 2023 22:45:49 +0000 Subject: [PATCH 300/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e15aa0e3..45fd8592 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3475 dotnet -Lidarr.Api.V1 1.3.5.3475 dotnet -Lidarr.Common 1.3.5.3475 dotnet -Lidarr.Core 1.3.5.3475 dotnet -Lidarr.Host 1.3.5.3475 dotnet -Lidarr.Http 1.3.5.3475 dotnet -Lidarr.Mono 1.3.5.3475 dotnet -Lidarr.SignalR 1.3.5.3475 dotnet +Lidarr 1.3.5.3477 dotnet +Lidarr.Api.V1 1.3.5.3477 dotnet +Lidarr.Common 1.3.5.3477 dotnet +Lidarr.Core 1.3.5.3477 dotnet +Lidarr.Host 1.3.5.3477 dotnet +Lidarr.Http 1.3.5.3477 dotnet +Lidarr.Mono 1.3.5.3477 dotnet +Lidarr.SignalR 1.3.5.3477 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -372,7 +372,7 @@ WindowsBase 6.0.1623.17311 alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.2-r0 apk +alpine-release 3.18.3-r0 apk aom-libs 3.6.1-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk From d90052936e2f51a37dabff84699eb9b798d595c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 15 Aug 2023 13:48:31 +0000 Subject: [PATCH 301/790] Bot Updating Package Versions --- package_versions.txt | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 45fd8592..6298d2d4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3477 dotnet -Lidarr.Api.V1 1.3.5.3477 dotnet -Lidarr.Common 1.3.5.3477 dotnet -Lidarr.Core 1.3.5.3477 dotnet -Lidarr.Host 1.3.5.3477 dotnet -Lidarr.Http 1.3.5.3477 dotnet -Lidarr.Mono 1.3.5.3477 dotnet -Lidarr.SignalR 1.3.5.3477 dotnet +Lidarr 1.3.5.3479 dotnet +Lidarr.Api.V1 1.3.5.3479 dotnet +Lidarr.Common 1.3.5.3479 dotnet +Lidarr.Core 1.3.5.3479 dotnet +Lidarr.Host 1.3.5.3479 dotnet +Lidarr.Http 1.3.5.3479 dotnet +Lidarr.Mono 1.3.5.3479 dotnet +Lidarr.SignalR 1.3.5.3479 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -377,7 +377,6 @@ aom-libs 3.6.1-r0 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk -busybox 1.36.1 binary busybox 1.36.1-r2 apk busybox-binsh 1.36.1-r2 apk ca-certificates 20230506-r0 apk From c56c429578aa2efc56cbe6ebcab1a4b11df2de18 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Aug 2023 10:47:25 +0000 Subject: [PATCH 302/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6298d2d4..8863ee83 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3479 dotnet -Lidarr.Api.V1 1.3.5.3479 dotnet -Lidarr.Common 1.3.5.3479 dotnet -Lidarr.Core 1.3.5.3479 dotnet -Lidarr.Host 1.3.5.3479 dotnet -Lidarr.Http 1.3.5.3479 dotnet -Lidarr.Mono 1.3.5.3479 dotnet -Lidarr.SignalR 1.3.5.3479 dotnet +Lidarr 1.3.5.3480 dotnet +Lidarr.Api.V1 1.3.5.3480 dotnet +Lidarr.Common 1.3.5.3480 dotnet +Lidarr.Core 1.3.5.3480 dotnet +Lidarr.Host 1.3.5.3480 dotnet +Lidarr.Http 1.3.5.3480 dotnet +Lidarr.Mono 1.3.5.3480 dotnet +Lidarr.SignalR 1.3.5.3480 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 4d14fe52a43f9d51cf5bef7f682d632bdd02e1cd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Aug 2023 18:35:02 +0000 Subject: [PATCH 303/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8863ee83..4cac5544 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3480 dotnet -Lidarr.Api.V1 1.3.5.3480 dotnet -Lidarr.Common 1.3.5.3480 dotnet -Lidarr.Core 1.3.5.3480 dotnet -Lidarr.Host 1.3.5.3480 dotnet -Lidarr.Http 1.3.5.3480 dotnet -Lidarr.Mono 1.3.5.3480 dotnet -Lidarr.SignalR 1.3.5.3480 dotnet +Lidarr 1.3.5.3483 dotnet +Lidarr.Api.V1 1.3.5.3483 dotnet +Lidarr.Common 1.3.5.3483 dotnet +Lidarr.Core 1.3.5.3483 dotnet +Lidarr.Host 1.3.5.3483 dotnet +Lidarr.Http 1.3.5.3483 dotnet +Lidarr.Mono 1.3.5.3483 dotnet +Lidarr.SignalR 1.3.5.3483 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From de923635e954d03bd11d69f2ec4b29aaa5e27b7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 12:52:41 +0000 Subject: [PATCH 304/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4cac5544..423fe228 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3483 dotnet -Lidarr.Api.V1 1.3.5.3483 dotnet -Lidarr.Common 1.3.5.3483 dotnet -Lidarr.Core 1.3.5.3483 dotnet -Lidarr.Host 1.3.5.3483 dotnet -Lidarr.Http 1.3.5.3483 dotnet -Lidarr.Mono 1.3.5.3483 dotnet -Lidarr.SignalR 1.3.5.3483 dotnet +Lidarr 1.3.5.3493 dotnet +Lidarr.Api.V1 1.3.5.3493 dotnet +Lidarr.Common 1.3.5.3493 dotnet +Lidarr.Core 1.3.5.3493 dotnet +Lidarr.Host 1.3.5.3493 dotnet +Lidarr.Http 1.3.5.3493 dotnet +Lidarr.Mono 1.3.5.3493 dotnet +Lidarr.SignalR 1.3.5.3493 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -188,7 +188,7 @@ NLog Syslog target 7.0.0.0 NLog for NetStandard 2.0 5.2.0.1813 dotnet NLog.Extensions.Logging for .NET 5.0 5.0.4.221 dotnet Noda Time 3.0.0.0 dotnet -Npgsql 6.0.8.0 dotnet +Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet From c3944909172d6b4de6a578272be8cb24a1559cbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 17:49:22 +0000 Subject: [PATCH 305/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 423fe228..ffd13488 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3493 dotnet -Lidarr.Api.V1 1.3.5.3493 dotnet -Lidarr.Common 1.3.5.3493 dotnet -Lidarr.Core 1.3.5.3493 dotnet -Lidarr.Host 1.3.5.3493 dotnet -Lidarr.Http 1.3.5.3493 dotnet -Lidarr.Mono 1.3.5.3493 dotnet -Lidarr.SignalR 1.3.5.3493 dotnet +Lidarr 1.3.5.3498 dotnet +Lidarr.Api.V1 1.3.5.3498 dotnet +Lidarr.Common 1.3.5.3498 dotnet +Lidarr.Core 1.3.5.3498 dotnet +Lidarr.Host 1.3.5.3498 dotnet +Lidarr.Http 1.3.5.3498 dotnet +Lidarr.Mono 1.3.5.3498 dotnet +Lidarr.SignalR 1.3.5.3498 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 4dabcedc8ce6cbd22f519800efa09162c4dbd11d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 18:40:40 +0000 Subject: [PATCH 306/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ffd13488..883eafb5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3498 dotnet -Lidarr.Api.V1 1.3.5.3498 dotnet -Lidarr.Common 1.3.5.3498 dotnet -Lidarr.Core 1.3.5.3498 dotnet -Lidarr.Host 1.3.5.3498 dotnet -Lidarr.Http 1.3.5.3498 dotnet -Lidarr.Mono 1.3.5.3498 dotnet -Lidarr.SignalR 1.3.5.3498 dotnet +Lidarr 1.3.5.3499 dotnet +Lidarr.Api.V1 1.3.5.3499 dotnet +Lidarr.Common 1.3.5.3499 dotnet +Lidarr.Core 1.3.5.3499 dotnet +Lidarr.Host 1.3.5.3499 dotnet +Lidarr.Http 1.3.5.3499 dotnet +Lidarr.Mono 1.3.5.3499 dotnet +Lidarr.SignalR 1.3.5.3499 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From b628b6ff838de4dda423547f6ab65191b0fbf9ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 19:40:07 +0000 Subject: [PATCH 307/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 883eafb5..dc789661 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3499 dotnet -Lidarr.Api.V1 1.3.5.3499 dotnet -Lidarr.Common 1.3.5.3499 dotnet -Lidarr.Core 1.3.5.3499 dotnet -Lidarr.Host 1.3.5.3499 dotnet -Lidarr.Http 1.3.5.3499 dotnet -Lidarr.Mono 1.3.5.3499 dotnet -Lidarr.SignalR 1.3.5.3499 dotnet +Lidarr 1.3.5.3500 dotnet +Lidarr.Api.V1 1.3.5.3500 dotnet +Lidarr.Common 1.3.5.3500 dotnet +Lidarr.Core 1.3.5.3500 dotnet +Lidarr.Host 1.3.5.3500 dotnet +Lidarr.Http 1.3.5.3500 dotnet +Lidarr.Mono 1.3.5.3500 dotnet +Lidarr.SignalR 1.3.5.3500 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 411cc14ef008baa356bbc92fa99903b5fa421f93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 17 Aug 2023 20:12:04 +0000 Subject: [PATCH 308/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dc789661..35bb94d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3500 dotnet -Lidarr.Api.V1 1.3.5.3500 dotnet -Lidarr.Common 1.3.5.3500 dotnet -Lidarr.Core 1.3.5.3500 dotnet -Lidarr.Host 1.3.5.3500 dotnet -Lidarr.Http 1.3.5.3500 dotnet -Lidarr.Mono 1.3.5.3500 dotnet -Lidarr.SignalR 1.3.5.3500 dotnet +Lidarr 1.3.5.3502 dotnet +Lidarr.Api.V1 1.3.5.3502 dotnet +Lidarr.Common 1.3.5.3502 dotnet +Lidarr.Core 1.3.5.3502 dotnet +Lidarr.Host 1.3.5.3502 dotnet +Lidarr.Http 1.3.5.3502 dotnet +Lidarr.Mono 1.3.5.3502 dotnet +Lidarr.SignalR 1.3.5.3502 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From b718010ae177fb47e005e2bb69a156ce4f6c5353 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 16:41:46 +0000 Subject: [PATCH 309/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 35bb94d3..19c190c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3502 dotnet -Lidarr.Api.V1 1.3.5.3502 dotnet -Lidarr.Common 1.3.5.3502 dotnet -Lidarr.Core 1.3.5.3502 dotnet -Lidarr.Host 1.3.5.3502 dotnet -Lidarr.Http 1.3.5.3502 dotnet -Lidarr.Mono 1.3.5.3502 dotnet -Lidarr.SignalR 1.3.5.3502 dotnet +Lidarr 1.3.5.3507 dotnet +Lidarr.Api.V1 1.3.5.3507 dotnet +Lidarr.Common 1.3.5.3507 dotnet +Lidarr.Core 1.3.5.3507 dotnet +Lidarr.Host 1.3.5.3507 dotnet +Lidarr.Http 1.3.5.3507 dotnet +Lidarr.Mono 1.3.5.3507 dotnet +Lidarr.SignalR 1.3.5.3507 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 267700cc008a74be2baf517d5eadb882e6e3452b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 17:53:26 +0000 Subject: [PATCH 310/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 19c190c9..d5d237ac 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3507 dotnet -Lidarr.Api.V1 1.3.5.3507 dotnet -Lidarr.Common 1.3.5.3507 dotnet -Lidarr.Core 1.3.5.3507 dotnet -Lidarr.Host 1.3.5.3507 dotnet -Lidarr.Http 1.3.5.3507 dotnet -Lidarr.Mono 1.3.5.3507 dotnet -Lidarr.SignalR 1.3.5.3507 dotnet +Lidarr 1.3.5.3509 dotnet +Lidarr.Api.V1 1.3.5.3509 dotnet +Lidarr.Common 1.3.5.3509 dotnet +Lidarr.Core 1.3.5.3509 dotnet +Lidarr.Host 1.3.5.3509 dotnet +Lidarr.Http 1.3.5.3509 dotnet +Lidarr.Mono 1.3.5.3509 dotnet +Lidarr.SignalR 1.3.5.3509 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 229a997149c17662cdfbb18a5da486836e505f40 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 18 Aug 2023 23:24:50 +0000 Subject: [PATCH 311/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d5d237ac..530a0746 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3509 dotnet -Lidarr.Api.V1 1.3.5.3509 dotnet -Lidarr.Common 1.3.5.3509 dotnet -Lidarr.Core 1.3.5.3509 dotnet -Lidarr.Host 1.3.5.3509 dotnet -Lidarr.Http 1.3.5.3509 dotnet -Lidarr.Mono 1.3.5.3509 dotnet -Lidarr.SignalR 1.3.5.3509 dotnet +Lidarr 1.3.5.3511 dotnet +Lidarr.Api.V1 1.3.5.3511 dotnet +Lidarr.Common 1.3.5.3511 dotnet +Lidarr.Core 1.3.5.3511 dotnet +Lidarr.Host 1.3.5.3511 dotnet +Lidarr.Http 1.3.5.3511 dotnet +Lidarr.Mono 1.3.5.3511 dotnet +Lidarr.SignalR 1.3.5.3511 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 9629e0c9fa1e1695825bbd3b0ca62c505f6ae73c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 09:23:34 +0000 Subject: [PATCH 312/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 530a0746..6bafff0b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3511 dotnet -Lidarr.Api.V1 1.3.5.3511 dotnet -Lidarr.Common 1.3.5.3511 dotnet -Lidarr.Core 1.3.5.3511 dotnet -Lidarr.Host 1.3.5.3511 dotnet -Lidarr.Http 1.3.5.3511 dotnet -Lidarr.Mono 1.3.5.3511 dotnet -Lidarr.SignalR 1.3.5.3511 dotnet +Lidarr 1.3.5.3516 dotnet +Lidarr.Api.V1 1.3.5.3516 dotnet +Lidarr.Common 1.3.5.3516 dotnet +Lidarr.Core 1.3.5.3516 dotnet +Lidarr.Host 1.3.5.3516 dotnet +Lidarr.Http 1.3.5.3516 dotnet +Lidarr.Mono 1.3.5.3516 dotnet +Lidarr.SignalR 1.3.5.3516 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From dcfeffd719933f41ed5d8aa1934cfd66c7bad420 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 10:18:12 +0000 Subject: [PATCH 313/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6bafff0b..08fffe5f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3516 dotnet -Lidarr.Api.V1 1.3.5.3516 dotnet -Lidarr.Common 1.3.5.3516 dotnet -Lidarr.Core 1.3.5.3516 dotnet -Lidarr.Host 1.3.5.3516 dotnet -Lidarr.Http 1.3.5.3516 dotnet -Lidarr.Mono 1.3.5.3516 dotnet -Lidarr.SignalR 1.3.5.3516 dotnet +Lidarr 1.3.5.3519 dotnet +Lidarr.Api.V1 1.3.5.3519 dotnet +Lidarr.Common 1.3.5.3519 dotnet +Lidarr.Core 1.3.5.3519 dotnet +Lidarr.Host 1.3.5.3519 dotnet +Lidarr.Http 1.3.5.3519 dotnet +Lidarr.Mono 1.3.5.3519 dotnet +Lidarr.SignalR 1.3.5.3519 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From a83fb5a076a011328cea8bc511bb74e0f105d38c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 19 Aug 2023 19:13:26 +0000 Subject: [PATCH 314/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 08fffe5f..664b10c5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3519 dotnet -Lidarr.Api.V1 1.3.5.3519 dotnet -Lidarr.Common 1.3.5.3519 dotnet -Lidarr.Core 1.3.5.3519 dotnet -Lidarr.Host 1.3.5.3519 dotnet -Lidarr.Http 1.3.5.3519 dotnet -Lidarr.Mono 1.3.5.3519 dotnet -Lidarr.SignalR 1.3.5.3519 dotnet +Lidarr 1.3.5.3529 dotnet +Lidarr.Api.V1 1.3.5.3529 dotnet +Lidarr.Common 1.3.5.3529 dotnet +Lidarr.Core 1.3.5.3529 dotnet +Lidarr.Host 1.3.5.3529 dotnet +Lidarr.Http 1.3.5.3529 dotnet +Lidarr.Mono 1.3.5.3529 dotnet +Lidarr.SignalR 1.3.5.3529 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 58b35a625b3362cdc90fe01df3583358d32f1c41 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 17:16:34 +0000 Subject: [PATCH 315/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 664b10c5..7188c045 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.3.5.3529 dotnet -Lidarr.Api.V1 1.3.5.3529 dotnet -Lidarr.Common 1.3.5.3529 dotnet -Lidarr.Core 1.3.5.3529 dotnet -Lidarr.Host 1.3.5.3529 dotnet -Lidarr.Http 1.3.5.3529 dotnet -Lidarr.Mono 1.3.5.3529 dotnet -Lidarr.SignalR 1.3.5.3529 dotnet +Lidarr 1.4.0.3531 dotnet +Lidarr.Api.V1 1.4.0.3531 dotnet +Lidarr.Common 1.4.0.3531 dotnet +Lidarr.Core 1.4.0.3531 dotnet +Lidarr.Host 1.4.0.3531 dotnet +Lidarr.Http 1.4.0.3531 dotnet +Lidarr.Mono 1.4.0.3531 dotnet +Lidarr.SignalR 1.4.0.3531 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From d5a29fee2067cfd283a1414452c2e02d92a1ab30 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 17:41:56 +0000 Subject: [PATCH 316/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7188c045..11d96c37 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3531 dotnet -Lidarr.Api.V1 1.4.0.3531 dotnet -Lidarr.Common 1.4.0.3531 dotnet -Lidarr.Core 1.4.0.3531 dotnet -Lidarr.Host 1.4.0.3531 dotnet -Lidarr.Http 1.4.0.3531 dotnet -Lidarr.Mono 1.4.0.3531 dotnet -Lidarr.SignalR 1.4.0.3531 dotnet +Lidarr 1.4.0.3532 dotnet +Lidarr.Api.V1 1.4.0.3532 dotnet +Lidarr.Common 1.4.0.3532 dotnet +Lidarr.Core 1.4.0.3532 dotnet +Lidarr.Host 1.4.0.3532 dotnet +Lidarr.Http 1.4.0.3532 dotnet +Lidarr.Mono 1.4.0.3532 dotnet +Lidarr.SignalR 1.4.0.3532 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From abadfa17926447e703a61401e74e5fbc2eac987b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Aug 2023 22:41:12 +0000 Subject: [PATCH 317/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11d96c37..ef9f52a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3532 dotnet -Lidarr.Api.V1 1.4.0.3532 dotnet -Lidarr.Common 1.4.0.3532 dotnet -Lidarr.Core 1.4.0.3532 dotnet -Lidarr.Host 1.4.0.3532 dotnet -Lidarr.Http 1.4.0.3532 dotnet -Lidarr.Mono 1.4.0.3532 dotnet -Lidarr.SignalR 1.4.0.3532 dotnet +Lidarr 1.4.0.3536 dotnet +Lidarr.Api.V1 1.4.0.3536 dotnet +Lidarr.Common 1.4.0.3536 dotnet +Lidarr.Core 1.4.0.3536 dotnet +Lidarr.Host 1.4.0.3536 dotnet +Lidarr.Http 1.4.0.3536 dotnet +Lidarr.Mono 1.4.0.3536 dotnet +Lidarr.SignalR 1.4.0.3536 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 4477bdc75c7dbf8e474e24487ba32778cf90ecbf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 21 Aug 2023 02:15:34 +0000 Subject: [PATCH 318/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ef9f52a0..306a2b8b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3536 dotnet -Lidarr.Api.V1 1.4.0.3536 dotnet -Lidarr.Common 1.4.0.3536 dotnet -Lidarr.Core 1.4.0.3536 dotnet -Lidarr.Host 1.4.0.3536 dotnet -Lidarr.Http 1.4.0.3536 dotnet -Lidarr.Mono 1.4.0.3536 dotnet -Lidarr.SignalR 1.4.0.3536 dotnet +Lidarr 1.4.0.3538 dotnet +Lidarr.Api.V1 1.4.0.3538 dotnet +Lidarr.Common 1.4.0.3538 dotnet +Lidarr.Core 1.4.0.3538 dotnet +Lidarr.Host 1.4.0.3538 dotnet +Lidarr.Http 1.4.0.3538 dotnet +Lidarr.Mono 1.4.0.3538 dotnet +Lidarr.SignalR 1.4.0.3538 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From b6428a43f1ada78c78a638068658c8f35c259dab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 22 Aug 2023 04:39:49 +0000 Subject: [PATCH 319/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 306a2b8b..0b547671 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3538 dotnet -Lidarr.Api.V1 1.4.0.3538 dotnet -Lidarr.Common 1.4.0.3538 dotnet -Lidarr.Core 1.4.0.3538 dotnet -Lidarr.Host 1.4.0.3538 dotnet -Lidarr.Http 1.4.0.3538 dotnet -Lidarr.Mono 1.4.0.3538 dotnet -Lidarr.SignalR 1.4.0.3538 dotnet +Lidarr 1.4.0.3539 dotnet +Lidarr.Api.V1 1.4.0.3539 dotnet +Lidarr.Common 1.4.0.3539 dotnet +Lidarr.Core 1.4.0.3539 dotnet +Lidarr.Host 1.4.0.3539 dotnet +Lidarr.Http 1.4.0.3539 dotnet +Lidarr.Mono 1.4.0.3539 dotnet +Lidarr.SignalR 1.4.0.3539 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From e4febab5a18b1c0c8c87471f4df9b6d64721779f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Aug 2023 02:34:29 +0000 Subject: [PATCH 320/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0b547671..52c02a55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3539 dotnet -Lidarr.Api.V1 1.4.0.3539 dotnet -Lidarr.Common 1.4.0.3539 dotnet -Lidarr.Core 1.4.0.3539 dotnet -Lidarr.Host 1.4.0.3539 dotnet -Lidarr.Http 1.4.0.3539 dotnet -Lidarr.Mono 1.4.0.3539 dotnet -Lidarr.SignalR 1.4.0.3539 dotnet +Lidarr 1.4.0.3542 dotnet +Lidarr.Api.V1 1.4.0.3542 dotnet +Lidarr.Common 1.4.0.3542 dotnet +Lidarr.Core 1.4.0.3542 dotnet +Lidarr.Host 1.4.0.3542 dotnet +Lidarr.Http 1.4.0.3542 dotnet +Lidarr.Mono 1.4.0.3542 dotnet +Lidarr.SignalR 1.4.0.3542 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 49891618c93d4ee051fe626e5de9fa917b88222c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 24 Aug 2023 04:14:57 +0000 Subject: [PATCH 321/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 52c02a55..2bf0a358 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3542 dotnet -Lidarr.Api.V1 1.4.0.3542 dotnet -Lidarr.Common 1.4.0.3542 dotnet -Lidarr.Core 1.4.0.3542 dotnet -Lidarr.Host 1.4.0.3542 dotnet -Lidarr.Http 1.4.0.3542 dotnet -Lidarr.Mono 1.4.0.3542 dotnet -Lidarr.SignalR 1.4.0.3542 dotnet +Lidarr 1.4.0.3544 dotnet +Lidarr.Api.V1 1.4.0.3544 dotnet +Lidarr.Common 1.4.0.3544 dotnet +Lidarr.Core 1.4.0.3544 dotnet +Lidarr.Host 1.4.0.3544 dotnet +Lidarr.Http 1.4.0.3544 dotnet +Lidarr.Mono 1.4.0.3544 dotnet +Lidarr.SignalR 1.4.0.3544 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From f6ad72d2d9ff922c14764886395f1c829aeaed92 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 24 Aug 2023 18:49:48 +0000 Subject: [PATCH 322/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2bf0a358..91dc5831 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3544 dotnet -Lidarr.Api.V1 1.4.0.3544 dotnet -Lidarr.Common 1.4.0.3544 dotnet -Lidarr.Core 1.4.0.3544 dotnet -Lidarr.Host 1.4.0.3544 dotnet -Lidarr.Http 1.4.0.3544 dotnet -Lidarr.Mono 1.4.0.3544 dotnet -Lidarr.SignalR 1.4.0.3544 dotnet +Lidarr 1.4.0.3545 dotnet +Lidarr.Api.V1 1.4.0.3545 dotnet +Lidarr.Common 1.4.0.3545 dotnet +Lidarr.Core 1.4.0.3545 dotnet +Lidarr.Host 1.4.0.3545 dotnet +Lidarr.Http 1.4.0.3545 dotnet +Lidarr.Mono 1.4.0.3545 dotnet +Lidarr.SignalR 1.4.0.3545 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From ca6a9d738e1751d3370da76efdb3aa500f713761 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Aug 2023 02:12:09 +0000 Subject: [PATCH 323/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 91dc5831..04895baf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3545 dotnet -Lidarr.Api.V1 1.4.0.3545 dotnet -Lidarr.Common 1.4.0.3545 dotnet -Lidarr.Core 1.4.0.3545 dotnet -Lidarr.Host 1.4.0.3545 dotnet -Lidarr.Http 1.4.0.3545 dotnet -Lidarr.Mono 1.4.0.3545 dotnet -Lidarr.SignalR 1.4.0.3545 dotnet +Lidarr 1.4.0.3549 dotnet +Lidarr.Api.V1 1.4.0.3549 dotnet +Lidarr.Common 1.4.0.3549 dotnet +Lidarr.Core 1.4.0.3549 dotnet +Lidarr.Host 1.4.0.3549 dotnet +Lidarr.Http 1.4.0.3549 dotnet +Lidarr.Mono 1.4.0.3549 dotnet +Lidarr.SignalR 1.4.0.3549 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From b3acdcc82edd1d14da830b2b3555ce15f9a1a6ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Aug 2023 02:39:45 +0000 Subject: [PATCH 324/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 04895baf..18759276 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3549 dotnet -Lidarr.Api.V1 1.4.0.3549 dotnet -Lidarr.Common 1.4.0.3549 dotnet -Lidarr.Core 1.4.0.3549 dotnet -Lidarr.Host 1.4.0.3549 dotnet -Lidarr.Http 1.4.0.3549 dotnet -Lidarr.Mono 1.4.0.3549 dotnet -Lidarr.SignalR 1.4.0.3549 dotnet +Lidarr 1.4.0.3550 dotnet +Lidarr.Api.V1 1.4.0.3550 dotnet +Lidarr.Common 1.4.0.3550 dotnet +Lidarr.Core 1.4.0.3550 dotnet +Lidarr.Host 1.4.0.3550 dotnet +Lidarr.Http 1.4.0.3550 dotnet +Lidarr.Mono 1.4.0.3550 dotnet +Lidarr.SignalR 1.4.0.3550 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From b4f599c99c3c761b6048395a04cebe3f5baea28d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Aug 2023 03:28:23 +0000 Subject: [PATCH 325/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 18759276..430ba84e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3550 dotnet -Lidarr.Api.V1 1.4.0.3550 dotnet -Lidarr.Common 1.4.0.3550 dotnet -Lidarr.Core 1.4.0.3550 dotnet -Lidarr.Host 1.4.0.3550 dotnet -Lidarr.Http 1.4.0.3550 dotnet -Lidarr.Mono 1.4.0.3550 dotnet -Lidarr.SignalR 1.4.0.3550 dotnet +Lidarr 1.4.0.3551 dotnet +Lidarr.Api.V1 1.4.0.3551 dotnet +Lidarr.Common 1.4.0.3551 dotnet +Lidarr.Core 1.4.0.3551 dotnet +Lidarr.Host 1.4.0.3551 dotnet +Lidarr.Http 1.4.0.3551 dotnet +Lidarr.Mono 1.4.0.3551 dotnet +Lidarr.SignalR 1.4.0.3551 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From deabd37c2ea6e2a0cdff1a3e28d5dbbe583b54b5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Aug 2023 15:51:50 +0000 Subject: [PATCH 326/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 430ba84e..3ffb63ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3551 dotnet -Lidarr.Api.V1 1.4.0.3551 dotnet -Lidarr.Common 1.4.0.3551 dotnet -Lidarr.Core 1.4.0.3551 dotnet -Lidarr.Host 1.4.0.3551 dotnet -Lidarr.Http 1.4.0.3551 dotnet -Lidarr.Mono 1.4.0.3551 dotnet -Lidarr.SignalR 1.4.0.3551 dotnet +Lidarr 1.4.0.3552 dotnet +Lidarr.Api.V1 1.4.0.3552 dotnet +Lidarr.Common 1.4.0.3552 dotnet +Lidarr.Core 1.4.0.3552 dotnet +Lidarr.Host 1.4.0.3552 dotnet +Lidarr.Http 1.4.0.3552 dotnet +Lidarr.Mono 1.4.0.3552 dotnet +Lidarr.SignalR 1.4.0.3552 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From bd05d74529135999d69a9b38dba5849a87013b7e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 25 Aug 2023 23:21:02 +0000 Subject: [PATCH 327/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3ffb63ef..7cf47a90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3552 dotnet -Lidarr.Api.V1 1.4.0.3552 dotnet -Lidarr.Common 1.4.0.3552 dotnet -Lidarr.Core 1.4.0.3552 dotnet -Lidarr.Host 1.4.0.3552 dotnet -Lidarr.Http 1.4.0.3552 dotnet -Lidarr.Mono 1.4.0.3552 dotnet -Lidarr.SignalR 1.4.0.3552 dotnet +Lidarr 1.4.0.3553 dotnet +Lidarr.Api.V1 1.4.0.3553 dotnet +Lidarr.Common 1.4.0.3553 dotnet +Lidarr.Core 1.4.0.3553 dotnet +Lidarr.Host 1.4.0.3553 dotnet +Lidarr.Http 1.4.0.3553 dotnet +Lidarr.Mono 1.4.0.3553 dotnet +Lidarr.SignalR 1.4.0.3553 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 9aba78af07fad60129e101bf6df7629e57b08e13 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Aug 2023 02:02:37 +0000 Subject: [PATCH 328/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7cf47a90..8a9b1a7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3553 dotnet -Lidarr.Api.V1 1.4.0.3553 dotnet -Lidarr.Common 1.4.0.3553 dotnet -Lidarr.Core 1.4.0.3553 dotnet -Lidarr.Host 1.4.0.3553 dotnet -Lidarr.Http 1.4.0.3553 dotnet -Lidarr.Mono 1.4.0.3553 dotnet -Lidarr.SignalR 1.4.0.3553 dotnet +Lidarr 1.4.0.3554 dotnet +Lidarr.Api.V1 1.4.0.3554 dotnet +Lidarr.Common 1.4.0.3554 dotnet +Lidarr.Core 1.4.0.3554 dotnet +Lidarr.Host 1.4.0.3554 dotnet +Lidarr.Http 1.4.0.3554 dotnet +Lidarr.Mono 1.4.0.3554 dotnet +Lidarr.SignalR 1.4.0.3554 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From e60eeb32c5c545a6a926a43805077b9dc2ffd54b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Aug 2023 05:35:01 +0000 Subject: [PATCH 329/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8a9b1a7e..548e7269 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.0.3554 dotnet -Lidarr.Api.V1 1.4.0.3554 dotnet -Lidarr.Common 1.4.0.3554 dotnet -Lidarr.Core 1.4.0.3554 dotnet -Lidarr.Host 1.4.0.3554 dotnet -Lidarr.Http 1.4.0.3554 dotnet -Lidarr.Mono 1.4.0.3554 dotnet -Lidarr.SignalR 1.4.0.3554 dotnet +Lidarr 1.4.1.3555 dotnet +Lidarr.Api.V1 1.4.1.3555 dotnet +Lidarr.Common 1.4.1.3555 dotnet +Lidarr.Core 1.4.1.3555 dotnet +Lidarr.Host 1.4.1.3555 dotnet +Lidarr.Http 1.4.1.3555 dotnet +Lidarr.Mono 1.4.1.3555 dotnet +Lidarr.SignalR 1.4.1.3555 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 99594763205a2410384a028171ca54b02cff967a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Aug 2023 04:12:41 +0000 Subject: [PATCH 330/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 548e7269..2bc58a03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.1.3555 dotnet -Lidarr.Api.V1 1.4.1.3555 dotnet -Lidarr.Common 1.4.1.3555 dotnet -Lidarr.Core 1.4.1.3555 dotnet -Lidarr.Host 1.4.1.3555 dotnet -Lidarr.Http 1.4.1.3555 dotnet -Lidarr.Mono 1.4.1.3555 dotnet -Lidarr.SignalR 1.4.1.3555 dotnet +Lidarr 1.4.1.3561 dotnet +Lidarr.Api.V1 1.4.1.3561 dotnet +Lidarr.Common 1.4.1.3561 dotnet +Lidarr.Core 1.4.1.3561 dotnet +Lidarr.Host 1.4.1.3561 dotnet +Lidarr.Http 1.4.1.3561 dotnet +Lidarr.Mono 1.4.1.3561 dotnet +Lidarr.SignalR 1.4.1.3561 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 07cc15097cbad1e1f3af1f3361e45b37cabe438e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 29 Aug 2023 03:22:12 +0000 Subject: [PATCH 331/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2bc58a03..55ca2213 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.1.3561 dotnet -Lidarr.Api.V1 1.4.1.3561 dotnet -Lidarr.Common 1.4.1.3561 dotnet -Lidarr.Core 1.4.1.3561 dotnet -Lidarr.Host 1.4.1.3561 dotnet -Lidarr.Http 1.4.1.3561 dotnet -Lidarr.Mono 1.4.1.3561 dotnet -Lidarr.SignalR 1.4.1.3561 dotnet +Lidarr 1.4.1.3562 dotnet +Lidarr.Api.V1 1.4.1.3562 dotnet +Lidarr.Common 1.4.1.3562 dotnet +Lidarr.Core 1.4.1.3562 dotnet +Lidarr.Host 1.4.1.3562 dotnet +Lidarr.Http 1.4.1.3562 dotnet +Lidarr.Mono 1.4.1.3562 dotnet +Lidarr.SignalR 1.4.1.3562 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 8ef299691a6cc6f93bff50e82c650660d2bf27e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 1 Sep 2023 01:41:38 +0000 Subject: [PATCH 332/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 55ca2213..613b76a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.1.3562 dotnet -Lidarr.Api.V1 1.4.1.3562 dotnet -Lidarr.Common 1.4.1.3562 dotnet -Lidarr.Core 1.4.1.3562 dotnet -Lidarr.Host 1.4.1.3562 dotnet -Lidarr.Http 1.4.1.3562 dotnet -Lidarr.Mono 1.4.1.3562 dotnet -Lidarr.SignalR 1.4.1.3562 dotnet +Lidarr 1.4.1.3566 dotnet +Lidarr.Api.V1 1.4.1.3566 dotnet +Lidarr.Common 1.4.1.3566 dotnet +Lidarr.Core 1.4.1.3566 dotnet +Lidarr.Host 1.4.1.3566 dotnet +Lidarr.Http 1.4.1.3566 dotnet +Lidarr.Mono 1.4.1.3566 dotnet +Lidarr.SignalR 1.4.1.3566 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet From 62b16dc07b77237cded3cb72bc5d403b87e6afc6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Sep 2023 05:32:05 +0000 Subject: [PATCH 333/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 613b76a0..11e878e5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.1.3566 dotnet -Lidarr.Api.V1 1.4.1.3566 dotnet -Lidarr.Common 1.4.1.3566 dotnet -Lidarr.Core 1.4.1.3566 dotnet -Lidarr.Host 1.4.1.3566 dotnet -Lidarr.Http 1.4.1.3566 dotnet -Lidarr.Mono 1.4.1.3566 dotnet -Lidarr.SignalR 1.4.1.3566 dotnet +Lidarr 1.4.2.3567 dotnet +Lidarr.Api.V1 1.4.2.3567 dotnet +Lidarr.Common 1.4.2.3567 dotnet +Lidarr.Core 1.4.2.3567 dotnet +Lidarr.Host 1.4.2.3567 dotnet +Lidarr.Http 1.4.2.3567 dotnet +Lidarr.Mono 1.4.2.3567 dotnet +Lidarr.SignalR 1.4.2.3567 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.1623.17406 dotnet Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet @@ -422,7 +422,7 @@ libncursesw 6.4_p20230506-r0 libogg 1.3.5-r4 apk libopenmpt 0.7.2-r0 apk libpciaccess 0.17-r2 apk -libproc2 4.0.3-r1 apk +libproc2 4.0.4-r0 apk librist 0.2.7-r0 apk libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk @@ -462,7 +462,7 @@ onevpl-libs 2023.2.1-r0 oniguruma 6.9.8-r1 apk opus 1.4-r0 apk p11-kit 0.24.1-r2 apk -procps-ng 4.0.3-r1 apk +procps-ng 4.0.4-r0 apk readline 8.2.1-r1 apk scanelf 1.3.7-r1 apk shadow 4.13-r4 apk From fab2c03a95204dcbcd1c27e94e8aa8f29d2c53ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Sep 2023 23:37:23 +0000 Subject: [PATCH 334/790] Bot Updating Package Versions --- package_versions.txt | 542 +++++++++++++++++++++---------------------- 1 file changed, 271 insertions(+), 271 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11e878e5..2bbaf3a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,8 +1,8 @@ NAME VERSION TYPE BouncyCastle.Crypto 1.9.0.1 dotnet Dapper 2.0.123.33578 dotnet -DryIoc netstandard2.1 5.3.4.0 dotnet -DryIoc.Microsoft.DependencyInjection netstandard2.0 6.1.1.0 dotnet +DryIoc net6.0 5.4.1.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet Dynamitey 2.0.9.136 dotnet Equ 2.3.0 dotnet FluentMigrator 3.3.2.9 dotnet @@ -30,96 +30,96 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.2.3567 dotnet -Lidarr.Api.V1 1.4.2.3567 dotnet -Lidarr.Common 1.4.2.3567 dotnet -Lidarr.Core 1.4.2.3567 dotnet -Lidarr.Host 1.4.2.3567 dotnet -Lidarr.Http 1.4.2.3567 dotnet -Lidarr.Mono 1.4.2.3567 dotnet -Lidarr.SignalR 1.4.2.3567 dotnet +Lidarr 1.4.2.3569 dotnet +Lidarr.Api.V1 1.4.2.3569 dotnet +Lidarr.Common 1.4.2.3569 dotnet +Lidarr.Core 1.4.2.3569 dotnet +Lidarr.Host 1.4.2.3569 dotnet +Lidarr.Http 1.4.2.3569 dotnet +Lidarr.Mono 1.4.2.3569 dotnet +Lidarr.SignalR 1.4.2.3569 dotnet MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authentication 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authorization 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Components 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Components.Server 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Components.Web 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Cors 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.1623.17406 dotnet -Microsoft.AspNetCore.DataProtection 6.0.1623.17406 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.1623.17406 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Hosting 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Features 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Http.Results 6.0.1623.17406 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.1623.17406 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.1623.17406 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Identity 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Localization 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Metadata 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Razor 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.1623.17406 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.1623.17406 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Rewrite 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Routing 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.1623.17406 dotnet -Microsoft.AspNetCore.Session 6.0.1623.17406 dotnet -Microsoft.AspNetCore.SignalR 6.0.1623.17406 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.1623.17406 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.1623.17406 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.1623.17406 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.1623.17406 dotnet -Microsoft.AspNetCore.WebSockets 6.0.1623.17406 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.1623.17406 dotnet -Microsoft.CSharp 6.0.1623.17311 dotnet +Microsoft.AspNetCore 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authentication 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authorization 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Components 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Cors 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2123.36438 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2123.36438 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2123.36438 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Hosting 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2123.36438 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2123.36438 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2123.36438 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Identity 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Localization 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Metadata 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Razor 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2123.36438 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2123.36438 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Routing 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2123.36438 dotnet +Microsoft.AspNetCore.Session 6.0.2123.36438 dotnet +Microsoft.AspNetCore.SignalR 6.0.2123.36438 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2123.36438 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2123.36438 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2123.36438 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2123.36438 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2123.36438 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2123.36438 dotnet +Microsoft.CSharp 6.0.2123.36311 dotnet Microsoft.Data.SqlClient 2.0.20168.4 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet @@ -131,54 +131,54 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.1623.17406 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2123.36438 dotnet Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.1623.17406 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.1623.17406 dotnet -Microsoft.Extensions.Features 6.0.1623.17406 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2123.36438 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2123.36438 dotnet +Microsoft.Extensions.Features 6.0.2123.36438 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.1623.17406 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2123.36438 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet Microsoft.Extensions.Hosting 6.0.222.6406 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Hosting.WindowsServices 6.0.1022.47605 dotnet Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.1623.17406 dotnet -Microsoft.Extensions.Identity.Stores 6.0.1623.17406 dotnet -Microsoft.Extensions.Localization 6.0.1623.17406 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.1623.17406 dotnet +Microsoft.Extensions.Identity.Core 6.0.2123.36438 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2123.36438 dotnet +Microsoft.Extensions.Localization 6.0.2123.36438 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2123.36438 dotnet Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1122.52304 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.1623.17406 dotnet +Microsoft.Extensions.ObjectPool 6.0.2123.36438 dotnet Microsoft.Extensions.Options 6.0.21.52210 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.1623.17406 dotnet +Microsoft.Extensions.WebEncoders 6.0.2123.36438 dotnet Microsoft.Identity.Client 4.21.1.0 dotnet Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012 dotnet Microsoft.IdentityModel.Logging 6.8.0.11012 dotnet Microsoft.IdentityModel.Protocols 6.8.0.11012 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012 dotnet Microsoft.IdentityModel.Tokens 6.8.0.11012 dotnet -Microsoft.JSInterop 6.0.1623.17406 dotnet -Microsoft.Net.Http.Headers 6.0.1623.17406 dotnet +Microsoft.JSInterop 6.0.2123.36438 dotnet +Microsoft.Net.Http.Headers 6.0.2123.36438 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.1623.17311 dotnet -Microsoft.VisualBasic.Core 11.100.1623.17311 dotnet -Microsoft.Win32.Primitives 6.0.1623.17311 dotnet -Microsoft.Win32.Registry 6.0.1623.17311 dotnet +Microsoft.VisualBasic 6.0.2123.36311 dotnet +Microsoft.VisualBasic.Core 11.100.2123.36311 dotnet +Microsoft.Win32.Primitives 6.0.2123.36311 dotnet +Microsoft.Win32.Registry 6.0.2123.36311 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet MimeKit 3.6.0.0 dotnet Mono.Nat 3.0.1 dotnet @@ -196,179 +196,179 @@ SixLabors.ImageSharp 3.0.1.0 SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.1623.17311 dotnet -System.AppContext 6.0.1623.17311 dotnet -System.Buffers 6.0.1623.17311 dotnet -System.Collections 6.0.1623.17311 dotnet -System.Collections.Concurrent 6.0.1623.17311 dotnet -System.Collections.Immutable 6.0.1623.17311 dotnet -System.Collections.NonGeneric 6.0.1623.17311 dotnet -System.Collections.Specialized 6.0.1623.17311 dotnet -System.ComponentModel 6.0.1623.17311 dotnet -System.ComponentModel.Annotations 6.0.1623.17311 dotnet -System.ComponentModel.DataAnnotations 6.0.1623.17311 dotnet -System.ComponentModel.EventBasedAsync 6.0.1623.17311 dotnet -System.ComponentModel.Primitives 6.0.1623.17311 dotnet -System.ComponentModel.TypeConverter 6.0.1623.17311 dotnet -System.Configuration 6.0.1623.17311 dotnet +System 6.0.2123.36311 dotnet +System.AppContext 6.0.2123.36311 dotnet +System.Buffers 6.0.2123.36311 dotnet +System.Collections 6.0.2123.36311 dotnet +System.Collections.Concurrent 6.0.2123.36311 dotnet +System.Collections.Immutable 6.0.2123.36311 dotnet +System.Collections.NonGeneric 6.0.2123.36311 dotnet +System.Collections.Specialized 6.0.2123.36311 dotnet +System.ComponentModel 6.0.2123.36311 dotnet +System.ComponentModel.Annotations 6.0.2123.36311 dotnet +System.ComponentModel.DataAnnotations 6.0.2123.36311 dotnet +System.ComponentModel.EventBasedAsync 6.0.2123.36311 dotnet +System.ComponentModel.Primitives 6.0.2123.36311 dotnet +System.ComponentModel.TypeConverter 6.0.2123.36311 dotnet +System.Configuration 6.0.2123.36311 dotnet System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.1623.17311 dotnet -System.Core 6.0.1623.17311 dotnet -System.Data 6.0.1623.17311 dotnet -System.Data.Common 6.0.1623.17311 dotnet -System.Data.DataSetExtensions 6.0.1623.17311 dotnet +System.Console 6.0.2123.36311 dotnet +System.Core 6.0.2123.36311 dotnet +System.Data 6.0.2123.36311 dotnet +System.Data.Common 6.0.2123.36311 dotnet +System.Data.DataSetExtensions 6.0.2123.36311 dotnet System.Data.SQLite Core 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.1623.17311 dotnet -System.Diagnostics.Debug 6.0.1623.17311 dotnet -System.Diagnostics.DiagnosticSource 6.0.1623.17311 dotnet +System.Diagnostics.Contracts 6.0.2123.36311 dotnet +System.Diagnostics.Debug 6.0.2123.36311 dotnet +System.Diagnostics.DiagnosticSource 6.0.2123.36311 dotnet System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.1623.17311 dotnet -System.Diagnostics.Process 6.0.1623.17311 dotnet -System.Diagnostics.StackTrace 6.0.1623.17311 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.1623.17311 dotnet -System.Diagnostics.Tools 6.0.1623.17311 dotnet -System.Diagnostics.TraceSource 6.0.1623.17311 dotnet -System.Diagnostics.Tracing 6.0.1623.17311 dotnet -System.Drawing 6.0.1623.17311 dotnet +System.Diagnostics.FileVersionInfo 6.0.2123.36311 dotnet +System.Diagnostics.Process 6.0.2123.36311 dotnet +System.Diagnostics.StackTrace 6.0.2123.36311 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2123.36311 dotnet +System.Diagnostics.Tools 6.0.2123.36311 dotnet +System.Diagnostics.TraceSource 6.0.2123.36311 dotnet +System.Diagnostics.Tracing 6.0.2123.36311 dotnet +System.Drawing 6.0.2123.36311 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.1623.17311 dotnet -System.Dynamic.Runtime 6.0.1623.17311 dotnet -System.Formats.Asn1 6.0.1623.17311 dotnet -System.Globalization 6.0.1623.17311 dotnet -System.Globalization.Calendars 6.0.1623.17311 dotnet -System.Globalization.Extensions 6.0.1623.17311 dotnet -System.IO 6.0.1623.17311 dotnet +System.Drawing.Primitives 6.0.2123.36311 dotnet +System.Dynamic.Runtime 6.0.2123.36311 dotnet +System.Formats.Asn1 6.0.2123.36311 dotnet +System.Globalization 6.0.2123.36311 dotnet +System.Globalization.Calendars 6.0.2123.36311 dotnet +System.Globalization.Extensions 6.0.2123.36311 dotnet +System.IO 6.0.2123.36311 dotnet System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.1623.17311 dotnet -System.IO.Compression.Brotli 6.0.1623.17311 dotnet -System.IO.Compression.FileSystem 6.0.1623.17311 dotnet -System.IO.Compression.ZipFile 6.0.1623.17311 dotnet -System.IO.FileSystem 6.0.1623.17311 dotnet -System.IO.FileSystem.AccessControl 6.0.1623.17311 dotnet -System.IO.FileSystem.DriveInfo 6.0.1623.17311 dotnet -System.IO.FileSystem.Primitives 6.0.1623.17311 dotnet -System.IO.FileSystem.Watcher 6.0.1623.17311 dotnet -System.IO.IsolatedStorage 6.0.1623.17311 dotnet -System.IO.MemoryMappedFiles 6.0.1623.17311 dotnet +System.IO.Compression 6.0.2123.36311 dotnet +System.IO.Compression.Brotli 6.0.2123.36311 dotnet +System.IO.Compression.FileSystem 6.0.2123.36311 dotnet +System.IO.Compression.ZipFile 6.0.2123.36311 dotnet +System.IO.FileSystem 6.0.2123.36311 dotnet +System.IO.FileSystem.AccessControl 6.0.2123.36311 dotnet +System.IO.FileSystem.DriveInfo 6.0.2123.36311 dotnet +System.IO.FileSystem.Primitives 6.0.2123.36311 dotnet +System.IO.FileSystem.Watcher 6.0.2123.36311 dotnet +System.IO.IsolatedStorage 6.0.2123.36311 dotnet +System.IO.MemoryMappedFiles 6.0.2123.36311 dotnet System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.1623.17311 dotnet -System.IO.Pipes.AccessControl 6.0.1623.17311 dotnet -System.IO.UnmanagedMemoryStream 6.0.1623.17311 dotnet +System.IO.Pipes 6.0.2123.36311 dotnet +System.IO.Pipes.AccessControl 6.0.2123.36311 dotnet +System.IO.UnmanagedMemoryStream 6.0.2123.36311 dotnet System.IdentityModel.Tokens.Jwt 6.8.0.11012 dotnet -System.Linq 6.0.1623.17311 dotnet -System.Linq.Expressions 6.0.1623.17311 dotnet -System.Linq.Parallel 6.0.1623.17311 dotnet -System.Linq.Queryable 6.0.1623.17311 dotnet -System.Memory 6.0.1623.17311 dotnet -System.Net 6.0.1623.17311 dotnet -System.Net.Http 6.0.1623.17311 dotnet -System.Net.Http.Json 6.0.1623.17311 dotnet -System.Net.HttpListener 6.0.1623.17311 dotnet -System.Net.Mail 6.0.1623.17311 dotnet -System.Net.NameResolution 6.0.1623.17311 dotnet -System.Net.NetworkInformation 6.0.1623.17311 dotnet -System.Net.Ping 6.0.1623.17311 dotnet -System.Net.Primitives 6.0.1623.17311 dotnet -System.Net.Quic 6.0.1623.17311 dotnet -System.Net.Requests 6.0.1623.17311 dotnet -System.Net.Security 6.0.1623.17311 dotnet -System.Net.ServicePoint 6.0.1623.17311 dotnet -System.Net.Sockets 6.0.1623.17311 dotnet -System.Net.WebClient 6.0.1623.17311 dotnet -System.Net.WebHeaderCollection 6.0.1623.17311 dotnet -System.Net.WebProxy 6.0.1623.17311 dotnet -System.Net.WebSockets 6.0.1623.17311 dotnet -System.Net.WebSockets.Client 6.0.1623.17311 dotnet -System.Numerics 6.0.1623.17311 dotnet -System.Numerics.Vectors 6.0.1623.17311 dotnet -System.ObjectModel 6.0.1623.17311 dotnet -System.Private.CoreLib 6.0.1623.17311 dotnet -System.Private.DataContractSerialization 6.0.1623.17311 dotnet -System.Private.Uri 6.0.1623.17311 dotnet -System.Private.Xml 6.0.1623.17311 dotnet -System.Private.Xml.Linq 6.0.1623.17311 dotnet -System.Reflection 6.0.1623.17311 dotnet -System.Reflection.DispatchProxy 6.0.1623.17311 dotnet -System.Reflection.Emit 6.0.1623.17311 dotnet -System.Reflection.Emit.ILGeneration 6.0.1623.17311 dotnet -System.Reflection.Emit.Lightweight 6.0.1623.17311 dotnet -System.Reflection.Extensions 6.0.1623.17311 dotnet -System.Reflection.Metadata 6.0.1623.17311 dotnet -System.Reflection.Primitives 6.0.1623.17311 dotnet -System.Reflection.TypeExtensions 6.0.1623.17311 dotnet -System.Resources.Reader 6.0.1623.17311 dotnet -System.Resources.ResourceManager 6.0.1623.17311 dotnet -System.Resources.Writer 6.0.1623.17311 dotnet -System.Runtime 6.0.1623.17311 dotnet +System.Linq 6.0.2123.36311 dotnet +System.Linq.Expressions 6.0.2123.36311 dotnet +System.Linq.Parallel 6.0.2123.36311 dotnet +System.Linq.Queryable 6.0.2123.36311 dotnet +System.Memory 6.0.2123.36311 dotnet +System.Net 6.0.2123.36311 dotnet +System.Net.Http 6.0.2123.36311 dotnet +System.Net.Http.Json 6.0.2123.36311 dotnet +System.Net.HttpListener 6.0.2123.36311 dotnet +System.Net.Mail 6.0.2123.36311 dotnet +System.Net.NameResolution 6.0.2123.36311 dotnet +System.Net.NetworkInformation 6.0.2123.36311 dotnet +System.Net.Ping 6.0.2123.36311 dotnet +System.Net.Primitives 6.0.2123.36311 dotnet +System.Net.Quic 6.0.2123.36311 dotnet +System.Net.Requests 6.0.2123.36311 dotnet +System.Net.Security 6.0.2123.36311 dotnet +System.Net.ServicePoint 6.0.2123.36311 dotnet +System.Net.Sockets 6.0.2123.36311 dotnet +System.Net.WebClient 6.0.2123.36311 dotnet +System.Net.WebHeaderCollection 6.0.2123.36311 dotnet +System.Net.WebProxy 6.0.2123.36311 dotnet +System.Net.WebSockets 6.0.2123.36311 dotnet +System.Net.WebSockets.Client 6.0.2123.36311 dotnet +System.Numerics 6.0.2123.36311 dotnet +System.Numerics.Vectors 6.0.2123.36311 dotnet +System.ObjectModel 6.0.2123.36311 dotnet +System.Private.CoreLib 6.0.2123.36311 dotnet +System.Private.DataContractSerialization 6.0.2123.36311 dotnet +System.Private.Uri 6.0.2123.36311 dotnet +System.Private.Xml 6.0.2123.36311 dotnet +System.Private.Xml.Linq 6.0.2123.36311 dotnet +System.Reflection 6.0.2123.36311 dotnet +System.Reflection.DispatchProxy 6.0.2123.36311 dotnet +System.Reflection.Emit 6.0.2123.36311 dotnet +System.Reflection.Emit.ILGeneration 6.0.2123.36311 dotnet +System.Reflection.Emit.Lightweight 6.0.2123.36311 dotnet +System.Reflection.Extensions 6.0.2123.36311 dotnet +System.Reflection.Metadata 6.0.2123.36311 dotnet +System.Reflection.Primitives 6.0.2123.36311 dotnet +System.Reflection.TypeExtensions 6.0.2123.36311 dotnet +System.Resources.Reader 6.0.2123.36311 dotnet +System.Resources.ResourceManager 6.0.2123.36311 dotnet +System.Resources.Writer 6.0.2123.36311 dotnet +System.Runtime 6.0.2123.36311 dotnet System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.1623.17311 dotnet -System.Runtime.Extensions 6.0.1623.17311 dotnet -System.Runtime.Handles 6.0.1623.17311 dotnet -System.Runtime.InteropServices 6.0.1623.17311 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.1623.17311 dotnet -System.Runtime.Intrinsics 6.0.1623.17311 dotnet -System.Runtime.Loader 6.0.1623.17311 dotnet -System.Runtime.Numerics 6.0.1623.17311 dotnet -System.Runtime.Serialization 6.0.1623.17311 dotnet -System.Runtime.Serialization.Formatters 6.0.1623.17311 dotnet -System.Runtime.Serialization.Json 6.0.1623.17311 dotnet -System.Runtime.Serialization.Primitives 6.0.1623.17311 dotnet -System.Runtime.Serialization.Xml 6.0.1623.17311 dotnet -System.Security 6.0.1623.17311 dotnet -System.Security.AccessControl 6.0.1623.17311 dotnet -System.Security.Claims 6.0.1623.17311 dotnet -System.Security.Cryptography.Algorithms 6.0.1623.17311 dotnet -System.Security.Cryptography.Cng 6.0.1623.17311 dotnet -System.Security.Cryptography.Csp 6.0.1623.17311 dotnet -System.Security.Cryptography.Encoding 6.0.1623.17311 dotnet -System.Security.Cryptography.OpenSsl 6.0.1623.17311 dotnet -System.Security.Cryptography.Pkcs 6.0.1423.7309 dotnet -System.Security.Cryptography.Primitives 6.0.1623.17311 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2123.36311 dotnet +System.Runtime.Extensions 6.0.2123.36311 dotnet +System.Runtime.Handles 6.0.2123.36311 dotnet +System.Runtime.InteropServices 6.0.2123.36311 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2123.36311 dotnet +System.Runtime.Intrinsics 6.0.2123.36311 dotnet +System.Runtime.Loader 6.0.2123.36311 dotnet +System.Runtime.Numerics 6.0.2123.36311 dotnet +System.Runtime.Serialization 6.0.2123.36311 dotnet +System.Runtime.Serialization.Formatters 6.0.2123.36311 dotnet +System.Runtime.Serialization.Json 6.0.2123.36311 dotnet +System.Runtime.Serialization.Primitives 6.0.2123.36311 dotnet +System.Runtime.Serialization.Xml 6.0.2123.36311 dotnet +System.Security 6.0.2123.36311 dotnet +System.Security.AccessControl 6.0.2123.36311 dotnet +System.Security.Claims 6.0.2123.36311 dotnet +System.Security.Cryptography.Algorithms 6.0.2123.36311 dotnet +System.Security.Cryptography.Cng 6.0.2123.36311 dotnet +System.Security.Cryptography.Csp 6.0.2123.36311 dotnet +System.Security.Cryptography.Encoding 6.0.2123.36311 dotnet +System.Security.Cryptography.OpenSsl 6.0.2123.36311 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2123.36311 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.1623.17311 dotnet +System.Security.Cryptography.X509Certificates 6.0.2123.36311 dotnet System.Security.Cryptography.Xml 6.0.822.36306 dotnet System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.1623.17311 dotnet -System.Security.Principal.Windows 6.0.1623.17311 dotnet -System.Security.SecureString 6.0.1623.17311 dotnet -System.ServiceModel.Web 6.0.1623.17311 dotnet -System.ServiceProcess 6.0.1623.17311 dotnet -System.ServiceProcess.ServiceController 6.0.21.52210 dotnet -System.Text.Encoding 6.0.1623.17311 dotnet -System.Text.Encoding.CodePages 6.0.1623.17311 dotnet -System.Text.Encoding.Extensions 6.0.1623.17311 dotnet -System.Text.Encodings.Web 6.0.1623.17311 dotnet -System.Text.Json 6.0.1623.17311 dotnet -System.Text.RegularExpressions 6.0.1623.17311 dotnet -System.Threading 6.0.1623.17311 dotnet -System.Threading.Channels 6.0.1623.17311 dotnet -System.Threading.Overlapped 6.0.1623.17311 dotnet -System.Threading.Tasks 6.0.1623.17311 dotnet -System.Threading.Tasks.Dataflow 6.0.1623.17311 dotnet -System.Threading.Tasks.Extensions 6.0.1623.17311 dotnet -System.Threading.Tasks.Parallel 6.0.1623.17311 dotnet -System.Threading.Thread 6.0.1623.17311 dotnet -System.Threading.ThreadPool 6.0.1623.17311 dotnet -System.Threading.Timer 6.0.1623.17311 dotnet -System.Transactions 6.0.1623.17311 dotnet -System.Transactions.Local 6.0.1623.17311 dotnet -System.ValueTuple 6.0.1623.17311 dotnet -System.Web 6.0.1623.17311 dotnet -System.Web.HttpUtility 6.0.1623.17311 dotnet -System.Windows 6.0.1623.17311 dotnet +System.Security.Principal 6.0.2123.36311 dotnet +System.Security.Principal.Windows 6.0.2123.36311 dotnet +System.Security.SecureString 6.0.2123.36311 dotnet +System.ServiceModel.Web 6.0.2123.36311 dotnet +System.ServiceProcess 6.0.2123.36311 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2123.36311 dotnet +System.Text.Encoding.CodePages 6.0.2123.36311 dotnet +System.Text.Encoding.Extensions 6.0.2123.36311 dotnet +System.Text.Encodings.Web 6.0.2123.36311 dotnet +System.Text.Json 6.0.2123.36311 dotnet +System.Text.RegularExpressions 6.0.2123.36311 dotnet +System.Threading 6.0.2123.36311 dotnet +System.Threading.Channels 6.0.2123.36311 dotnet +System.Threading.Overlapped 6.0.2123.36311 dotnet +System.Threading.Tasks 6.0.2123.36311 dotnet +System.Threading.Tasks.Dataflow 6.0.2123.36311 dotnet +System.Threading.Tasks.Extensions 6.0.2123.36311 dotnet +System.Threading.Tasks.Parallel 6.0.2123.36311 dotnet +System.Threading.Thread 6.0.2123.36311 dotnet +System.Threading.ThreadPool 6.0.2123.36311 dotnet +System.Threading.Timer 6.0.2123.36311 dotnet +System.Transactions 6.0.2123.36311 dotnet +System.Transactions.Local 6.0.2123.36311 dotnet +System.ValueTuple 6.0.2123.36311 dotnet +System.Web 6.0.2123.36311 dotnet +System.Web.HttpUtility 6.0.2123.36311 dotnet +System.Windows 6.0.2123.36311 dotnet System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.1623.17311 dotnet -System.Xml.Linq 6.0.1623.17311 dotnet -System.Xml.ReaderWriter 6.0.1623.17311 dotnet -System.Xml.Serialization 6.0.1623.17311 dotnet -System.Xml.XDocument 6.0.1623.17311 dotnet -System.Xml.XPath 6.0.1623.17311 dotnet -System.Xml.XPath.XDocument 6.0.1623.17311 dotnet -System.Xml.XmlDocument 6.0.1623.17311 dotnet -System.Xml.XmlSerializer 6.0.1623.17311 dotnet +System.Xml 6.0.2123.36311 dotnet +System.Xml.Linq 6.0.2123.36311 dotnet +System.Xml.ReaderWriter 6.0.2123.36311 dotnet +System.Xml.Serialization 6.0.2123.36311 dotnet +System.Xml.XDocument 6.0.2123.36311 dotnet +System.Xml.XPath 6.0.2123.36311 dotnet +System.Xml.XPath.XDocument 6.0.2123.36311 dotnet +System.Xml.XmlDocument 6.0.2123.36311 dotnet +System.Xml.XmlSerializer 6.0.2123.36311 dotnet TagLibSharp 2.2.0.27 dotnet -WindowsBase 6.0.1623.17311 dotnet +WindowsBase 6.0.2123.36311 dotnet alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk @@ -449,12 +449,12 @@ libzmq 4.3.4-r4 linux-pam 1.5.2-r10 apk mbedtls 2.28.4-r0 apk mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.1623.17311 dotnet +mscorlib 6.0.2123.36311 dotnet musl 1.2.4-r1 apk musl-utils 1.2.4-r1 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk -netstandard 6.0.1623.17311 dotnet +netstandard 6.0.2123.36311 dotnet nettle 3.8.1-r2 apk nghttp2-libs 1.55.1-r0 apk numactl 2.0.16-r4 apk From 0da435667b0bbc4a701dd73a86e2b71496fc3c57 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Sep 2023 04:49:33 +0000 Subject: [PATCH 335/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2bbaf3a5..7c42ad05 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.2.3569 dotnet -Lidarr.Api.V1 1.4.2.3569 dotnet -Lidarr.Common 1.4.2.3569 dotnet -Lidarr.Core 1.4.2.3569 dotnet -Lidarr.Host 1.4.2.3569 dotnet -Lidarr.Http 1.4.2.3569 dotnet -Lidarr.Mono 1.4.2.3569 dotnet -Lidarr.SignalR 1.4.2.3569 dotnet +Lidarr 1.4.2.3570 dotnet +Lidarr.Api.V1 1.4.2.3570 dotnet +Lidarr.Common 1.4.2.3570 dotnet +Lidarr.Core 1.4.2.3570 dotnet +Lidarr.Host 1.4.2.3570 dotnet +Lidarr.Http 1.4.2.3570 dotnet +Lidarr.Mono 1.4.2.3570 dotnet +Lidarr.SignalR 1.4.2.3570 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 79ddf8258d9517fe181a8ac2a8e4e0810c8aac5e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Sep 2023 14:41:01 +0000 Subject: [PATCH 336/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7c42ad05..068a252c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.2.3570 dotnet -Lidarr.Api.V1 1.4.2.3570 dotnet -Lidarr.Common 1.4.2.3570 dotnet -Lidarr.Core 1.4.2.3570 dotnet -Lidarr.Host 1.4.2.3570 dotnet -Lidarr.Http 1.4.2.3570 dotnet -Lidarr.Mono 1.4.2.3570 dotnet -Lidarr.SignalR 1.4.2.3570 dotnet +Lidarr 1.4.2.3572 dotnet +Lidarr.Api.V1 1.4.2.3572 dotnet +Lidarr.Common 1.4.2.3572 dotnet +Lidarr.Core 1.4.2.3572 dotnet +Lidarr.Host 1.4.2.3572 dotnet +Lidarr.Http 1.4.2.3572 dotnet +Lidarr.Mono 1.4.2.3572 dotnet +Lidarr.SignalR 1.4.2.3572 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 178ff60b1d41f4b06bded024db6145fa352451bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Sep 2023 03:41:11 +0000 Subject: [PATCH 337/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 068a252c..e31f6b15 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.2.3572 dotnet -Lidarr.Api.V1 1.4.2.3572 dotnet -Lidarr.Common 1.4.2.3572 dotnet -Lidarr.Core 1.4.2.3572 dotnet -Lidarr.Host 1.4.2.3572 dotnet -Lidarr.Http 1.4.2.3572 dotnet -Lidarr.Mono 1.4.2.3572 dotnet -Lidarr.SignalR 1.4.2.3572 dotnet +Lidarr 1.4.2.3576 dotnet +Lidarr.Api.V1 1.4.2.3576 dotnet +Lidarr.Common 1.4.2.3576 dotnet +Lidarr.Core 1.4.2.3576 dotnet +Lidarr.Host 1.4.2.3576 dotnet +Lidarr.Http 1.4.2.3576 dotnet +Lidarr.Mono 1.4.2.3576 dotnet +Lidarr.SignalR 1.4.2.3576 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From c4c6d0875c5fa49617184aff2899487dec176713 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 07:34:19 +0000 Subject: [PATCH 338/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e31f6b15..d0c371df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.2.3576 dotnet -Lidarr.Api.V1 1.4.2.3576 dotnet -Lidarr.Common 1.4.2.3576 dotnet -Lidarr.Core 1.4.2.3576 dotnet -Lidarr.Host 1.4.2.3576 dotnet -Lidarr.Http 1.4.2.3576 dotnet -Lidarr.Mono 1.4.2.3576 dotnet -Lidarr.SignalR 1.4.2.3576 dotnet +Lidarr 1.4.3.3579 dotnet +Lidarr.Api.V1 1.4.3.3579 dotnet +Lidarr.Common 1.4.3.3579 dotnet +Lidarr.Core 1.4.3.3579 dotnet +Lidarr.Host 1.4.3.3579 dotnet +Lidarr.Http 1.4.3.3579 dotnet +Lidarr.Mono 1.4.3.3579 dotnet +Lidarr.SignalR 1.4.3.3579 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From f7ae5215fc75c30f61c244fed8d647714f58c3f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 11:00:27 +0000 Subject: [PATCH 339/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d0c371df..b18004ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.3.3579 dotnet -Lidarr.Api.V1 1.4.3.3579 dotnet -Lidarr.Common 1.4.3.3579 dotnet -Lidarr.Core 1.4.3.3579 dotnet -Lidarr.Host 1.4.3.3579 dotnet -Lidarr.Http 1.4.3.3579 dotnet -Lidarr.Mono 1.4.3.3579 dotnet -Lidarr.SignalR 1.4.3.3579 dotnet +Lidarr 1.4.3.3580 dotnet +Lidarr.Api.V1 1.4.3.3580 dotnet +Lidarr.Common 1.4.3.3580 dotnet +Lidarr.Core 1.4.3.3580 dotnet +Lidarr.Host 1.4.3.3580 dotnet +Lidarr.Http 1.4.3.3580 dotnet +Lidarr.Mono 1.4.3.3580 dotnet +Lidarr.SignalR 1.4.3.3580 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From c81f9d40265b6271a8245727abe11f801f899dcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Sep 2023 18:10:06 +0000 Subject: [PATCH 340/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b18004ec..ea0af22b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.3.3580 dotnet -Lidarr.Api.V1 1.4.3.3580 dotnet -Lidarr.Common 1.4.3.3580 dotnet -Lidarr.Core 1.4.3.3580 dotnet -Lidarr.Host 1.4.3.3580 dotnet -Lidarr.Http 1.4.3.3580 dotnet -Lidarr.Mono 1.4.3.3580 dotnet -Lidarr.SignalR 1.4.3.3580 dotnet +Lidarr 1.4.3.3581 dotnet +Lidarr.Api.V1 1.4.3.3581 dotnet +Lidarr.Common 1.4.3.3581 dotnet +Lidarr.Core 1.4.3.3581 dotnet +Lidarr.Host 1.4.3.3581 dotnet +Lidarr.Http 1.4.3.3581 dotnet +Lidarr.Mono 1.4.3.3581 dotnet +Lidarr.SignalR 1.4.3.3581 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 43fb395064691bf5cb99e526a528c57d53b3c98b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Sep 2023 10:40:05 +0000 Subject: [PATCH 341/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ea0af22b..6245992c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.3.3581 dotnet -Lidarr.Api.V1 1.4.3.3581 dotnet -Lidarr.Common 1.4.3.3581 dotnet -Lidarr.Core 1.4.3.3581 dotnet -Lidarr.Host 1.4.3.3581 dotnet -Lidarr.Http 1.4.3.3581 dotnet -Lidarr.Mono 1.4.3.3581 dotnet -Lidarr.SignalR 1.4.3.3581 dotnet +Lidarr 1.4.3.3583 dotnet +Lidarr.Api.V1 1.4.3.3583 dotnet +Lidarr.Common 1.4.3.3583 dotnet +Lidarr.Core 1.4.3.3583 dotnet +Lidarr.Host 1.4.3.3583 dotnet +Lidarr.Http 1.4.3.3583 dotnet +Lidarr.Mono 1.4.3.3583 dotnet +Lidarr.SignalR 1.4.3.3583 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From e5a9a0287f4c3a2e271de773019e5c2dc95f3321 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Sep 2023 04:13:12 +0000 Subject: [PATCH 342/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6245992c..1bb318ad 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.3.3583 dotnet -Lidarr.Api.V1 1.4.3.3583 dotnet -Lidarr.Common 1.4.3.3583 dotnet -Lidarr.Core 1.4.3.3583 dotnet -Lidarr.Host 1.4.3.3583 dotnet -Lidarr.Http 1.4.3.3583 dotnet -Lidarr.Mono 1.4.3.3583 dotnet -Lidarr.SignalR 1.4.3.3583 dotnet +Lidarr 1.4.3.3586 dotnet +Lidarr.Api.V1 1.4.3.3586 dotnet +Lidarr.Common 1.4.3.3586 dotnet +Lidarr.Core 1.4.3.3586 dotnet +Lidarr.Host 1.4.3.3586 dotnet +Lidarr.Http 1.4.3.3586 dotnet +Lidarr.Mono 1.4.3.3586 dotnet +Lidarr.SignalR 1.4.3.3586 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 08846d4a77dc42fa6444434f704ee13295bc2682 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Sep 2023 20:11:10 +0000 Subject: [PATCH 343/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1bb318ad..2a9da1fd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.3.3586 dotnet -Lidarr.Api.V1 1.4.3.3586 dotnet -Lidarr.Common 1.4.3.3586 dotnet -Lidarr.Core 1.4.3.3586 dotnet -Lidarr.Host 1.4.3.3586 dotnet -Lidarr.Http 1.4.3.3586 dotnet -Lidarr.Mono 1.4.3.3586 dotnet -Lidarr.SignalR 1.4.3.3586 dotnet +Lidarr 1.4.4.3597 dotnet +Lidarr.Api.V1 1.4.4.3597 dotnet +Lidarr.Common 1.4.4.3597 dotnet +Lidarr.Core 1.4.4.3597 dotnet +Lidarr.Host 1.4.4.3597 dotnet +Lidarr.Http 1.4.4.3597 dotnet +Lidarr.Mono 1.4.4.3597 dotnet +Lidarr.SignalR 1.4.4.3597 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -436,7 +436,7 @@ libva 2.18.0-r1 libvdpau 1.5-r1 apk libvorbis 1.3.7-r1 apk libvpx 1.13.0-r1 apk -libwebp 1.3.1-r0 apk +libwebp 1.3.2-r0 apk libx11 1.8.4-r4 apk libxau 1.0.11-r2 apk libxcb 1.15-r1 apk From e11f2413f4e4873031a0db126fd0c5d75135ad9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 19 Sep 2023 20:16:48 +0000 Subject: [PATCH 344/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2a9da1fd..60581ad4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.4.3597 dotnet -Lidarr.Api.V1 1.4.4.3597 dotnet -Lidarr.Common 1.4.4.3597 dotnet -Lidarr.Core 1.4.4.3597 dotnet -Lidarr.Host 1.4.4.3597 dotnet -Lidarr.Http 1.4.4.3597 dotnet -Lidarr.Mono 1.4.4.3597 dotnet -Lidarr.SignalR 1.4.4.3597 dotnet +Lidarr 1.4.4.3602 dotnet +Lidarr.Api.V1 1.4.4.3602 dotnet +Lidarr.Common 1.4.4.3602 dotnet +Lidarr.Core 1.4.4.3602 dotnet +Lidarr.Host 1.4.4.3602 dotnet +Lidarr.Http 1.4.4.3602 dotnet +Lidarr.Mono 1.4.4.3602 dotnet +Lidarr.SignalR 1.4.4.3602 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 26aab5ebb85edb68ada5848b2b2f2ca127a4fe7a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Sep 2023 13:31:49 +0000 Subject: [PATCH 345/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 60581ad4..03228724 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.4.3602 dotnet -Lidarr.Api.V1 1.4.4.3602 dotnet -Lidarr.Common 1.4.4.3602 dotnet -Lidarr.Core 1.4.4.3602 dotnet -Lidarr.Host 1.4.4.3602 dotnet -Lidarr.Http 1.4.4.3602 dotnet -Lidarr.Mono 1.4.4.3602 dotnet -Lidarr.SignalR 1.4.4.3602 dotnet +Lidarr 1.4.4.3603 dotnet +Lidarr.Api.V1 1.4.4.3603 dotnet +Lidarr.Common 1.4.4.3603 dotnet +Lidarr.Core 1.4.4.3603 dotnet +Lidarr.Host 1.4.4.3603 dotnet +Lidarr.Http 1.4.4.3603 dotnet +Lidarr.Mono 1.4.4.3603 dotnet +Lidarr.SignalR 1.4.4.3603 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -404,7 +404,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.2-r0 apk +libcrypto3 3.1.3-r0 apk libcurl 8.2.1-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From 35b88dee004e2abab8265352dad1d002f8adfe84 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 02:02:57 +0000 Subject: [PATCH 346/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 03228724..990313f3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -385,7 +385,7 @@ chromaprint 1.5.1-r6 chromaprint-libs 1.5.1-r6 apk cjson 1.7.15-r4 apk coreutils 9.3-r1 apk -curl 8.2.1-r0 apk +curl 8.3.0-r0 apk ffmpeg-libavcodec 6.0-r15 apk ffmpeg-libavformat 6.0-r15 apk ffmpeg-libavutil 6.0-r15 apk @@ -405,7 +405,7 @@ libbsd 0.11.7-r1 libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.3-r0 apk -libcurl 8.2.1-r0 apk +libcurl 8.3.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk libffi 3.4.4-r2 apk @@ -427,7 +427,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.2-r0 apk +libssl3 3.1.3-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From 460a673d407c523dbea3c2505631f5036fffad6c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 16:26:40 +0000 Subject: [PATCH 347/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 990313f3..0e8f85b6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.4.3603 dotnet -Lidarr.Api.V1 1.4.4.3603 dotnet -Lidarr.Common 1.4.4.3603 dotnet -Lidarr.Core 1.4.4.3603 dotnet -Lidarr.Host 1.4.4.3603 dotnet -Lidarr.Http 1.4.4.3603 dotnet -Lidarr.Mono 1.4.4.3603 dotnet -Lidarr.SignalR 1.4.4.3603 dotnet +Lidarr 1.4.4.3613 dotnet +Lidarr.Api.V1 1.4.4.3613 dotnet +Lidarr.Common 1.4.4.3613 dotnet +Lidarr.Core 1.4.4.3613 dotnet +Lidarr.Host 1.4.4.3613 dotnet +Lidarr.Http 1.4.4.3613 dotnet +Lidarr.Mono 1.4.4.3613 dotnet +Lidarr.SignalR 1.4.4.3613 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From f17524c342214c227e63f7382c9fa1e8b49fb84e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Sep 2023 17:27:30 +0000 Subject: [PATCH 348/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0e8f85b6..bf1054b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.4.3613 dotnet -Lidarr.Api.V1 1.4.4.3613 dotnet -Lidarr.Common 1.4.4.3613 dotnet -Lidarr.Core 1.4.4.3613 dotnet -Lidarr.Host 1.4.4.3613 dotnet -Lidarr.Http 1.4.4.3613 dotnet -Lidarr.Mono 1.4.4.3613 dotnet -Lidarr.SignalR 1.4.4.3613 dotnet +Lidarr 1.4.4.3614 dotnet +Lidarr.Api.V1 1.4.4.3614 dotnet +Lidarr.Common 1.4.4.3614 dotnet +Lidarr.Core 1.4.4.3614 dotnet +Lidarr.Host 1.4.4.3614 dotnet +Lidarr.Http 1.4.4.3614 dotnet +Lidarr.Mono 1.4.4.3614 dotnet +Lidarr.SignalR 1.4.4.3614 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From a4a1e5f0fdaf6fc9a75c7bd303f84b20d05a0b6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Oct 2023 16:32:34 +0000 Subject: [PATCH 349/790] Bot Updating Package Versions --- package_versions.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bf1054b4..47b017b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.4.3614 dotnet -Lidarr.Api.V1 1.4.4.3614 dotnet -Lidarr.Common 1.4.4.3614 dotnet -Lidarr.Core 1.4.4.3614 dotnet -Lidarr.Host 1.4.4.3614 dotnet -Lidarr.Http 1.4.4.3614 dotnet -Lidarr.Mono 1.4.4.3614 dotnet -Lidarr.SignalR 1.4.4.3614 dotnet +Lidarr 1.4.5.3619 dotnet +Lidarr.Api.V1 1.4.5.3619 dotnet +Lidarr.Common 1.4.5.3619 dotnet +Lidarr.Core 1.4.5.3619 dotnet +Lidarr.Host 1.4.5.3619 dotnet +Lidarr.Http 1.4.5.3619 dotnet +Lidarr.Mono 1.4.5.3619 dotnet +Lidarr.SignalR 1.4.5.3619 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -372,7 +372,7 @@ WindowsBase 6.0.2123.36311 alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.3-r0 apk +alpine-release 3.18.4-r0 apk aom-libs 3.6.1-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk @@ -435,7 +435,7 @@ libunistring 1.1-r1 libva 2.18.0-r1 apk libvdpau 1.5-r1 apk libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r1 apk +libvpx 1.13.0-r2 apk libwebp 1.3.2-r0 apk libx11 1.8.4-r4 apk libxau 1.0.11-r2 apk From c0e69f55eeb053802f1225154ffee7366d3973e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Oct 2023 20:18:22 +0000 Subject: [PATCH 350/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 47b017b0..18554f7f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.5.3619 dotnet -Lidarr.Api.V1 1.4.5.3619 dotnet -Lidarr.Common 1.4.5.3619 dotnet -Lidarr.Core 1.4.5.3619 dotnet -Lidarr.Host 1.4.5.3619 dotnet -Lidarr.Http 1.4.5.3619 dotnet -Lidarr.Mono 1.4.5.3619 dotnet -Lidarr.SignalR 1.4.5.3619 dotnet +Lidarr 1.4.5.3620 dotnet +Lidarr.Api.V1 1.4.5.3620 dotnet +Lidarr.Common 1.4.5.3620 dotnet +Lidarr.Core 1.4.5.3620 dotnet +Lidarr.Host 1.4.5.3620 dotnet +Lidarr.Http 1.4.5.3620 dotnet +Lidarr.Mono 1.4.5.3620 dotnet +Lidarr.SignalR 1.4.5.3620 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From bcdd732b8105068833e6df5cf2aeb64f6fce4f17 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Oct 2023 18:36:10 +0000 Subject: [PATCH 351/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 18554f7f..ac26b1ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.5.3620 dotnet -Lidarr.Api.V1 1.4.5.3620 dotnet -Lidarr.Common 1.4.5.3620 dotnet -Lidarr.Core 1.4.5.3620 dotnet -Lidarr.Host 1.4.5.3620 dotnet -Lidarr.Http 1.4.5.3620 dotnet -Lidarr.Mono 1.4.5.3620 dotnet -Lidarr.SignalR 1.4.5.3620 dotnet +Lidarr 1.4.5.3626 dotnet +Lidarr.Api.V1 1.4.5.3626 dotnet +Lidarr.Common 1.4.5.3626 dotnet +Lidarr.Core 1.4.5.3626 dotnet +Lidarr.Host 1.4.5.3626 dotnet +Lidarr.Http 1.4.5.3626 dotnet +Lidarr.Mono 1.4.5.3626 dotnet +Lidarr.SignalR 1.4.5.3626 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 921cd55aa38473e5b6b8124fd272be510d458bb4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Oct 2023 20:40:54 +0000 Subject: [PATCH 352/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ac26b1ef..e2ef2e75 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.5.3626 dotnet -Lidarr.Api.V1 1.4.5.3626 dotnet -Lidarr.Common 1.4.5.3626 dotnet -Lidarr.Core 1.4.5.3626 dotnet -Lidarr.Host 1.4.5.3626 dotnet -Lidarr.Http 1.4.5.3626 dotnet -Lidarr.Mono 1.4.5.3626 dotnet -Lidarr.SignalR 1.4.5.3626 dotnet +Lidarr 1.4.5.3629 dotnet +Lidarr.Api.V1 1.4.5.3629 dotnet +Lidarr.Common 1.4.5.3629 dotnet +Lidarr.Core 1.4.5.3629 dotnet +Lidarr.Host 1.4.5.3629 dotnet +Lidarr.Http 1.4.5.3629 dotnet +Lidarr.Mono 1.4.5.3629 dotnet +Lidarr.SignalR 1.4.5.3629 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 4013b04d5f0a0ebbbdb31dc8972a9abadbb9212a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 5 Oct 2023 18:25:44 +0000 Subject: [PATCH 353/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e2ef2e75..5c721619 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.5.3629 dotnet -Lidarr.Api.V1 1.4.5.3629 dotnet -Lidarr.Common 1.4.5.3629 dotnet -Lidarr.Core 1.4.5.3629 dotnet -Lidarr.Host 1.4.5.3629 dotnet -Lidarr.Http 1.4.5.3629 dotnet -Lidarr.Mono 1.4.5.3629 dotnet -Lidarr.SignalR 1.4.5.3629 dotnet +Lidarr 1.4.5.3632 dotnet +Lidarr.Api.V1 1.4.5.3632 dotnet +Lidarr.Common 1.4.5.3632 dotnet +Lidarr.Core 1.4.5.3632 dotnet +Lidarr.Host 1.4.5.3632 dotnet +Lidarr.Http 1.4.5.3632 dotnet +Lidarr.Mono 1.4.5.3632 dotnet +Lidarr.SignalR 1.4.5.3632 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 611810d39accdc6464653d6136a857392624d0f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Oct 2023 06:21:38 +0000 Subject: [PATCH 354/790] Bot Updating Templated Files --- Jenkinsfile | 77 ++++++++++++++++++++++++++++------------------------- 1 file changed, 41 insertions(+), 36 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0353cc28..1e49364d 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,7 +16,6 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') - SCARF_TOKEN=credentials('scarf_api_key') BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-lidarr' @@ -329,12 +328,12 @@ pipeline { else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} fi - mkdir -p ${TEMPDIR}/gitbook - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/gitbook/docker-documentation - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/gitbook/docker-documentation/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/gitbook/docker-documentation/images/ - cd ${TEMPDIR}/gitbook/docker-documentation/ - git add images/docker-${CONTAINER_NAME}.md + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + git add docs/images/docker-${CONTAINER_NAME}.md git commit -m 'Bot Updating Documentation' git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all fi @@ -425,35 +424,6 @@ pipeline { "visibility":"public"}' ''' } } - /* ####################### - Scarf.sh package registry - ####################### */ - // Add package to Scarf.sh and set permissions - stage("Scarf.sh package registry"){ - when { - branch "nightly" - environment name: 'EXIT_STATUS', value: '' - } - steps{ - sh '''#! /bin/bash - PACKAGE_UUID=$(curl -X GET -H "Authorization: Bearer ${SCARF_TOKEN}" https://scarf.sh/api/v1/organizations/linuxserver-ci/packages | jq -r '.[] | select(.name=="linuxserver/lidarr") | .uuid' || :) - if [ -z "${PACKAGE_UUID}" ]; then - echo "Adding package to Scarf.sh" - curl -sX POST https://scarf.sh/api/v1/organizations/linuxserver-ci/packages \ - -H "Authorization: Bearer ${SCARF_TOKEN}" \ - -H "Content-Type: application/json" \ - -d '{"name":"linuxserver/lidarr",\ - "shortDescription":"example description",\ - "libraryType":"docker",\ - "website":"https://github.com/linuxserver/docker-lidarr",\ - "backendUrl":"https://ghcr.io/linuxserver/lidarr",\ - "publicUrl":"https://lscr.io/linuxserver/lidarr"}' || : - else - echo "Package already exists on Scarf.sh" - fi - ''' - } - } /* ############### Build Container ############### */ @@ -849,6 +819,41 @@ pipeline { curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' } } + // Add protection to the release branch + stage('Github-Release-Branch-Protection') { + when { + branch "nightly" + environment name: 'CHANGE_ID', value: '' + environment name: 'EXIT_STATUS', value: '' + } + steps { + echo "Setting up protection for release branch nightly" + sh '''#! /bin/bash + curl -H "Authorization: token ${GITHUB_TOKEN}" -X PUT https://api.github.com/repos/${LS_USER}/${LS_REPO}/branches/nightly/protection \ + -d $(jq -c . << EOF + { + "required_status_checks": null, + "enforce_admins": false, + "required_pull_request_reviews": { + "dismiss_stale_reviews": false, + "require_code_owner_reviews": false, + "require_last_push_approval": false, + "required_approving_review_count": 1 + }, + "restrictions": null, + "required_linear_history": false, + "allow_force_pushes": false, + "allow_deletions": false, + "block_creations": false, + "required_conversation_resolution": true, + "lock_branch": false, + "allow_fork_syncing": false, + "required_signatures": false + } +EOF + ) ''' + } + } // Use helper container to sync the current README on master to the dockerhub endpoint stage('Sync-README') { when { From d57bfa0c258e5eec08cf97e308dbe56b0268b6d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Oct 2023 06:24:21 +0000 Subject: [PATCH 355/790] Bot Updating Templated Files --- README.md | 136 ++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 101 insertions(+), 35 deletions(-) diff --git a/README.md b/README.md index 7722f4d8..507c124e 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ -<!-- DO NOT EDIT THIS FILE MANUALLY --> -<!-- Please read the https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/CONTRIBUTING.md --> - +<!-- DO NOT EDIT THIS FILE MANUALLY --> +<!-- Please read https://github.com/linuxserver/docker-lidarr/blob/nightly/.github/CONTRIBUTING.md --> [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") @@ -67,6 +66,7 @@ This image provides various versions that are available via tags. Please read th | latest | ✅ | Stable Lidarr releases. | | develop | ✅ | Develop Lidarr Releases. | | nightly | ✅ | Nightly Lidarr Releases. | + ## Application Setup Access the webui at `<your-ip>:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). @@ -85,7 +85,7 @@ The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/d ## Usage -Here are some example snippets to help you get started creating a container. +To help you get started creating a container from this image you can either use docker-compose or the docker cli. ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) @@ -123,12 +123,11 @@ docker run -d \ -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ lscr.io/linuxserver/lidarr:nightly - ``` ## Parameters -Container images are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. +Containers are configured using parameters passed at runtime (such as those above). These parameters are separated by a colon and indicate `<external>:<internal>` respectively. For example, `-p 8080:80` would expose port `80` from inside the container to be accessible from the host's IP on port `8080` outside the container. | Parameter | Function | | :----: | --- | @@ -147,10 +146,10 @@ You can set any environment variable from a file by using a special prepend `FIL As an example: ```bash --e FILE__PASSWORD=/run/secrets/mysecretpassword +-e FILE__MYVAR=/run/secrets/mysecretvariable ``` -Will set the environment variable `PASSWORD` based on the contents of the `/run/secrets/mysecretpassword` file. +Will set the environment variable `MYVAR` based on the contents of the `/run/secrets/mysecretvariable` file. ## Umask for running applications @@ -159,15 +158,20 @@ Keep in mind umask is not chmod it subtracts from permissions based on it's valu ## User / Group Identifiers -When using volumes (`-v` flags) permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. +When using volumes (`-v` flags), permissions issues can arise between the host OS and the container, we avoid this issue by allowing you to specify the user `PUID` and group `PGID`. Ensure any volume directories on the host are owned by the same user you specify and any permissions issues will vanish like magic. -In this instance `PUID=1000` and `PGID=1000`, to find yours use `id user` as below: +In this instance `PUID=1000` and `PGID=1000`, to find yours use `id your_user` as below: ```bash - $ id username - uid=1000(dockeruser) gid=1000(dockergroup) groups=1000(dockergroup) +id your_user +``` + +Example output: + +```text +uid=1000(your_user) gid=1000(your_user) groups=1000(your_user) ``` ## Docker Mods @@ -178,12 +182,29 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Support Info -* Shell access whilst the container is running: `docker exec -it lidarr /bin/bash` -* To monitor the logs of the container in realtime: `docker logs -f lidarr` -* container version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr` -* image version number - * `docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/lidarr:nightly` +* Shell access whilst the container is running: + + ```bash + docker exec -it lidarr /bin/bash + ``` + +* To monitor the logs of the container in realtime: + + ```bash + docker logs -f lidarr + ``` + +* Container version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lidarr + ``` + +* Image version number: + + ```bash + docker inspect -f '{{ index .Config.Labels "build_version" }}' lscr.io/linuxserver/lidarr:nightly + ``` ## Updating Info @@ -193,38 +214,83 @@ Below are the instructions for updating containers: ### Via Docker Compose -* Update all images: `docker-compose pull` - * or update a single image: `docker-compose pull lidarr` -* Let compose update all containers as necessary: `docker-compose up -d` - * or update a single container: `docker-compose up -d lidarr` -* You can also remove the old dangling images: `docker image prune` +* Update images: + * All images: + + ```bash + docker-compose pull + ``` + + * Single image: + + ```bash + docker-compose pull lidarr + ``` + +* Update containers: + * All containers: + + ```bash + docker-compose up -d + ``` + + * Single container: + + ```bash + docker-compose up -d lidarr + ``` + +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Docker Run -* Update the image: `docker pull lscr.io/linuxserver/lidarr:nightly` -* Stop the running container: `docker stop lidarr` -* Delete the container: `docker rm lidarr` +* Update the image: + + ```bash + docker pull lscr.io/linuxserver/lidarr:nightly + ``` + +* Stop the running container: + + ```bash + docker stop lidarr + ``` + +* Delete the container: + + ```bash + docker rm lidarr + ``` + * Recreate a new container with the same docker run parameters as instructed above (if mapped correctly to a host folder, your `/config` folder and settings will be preserved) -* You can also remove the old dangling images: `docker image prune` +* You can also remove the old dangling images: + + ```bash + docker image prune + ``` ### Via Watchtower auto-updater (only use if you don't remember the original parameters) * Pull the latest image at its tag and replace it with the same env variables in one run: - ```bash - docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - containrrr/watchtower \ - --run-once lidarr - ``` + ```bash + docker run --rm \ + -v /var/run/docker.sock:/var/run/docker.sock \ + containrrr/watchtower \ + --run-once lidarr + ``` * You can also remove the old dangling images: `docker image prune` -**Note:** We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). +**warning**: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). ### Image Update Notifications - Diun (Docker Image Update Notifier) -* We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. +**tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. ## Building locally From 5bb47a5e705fbfedd14eb517f674cc49deca3bbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Oct 2023 06:27:14 +0000 Subject: [PATCH 356/790] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5c721619..a0307bbc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.4.5.3632 dotnet -Lidarr.Api.V1 1.4.5.3632 dotnet -Lidarr.Common 1.4.5.3632 dotnet -Lidarr.Core 1.4.5.3632 dotnet -Lidarr.Host 1.4.5.3632 dotnet -Lidarr.Http 1.4.5.3632 dotnet -Lidarr.Mono 1.4.5.3632 dotnet -Lidarr.SignalR 1.4.5.3632 dotnet +Lidarr 1.5.0.3643 dotnet +Lidarr.Api.V1 1.5.0.3643 dotnet +Lidarr.Common 1.5.0.3643 dotnet +Lidarr.Core 1.5.0.3643 dotnet +Lidarr.Host 1.5.0.3643 dotnet +Lidarr.Http 1.5.0.3643 dotnet +Lidarr.Mono 1.5.0.3643 dotnet +Lidarr.SignalR 1.5.0.3643 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -447,11 +447,11 @@ libxml2 2.11.4-r0 libxslt 1.1.38-r0 apk libzmq 4.3.4-r4 apk linux-pam 1.5.2-r10 apk -mbedtls 2.28.4-r0 apk +mbedtls 2.28.5-r0 apk mpg123-libs 1.31.3-r1 apk mscorlib 6.0.2123.36311 dotnet -musl 1.2.4-r1 apk -musl-utils 1.2.4-r1 apk +musl 1.2.4-r2 apk +musl-utils 1.2.4-r2 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk netstandard 6.0.2123.36311 dotnet From 01bbafa9a31a59682298a22346c127408d671df3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Oct 2023 08:42:19 +0000 Subject: [PATCH 357/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a0307bbc..010634f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.0.3643 dotnet -Lidarr.Api.V1 1.5.0.3643 dotnet -Lidarr.Common 1.5.0.3643 dotnet -Lidarr.Core 1.5.0.3643 dotnet -Lidarr.Host 1.5.0.3643 dotnet -Lidarr.Http 1.5.0.3643 dotnet -Lidarr.Mono 1.5.0.3643 dotnet -Lidarr.SignalR 1.5.0.3643 dotnet +Lidarr 1.5.0.3654 dotnet +Lidarr.Api.V1 1.5.0.3654 dotnet +Lidarr.Common 1.5.0.3654 dotnet +Lidarr.Core 1.5.0.3654 dotnet +Lidarr.Host 1.5.0.3654 dotnet +Lidarr.Http 1.5.0.3654 dotnet +Lidarr.Mono 1.5.0.3654 dotnet +Lidarr.SignalR 1.5.0.3654 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 5c74106666c4afaa3597d57fe6bc9f6fcc03f585 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Oct 2023 06:16:30 +0000 Subject: [PATCH 358/790] Bot Updating Package Versions --- package_versions.txt | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 010634f0..8922f703 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.0.3654 dotnet -Lidarr.Api.V1 1.5.0.3654 dotnet -Lidarr.Common 1.5.0.3654 dotnet -Lidarr.Core 1.5.0.3654 dotnet -Lidarr.Host 1.5.0.3654 dotnet -Lidarr.Http 1.5.0.3654 dotnet -Lidarr.Mono 1.5.0.3654 dotnet -Lidarr.SignalR 1.5.0.3654 dotnet +Lidarr 1.5.1.3656 dotnet +Lidarr.Api.V1 1.5.1.3656 dotnet +Lidarr.Common 1.5.1.3656 dotnet +Lidarr.Core 1.5.1.3656 dotnet +Lidarr.Host 1.5.1.3656 dotnet +Lidarr.Http 1.5.1.3656 dotnet +Lidarr.Mono 1.5.1.3656 dotnet +Lidarr.SignalR 1.5.1.3656 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -377,15 +377,15 @@ aom-libs 3.6.1-r0 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r2 apk -busybox-binsh 1.36.1-r2 apk +busybox 1.36.1-r4 apk +busybox-binsh 1.36.1-r4 apk ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk cjson 1.7.15-r4 apk coreutils 9.3-r1 apk -curl 8.3.0-r0 apk +curl 8.4.0-r0 apk ffmpeg-libavcodec 6.0-r15 apk ffmpeg-libavformat 6.0-r15 apk ffmpeg-libavutil 6.0-r15 apk @@ -405,7 +405,7 @@ libbsd 0.11.7-r1 libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.3-r0 apk -libcurl 8.3.0-r0 apk +libcurl 8.4.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk libffi 3.4.4-r2 apk @@ -456,7 +456,7 @@ ncurses-terminfo-base 6.4_p20230506-r0 netcat-openbsd 1.219-r1 apk netstandard 6.0.2123.36311 dotnet nettle 3.8.1-r2 apk -nghttp2-libs 1.55.1-r0 apk +nghttp2-libs 1.57.0-r0 apk numactl 2.0.16-r4 apk onevpl-libs 2023.2.1-r0 apk oniguruma 6.9.8-r1 apk @@ -469,7 +469,7 @@ shadow 4.13-r4 skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r2 apk +ssl_client 1.36.1-r4 apk svt-av1-libs 1.6.0-r0 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk From 951b174a83be0cc405e1fc973ea9b3709f855f35 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 00:48:21 +0000 Subject: [PATCH 359/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8922f703..710a0ae1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.1.3656 dotnet -Lidarr.Api.V1 1.5.1.3656 dotnet -Lidarr.Common 1.5.1.3656 dotnet -Lidarr.Core 1.5.1.3656 dotnet -Lidarr.Host 1.5.1.3656 dotnet -Lidarr.Http 1.5.1.3656 dotnet -Lidarr.Mono 1.5.1.3656 dotnet -Lidarr.SignalR 1.5.1.3656 dotnet +Lidarr 1.5.1.3659 dotnet +Lidarr.Api.V1 1.5.1.3659 dotnet +Lidarr.Common 1.5.1.3659 dotnet +Lidarr.Core 1.5.1.3659 dotnet +Lidarr.Host 1.5.1.3659 dotnet +Lidarr.Http 1.5.1.3659 dotnet +Lidarr.Mono 1.5.1.3659 dotnet +Lidarr.SignalR 1.5.1.3659 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From bf94c4ea8e218b211097496df439854195df4547 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 10:21:51 +0000 Subject: [PATCH 360/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 710a0ae1..bd28433a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.1.3659 dotnet -Lidarr.Api.V1 1.5.1.3659 dotnet -Lidarr.Common 1.5.1.3659 dotnet -Lidarr.Core 1.5.1.3659 dotnet -Lidarr.Host 1.5.1.3659 dotnet -Lidarr.Http 1.5.1.3659 dotnet -Lidarr.Mono 1.5.1.3659 dotnet -Lidarr.SignalR 1.5.1.3659 dotnet +Lidarr 1.5.1.3663 dotnet +Lidarr.Api.V1 1.5.1.3663 dotnet +Lidarr.Common 1.5.1.3663 dotnet +Lidarr.Core 1.5.1.3663 dotnet +Lidarr.Host 1.5.1.3663 dotnet +Lidarr.Http 1.5.1.3663 dotnet +Lidarr.Mono 1.5.1.3663 dotnet +Lidarr.SignalR 1.5.1.3663 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 2cfba66784dded9d6d7bdf56f3b9f829c70b70d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 10:42:19 +0000 Subject: [PATCH 361/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bd28433a..2770dec3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.1.3663 dotnet -Lidarr.Api.V1 1.5.1.3663 dotnet -Lidarr.Common 1.5.1.3663 dotnet -Lidarr.Core 1.5.1.3663 dotnet -Lidarr.Host 1.5.1.3663 dotnet -Lidarr.Http 1.5.1.3663 dotnet -Lidarr.Mono 1.5.1.3663 dotnet -Lidarr.SignalR 1.5.1.3663 dotnet +Lidarr 1.5.1.3664 dotnet +Lidarr.Api.V1 1.5.1.3664 dotnet +Lidarr.Common 1.5.1.3664 dotnet +Lidarr.Core 1.5.1.3664 dotnet +Lidarr.Host 1.5.1.3664 dotnet +Lidarr.Http 1.5.1.3664 dotnet +Lidarr.Mono 1.5.1.3664 dotnet +Lidarr.SignalR 1.5.1.3664 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From a43a3280e4855802164967af69d300b43d7c4477 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Oct 2023 12:22:10 +0000 Subject: [PATCH 362/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2770dec3..00b4bbd8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.1.3664 dotnet -Lidarr.Api.V1 1.5.1.3664 dotnet -Lidarr.Common 1.5.1.3664 dotnet -Lidarr.Core 1.5.1.3664 dotnet -Lidarr.Host 1.5.1.3664 dotnet -Lidarr.Http 1.5.1.3664 dotnet -Lidarr.Mono 1.5.1.3664 dotnet -Lidarr.SignalR 1.5.1.3664 dotnet +Lidarr 1.5.1.3665 dotnet +Lidarr.Api.V1 1.5.1.3665 dotnet +Lidarr.Common 1.5.1.3665 dotnet +Lidarr.Core 1.5.1.3665 dotnet +Lidarr.Host 1.5.1.3665 dotnet +Lidarr.Http 1.5.1.3665 dotnet +Lidarr.Mono 1.5.1.3665 dotnet +Lidarr.SignalR 1.5.1.3665 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 1bf77452a75aaa43f9d0963a098d8fdafde45237 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Oct 2023 02:36:23 +0000 Subject: [PATCH 363/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 00b4bbd8..01cb8cf7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 1.5.1.3665 dotnet -Lidarr.Api.V1 1.5.1.3665 dotnet -Lidarr.Common 1.5.1.3665 dotnet -Lidarr.Core 1.5.1.3665 dotnet -Lidarr.Host 1.5.1.3665 dotnet -Lidarr.Http 1.5.1.3665 dotnet -Lidarr.Mono 1.5.1.3665 dotnet -Lidarr.SignalR 1.5.1.3665 dotnet +Lidarr 2.0.0.3677 dotnet +Lidarr.Api.V1 2.0.0.3677 dotnet +Lidarr.Common 2.0.0.3677 dotnet +Lidarr.Core 2.0.0.3677 dotnet +Lidarr.Host 2.0.0.3677 dotnet +Lidarr.Http 2.0.0.3677 dotnet +Lidarr.Mono 2.0.0.3677 dotnet +Lidarr.SignalR 2.0.0.3677 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -217,7 +217,7 @@ System.Core 6.0.2123.36311 System.Data 6.0.2123.36311 dotnet System.Data.Common 6.0.2123.36311 dotnet System.Data.DataSetExtensions 6.0.2123.36311 dotnet -System.Data.SQLite Core 1.0.115.5 dotnet +System.Data.SQLite Core 1.0.118.0 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet System.Diagnostics.Contracts 6.0.2123.36311 dotnet System.Diagnostics.Debug 6.0.2123.36311 dotnet From f1b089e2c2c722b7a817765d2e96673062360581 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Oct 2023 03:34:43 +0000 Subject: [PATCH 364/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 01cb8cf7..f771d94d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.0.3677 dotnet -Lidarr.Api.V1 2.0.0.3677 dotnet -Lidarr.Common 2.0.0.3677 dotnet -Lidarr.Core 2.0.0.3677 dotnet -Lidarr.Host 2.0.0.3677 dotnet -Lidarr.Http 2.0.0.3677 dotnet -Lidarr.Mono 2.0.0.3677 dotnet -Lidarr.SignalR 2.0.0.3677 dotnet +Lidarr 2.0.0.3678 dotnet +Lidarr.Api.V1 2.0.0.3678 dotnet +Lidarr.Common 2.0.0.3678 dotnet +Lidarr.Core 2.0.0.3678 dotnet +Lidarr.Host 2.0.0.3678 dotnet +Lidarr.Http 2.0.0.3678 dotnet +Lidarr.Mono 2.0.0.3678 dotnet +Lidarr.SignalR 2.0.0.3678 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 58e94eced801d3c35e9c1760d4502ba0a13db983 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Oct 2023 16:40:04 +0000 Subject: [PATCH 365/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f771d94d..43c6fb7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.0.3678 dotnet -Lidarr.Api.V1 2.0.0.3678 dotnet -Lidarr.Common 2.0.0.3678 dotnet -Lidarr.Core 2.0.0.3678 dotnet -Lidarr.Host 2.0.0.3678 dotnet -Lidarr.Http 2.0.0.3678 dotnet -Lidarr.Mono 2.0.0.3678 dotnet -Lidarr.SignalR 2.0.0.3678 dotnet +Lidarr 2.0.0.3682 dotnet +Lidarr.Api.V1 2.0.0.3682 dotnet +Lidarr.Common 2.0.0.3682 dotnet +Lidarr.Core 2.0.0.3682 dotnet +Lidarr.Host 2.0.0.3682 dotnet +Lidarr.Http 2.0.0.3682 dotnet +Lidarr.Mono 2.0.0.3682 dotnet +Lidarr.SignalR 2.0.0.3682 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -217,7 +217,7 @@ System.Core 6.0.2123.36311 System.Data 6.0.2123.36311 dotnet System.Data.Common 6.0.2123.36311 dotnet System.Data.DataSetExtensions 6.0.2123.36311 dotnet -System.Data.SQLite Core 1.0.118.0 dotnet +System.Data.SQLite Core 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet System.Diagnostics.Contracts 6.0.2123.36311 dotnet System.Diagnostics.Debug 6.0.2123.36311 dotnet From 3e1747c84859ddd9ef885d3ce45d09c08b0ebc52 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Oct 2023 02:02:19 +0000 Subject: [PATCH 366/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 43c6fb7a..e25f62d2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -404,7 +404,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.3-r0 apk +libcrypto3 3.1.4-r0 apk libcurl 8.4.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From 5e5e213777b150d414f2ddfd8fa31761de2359c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 25 Oct 2023 09:07:03 +0000 Subject: [PATCH 367/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e25f62d2..3a39c92a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.0.3682 dotnet -Lidarr.Api.V1 2.0.0.3682 dotnet -Lidarr.Common 2.0.0.3682 dotnet -Lidarr.Core 2.0.0.3682 dotnet -Lidarr.Host 2.0.0.3682 dotnet -Lidarr.Http 2.0.0.3682 dotnet -Lidarr.Mono 2.0.0.3682 dotnet -Lidarr.SignalR 2.0.0.3682 dotnet +Lidarr 2.0.0.3696 dotnet +Lidarr.Api.V1 2.0.0.3696 dotnet +Lidarr.Common 2.0.0.3696 dotnet +Lidarr.Core 2.0.0.3696 dotnet +Lidarr.Host 2.0.0.3696 dotnet +Lidarr.Http 2.0.0.3696 dotnet +Lidarr.Mono 2.0.0.3696 dotnet +Lidarr.SignalR 2.0.0.3696 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 830bf1d4bfbb2250eef10e5f828fa18cdf8c633c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Oct 2023 13:33:41 +0000 Subject: [PATCH 368/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3a39c92a..ed7370b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.0.3696 dotnet -Lidarr.Api.V1 2.0.0.3696 dotnet -Lidarr.Common 2.0.0.3696 dotnet -Lidarr.Core 2.0.0.3696 dotnet -Lidarr.Host 2.0.0.3696 dotnet -Lidarr.Http 2.0.0.3696 dotnet -Lidarr.Mono 2.0.0.3696 dotnet -Lidarr.SignalR 2.0.0.3696 dotnet +Lidarr 2.0.1.3740 dotnet +Lidarr.Api.V1 2.0.1.3740 dotnet +Lidarr.Common 2.0.1.3740 dotnet +Lidarr.Core 2.0.1.3740 dotnet +Lidarr.Host 2.0.1.3740 dotnet +Lidarr.Http 2.0.1.3740 dotnet +Lidarr.Mono 2.0.1.3740 dotnet +Lidarr.SignalR 2.0.1.3740 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -427,7 +427,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.3-r0 apk +libssl3 3.1.4-r0 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From f73063319eaee1862ceaeba57fa3e9629f1ee831 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Oct 2023 14:25:34 +0000 Subject: [PATCH 369/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ed7370b8..ee7a64ea 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3740 dotnet -Lidarr.Api.V1 2.0.1.3740 dotnet -Lidarr.Common 2.0.1.3740 dotnet -Lidarr.Core 2.0.1.3740 dotnet -Lidarr.Host 2.0.1.3740 dotnet -Lidarr.Http 2.0.1.3740 dotnet -Lidarr.Mono 2.0.1.3740 dotnet -Lidarr.SignalR 2.0.1.3740 dotnet +Lidarr 2.0.1.3742 dotnet +Lidarr.Api.V1 2.0.1.3742 dotnet +Lidarr.Common 2.0.1.3742 dotnet +Lidarr.Core 2.0.1.3742 dotnet +Lidarr.Host 2.0.1.3742 dotnet +Lidarr.Http 2.0.1.3742 dotnet +Lidarr.Mono 2.0.1.3742 dotnet +Lidarr.SignalR 2.0.1.3742 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From de663cb564b69ad0f1c00738fb3c73247b33b8ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Oct 2023 17:40:53 +0000 Subject: [PATCH 370/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ee7a64ea..93aea085 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3742 dotnet -Lidarr.Api.V1 2.0.1.3742 dotnet -Lidarr.Common 2.0.1.3742 dotnet -Lidarr.Core 2.0.1.3742 dotnet -Lidarr.Host 2.0.1.3742 dotnet -Lidarr.Http 2.0.1.3742 dotnet -Lidarr.Mono 2.0.1.3742 dotnet -Lidarr.SignalR 2.0.1.3742 dotnet +Lidarr 2.0.1.3748 dotnet +Lidarr.Api.V1 2.0.1.3748 dotnet +Lidarr.Common 2.0.1.3748 dotnet +Lidarr.Core 2.0.1.3748 dotnet +Lidarr.Host 2.0.1.3748 dotnet +Lidarr.Http 2.0.1.3748 dotnet +Lidarr.Mono 2.0.1.3748 dotnet +Lidarr.SignalR 2.0.1.3748 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From dc9e092cb11ad6d315222902571848f6bc8662ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 20:57:15 +0000 Subject: [PATCH 371/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 93aea085..c9ef0303 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3748 dotnet -Lidarr.Api.V1 2.0.1.3748 dotnet -Lidarr.Common 2.0.1.3748 dotnet -Lidarr.Core 2.0.1.3748 dotnet -Lidarr.Host 2.0.1.3748 dotnet -Lidarr.Http 2.0.1.3748 dotnet -Lidarr.Mono 2.0.1.3748 dotnet -Lidarr.SignalR 2.0.1.3748 dotnet +Lidarr 2.0.1.3757 dotnet +Lidarr.Api.V1 2.0.1.3757 dotnet +Lidarr.Common 2.0.1.3757 dotnet +Lidarr.Core 2.0.1.3757 dotnet +Lidarr.Host 2.0.1.3757 dotnet +Lidarr.Http 2.0.1.3757 dotnet +Lidarr.Mono 2.0.1.3757 dotnet +Lidarr.SignalR 2.0.1.3757 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From a9087dcbf1957e69374a2214da2c7eb2230500e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 30 Oct 2023 21:41:01 +0000 Subject: [PATCH 372/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c9ef0303..545d9e03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3757 dotnet -Lidarr.Api.V1 2.0.1.3757 dotnet -Lidarr.Common 2.0.1.3757 dotnet -Lidarr.Core 2.0.1.3757 dotnet -Lidarr.Host 2.0.1.3757 dotnet -Lidarr.Http 2.0.1.3757 dotnet -Lidarr.Mono 2.0.1.3757 dotnet -Lidarr.SignalR 2.0.1.3757 dotnet +Lidarr 2.0.1.3758 dotnet +Lidarr.Api.V1 2.0.1.3758 dotnet +Lidarr.Common 2.0.1.3758 dotnet +Lidarr.Core 2.0.1.3758 dotnet +Lidarr.Host 2.0.1.3758 dotnet +Lidarr.Http 2.0.1.3758 dotnet +Lidarr.Mono 2.0.1.3758 dotnet +Lidarr.SignalR 2.0.1.3758 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 4a7992c4544bd006260804979493d54431a9b571 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Nov 2023 14:45:35 +0000 Subject: [PATCH 373/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 545d9e03..e6502b71 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -30,14 +30,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3758 dotnet -Lidarr.Api.V1 2.0.1.3758 dotnet -Lidarr.Common 2.0.1.3758 dotnet -Lidarr.Core 2.0.1.3758 dotnet -Lidarr.Host 2.0.1.3758 dotnet -Lidarr.Http 2.0.1.3758 dotnet -Lidarr.Mono 2.0.1.3758 dotnet -Lidarr.SignalR 2.0.1.3758 dotnet +Lidarr 2.0.1.3761 dotnet +Lidarr.Api.V1 2.0.1.3761 dotnet +Lidarr.Common 2.0.1.3761 dotnet +Lidarr.Core 2.0.1.3761 dotnet +Lidarr.Host 2.0.1.3761 dotnet +Lidarr.Http 2.0.1.3761 dotnet +Lidarr.Mono 2.0.1.3761 dotnet +Lidarr.SignalR 2.0.1.3761 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -437,7 +437,7 @@ libvdpau 1.5-r1 libvorbis 1.3.7-r1 apk libvpx 1.13.0-r2 apk libwebp 1.3.2-r0 apk -libx11 1.8.4-r4 apk +libx11 1.8.7-r0 apk libxau 1.0.11-r2 apk libxcb 1.15-r1 apk libxdmcp 1.1.4-r2 apk From 8120b7942ad515170f5101549aa72b6c1b99fcc5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 2 Nov 2023 01:49:10 +0000 Subject: [PATCH 374/790] Bot Updating Package Versions --- package_versions.txt | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e6502b71..40129b41 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,7 @@ NAME VERSION TYPE BouncyCastle.Crypto 1.9.0.1 dotnet Dapper 2.0.123.33578 dotnet +Diacritical 1.0.4.0 dotnet DryIoc net6.0 5.4.1.0 dotnet DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet Dynamitey 2.0.9.136 dotnet @@ -30,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3761 dotnet -Lidarr.Api.V1 2.0.1.3761 dotnet -Lidarr.Common 2.0.1.3761 dotnet -Lidarr.Core 2.0.1.3761 dotnet -Lidarr.Host 2.0.1.3761 dotnet -Lidarr.Http 2.0.1.3761 dotnet -Lidarr.Mono 2.0.1.3761 dotnet -Lidarr.SignalR 2.0.1.3761 dotnet +Lidarr 2.0.1.3764 dotnet +Lidarr.Api.V1 2.0.1.3764 dotnet +Lidarr.Common 2.0.1.3764 dotnet +Lidarr.Core 2.0.1.3764 dotnet +Lidarr.Host 2.0.1.3764 dotnet +Lidarr.Http 2.0.1.3764 dotnet +Lidarr.Mono 2.0.1.3764 dotnet +Lidarr.SignalR 2.0.1.3764 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From c05b559b795b18f00cb78fb4bbd4fe6848740442 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 Nov 2023 13:10:27 +0000 Subject: [PATCH 375/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 40129b41..c5ce2442 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3764 dotnet -Lidarr.Api.V1 2.0.1.3764 dotnet -Lidarr.Common 2.0.1.3764 dotnet -Lidarr.Core 2.0.1.3764 dotnet -Lidarr.Host 2.0.1.3764 dotnet -Lidarr.Http 2.0.1.3764 dotnet -Lidarr.Mono 2.0.1.3764 dotnet -Lidarr.SignalR 2.0.1.3764 dotnet +Lidarr 2.0.1.3769 dotnet +Lidarr.Api.V1 2.0.1.3769 dotnet +Lidarr.Common 2.0.1.3769 dotnet +Lidarr.Core 2.0.1.3769 dotnet +Lidarr.Host 2.0.1.3769 dotnet +Lidarr.Http 2.0.1.3769 dotnet +Lidarr.Mono 2.0.1.3769 dotnet +Lidarr.SignalR 2.0.1.3769 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 0a62c5e3dbb316c3ee86d2bf770f4caccacf1d78 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Nov 2023 09:47:42 +0000 Subject: [PATCH 376/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c5ce2442..7e0903b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.1.3769 dotnet -Lidarr.Api.V1 2.0.1.3769 dotnet -Lidarr.Common 2.0.1.3769 dotnet -Lidarr.Core 2.0.1.3769 dotnet -Lidarr.Host 2.0.1.3769 dotnet -Lidarr.Http 2.0.1.3769 dotnet -Lidarr.Mono 2.0.1.3769 dotnet -Lidarr.SignalR 2.0.1.3769 dotnet +Lidarr 2.0.2.3770 dotnet +Lidarr.Api.V1 2.0.2.3770 dotnet +Lidarr.Common 2.0.2.3770 dotnet +Lidarr.Core 2.0.2.3770 dotnet +Lidarr.Host 2.0.2.3770 dotnet +Lidarr.Http 2.0.2.3770 dotnet +Lidarr.Mono 2.0.2.3770 dotnet +Lidarr.SignalR 2.0.2.3770 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From f3803d4c4df3ee0019754e032f69abf2db3a3a66 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 6 Nov 2023 20:06:03 +0000 Subject: [PATCH 377/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7e0903b8..47402def 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.2.3770 dotnet -Lidarr.Api.V1 2.0.2.3770 dotnet -Lidarr.Common 2.0.2.3770 dotnet -Lidarr.Core 2.0.2.3770 dotnet -Lidarr.Host 2.0.2.3770 dotnet -Lidarr.Http 2.0.2.3770 dotnet -Lidarr.Mono 2.0.2.3770 dotnet -Lidarr.SignalR 2.0.2.3770 dotnet +Lidarr 2.0.2.3775 dotnet +Lidarr.Api.V1 2.0.2.3775 dotnet +Lidarr.Common 2.0.2.3775 dotnet +Lidarr.Core 2.0.2.3775 dotnet +Lidarr.Host 2.0.2.3775 dotnet +Lidarr.Http 2.0.2.3775 dotnet +Lidarr.Mono 2.0.2.3775 dotnet +Lidarr.SignalR 2.0.2.3775 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 8f6ee6a061999e5049532f2beb2f6b58b4d25409 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Nov 2023 14:26:30 +0000 Subject: [PATCH 378/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 47402def..d53db00a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET .NET 6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.2.3775 dotnet -Lidarr.Api.V1 2.0.2.3775 dotnet -Lidarr.Common 2.0.2.3775 dotnet -Lidarr.Core 2.0.2.3775 dotnet -Lidarr.Host 2.0.2.3775 dotnet -Lidarr.Http 2.0.2.3775 dotnet -Lidarr.Mono 2.0.2.3775 dotnet -Lidarr.SignalR 2.0.2.3775 dotnet +Lidarr 2.0.2.3776 dotnet +Lidarr.Api.V1 2.0.2.3776 dotnet +Lidarr.Common 2.0.2.3776 dotnet +Lidarr.Core 2.0.2.3776 dotnet +Lidarr.Host 2.0.2.3776 dotnet +Lidarr.Http 2.0.2.3776 dotnet +Lidarr.Mono 2.0.2.3776 dotnet +Lidarr.SignalR 2.0.2.3776 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 186b74b4ec43e89b30f65958390edcf1ab1e2e54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 7 Nov 2023 17:45:58 +0000 Subject: [PATCH 379/790] Bot Updating Package Versions --- package_versions.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d53db00a..393600f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -2,8 +2,8 @@ NAME VERSION BouncyCastle.Crypto 1.9.0.1 dotnet Dapper 2.0.123.33578 dotnet Diacritical 1.0.4.0 dotnet -DryIoc net6.0 5.4.1.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +DryIoc.Microsoft.DependencyInjectionnet6.0 6.2.0.0 dotnet +DryIocnet6.0 5.4.1.0 dotnet Dynamitey 2.0.9.136 dotnet Equ 2.3.0 dotnet FluentMigrator 3.3.2.9 dotnet @@ -29,16 +29,16 @@ FluentValidation 9.5.4.0 ICSharpCode.SharpZipLib 1.3.3.11 dotnet Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet -Json.NET .NET 6.0 13.0.2.27524 dotnet +Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.2.3776 dotnet -Lidarr.Api.V1 2.0.2.3776 dotnet -Lidarr.Common 2.0.2.3776 dotnet -Lidarr.Core 2.0.2.3776 dotnet -Lidarr.Host 2.0.2.3776 dotnet -Lidarr.Http 2.0.2.3776 dotnet -Lidarr.Mono 2.0.2.3776 dotnet -Lidarr.SignalR 2.0.2.3776 dotnet +Lidarr 2.0.2.3777 dotnet +Lidarr.Api.V1 2.0.2.3777 dotnet +Lidarr.Common 2.0.2.3777 dotnet +Lidarr.Core 2.0.2.3777 dotnet +Lidarr.Host 2.0.2.3777 dotnet +Lidarr.Http 2.0.2.3777 dotnet +Lidarr.Mono 2.0.2.3777 dotnet +Lidarr.SignalR 2.0.2.3777 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -185,10 +185,10 @@ MimeKit 3.6.0.0 Mono.Nat 3.0.1 dotnet Mono.Posix.NETStandard.dll 1.0.0.0 dotnet MonoTorrent 2.0.7 dotnet -NLog Syslog target 7.0.0.0 dotnet -NLog for NetStandard 2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging for .NET 5.0 5.0.4.221 dotnet -Noda Time 3.0.0.0 dotnet +NLog.Extensions.Loggingfor.NET5.0 5.0.4.221 dotnet +NLogSyslogtarget 7.0.0.0 dotnet +NLogforNetStandard2.0 5.2.0.1813 dotnet +NodaTime 3.0.0.0 dotnet Npgsql 7.0.4.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet ReusableTasks 2.0.0 dotnet @@ -218,7 +218,7 @@ System.Core 6.0.2123.36311 System.Data 6.0.2123.36311 dotnet System.Data.Common 6.0.2123.36311 dotnet System.Data.DataSetExtensions 6.0.2123.36311 dotnet -System.Data.SQLite Core 1.0.115.5 dotnet +System.Data.SQLiteCore 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet System.Diagnostics.Contracts 6.0.2123.36311 dotnet System.Diagnostics.Debug 6.0.2123.36311 dotnet From d2e5f1caf6b3afed72bd72bad55514bc57c4ac11 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 Nov 2023 18:04:12 +0000 Subject: [PATCH 380/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 393600f7..b3f1c985 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.2.3777 dotnet -Lidarr.Api.V1 2.0.2.3777 dotnet -Lidarr.Common 2.0.2.3777 dotnet -Lidarr.Core 2.0.2.3777 dotnet -Lidarr.Host 2.0.2.3777 dotnet -Lidarr.Http 2.0.2.3777 dotnet -Lidarr.Mono 2.0.2.3777 dotnet -Lidarr.SignalR 2.0.2.3777 dotnet +Lidarr 2.0.2.3782 dotnet +Lidarr.Api.V1 2.0.2.3782 dotnet +Lidarr.Common 2.0.2.3782 dotnet +Lidarr.Core 2.0.2.3782 dotnet +Lidarr.Host 2.0.2.3782 dotnet +Lidarr.Http 2.0.2.3782 dotnet +Lidarr.Mono 2.0.2.3782 dotnet +Lidarr.SignalR 2.0.2.3782 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 772e40c3ac3a194ccbfd89c17b5a98398f25a002 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Nov 2023 02:06:51 +0000 Subject: [PATCH 381/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b3f1c985..aeab0f95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -378,8 +378,8 @@ aom-libs 3.6.1-r0 apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r4 apk -busybox-binsh 1.36.1-r4 apk +busybox 1.36.1-r5 apk +busybox-binsh 1.36.1-r5 apk ca-certificates 20230506-r0 apk ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r6 apk @@ -405,7 +405,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r0 apk +libcrypto3 3.1.4-r1 apk libcurl 8.4.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk @@ -428,7 +428,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.4-r0 apk +libssl3 3.1.4-r1 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk @@ -470,7 +470,7 @@ shadow 4.13-r4 skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r4 apk +ssl_client 1.36.1-r5 apk svt-av1-libs 1.6.0-r0 apk tzdata 2023c-r1 apk utmps-libs 0.1.2.1-r1 apk From 0be74f92fc8d5735588507c488c2a7e72041a519 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Nov 2023 02:29:21 +0000 Subject: [PATCH 382/790] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 507c124e..4e57602c 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Find us at: ## Supported Architectures -We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://github.com/docker/distribution/blob/master/docs/spec/manifest-v2-2.md#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). +We utilise the docker manifest for multi-platform awareness. More information is available from docker [here](https://distribution.github.io/distribution/spec/manifest-v2-2/#manifest-list) and our announcement [here](https://blog.linuxserver.io/2019/02/21/the-lsio-pipeline-project/). Simply pulling `lscr.io/linuxserver/lidarr:nightly` should retrieve the correct image for your arch, but you can also pull specific arch images via tags. From 1753f06d5ab44c072b85eb0803c03abb5d4b176c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 17 Nov 2023 02:32:04 +0000 Subject: [PATCH 383/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index aeab0f95..443aa9a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.2.3782 dotnet -Lidarr.Api.V1 2.0.2.3782 dotnet -Lidarr.Common 2.0.2.3782 dotnet -Lidarr.Core 2.0.2.3782 dotnet -Lidarr.Host 2.0.2.3782 dotnet -Lidarr.Http 2.0.2.3782 dotnet -Lidarr.Mono 2.0.2.3782 dotnet -Lidarr.SignalR 2.0.2.3782 dotnet +Lidarr 2.0.3.3787 dotnet +Lidarr.Api.V1 2.0.3.3787 dotnet +Lidarr.Common 2.0.3.3787 dotnet +Lidarr.Core 2.0.3.3787 dotnet +Lidarr.Host 2.0.3.3787 dotnet +Lidarr.Http 2.0.3.3787 dotnet +Lidarr.Mono 2.0.3.3787 dotnet +Lidarr.SignalR 2.0.3.3787 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From f5c0baf735d4be4c545df0e2bc11f22d129e62ea Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 18 Nov 2023 05:38:01 +0000 Subject: [PATCH 384/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 443aa9a7..11ed2edb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.3.3787 dotnet -Lidarr.Api.V1 2.0.3.3787 dotnet -Lidarr.Common 2.0.3.3787 dotnet -Lidarr.Core 2.0.3.3787 dotnet -Lidarr.Host 2.0.3.3787 dotnet -Lidarr.Http 2.0.3.3787 dotnet -Lidarr.Mono 2.0.3.3787 dotnet -Lidarr.SignalR 2.0.3.3787 dotnet +Lidarr 2.0.3.3791 dotnet +Lidarr.Api.V1 2.0.3.3791 dotnet +Lidarr.Common 2.0.3.3791 dotnet +Lidarr.Core 2.0.3.3791 dotnet +Lidarr.Host 2.0.3.3791 dotnet +Lidarr.Http 2.0.3.3791 dotnet +Lidarr.Mono 2.0.3.3791 dotnet +Lidarr.SignalR 2.0.3.3791 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From f57f4c169de26741abab877c8b8803bb90a80620 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Nov 2023 21:28:52 +0000 Subject: [PATCH 385/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 11ed2edb..fb09f80a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.3.3791 dotnet -Lidarr.Api.V1 2.0.3.3791 dotnet -Lidarr.Common 2.0.3.3791 dotnet -Lidarr.Core 2.0.3.3791 dotnet -Lidarr.Host 2.0.3.3791 dotnet -Lidarr.Http 2.0.3.3791 dotnet -Lidarr.Mono 2.0.3.3791 dotnet -Lidarr.SignalR 2.0.3.3791 dotnet +Lidarr 2.0.4.3797 dotnet +Lidarr.Api.V1 2.0.4.3797 dotnet +Lidarr.Common 2.0.4.3797 dotnet +Lidarr.Core 2.0.4.3797 dotnet +Lidarr.Host 2.0.4.3797 dotnet +Lidarr.Http 2.0.4.3797 dotnet +Lidarr.Mono 2.0.4.3797 dotnet +Lidarr.SignalR 2.0.4.3797 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -444,7 +444,7 @@ libxcb 1.15-r1 libxdmcp 1.1.4-r2 apk libxext 1.3.5-r2 apk libxfixes 6.0.1-r2 apk -libxml2 2.11.4-r0 apk +libxml2 2.11.6-r0 apk libxslt 1.1.38-r0 apk libzmq 4.3.4-r4 apk linux-pam 1.5.2-r10 apk From 5e77158c9bf08b88c3eeaf4c7a68a4056fd798ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Nov 2023 22:40:25 +0000 Subject: [PATCH 386/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fb09f80a..12db0b5c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.4.3797 dotnet -Lidarr.Api.V1 2.0.4.3797 dotnet -Lidarr.Common 2.0.4.3797 dotnet -Lidarr.Core 2.0.4.3797 dotnet -Lidarr.Host 2.0.4.3797 dotnet -Lidarr.Http 2.0.4.3797 dotnet -Lidarr.Mono 2.0.4.3797 dotnet -Lidarr.SignalR 2.0.4.3797 dotnet +Lidarr 2.0.4.3798 dotnet +Lidarr.Api.V1 2.0.4.3798 dotnet +Lidarr.Common 2.0.4.3798 dotnet +Lidarr.Core 2.0.4.3798 dotnet +Lidarr.Host 2.0.4.3798 dotnet +Lidarr.Http 2.0.4.3798 dotnet +Lidarr.Mono 2.0.4.3798 dotnet +Lidarr.SignalR 2.0.4.3798 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 316bb67789ddefea7a728d38ac0b7c3258906369 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 20 Nov 2023 00:21:44 +0000 Subject: [PATCH 387/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12db0b5c..afd3be66 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.4.3798 dotnet -Lidarr.Api.V1 2.0.4.3798 dotnet -Lidarr.Common 2.0.4.3798 dotnet -Lidarr.Core 2.0.4.3798 dotnet -Lidarr.Host 2.0.4.3798 dotnet -Lidarr.Http 2.0.4.3798 dotnet -Lidarr.Mono 2.0.4.3798 dotnet -Lidarr.SignalR 2.0.4.3798 dotnet +Lidarr 2.0.4.3802 dotnet +Lidarr.Api.V1 2.0.4.3802 dotnet +Lidarr.Common 2.0.4.3802 dotnet +Lidarr.Core 2.0.4.3802 dotnet +Lidarr.Host 2.0.4.3802 dotnet +Lidarr.Http 2.0.4.3802 dotnet +Lidarr.Mono 2.0.4.3802 dotnet +Lidarr.SignalR 2.0.4.3802 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet From 7d4ba8bdb47f8e8755d46cb3496e62865323d632 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 21 Nov 2023 22:08:28 +0000 Subject: [PATCH 388/790] Bot Updating Package Versions --- package_versions.txt | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index afd3be66..3acea08e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.4.3802 dotnet -Lidarr.Api.V1 2.0.4.3802 dotnet -Lidarr.Common 2.0.4.3802 dotnet -Lidarr.Core 2.0.4.3802 dotnet -Lidarr.Host 2.0.4.3802 dotnet -Lidarr.Http 2.0.4.3802 dotnet -Lidarr.Mono 2.0.4.3802 dotnet -Lidarr.SignalR 2.0.4.3802 dotnet +Lidarr 2.0.5.3807 dotnet +Lidarr.Api.V1 2.0.5.3807 dotnet +Lidarr.Common 2.0.5.3807 dotnet +Lidarr.Core 2.0.5.3807 dotnet +Lidarr.Host 2.0.5.3807 dotnet +Lidarr.Http 2.0.5.3807 dotnet +Lidarr.Mono 2.0.5.3807 dotnet +Lidarr.SignalR 2.0.5.3807 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2123.36438 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet @@ -387,10 +387,10 @@ chromaprint-libs 1.5.1-r6 cjson 1.7.15-r4 apk coreutils 9.3-r1 apk curl 8.4.0-r0 apk -ffmpeg-libavcodec 6.0-r15 apk -ffmpeg-libavformat 6.0-r15 apk -ffmpeg-libavutil 6.0-r15 apk -ffmpeg-libswresample 6.0-r15 apk +ffmpeg-libavcodec 6.0.1-r0 apk +ffmpeg-libavformat 6.0.1-r0 apk +ffmpeg-libavutil 6.0.1-r0 apk +ffmpeg-libswresample 6.0.1-r0 apk gmp 6.2.1-r3 apk gnutls 3.8.0-r2 apk hwdata-pci 0.370-r0 apk From ce90ba15a6385060edefff48f5ce6c159f995778 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 24 Nov 2023 03:25:38 +0000 Subject: [PATCH 389/790] Bot Updating Package Versions --- package_versions.txt | 536 +++++++++++++++++++++---------------------- 1 file changed, 268 insertions(+), 268 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3acea08e..56e3a061 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -3,7 +3,7 @@ BouncyCastle.Crypto 1.9.0.1 Dapper 2.0.123.33578 dotnet Diacritical 1.0.4.0 dotnet DryIoc.Microsoft.DependencyInjectionnet6.0 6.2.0.0 dotnet -DryIocnet6.0 5.4.1.0 dotnet +DryIocnet6.0 5.4.3.0 dotnet Dynamitey 2.0.9.136 dotnet Equ 2.3.0 dotnet FluentMigrator 3.3.2.9 dotnet @@ -31,96 +31,96 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.5.3807 dotnet -Lidarr.Api.V1 2.0.5.3807 dotnet -Lidarr.Common 2.0.5.3807 dotnet -Lidarr.Core 2.0.5.3807 dotnet -Lidarr.Host 2.0.5.3807 dotnet -Lidarr.Http 2.0.5.3807 dotnet -Lidarr.Mono 2.0.5.3807 dotnet -Lidarr.SignalR 2.0.5.3807 dotnet +Lidarr 2.0.5.3811 dotnet +Lidarr.Api.V1 2.0.5.3811 dotnet +Lidarr.Common 2.0.5.3811 dotnet +Lidarr.Core 2.0.5.3811 dotnet +Lidarr.Host 2.0.5.3811 dotnet +Lidarr.Http 2.0.5.3811 dotnet +Lidarr.Mono 2.0.5.3811 dotnet +Lidarr.SignalR 2.0.5.3811 dotnet MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authentication 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authorization 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Components 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Cors 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2123.36438 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2123.36438 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2123.36438 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Hosting 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2123.36438 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2123.36438 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2123.36438 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Identity 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Localization 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Metadata 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Razor 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2123.36438 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2123.36438 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Routing 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2123.36438 dotnet -Microsoft.AspNetCore.Session 6.0.2123.36438 dotnet -Microsoft.AspNetCore.SignalR 6.0.2123.36438 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2123.36438 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2123.36438 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2123.36438 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2123.36438 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2123.36438 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2123.36438 dotnet -Microsoft.CSharp 6.0.2123.36311 dotnet +Microsoft.AspNetCore 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.CSharp 6.0.2523.51912 dotnet Microsoft.Data.SqlClient 2.0.20168.4 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet @@ -132,27 +132,27 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2123.36438 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2123.36438 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2123.36438 dotnet -Microsoft.Extensions.Features 6.0.2123.36438 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Features 6.0.2523.52315 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2123.36438 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet Microsoft.Extensions.Hosting 6.0.222.6406 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1022.47605 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2123.36438 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2123.36438 dotnet -Microsoft.Extensions.Localization 6.0.2123.36438 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2123.36438 dotnet +Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet Microsoft.Extensions.Logging 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet @@ -161,25 +161,25 @@ Microsoft.Extensions.Logging.Debug 6.0.21.52210 Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2123.36438 dotnet +Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet Microsoft.Extensions.Options 6.0.21.52210 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2123.36438 dotnet +Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet Microsoft.Identity.Client 4.21.1.0 dotnet Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012 dotnet Microsoft.IdentityModel.Logging 6.8.0.11012 dotnet Microsoft.IdentityModel.Protocols 6.8.0.11012 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012 dotnet Microsoft.IdentityModel.Tokens 6.8.0.11012 dotnet -Microsoft.JSInterop 6.0.2123.36438 dotnet -Microsoft.Net.Http.Headers 6.0.2123.36438 dotnet +Microsoft.JSInterop 6.0.2523.52315 dotnet +Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2123.36311 dotnet -Microsoft.VisualBasic.Core 11.100.2123.36311 dotnet -Microsoft.Win32.Primitives 6.0.2123.36311 dotnet -Microsoft.Win32.Registry 6.0.2123.36311 dotnet +Microsoft.VisualBasic 6.0.2523.51912 dotnet +Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet +Microsoft.Win32.Primitives 6.0.2523.51912 dotnet +Microsoft.Win32.Registry 6.0.2523.51912 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet MimeKit 3.6.0.0 dotnet Mono.Nat 3.0.1 dotnet @@ -189,7 +189,7 @@ NLog.Extensions.Loggingfor.NET5.0 5.0.4.221 NLogSyslogtarget 7.0.0.0 dotnet NLogforNetStandard2.0 5.2.0.1813 dotnet NodaTime 3.0.0.0 dotnet -Npgsql 7.0.4.0 dotnet +Npgsql 7.0.6.0 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet @@ -197,179 +197,179 @@ SixLabors.ImageSharp 3.0.1.0 SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2123.36311 dotnet -System.AppContext 6.0.2123.36311 dotnet -System.Buffers 6.0.2123.36311 dotnet -System.Collections 6.0.2123.36311 dotnet -System.Collections.Concurrent 6.0.2123.36311 dotnet -System.Collections.Immutable 6.0.2123.36311 dotnet -System.Collections.NonGeneric 6.0.2123.36311 dotnet -System.Collections.Specialized 6.0.2123.36311 dotnet -System.ComponentModel 6.0.2123.36311 dotnet -System.ComponentModel.Annotations 6.0.2123.36311 dotnet -System.ComponentModel.DataAnnotations 6.0.2123.36311 dotnet -System.ComponentModel.EventBasedAsync 6.0.2123.36311 dotnet -System.ComponentModel.Primitives 6.0.2123.36311 dotnet -System.ComponentModel.TypeConverter 6.0.2123.36311 dotnet -System.Configuration 6.0.2123.36311 dotnet +System 6.0.2523.51912 dotnet +System.AppContext 6.0.2523.51912 dotnet +System.Buffers 6.0.2523.51912 dotnet +System.Collections 6.0.2523.51912 dotnet +System.Collections.Concurrent 6.0.2523.51912 dotnet +System.Collections.Immutable 6.0.2523.51912 dotnet +System.Collections.NonGeneric 6.0.2523.51912 dotnet +System.Collections.Specialized 6.0.2523.51912 dotnet +System.ComponentModel 6.0.2523.51912 dotnet +System.ComponentModel.Annotations 6.0.2523.51912 dotnet +System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet +System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet +System.ComponentModel.Primitives 6.0.2523.51912 dotnet +System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet +System.Configuration 6.0.2523.51912 dotnet System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2123.36311 dotnet -System.Core 6.0.2123.36311 dotnet -System.Data 6.0.2123.36311 dotnet -System.Data.Common 6.0.2123.36311 dotnet -System.Data.DataSetExtensions 6.0.2123.36311 dotnet +System.Console 6.0.2523.51912 dotnet +System.Core 6.0.2523.51912 dotnet +System.Data 6.0.2523.51912 dotnet +System.Data.Common 6.0.2523.51912 dotnet +System.Data.DataSetExtensions 6.0.2523.51912 dotnet System.Data.SQLiteCore 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2123.36311 dotnet -System.Diagnostics.Debug 6.0.2123.36311 dotnet -System.Diagnostics.DiagnosticSource 6.0.2123.36311 dotnet +System.Diagnostics.Contracts 6.0.2523.51912 dotnet +System.Diagnostics.Debug 6.0.2523.51912 dotnet +System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2123.36311 dotnet -System.Diagnostics.Process 6.0.2123.36311 dotnet -System.Diagnostics.StackTrace 6.0.2123.36311 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2123.36311 dotnet -System.Diagnostics.Tools 6.0.2123.36311 dotnet -System.Diagnostics.TraceSource 6.0.2123.36311 dotnet -System.Diagnostics.Tracing 6.0.2123.36311 dotnet -System.Drawing 6.0.2123.36311 dotnet +System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet +System.Diagnostics.Process 6.0.2523.51912 dotnet +System.Diagnostics.StackTrace 6.0.2523.51912 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet +System.Diagnostics.Tools 6.0.2523.51912 dotnet +System.Diagnostics.TraceSource 6.0.2523.51912 dotnet +System.Diagnostics.Tracing 6.0.2523.51912 dotnet +System.Drawing 6.0.2523.51912 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2123.36311 dotnet -System.Dynamic.Runtime 6.0.2123.36311 dotnet -System.Formats.Asn1 6.0.2123.36311 dotnet -System.Globalization 6.0.2123.36311 dotnet -System.Globalization.Calendars 6.0.2123.36311 dotnet -System.Globalization.Extensions 6.0.2123.36311 dotnet -System.IO 6.0.2123.36311 dotnet +System.Drawing.Primitives 6.0.2523.51912 dotnet +System.Dynamic.Runtime 6.0.2523.51912 dotnet +System.Formats.Asn1 6.0.2523.51912 dotnet +System.Globalization 6.0.2523.51912 dotnet +System.Globalization.Calendars 6.0.2523.51912 dotnet +System.Globalization.Extensions 6.0.2523.51912 dotnet +System.IO 6.0.2523.51912 dotnet System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2123.36311 dotnet -System.IO.Compression.Brotli 6.0.2123.36311 dotnet -System.IO.Compression.FileSystem 6.0.2123.36311 dotnet -System.IO.Compression.ZipFile 6.0.2123.36311 dotnet -System.IO.FileSystem 6.0.2123.36311 dotnet -System.IO.FileSystem.AccessControl 6.0.2123.36311 dotnet -System.IO.FileSystem.DriveInfo 6.0.2123.36311 dotnet -System.IO.FileSystem.Primitives 6.0.2123.36311 dotnet -System.IO.FileSystem.Watcher 6.0.2123.36311 dotnet -System.IO.IsolatedStorage 6.0.2123.36311 dotnet -System.IO.MemoryMappedFiles 6.0.2123.36311 dotnet +System.IO.Compression 6.0.2523.51912 dotnet +System.IO.Compression.Brotli 6.0.2523.51912 dotnet +System.IO.Compression.FileSystem 6.0.2523.51912 dotnet +System.IO.Compression.ZipFile 6.0.2523.51912 dotnet +System.IO.FileSystem 6.0.2523.51912 dotnet +System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet +System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet +System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet +System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet +System.IO.IsolatedStorage 6.0.2523.51912 dotnet +System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2123.36311 dotnet -System.IO.Pipes.AccessControl 6.0.2123.36311 dotnet -System.IO.UnmanagedMemoryStream 6.0.2123.36311 dotnet +System.IO.Pipes 6.0.2523.51912 dotnet +System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet +System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet System.IdentityModel.Tokens.Jwt 6.8.0.11012 dotnet -System.Linq 6.0.2123.36311 dotnet -System.Linq.Expressions 6.0.2123.36311 dotnet -System.Linq.Parallel 6.0.2123.36311 dotnet -System.Linq.Queryable 6.0.2123.36311 dotnet -System.Memory 6.0.2123.36311 dotnet -System.Net 6.0.2123.36311 dotnet -System.Net.Http 6.0.2123.36311 dotnet -System.Net.Http.Json 6.0.2123.36311 dotnet -System.Net.HttpListener 6.0.2123.36311 dotnet -System.Net.Mail 6.0.2123.36311 dotnet -System.Net.NameResolution 6.0.2123.36311 dotnet -System.Net.NetworkInformation 6.0.2123.36311 dotnet -System.Net.Ping 6.0.2123.36311 dotnet -System.Net.Primitives 6.0.2123.36311 dotnet -System.Net.Quic 6.0.2123.36311 dotnet -System.Net.Requests 6.0.2123.36311 dotnet -System.Net.Security 6.0.2123.36311 dotnet -System.Net.ServicePoint 6.0.2123.36311 dotnet -System.Net.Sockets 6.0.2123.36311 dotnet -System.Net.WebClient 6.0.2123.36311 dotnet -System.Net.WebHeaderCollection 6.0.2123.36311 dotnet -System.Net.WebProxy 6.0.2123.36311 dotnet -System.Net.WebSockets 6.0.2123.36311 dotnet -System.Net.WebSockets.Client 6.0.2123.36311 dotnet -System.Numerics 6.0.2123.36311 dotnet -System.Numerics.Vectors 6.0.2123.36311 dotnet -System.ObjectModel 6.0.2123.36311 dotnet -System.Private.CoreLib 6.0.2123.36311 dotnet -System.Private.DataContractSerialization 6.0.2123.36311 dotnet -System.Private.Uri 6.0.2123.36311 dotnet -System.Private.Xml 6.0.2123.36311 dotnet -System.Private.Xml.Linq 6.0.2123.36311 dotnet -System.Reflection 6.0.2123.36311 dotnet -System.Reflection.DispatchProxy 6.0.2123.36311 dotnet -System.Reflection.Emit 6.0.2123.36311 dotnet -System.Reflection.Emit.ILGeneration 6.0.2123.36311 dotnet -System.Reflection.Emit.Lightweight 6.0.2123.36311 dotnet -System.Reflection.Extensions 6.0.2123.36311 dotnet -System.Reflection.Metadata 6.0.2123.36311 dotnet -System.Reflection.Primitives 6.0.2123.36311 dotnet -System.Reflection.TypeExtensions 6.0.2123.36311 dotnet -System.Resources.Reader 6.0.2123.36311 dotnet -System.Resources.ResourceManager 6.0.2123.36311 dotnet -System.Resources.Writer 6.0.2123.36311 dotnet -System.Runtime 6.0.2123.36311 dotnet +System.Linq 6.0.2523.51912 dotnet +System.Linq.Expressions 6.0.2523.51912 dotnet +System.Linq.Parallel 6.0.2523.51912 dotnet +System.Linq.Queryable 6.0.2523.51912 dotnet +System.Memory 6.0.2523.51912 dotnet +System.Net 6.0.2523.51912 dotnet +System.Net.Http 6.0.2523.51912 dotnet +System.Net.Http.Json 6.0.2523.51912 dotnet +System.Net.HttpListener 6.0.2523.51912 dotnet +System.Net.Mail 6.0.2523.51912 dotnet +System.Net.NameResolution 6.0.2523.51912 dotnet +System.Net.NetworkInformation 6.0.2523.51912 dotnet +System.Net.Ping 6.0.2523.51912 dotnet +System.Net.Primitives 6.0.2523.51912 dotnet +System.Net.Quic 6.0.2523.51912 dotnet +System.Net.Requests 6.0.2523.51912 dotnet +System.Net.Security 6.0.2523.51912 dotnet +System.Net.ServicePoint 6.0.2523.51912 dotnet +System.Net.Sockets 6.0.2523.51912 dotnet +System.Net.WebClient 6.0.2523.51912 dotnet +System.Net.WebHeaderCollection 6.0.2523.51912 dotnet +System.Net.WebProxy 6.0.2523.51912 dotnet +System.Net.WebSockets 6.0.2523.51912 dotnet +System.Net.WebSockets.Client 6.0.2523.51912 dotnet +System.Numerics 6.0.2523.51912 dotnet +System.Numerics.Vectors 6.0.2523.51912 dotnet +System.ObjectModel 6.0.2523.51912 dotnet +System.Private.CoreLib 6.0.2523.51912 dotnet +System.Private.DataContractSerialization 6.0.2523.51912 dotnet +System.Private.Uri 6.0.2523.51912 dotnet +System.Private.Xml 6.0.2523.51912 dotnet +System.Private.Xml.Linq 6.0.2523.51912 dotnet +System.Reflection 6.0.2523.51912 dotnet +System.Reflection.DispatchProxy 6.0.2523.51912 dotnet +System.Reflection.Emit 6.0.2523.51912 dotnet +System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet +System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet +System.Reflection.Extensions 6.0.2523.51912 dotnet +System.Reflection.Metadata 6.0.2523.51912 dotnet +System.Reflection.Primitives 6.0.2523.51912 dotnet +System.Reflection.TypeExtensions 6.0.2523.51912 dotnet +System.Resources.Reader 6.0.2523.51912 dotnet +System.Resources.ResourceManager 6.0.2523.51912 dotnet +System.Resources.Writer 6.0.2523.51912 dotnet +System.Runtime 6.0.2523.51912 dotnet System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2123.36311 dotnet -System.Runtime.Extensions 6.0.2123.36311 dotnet -System.Runtime.Handles 6.0.2123.36311 dotnet -System.Runtime.InteropServices 6.0.2123.36311 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2123.36311 dotnet -System.Runtime.Intrinsics 6.0.2123.36311 dotnet -System.Runtime.Loader 6.0.2123.36311 dotnet -System.Runtime.Numerics 6.0.2123.36311 dotnet -System.Runtime.Serialization 6.0.2123.36311 dotnet -System.Runtime.Serialization.Formatters 6.0.2123.36311 dotnet -System.Runtime.Serialization.Json 6.0.2123.36311 dotnet -System.Runtime.Serialization.Primitives 6.0.2123.36311 dotnet -System.Runtime.Serialization.Xml 6.0.2123.36311 dotnet -System.Security 6.0.2123.36311 dotnet -System.Security.AccessControl 6.0.2123.36311 dotnet -System.Security.Claims 6.0.2123.36311 dotnet -System.Security.Cryptography.Algorithms 6.0.2123.36311 dotnet -System.Security.Cryptography.Cng 6.0.2123.36311 dotnet -System.Security.Cryptography.Csp 6.0.2123.36311 dotnet -System.Security.Cryptography.Encoding 6.0.2123.36311 dotnet -System.Security.Cryptography.OpenSsl 6.0.2123.36311 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet +System.Runtime.Extensions 6.0.2523.51912 dotnet +System.Runtime.Handles 6.0.2523.51912 dotnet +System.Runtime.InteropServices 6.0.2523.51912 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet +System.Runtime.Intrinsics 6.0.2523.51912 dotnet +System.Runtime.Loader 6.0.2523.51912 dotnet +System.Runtime.Numerics 6.0.2523.51912 dotnet +System.Runtime.Serialization 6.0.2523.51912 dotnet +System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet +System.Runtime.Serialization.Json 6.0.2523.51912 dotnet +System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet +System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet +System.Security 6.0.2523.51912 dotnet +System.Security.AccessControl 6.0.2523.51912 dotnet +System.Security.Claims 6.0.2523.51912 dotnet +System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet +System.Security.Cryptography.Cng 6.0.2523.51912 dotnet +System.Security.Cryptography.Csp 6.0.2523.51912 dotnet +System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet +System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2123.36311 dotnet +System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2123.36311 dotnet +System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet System.Security.Cryptography.Xml 6.0.822.36306 dotnet System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2123.36311 dotnet -System.Security.Principal.Windows 6.0.2123.36311 dotnet -System.Security.SecureString 6.0.2123.36311 dotnet -System.ServiceModel.Web 6.0.2123.36311 dotnet -System.ServiceProcess 6.0.2123.36311 dotnet +System.Security.Principal 6.0.2523.51912 dotnet +System.Security.Principal.Windows 6.0.2523.51912 dotnet +System.Security.SecureString 6.0.2523.51912 dotnet +System.ServiceModel.Web 6.0.2523.51912 dotnet +System.ServiceProcess 6.0.2523.51912 dotnet System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2123.36311 dotnet -System.Text.Encoding.CodePages 6.0.2123.36311 dotnet -System.Text.Encoding.Extensions 6.0.2123.36311 dotnet -System.Text.Encodings.Web 6.0.2123.36311 dotnet -System.Text.Json 6.0.2123.36311 dotnet -System.Text.RegularExpressions 6.0.2123.36311 dotnet -System.Threading 6.0.2123.36311 dotnet -System.Threading.Channels 6.0.2123.36311 dotnet -System.Threading.Overlapped 6.0.2123.36311 dotnet -System.Threading.Tasks 6.0.2123.36311 dotnet -System.Threading.Tasks.Dataflow 6.0.2123.36311 dotnet -System.Threading.Tasks.Extensions 6.0.2123.36311 dotnet -System.Threading.Tasks.Parallel 6.0.2123.36311 dotnet -System.Threading.Thread 6.0.2123.36311 dotnet -System.Threading.ThreadPool 6.0.2123.36311 dotnet -System.Threading.Timer 6.0.2123.36311 dotnet -System.Transactions 6.0.2123.36311 dotnet -System.Transactions.Local 6.0.2123.36311 dotnet -System.ValueTuple 6.0.2123.36311 dotnet -System.Web 6.0.2123.36311 dotnet -System.Web.HttpUtility 6.0.2123.36311 dotnet -System.Windows 6.0.2123.36311 dotnet +System.Text.Encoding 6.0.2523.51912 dotnet +System.Text.Encoding.CodePages 6.0.2523.51912 dotnet +System.Text.Encoding.Extensions 6.0.2523.51912 dotnet +System.Text.Encodings.Web 6.0.2523.51912 dotnet +System.Text.Json 6.0.2523.51912 dotnet +System.Text.RegularExpressions 6.0.2523.51912 dotnet +System.Threading 6.0.2523.51912 dotnet +System.Threading.Channels 6.0.2523.51912 dotnet +System.Threading.Overlapped 6.0.2523.51912 dotnet +System.Threading.Tasks 6.0.2523.51912 dotnet +System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet +System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet +System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet +System.Threading.Thread 6.0.2523.51912 dotnet +System.Threading.ThreadPool 6.0.2523.51912 dotnet +System.Threading.Timer 6.0.2523.51912 dotnet +System.Transactions 6.0.2523.51912 dotnet +System.Transactions.Local 6.0.2523.51912 dotnet +System.ValueTuple 6.0.2523.51912 dotnet +System.Web 6.0.2523.51912 dotnet +System.Web.HttpUtility 6.0.2523.51912 dotnet +System.Windows 6.0.2523.51912 dotnet System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2123.36311 dotnet -System.Xml.Linq 6.0.2123.36311 dotnet -System.Xml.ReaderWriter 6.0.2123.36311 dotnet -System.Xml.Serialization 6.0.2123.36311 dotnet -System.Xml.XDocument 6.0.2123.36311 dotnet -System.Xml.XPath 6.0.2123.36311 dotnet -System.Xml.XPath.XDocument 6.0.2123.36311 dotnet -System.Xml.XmlDocument 6.0.2123.36311 dotnet -System.Xml.XmlSerializer 6.0.2123.36311 dotnet +System.Xml 6.0.2523.51912 dotnet +System.Xml.Linq 6.0.2523.51912 dotnet +System.Xml.ReaderWriter 6.0.2523.51912 dotnet +System.Xml.Serialization 6.0.2523.51912 dotnet +System.Xml.XDocument 6.0.2523.51912 dotnet +System.Xml.XPath 6.0.2523.51912 dotnet +System.Xml.XPath.XDocument 6.0.2523.51912 dotnet +System.Xml.XmlDocument 6.0.2523.51912 dotnet +System.Xml.XmlSerializer 6.0.2523.51912 dotnet TagLibSharp 2.2.0.27 dotnet -WindowsBase 6.0.2123.36311 dotnet +WindowsBase 6.0.2523.51912 dotnet alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk @@ -450,12 +450,12 @@ libzmq 4.3.4-r4 linux-pam 1.5.2-r10 apk mbedtls 2.28.5-r0 apk mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.2123.36311 dotnet +mscorlib 6.0.2523.51912 dotnet musl 1.2.4-r2 apk musl-utils 1.2.4-r2 apk ncurses-terminfo-base 6.4_p20230506-r0 apk netcat-openbsd 1.219-r1 apk -netstandard 6.0.2123.36311 dotnet +netstandard 6.0.2523.51912 dotnet nettle 3.8.1-r2 apk nghttp2-libs 1.57.0-r0 apk numactl 2.0.16-r4 apk From 230e0f1d433e665f8960f8d19037d5a077896d09 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Nov 2023 04:39:52 +0000 Subject: [PATCH 390/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 56e3a061..0348bd36 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.5.3811 dotnet -Lidarr.Api.V1 2.0.5.3811 dotnet -Lidarr.Common 2.0.5.3811 dotnet -Lidarr.Core 2.0.5.3811 dotnet -Lidarr.Host 2.0.5.3811 dotnet -Lidarr.Http 2.0.5.3811 dotnet -Lidarr.Mono 2.0.5.3811 dotnet -Lidarr.SignalR 2.0.5.3811 dotnet +Lidarr 2.0.5.3812 dotnet +Lidarr.Api.V1 2.0.5.3812 dotnet +Lidarr.Common 2.0.5.3812 dotnet +Lidarr.Core 2.0.5.3812 dotnet +Lidarr.Host 2.0.5.3812 dotnet +Lidarr.Http 2.0.5.3812 dotnet +Lidarr.Mono 2.0.5.3812 dotnet +Lidarr.SignalR 2.0.5.3812 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 0ae1efd60a5f59ce6dd8b84860ff22ab69d6274e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 25 Nov 2023 21:15:40 +0000 Subject: [PATCH 391/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0348bd36..1a88607b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.5.3812 dotnet -Lidarr.Api.V1 2.0.5.3812 dotnet -Lidarr.Common 2.0.5.3812 dotnet -Lidarr.Core 2.0.5.3812 dotnet -Lidarr.Host 2.0.5.3812 dotnet -Lidarr.Http 2.0.5.3812 dotnet -Lidarr.Mono 2.0.5.3812 dotnet -Lidarr.SignalR 2.0.5.3812 dotnet +Lidarr 2.0.5.3813 dotnet +Lidarr.Api.V1 2.0.5.3813 dotnet +Lidarr.Common 2.0.5.3813 dotnet +Lidarr.Core 2.0.5.3813 dotnet +Lidarr.Host 2.0.5.3813 dotnet +Lidarr.Http 2.0.5.3813 dotnet +Lidarr.Mono 2.0.5.3813 dotnet +Lidarr.SignalR 2.0.5.3813 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 212fe626b5b7e9a823784819350a026244d4b750 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Nov 2023 05:52:15 +0000 Subject: [PATCH 392/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1a88607b..063d78be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.5.3813 dotnet -Lidarr.Api.V1 2.0.5.3813 dotnet -Lidarr.Common 2.0.5.3813 dotnet -Lidarr.Core 2.0.5.3813 dotnet -Lidarr.Host 2.0.5.3813 dotnet -Lidarr.Http 2.0.5.3813 dotnet -Lidarr.Mono 2.0.5.3813 dotnet -Lidarr.SignalR 2.0.5.3813 dotnet +Lidarr 2.0.6.3814 dotnet +Lidarr.Api.V1 2.0.6.3814 dotnet +Lidarr.Common 2.0.6.3814 dotnet +Lidarr.Core 2.0.6.3814 dotnet +Lidarr.Host 2.0.6.3814 dotnet +Lidarr.Http 2.0.6.3814 dotnet +Lidarr.Mono 2.0.6.3814 dotnet +Lidarr.SignalR 2.0.6.3814 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 42613d237144557372e01b43ff72ef1c6a6a2d79 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 Nov 2023 09:48:06 +0000 Subject: [PATCH 393/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 063d78be..175ab854 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3814 dotnet -Lidarr.Api.V1 2.0.6.3814 dotnet -Lidarr.Common 2.0.6.3814 dotnet -Lidarr.Core 2.0.6.3814 dotnet -Lidarr.Host 2.0.6.3814 dotnet -Lidarr.Http 2.0.6.3814 dotnet -Lidarr.Mono 2.0.6.3814 dotnet -Lidarr.SignalR 2.0.6.3814 dotnet +Lidarr 2.0.6.3817 dotnet +Lidarr.Api.V1 2.0.6.3817 dotnet +Lidarr.Common 2.0.6.3817 dotnet +Lidarr.Core 2.0.6.3817 dotnet +Lidarr.Host 2.0.6.3817 dotnet +Lidarr.Http 2.0.6.3817 dotnet +Lidarr.Mono 2.0.6.3817 dotnet +Lidarr.SignalR 2.0.6.3817 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 065f7055f78188a7d4b02cb160c195e0d79dd166 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 1 Dec 2023 03:40:05 +0000 Subject: [PATCH 394/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 175ab854..12866152 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3817 dotnet -Lidarr.Api.V1 2.0.6.3817 dotnet -Lidarr.Common 2.0.6.3817 dotnet -Lidarr.Core 2.0.6.3817 dotnet -Lidarr.Host 2.0.6.3817 dotnet -Lidarr.Http 2.0.6.3817 dotnet -Lidarr.Mono 2.0.6.3817 dotnet -Lidarr.SignalR 2.0.6.3817 dotnet +Lidarr 2.0.6.3818 dotnet +Lidarr.Api.V1 2.0.6.3818 dotnet +Lidarr.Common 2.0.6.3818 dotnet +Lidarr.Core 2.0.6.3818 dotnet +Lidarr.Host 2.0.6.3818 dotnet +Lidarr.Http 2.0.6.3818 dotnet +Lidarr.Mono 2.0.6.3818 dotnet +Lidarr.SignalR 2.0.6.3818 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 9d4ce3002f619712d51233cf5e4f38c31f2a3bab Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 14:35:14 +0000 Subject: [PATCH 395/790] Bot Updating Package Versions --- package_versions.txt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12866152..d8ad5513 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3818 dotnet -Lidarr.Api.V1 2.0.6.3818 dotnet -Lidarr.Common 2.0.6.3818 dotnet -Lidarr.Core 2.0.6.3818 dotnet -Lidarr.Host 2.0.6.3818 dotnet -Lidarr.Http 2.0.6.3818 dotnet -Lidarr.Mono 2.0.6.3818 dotnet -Lidarr.SignalR 2.0.6.3818 dotnet +Lidarr 2.0.6.3820 dotnet +Lidarr.Api.V1 2.0.6.3820 dotnet +Lidarr.Common 2.0.6.3820 dotnet +Lidarr.Core 2.0.6.3820 dotnet +Lidarr.Host 2.0.6.3820 dotnet +Lidarr.Http 2.0.6.3820 dotnet +Lidarr.Mono 2.0.6.3820 dotnet +Lidarr.SignalR 2.0.6.3820 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -373,7 +373,7 @@ WindowsBase 6.0.2523.51912 alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.4-r0 apk +alpine-release 3.18.5-r0 apk aom-libs 3.6.1-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk From 0e82babfb38a01694ae6d9fecdad9f2b10aa6b2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 20:52:26 +0000 Subject: [PATCH 396/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d8ad5513..1414ff56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3820 dotnet -Lidarr.Api.V1 2.0.6.3820 dotnet -Lidarr.Common 2.0.6.3820 dotnet -Lidarr.Core 2.0.6.3820 dotnet -Lidarr.Host 2.0.6.3820 dotnet -Lidarr.Http 2.0.6.3820 dotnet -Lidarr.Mono 2.0.6.3820 dotnet -Lidarr.SignalR 2.0.6.3820 dotnet +Lidarr 2.0.6.3825 dotnet +Lidarr.Api.V1 2.0.6.3825 dotnet +Lidarr.Common 2.0.6.3825 dotnet +Lidarr.Core 2.0.6.3825 dotnet +Lidarr.Host 2.0.6.3825 dotnet +Lidarr.Http 2.0.6.3825 dotnet +Lidarr.Mono 2.0.6.3825 dotnet +Lidarr.SignalR 2.0.6.3825 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 9674b0737d3a83905ce8790149c99363ecd87077 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Dec 2023 21:42:48 +0000 Subject: [PATCH 397/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1414ff56..42d5f8d9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3825 dotnet -Lidarr.Api.V1 2.0.6.3825 dotnet -Lidarr.Common 2.0.6.3825 dotnet -Lidarr.Core 2.0.6.3825 dotnet -Lidarr.Host 2.0.6.3825 dotnet -Lidarr.Http 2.0.6.3825 dotnet -Lidarr.Mono 2.0.6.3825 dotnet -Lidarr.SignalR 2.0.6.3825 dotnet +Lidarr 2.0.6.3826 dotnet +Lidarr.Api.V1 2.0.6.3826 dotnet +Lidarr.Common 2.0.6.3826 dotnet +Lidarr.Core 2.0.6.3826 dotnet +Lidarr.Host 2.0.6.3826 dotnet +Lidarr.Http 2.0.6.3826 dotnet +Lidarr.Mono 2.0.6.3826 dotnet +Lidarr.SignalR 2.0.6.3826 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From eb765ef1800b1fdcb7271f019c39f8cb753180ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Dec 2023 16:16:48 +0000 Subject: [PATCH 398/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 42d5f8d9..828588da 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3826 dotnet -Lidarr.Api.V1 2.0.6.3826 dotnet -Lidarr.Common 2.0.6.3826 dotnet -Lidarr.Core 2.0.6.3826 dotnet -Lidarr.Host 2.0.6.3826 dotnet -Lidarr.Http 2.0.6.3826 dotnet -Lidarr.Mono 2.0.6.3826 dotnet -Lidarr.SignalR 2.0.6.3826 dotnet +Lidarr 2.0.6.3833 dotnet +Lidarr.Api.V1 2.0.6.3833 dotnet +Lidarr.Common 2.0.6.3833 dotnet +Lidarr.Core 2.0.6.3833 dotnet +Lidarr.Host 2.0.6.3833 dotnet +Lidarr.Http 2.0.6.3833 dotnet +Lidarr.Mono 2.0.6.3833 dotnet +Lidarr.SignalR 2.0.6.3833 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 1285cb75186c8f9346bcf0f57ebd97cc1d2bca98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 5 Dec 2023 20:40:58 +0000 Subject: [PATCH 399/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 828588da..12dc568c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3833 dotnet -Lidarr.Api.V1 2.0.6.3833 dotnet -Lidarr.Common 2.0.6.3833 dotnet -Lidarr.Core 2.0.6.3833 dotnet -Lidarr.Host 2.0.6.3833 dotnet -Lidarr.Http 2.0.6.3833 dotnet -Lidarr.Mono 2.0.6.3833 dotnet -Lidarr.SignalR 2.0.6.3833 dotnet +Lidarr 2.0.6.3835 dotnet +Lidarr.Api.V1 2.0.6.3835 dotnet +Lidarr.Common 2.0.6.3835 dotnet +Lidarr.Core 2.0.6.3835 dotnet +Lidarr.Host 2.0.6.3835 dotnet +Lidarr.Http 2.0.6.3835 dotnet +Lidarr.Mono 2.0.6.3835 dotnet +Lidarr.SignalR 2.0.6.3835 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 448976be0071d0d503bbf96684885af55979029e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Dec 2023 12:02:28 +0000 Subject: [PATCH 400/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12dc568c..784345f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3835 dotnet -Lidarr.Api.V1 2.0.6.3835 dotnet -Lidarr.Common 2.0.6.3835 dotnet -Lidarr.Core 2.0.6.3835 dotnet -Lidarr.Host 2.0.6.3835 dotnet -Lidarr.Http 2.0.6.3835 dotnet -Lidarr.Mono 2.0.6.3835 dotnet -Lidarr.SignalR 2.0.6.3835 dotnet +Lidarr 2.0.6.3836 dotnet +Lidarr.Api.V1 2.0.6.3836 dotnet +Lidarr.Common 2.0.6.3836 dotnet +Lidarr.Core 2.0.6.3836 dotnet +Lidarr.Host 2.0.6.3836 dotnet +Lidarr.Http 2.0.6.3836 dotnet +Lidarr.Mono 2.0.6.3836 dotnet +Lidarr.SignalR 2.0.6.3836 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 6d70072734d43088feda16d7807ed03a7097d032 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 7 Dec 2023 14:16:10 +0000 Subject: [PATCH 401/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 784345f0..6d4f96a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.6.3836 dotnet -Lidarr.Api.V1 2.0.6.3836 dotnet -Lidarr.Common 2.0.6.3836 dotnet -Lidarr.Core 2.0.6.3836 dotnet -Lidarr.Host 2.0.6.3836 dotnet -Lidarr.Http 2.0.6.3836 dotnet -Lidarr.Mono 2.0.6.3836 dotnet -Lidarr.SignalR 2.0.6.3836 dotnet +Lidarr 2.0.7.3845 dotnet +Lidarr.Api.V1 2.0.7.3845 dotnet +Lidarr.Common 2.0.7.3845 dotnet +Lidarr.Core 2.0.7.3845 dotnet +Lidarr.Host 2.0.7.3845 dotnet +Lidarr.Http 2.0.7.3845 dotnet +Lidarr.Mono 2.0.7.3845 dotnet +Lidarr.SignalR 2.0.7.3845 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 546e7cecece3b12269e1c40adc16c912f625bc91 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 9 Dec 2023 18:16:05 +0000 Subject: [PATCH 402/790] Bot Updating Package Versions --- package_versions.txt | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6d4f96a3..2547809a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.7.3845 dotnet -Lidarr.Api.V1 2.0.7.3845 dotnet -Lidarr.Common 2.0.7.3845 dotnet -Lidarr.Core 2.0.7.3845 dotnet -Lidarr.Host 2.0.7.3845 dotnet -Lidarr.Http 2.0.7.3845 dotnet -Lidarr.Mono 2.0.7.3845 dotnet -Lidarr.SignalR 2.0.7.3845 dotnet +Lidarr 2.0.7.3847 dotnet +Lidarr.Api.V1 2.0.7.3847 dotnet +Lidarr.Common 2.0.7.3847 dotnet +Lidarr.Core 2.0.7.3847 dotnet +Lidarr.Host 2.0.7.3847 dotnet +Lidarr.Http 2.0.7.3847 dotnet +Lidarr.Mono 2.0.7.3847 dotnet +Lidarr.SignalR 2.0.7.3847 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -386,7 +386,7 @@ chromaprint 1.5.1-r6 chromaprint-libs 1.5.1-r6 apk cjson 1.7.15-r4 apk coreutils 9.3-r1 apk -curl 8.4.0-r0 apk +curl 8.5.0-r0 apk ffmpeg-libavcodec 6.0.1-r0 apk ffmpeg-libavformat 6.0.1-r0 apk ffmpeg-libavutil 6.0.1-r0 apk @@ -396,7 +396,7 @@ gnutls 3.8.0-r2 hwdata-pci 0.370-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk -jq 1.6-r3 apk +jq 1.6-r4 apk lame-libs 3.100-r5 apk lcms2 2.15-r2 apk libacl 2.3.1-r3 apk @@ -406,7 +406,7 @@ libbsd 0.11.7-r1 libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk libcrypto3 3.1.4-r1 apk -libcurl 8.4.0-r0 apk +libcurl 8.5.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk libffi 3.4.4-r2 apk From 0c0869da4664d1376febe8432be41cd5a6d32043 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 11 Dec 2023 12:52:30 +0000 Subject: [PATCH 403/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2547809a..719ff4e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.0.7.3847 dotnet -Lidarr.Api.V1 2.0.7.3847 dotnet -Lidarr.Common 2.0.7.3847 dotnet -Lidarr.Core 2.0.7.3847 dotnet -Lidarr.Host 2.0.7.3847 dotnet -Lidarr.Http 2.0.7.3847 dotnet -Lidarr.Mono 2.0.7.3847 dotnet -Lidarr.SignalR 2.0.7.3847 dotnet +Lidarr 2.1.0.3850 dotnet +Lidarr.Api.V1 2.1.0.3850 dotnet +Lidarr.Common 2.1.0.3850 dotnet +Lidarr.Core 2.1.0.3850 dotnet +Lidarr.Host 2.1.0.3850 dotnet +Lidarr.Http 2.1.0.3850 dotnet +Lidarr.Mono 2.1.0.3850 dotnet +Lidarr.SignalR 2.1.0.3850 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 0b5f4d34d525ebe269758e77ff4ac9f6a961c717 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 12 Dec 2023 14:35:01 +0000 Subject: [PATCH 404/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 719ff4e8..b0d6fd7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.0.3850 dotnet -Lidarr.Api.V1 2.1.0.3850 dotnet -Lidarr.Common 2.1.0.3850 dotnet -Lidarr.Core 2.1.0.3850 dotnet -Lidarr.Host 2.1.0.3850 dotnet -Lidarr.Http 2.1.0.3850 dotnet -Lidarr.Mono 2.1.0.3850 dotnet -Lidarr.SignalR 2.1.0.3850 dotnet +Lidarr 2.1.0.3851 dotnet +Lidarr.Api.V1 2.1.0.3851 dotnet +Lidarr.Common 2.1.0.3851 dotnet +Lidarr.Core 2.1.0.3851 dotnet +Lidarr.Host 2.1.0.3851 dotnet +Lidarr.Http 2.1.0.3851 dotnet +Lidarr.Mono 2.1.0.3851 dotnet +Lidarr.SignalR 2.1.0.3851 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 99f8cad1ad8d59b54086a3f15df71a98f558badd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Dec 2023 18:34:00 +0000 Subject: [PATCH 405/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b0d6fd7a..424ccbe7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.0.3851 dotnet -Lidarr.Api.V1 2.1.0.3851 dotnet -Lidarr.Common 2.1.0.3851 dotnet -Lidarr.Core 2.1.0.3851 dotnet -Lidarr.Host 2.1.0.3851 dotnet -Lidarr.Http 2.1.0.3851 dotnet -Lidarr.Mono 2.1.0.3851 dotnet -Lidarr.SignalR 2.1.0.3851 dotnet +Lidarr 2.1.0.3852 dotnet +Lidarr.Api.V1 2.1.0.3852 dotnet +Lidarr.Common 2.1.0.3852 dotnet +Lidarr.Core 2.1.0.3852 dotnet +Lidarr.Host 2.1.0.3852 dotnet +Lidarr.Http 2.1.0.3852 dotnet +Lidarr.Mono 2.1.0.3852 dotnet +Lidarr.SignalR 2.1.0.3852 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 0fc7a6545d6bd6dd4b82e4ad17cd650c6d41cc53 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Dec 2023 18:09:23 +0000 Subject: [PATCH 406/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 424ccbe7..12dd7bb2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.0.3852 dotnet -Lidarr.Api.V1 2.1.0.3852 dotnet -Lidarr.Common 2.1.0.3852 dotnet -Lidarr.Core 2.1.0.3852 dotnet -Lidarr.Host 2.1.0.3852 dotnet -Lidarr.Http 2.1.0.3852 dotnet -Lidarr.Mono 2.1.0.3852 dotnet -Lidarr.SignalR 2.1.0.3852 dotnet +Lidarr 2.1.0.3854 dotnet +Lidarr.Api.V1 2.1.0.3854 dotnet +Lidarr.Common 2.1.0.3854 dotnet +Lidarr.Core 2.1.0.3854 dotnet +Lidarr.Host 2.1.0.3854 dotnet +Lidarr.Http 2.1.0.3854 dotnet +Lidarr.Mono 2.1.0.3854 dotnet +Lidarr.SignalR 2.1.0.3854 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 09d059744dc02c54cf832c8f476f87d68cd3a437 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 16 Dec 2023 17:34:03 +0000 Subject: [PATCH 407/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 12dd7bb2..8e678f7a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.0.3854 dotnet -Lidarr.Api.V1 2.1.0.3854 dotnet -Lidarr.Common 2.1.0.3854 dotnet -Lidarr.Core 2.1.0.3854 dotnet -Lidarr.Host 2.1.0.3854 dotnet -Lidarr.Http 2.1.0.3854 dotnet -Lidarr.Mono 2.1.0.3854 dotnet -Lidarr.SignalR 2.1.0.3854 dotnet +Lidarr 2.1.0.3856 dotnet +Lidarr.Api.V1 2.1.0.3856 dotnet +Lidarr.Common 2.1.0.3856 dotnet +Lidarr.Core 2.1.0.3856 dotnet +Lidarr.Host 2.1.0.3856 dotnet +Lidarr.Http 2.1.0.3856 dotnet +Lidarr.Mono 2.1.0.3856 dotnet +Lidarr.SignalR 2.1.0.3856 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 070bb55dd53c56585e6b7f55d29794a8b394fae2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 18 Dec 2023 21:00:48 +0000 Subject: [PATCH 408/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8e678f7a..126ec6b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.0.3856 dotnet -Lidarr.Api.V1 2.1.0.3856 dotnet -Lidarr.Common 2.1.0.3856 dotnet -Lidarr.Core 2.1.0.3856 dotnet -Lidarr.Host 2.1.0.3856 dotnet -Lidarr.Http 2.1.0.3856 dotnet -Lidarr.Mono 2.1.0.3856 dotnet -Lidarr.SignalR 2.1.0.3856 dotnet +Lidarr 2.1.1.3862 dotnet +Lidarr.Api.V1 2.1.1.3862 dotnet +Lidarr.Common 2.1.1.3862 dotnet +Lidarr.Core 2.1.1.3862 dotnet +Lidarr.Host 2.1.1.3862 dotnet +Lidarr.Http 2.1.1.3862 dotnet +Lidarr.Mono 2.1.1.3862 dotnet +Lidarr.SignalR 2.1.1.3862 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From daaea664a2f8c9556b4be2d68dba9b87a955a0c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Dec 2023 02:46:54 +0000 Subject: [PATCH 409/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 126ec6b0..be88e4be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -31,14 +31,14 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET.NET6.0 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3862 dotnet -Lidarr.Api.V1 2.1.1.3862 dotnet -Lidarr.Common 2.1.1.3862 dotnet -Lidarr.Core 2.1.1.3862 dotnet -Lidarr.Host 2.1.1.3862 dotnet -Lidarr.Http 2.1.1.3862 dotnet -Lidarr.Mono 2.1.1.3862 dotnet -Lidarr.SignalR 2.1.1.3862 dotnet +Lidarr 2.1.1.3866 dotnet +Lidarr.Api.V1 2.1.1.3866 dotnet +Lidarr.Common 2.1.1.3866 dotnet +Lidarr.Core 2.1.1.3866 dotnet +Lidarr.Host 2.1.1.3866 dotnet +Lidarr.Http 2.1.1.3866 dotnet +Lidarr.Mono 2.1.1.3866 dotnet +Lidarr.SignalR 2.1.1.3866 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 6de3b3cbe1b3e49f8b421f7c05e799eac13647a8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Dec 2023 01:30:00 +0000 Subject: [PATCH 410/790] Bot Updating Package Versions --- package_versions.txt | 941 +++++++++++++++++++++---------------------- 1 file changed, 458 insertions(+), 483 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index be88e4be..2ee25c5c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,483 +1,458 @@ -NAME VERSION TYPE -BouncyCastle.Crypto 1.9.0.1 dotnet -Dapper 2.0.123.33578 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc.Microsoft.DependencyInjectionnet6.0 6.2.0.0 dotnet -DryIocnet6.0 5.4.3.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet -FluentMigrator.Abstractions 3.3.2.9 dotnet -FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet -FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet -FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet -FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet -FluentMigrator.Runner 3.3.2.9 dotnet -FluentMigrator.Runner.Core 3.3.2.9 dotnet -FluentMigrator.Runner.Db2 3.3.2.9 dotnet -FluentMigrator.Runner.Firebird 3.3.2.9 dotnet -FluentMigrator.Runner.Hana 3.3.2.9 dotnet -FluentMigrator.Runner.MySql 3.3.2.9 dotnet -FluentMigrator.Runner.Oracle 3.3.2.9 dotnet -FluentMigrator.Runner.Postgres 3.3.2.9 dotnet -FluentMigrator.Runner.Redshift 3.3.2.9 dotnet -FluentMigrator.Runner.SQLite 3.3.2.9 dotnet -FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet -FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet -FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet -Ical.Net 1.0.0.0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET.NET6.0 13.0.2.27524 dotnet -Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3866 dotnet -Lidarr.Api.V1 2.1.1.3866 dotnet -Lidarr.Common 2.1.1.3866 dotnet -Lidarr.Core 2.1.1.3866 dotnet -Lidarr.Host 2.1.1.3866 dotnet -Lidarr.Http 2.1.1.3866 dotnet -Lidarr.Mono 2.1.1.3866 dotnet -Lidarr.SignalR 2.1.1.3866 dotnet -MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet -Microsoft.CSharp 6.0.2523.51912 dotnet -Microsoft.Data.SqlClient 2.0.20168.4 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Features 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012 dotnet -Microsoft.JSInterop 6.0.2523.52315 dotnet -Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2523.51912 dotnet -Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet -Microsoft.Win32.Primitives 6.0.2523.51912 dotnet -Microsoft.Win32.Registry 6.0.2523.51912 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard.dll 1.0.0.0 dotnet -MonoTorrent 2.0.7 dotnet -NLog.Extensions.Loggingfor.NET5.0 5.0.4.221 dotnet -NLogSyslogtarget 7.0.0.0 dotnet -NLogforNetStandard2.0 5.2.0.1813 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.0.1.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2523.51912 dotnet -System.AppContext 6.0.2523.51912 dotnet -System.Buffers 6.0.2523.51912 dotnet -System.Collections 6.0.2523.51912 dotnet -System.Collections.Concurrent 6.0.2523.51912 dotnet -System.Collections.Immutable 6.0.2523.51912 dotnet -System.Collections.NonGeneric 6.0.2523.51912 dotnet -System.Collections.Specialized 6.0.2523.51912 dotnet -System.ComponentModel 6.0.2523.51912 dotnet -System.ComponentModel.Annotations 6.0.2523.51912 dotnet -System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet -System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet -System.ComponentModel.Primitives 6.0.2523.51912 dotnet -System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet -System.Configuration 6.0.2523.51912 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2523.51912 dotnet -System.Core 6.0.2523.51912 dotnet -System.Data 6.0.2523.51912 dotnet -System.Data.Common 6.0.2523.51912 dotnet -System.Data.DataSetExtensions 6.0.2523.51912 dotnet -System.Data.SQLiteCore 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2523.51912 dotnet -System.Diagnostics.Debug 6.0.2523.51912 dotnet -System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet -System.Diagnostics.Process 6.0.2523.51912 dotnet -System.Diagnostics.StackTrace 6.0.2523.51912 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet -System.Diagnostics.Tools 6.0.2523.51912 dotnet -System.Diagnostics.TraceSource 6.0.2523.51912 dotnet -System.Diagnostics.Tracing 6.0.2523.51912 dotnet -System.Drawing 6.0.2523.51912 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2523.51912 dotnet -System.Dynamic.Runtime 6.0.2523.51912 dotnet -System.Formats.Asn1 6.0.2523.51912 dotnet -System.Globalization 6.0.2523.51912 dotnet -System.Globalization.Calendars 6.0.2523.51912 dotnet -System.Globalization.Extensions 6.0.2523.51912 dotnet -System.IO 6.0.2523.51912 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2523.51912 dotnet -System.IO.Compression.Brotli 6.0.2523.51912 dotnet -System.IO.Compression.FileSystem 6.0.2523.51912 dotnet -System.IO.Compression.ZipFile 6.0.2523.51912 dotnet -System.IO.FileSystem 6.0.2523.51912 dotnet -System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet -System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet -System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet -System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet -System.IO.IsolatedStorage 6.0.2523.51912 dotnet -System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2523.51912 dotnet -System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet -System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012 dotnet -System.Linq 6.0.2523.51912 dotnet -System.Linq.Expressions 6.0.2523.51912 dotnet -System.Linq.Parallel 6.0.2523.51912 dotnet -System.Linq.Queryable 6.0.2523.51912 dotnet -System.Memory 6.0.2523.51912 dotnet -System.Net 6.0.2523.51912 dotnet -System.Net.Http 6.0.2523.51912 dotnet -System.Net.Http.Json 6.0.2523.51912 dotnet -System.Net.HttpListener 6.0.2523.51912 dotnet -System.Net.Mail 6.0.2523.51912 dotnet -System.Net.NameResolution 6.0.2523.51912 dotnet -System.Net.NetworkInformation 6.0.2523.51912 dotnet -System.Net.Ping 6.0.2523.51912 dotnet -System.Net.Primitives 6.0.2523.51912 dotnet -System.Net.Quic 6.0.2523.51912 dotnet -System.Net.Requests 6.0.2523.51912 dotnet -System.Net.Security 6.0.2523.51912 dotnet -System.Net.ServicePoint 6.0.2523.51912 dotnet -System.Net.Sockets 6.0.2523.51912 dotnet -System.Net.WebClient 6.0.2523.51912 dotnet -System.Net.WebHeaderCollection 6.0.2523.51912 dotnet -System.Net.WebProxy 6.0.2523.51912 dotnet -System.Net.WebSockets 6.0.2523.51912 dotnet -System.Net.WebSockets.Client 6.0.2523.51912 dotnet -System.Numerics 6.0.2523.51912 dotnet -System.Numerics.Vectors 6.0.2523.51912 dotnet -System.ObjectModel 6.0.2523.51912 dotnet -System.Private.CoreLib 6.0.2523.51912 dotnet -System.Private.DataContractSerialization 6.0.2523.51912 dotnet -System.Private.Uri 6.0.2523.51912 dotnet -System.Private.Xml 6.0.2523.51912 dotnet -System.Private.Xml.Linq 6.0.2523.51912 dotnet -System.Reflection 6.0.2523.51912 dotnet -System.Reflection.DispatchProxy 6.0.2523.51912 dotnet -System.Reflection.Emit 6.0.2523.51912 dotnet -System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet -System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet -System.Reflection.Extensions 6.0.2523.51912 dotnet -System.Reflection.Metadata 6.0.2523.51912 dotnet -System.Reflection.Primitives 6.0.2523.51912 dotnet -System.Reflection.TypeExtensions 6.0.2523.51912 dotnet -System.Resources.Reader 6.0.2523.51912 dotnet -System.Resources.ResourceManager 6.0.2523.51912 dotnet -System.Resources.Writer 6.0.2523.51912 dotnet -System.Runtime 6.0.2523.51912 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet -System.Runtime.Extensions 6.0.2523.51912 dotnet -System.Runtime.Handles 6.0.2523.51912 dotnet -System.Runtime.InteropServices 6.0.2523.51912 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet -System.Runtime.Intrinsics 6.0.2523.51912 dotnet -System.Runtime.Loader 6.0.2523.51912 dotnet -System.Runtime.Numerics 6.0.2523.51912 dotnet -System.Runtime.Serialization 6.0.2523.51912 dotnet -System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet -System.Runtime.Serialization.Json 6.0.2523.51912 dotnet -System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet -System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet -System.Security 6.0.2523.51912 dotnet -System.Security.AccessControl 6.0.2523.51912 dotnet -System.Security.Claims 6.0.2523.51912 dotnet -System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet -System.Security.Cryptography.Cng 6.0.2523.51912 dotnet -System.Security.Cryptography.Csp 6.0.2523.51912 dotnet -System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet -System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2523.51912 dotnet -System.Security.Principal.Windows 6.0.2523.51912 dotnet -System.Security.SecureString 6.0.2523.51912 dotnet -System.ServiceModel.Web 6.0.2523.51912 dotnet -System.ServiceProcess 6.0.2523.51912 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2523.51912 dotnet -System.Text.Encoding.CodePages 6.0.2523.51912 dotnet -System.Text.Encoding.Extensions 6.0.2523.51912 dotnet -System.Text.Encodings.Web 6.0.2523.51912 dotnet -System.Text.Json 6.0.2523.51912 dotnet -System.Text.RegularExpressions 6.0.2523.51912 dotnet -System.Threading 6.0.2523.51912 dotnet -System.Threading.Channels 6.0.2523.51912 dotnet -System.Threading.Overlapped 6.0.2523.51912 dotnet -System.Threading.Tasks 6.0.2523.51912 dotnet -System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet -System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet -System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet -System.Threading.Thread 6.0.2523.51912 dotnet -System.Threading.ThreadPool 6.0.2523.51912 dotnet -System.Threading.Timer 6.0.2523.51912 dotnet -System.Transactions 6.0.2523.51912 dotnet -System.Transactions.Local 6.0.2523.51912 dotnet -System.ValueTuple 6.0.2523.51912 dotnet -System.Web 6.0.2523.51912 dotnet -System.Web.HttpUtility 6.0.2523.51912 dotnet -System.Windows 6.0.2523.51912 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2523.51912 dotnet -System.Xml.Linq 6.0.2523.51912 dotnet -System.Xml.ReaderWriter 6.0.2523.51912 dotnet -System.Xml.Serialization 6.0.2523.51912 dotnet -System.Xml.XDocument 6.0.2523.51912 dotnet -System.Xml.XPath 6.0.2523.51912 dotnet -System.Xml.XPath.XDocument 6.0.2523.51912 dotnet -System.Xml.XmlDocument 6.0.2523.51912 dotnet -System.Xml.XmlSerializer 6.0.2523.51912 dotnet -TagLibSharp 2.2.0.27 dotnet -WindowsBase 6.0.2523.51912 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk -alpine-keys 2.4-r1 apk -alpine-release 3.18.5-r0 apk -aom-libs 3.6.1-r0 apk -apk-tools 2.14.0-r2 apk -bash 5.2.15-r5 apk -brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r5 apk -busybox-binsh 1.36.1-r5 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.15-r4 apk -coreutils 9.3-r1 apk -curl 8.5.0-r0 apk -ffmpeg-libavcodec 6.0.1-r0 apk -ffmpeg-libavformat 6.0.1-r0 apk -ffmpeg-libavutil 6.0.1-r0 apk -ffmpeg-libswresample 6.0.1-r0 apk -gmp 6.2.1-r3 apk -gnutls 3.8.0-r2 apk -hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -lame-libs 3.100-r5 apk -lcms2 2.15-r2 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbluray 1.3.4-r0 apk -libbsd 0.11.7-r1 apk -libbz2 1.0.8-r5 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r1 apk -libcurl 8.5.0-r0 apk -libdav1d 1.2.1-r0 apk -libdrm 2.4.115-r4 apk -libffi 3.4.4-r2 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgomp 12.2.1_git20220924-r10 apk -libgpg-error 1.47-r1 apk -libhwy 1.0.4-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libjxl 0.8.2-r0 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libogg 1.3.5-r4 apk -libopenmpt 0.7.2-r0 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.4-r0 apk -librist 0.2.7-r0 apk -libsodium 1.0.18-r3 apk -libsrt 1.5.2-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.1.4-r1 apk -libstdc++ 12.2.1_git20220924-r10 apk -libtasn1 4.19.0-r1 apk -libtheora 1.1.1-r17 apk -libunistring 1.1-r1 apk -libva 2.18.0-r1 apk -libvdpau 1.5-r1 apk -libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r2 apk -libwebp 1.3.2-r0 apk -libx11 1.8.7-r0 apk -libxau 1.0.11-r2 apk -libxcb 1.15-r1 apk -libxdmcp 1.1.4-r2 apk -libxext 1.3.5-r2 apk -libxfixes 6.0.1-r2 apk -libxml2 2.11.6-r0 apk -libxslt 1.1.38-r0 apk -libzmq 4.3.4-r4 apk -linux-pam 1.5.2-r10 apk -mbedtls 2.28.5-r0 apk -mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.2523.51912 dotnet -musl 1.2.4-r2 apk -musl-utils 1.2.4-r2 apk -ncurses-terminfo-base 6.4_p20230506-r0 apk -netcat-openbsd 1.219-r1 apk -netstandard 6.0.2523.51912 dotnet -nettle 3.8.1-r2 apk -nghttp2-libs 1.57.0-r0 apk -numactl 2.0.16-r4 apk -onevpl-libs 2023.2.1-r0 apk -oniguruma 6.9.8-r1 apk -opus 1.4-r0 apk -p11-kit 0.24.1-r2 apk -procps-ng 4.0.4-r0 apk -readline 8.2.1-r1 apk -scanelf 1.3.7-r1 apk -shadow 4.13-r4 apk -skalibs 2.13.1.1-r1 apk -soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r2 apk -ssl_client 1.36.1-r5 apk -svt-av1-libs 1.6.0-r0 apk -tzdata 2023c-r1 apk -utmps-libs 0.1.2.1-r1 apk -wayland-libs-client 1.22.0-r2 apk -x264-libs 0.164_git20220602-r1 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r1 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +NAME VERSION TYPE +Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +Dapper 2.0.123.33578 dotnet +Diacritical 1.0.4.0 dotnet +DryIoc 5.4.3.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET 13.0.2.27524 dotnet +Kveer.XmlRPC 1.2.0.0 dotnet +Lidarr 2.1.1.3870 dotnet +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.CSharp 6.0.2523.51912 dotnet +Microsoft.Data.SqlClient 2.0.20168.4 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Features 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.JSInterop 6.0.2523.52315 dotnet +Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.2523.51912 dotnet +Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet +Microsoft.Win32.Primitives 6.0.2523.51912 dotnet +Microsoft.Win32.Registry 6.0.2523.51912 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1-master+6ab1f3f dotnet +Mono.Posix.NETStandard 1.0.0.0 dotnet +MonoTorrent 2.0.7-monotorrent-2.0+0c4e9bb3 dotnet +NLog v5.2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog.Targets.Syslog 7.0.0.0 dotnet +NodaTime 3.0.0.0 dotnet +Npgsql 7.0.6.0 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +ReusableTasks 2.0.0-master+2aa9a10 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.0.1.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.2523.51912 dotnet +System.AppContext 6.0.2523.51912 dotnet +System.Buffers 6.0.2523.51912 dotnet +System.Collections 6.0.2523.51912 dotnet +System.Collections.Concurrent 6.0.2523.51912 dotnet +System.Collections.Immutable 6.0.2523.51912 dotnet +System.Collections.NonGeneric 6.0.2523.51912 dotnet +System.Collections.Specialized 6.0.2523.51912 dotnet +System.ComponentModel 6.0.2523.51912 dotnet +System.ComponentModel.Annotations 6.0.2523.51912 dotnet +System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet +System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet +System.ComponentModel.Primitives 6.0.2523.51912 dotnet +System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet +System.Configuration 6.0.2523.51912 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.2523.51912 dotnet +System.Core 6.0.2523.51912 dotnet +System.Data 6.0.2523.51912 dotnet +System.Data.Common 6.0.2523.51912 dotnet +System.Data.DataSetExtensions 6.0.2523.51912 dotnet +System.Data.SQLite 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.2523.51912 dotnet +System.Diagnostics.Debug 6.0.2523.51912 dotnet +System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet +System.Diagnostics.Process 6.0.2523.51912 dotnet +System.Diagnostics.StackTrace 6.0.2523.51912 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet +System.Diagnostics.Tools 6.0.2523.51912 dotnet +System.Diagnostics.TraceSource 6.0.2523.51912 dotnet +System.Diagnostics.Tracing 6.0.2523.51912 dotnet +System.Drawing 6.0.2523.51912 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.2523.51912 dotnet +System.Dynamic.Runtime 6.0.2523.51912 dotnet +System.Formats.Asn1 6.0.2523.51912 dotnet +System.Globalization 6.0.2523.51912 dotnet +System.Globalization.Calendars 6.0.2523.51912 dotnet +System.Globalization.Extensions 6.0.2523.51912 dotnet +System.IO 6.0.2523.51912 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.2523.51912 dotnet +System.IO.Compression.Brotli 6.0.2523.51912 dotnet +System.IO.Compression.FileSystem 6.0.2523.51912 dotnet +System.IO.Compression.ZipFile 6.0.2523.51912 dotnet +System.IO.FileSystem 6.0.2523.51912 dotnet +System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet +System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet +System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet +System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet +System.IO.IsolatedStorage 6.0.2523.51912 dotnet +System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.2523.51912 dotnet +System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet +System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +System.Linq 6.0.2523.51912 dotnet +System.Linq.Expressions 6.0.2523.51912 dotnet +System.Linq.Parallel 6.0.2523.51912 dotnet +System.Linq.Queryable 6.0.2523.51912 dotnet +System.Memory 6.0.2523.51912 dotnet +System.Net 6.0.2523.51912 dotnet +System.Net.Http 6.0.2523.51912 dotnet +System.Net.Http.Json 6.0.2523.51912 dotnet +System.Net.HttpListener 6.0.2523.51912 dotnet +System.Net.Mail 6.0.2523.51912 dotnet +System.Net.NameResolution 6.0.2523.51912 dotnet +System.Net.NetworkInformation 6.0.2523.51912 dotnet +System.Net.Ping 6.0.2523.51912 dotnet +System.Net.Primitives 6.0.2523.51912 dotnet +System.Net.Quic 6.0.2523.51912 dotnet +System.Net.Requests 6.0.2523.51912 dotnet +System.Net.Security 6.0.2523.51912 dotnet +System.Net.ServicePoint 6.0.2523.51912 dotnet +System.Net.Sockets 6.0.2523.51912 dotnet +System.Net.WebClient 6.0.2523.51912 dotnet +System.Net.WebHeaderCollection 6.0.2523.51912 dotnet +System.Net.WebProxy 6.0.2523.51912 dotnet +System.Net.WebSockets 6.0.2523.51912 dotnet +System.Net.WebSockets.Client 6.0.2523.51912 dotnet +System.Numerics 6.0.2523.51912 dotnet +System.Numerics.Vectors 6.0.2523.51912 dotnet +System.ObjectModel 6.0.2523.51912 dotnet +System.Private.CoreLib 6.0.2523.51912 dotnet +System.Private.DataContractSerialization 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet +System.Private.Uri 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet +System.Private.Xml 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet +System.Private.Xml.Linq 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet +System.Reflection 6.0.2523.51912 dotnet +System.Reflection.DispatchProxy 6.0.2523.51912 dotnet +System.Reflection.Emit 6.0.2523.51912 dotnet +System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet +System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet +System.Reflection.Extensions 6.0.2523.51912 dotnet +System.Reflection.Metadata 6.0.2523.51912 dotnet +System.Reflection.Primitives 6.0.2523.51912 dotnet +System.Reflection.TypeExtensions 6.0.2523.51912 dotnet +System.Resources.Reader 6.0.2523.51912 dotnet +System.Resources.ResourceManager 6.0.2523.51912 dotnet +System.Resources.Writer 6.0.2523.51912 dotnet +System.Runtime 6.0.2523.51912 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet +System.Runtime.Extensions 6.0.2523.51912 dotnet +System.Runtime.Handles 6.0.2523.51912 dotnet +System.Runtime.InteropServices 6.0.2523.51912 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet +System.Runtime.Intrinsics 6.0.2523.51912 dotnet +System.Runtime.Loader 6.0.2523.51912 dotnet +System.Runtime.Numerics 6.0.2523.51912 dotnet +System.Runtime.Serialization 6.0.2523.51912 dotnet +System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet +System.Runtime.Serialization.Json 6.0.2523.51912 dotnet +System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet +System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet +System.Security 6.0.2523.51912 dotnet +System.Security.AccessControl 6.0.2523.51912 dotnet +System.Security.Claims 6.0.2523.51912 dotnet +System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet +System.Security.Cryptography.Cng 6.0.2523.51912 dotnet +System.Security.Cryptography.Csp 6.0.2523.51912 dotnet +System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet +System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.2523.51912 dotnet +System.Security.Principal.Windows 6.0.2523.51912 dotnet +System.Security.SecureString 6.0.2523.51912 dotnet +System.ServiceModel.Web 6.0.2523.51912 dotnet +System.ServiceProcess 6.0.2523.51912 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2523.51912 dotnet +System.Text.Encoding.CodePages 6.0.2523.51912 dotnet +System.Text.Encoding.Extensions 6.0.2523.51912 dotnet +System.Text.Encodings.Web 6.0.2523.51912 dotnet +System.Text.Json 6.0.2523.51912 dotnet +System.Text.RegularExpressions 6.0.2523.51912 dotnet +System.Threading 6.0.2523.51912 dotnet +System.Threading.Channels 6.0.2523.51912 dotnet +System.Threading.Overlapped 6.0.2523.51912 dotnet +System.Threading.Tasks 6.0.2523.51912 dotnet +System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet +System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet +System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet +System.Threading.Thread 6.0.2523.51912 dotnet +System.Threading.ThreadPool 6.0.2523.51912 dotnet +System.Threading.Timer 6.0.2523.51912 dotnet +System.Transactions 6.0.2523.51912 dotnet +System.Transactions.Local 6.0.2523.51912 dotnet +System.ValueTuple 6.0.2523.51912 dotnet +System.Web 6.0.2523.51912 dotnet +System.Web.HttpUtility 6.0.2523.51912 dotnet +System.Windows 6.0.2523.51912 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.2523.51912 dotnet +System.Xml.Linq 6.0.2523.51912 dotnet +System.Xml.ReaderWriter 6.0.2523.51912 dotnet +System.Xml.Serialization 6.0.2523.51912 dotnet +System.Xml.XDocument 6.0.2523.51912 dotnet +System.Xml.XPath 6.0.2523.51912 dotnet +System.Xml.XPath.XDocument 6.0.2523.51912 dotnet +System.Xml.XmlDocument 6.0.2523.51912 dotnet +System.Xml.XmlSerializer 6.0.2523.51912 dotnet +TagLib# 2.2.0.27 dotnet +WindowsBase 6.0.2523.51912 dotnet +alpine-baselayout 3.4.3-r1 apk +alpine-baselayout-data 3.4.3-r1 apk +alpine-keys 2.4-r1 apk +alpine-release 3.18.5-r0 apk +aom-libs 3.6.1-r0 apk +apk-tools 2.14.0-r2 apk +bash 5.2.15-r5 apk +brotli-libs 1.0.9-r14 apk +busybox 1.36.1-r5 apk +busybox-binsh 1.36.1-r5 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.15-r4 apk +coreutils 9.3-r1 apk +curl 8.5.0-r0 apk +ffmpeg-libavcodec 6.0.1-r0 apk +ffmpeg-libavformat 6.0.1-r0 apk +ffmpeg-libavutil 6.0.1-r0 apk +ffmpeg-libswresample 6.0.1-r0 apk +gmp 6.2.1-r3 apk +gnutls 3.8.0-r2 apk +hwdata-pci 0.370-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +lame-libs 3.100-r5 apk +lcms2 2.15-r2 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbluray 1.3.4-r0 apk +libbsd 0.11.7-r1 apk +libbz2 1.0.8-r5 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r1 apk +libcurl 8.5.0-r0 apk +libdav1d 1.2.1-r0 apk +libdrm 2.4.115-r4 apk +libffi 3.4.4-r2 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgomp 12.2.1_git20220924-r10 apk +libgpg-error 1.47-r1 apk +libhwy 1.0.4-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libjxl 0.8.2-r0 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libogg 1.3.5-r4 apk +libopenmpt 0.7.2-r0 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.4-r0 apk +librist 0.2.7-r0 apk +libsodium 1.0.18-r3 apk +libsrt 1.5.2-r0 apk +libssh 0.10.5-r0 apk +libssl3 3.1.4-r1 apk +libstdc++ 12.2.1_git20220924-r10 apk +libtasn1 4.19.0-r1 apk +libtheora 1.1.1-r17 apk +libunistring 1.1-r1 apk +libva 2.18.0-r1 apk +libvdpau 1.5-r1 apk +libvorbis 1.3.7-r1 apk +libvpx 1.13.0-r2 apk +libwebp 1.3.2-r0 apk +libx11 1.8.7-r0 apk +libxau 1.0.11-r2 apk +libxcb 1.15-r1 apk +libxdmcp 1.1.4-r2 apk +libxext 1.3.5-r2 apk +libxfixes 6.0.1-r2 apk +libxml2 2.11.6-r0 apk +libxslt 1.1.38-r0 apk +libzmq 4.3.4-r4 apk +linux-pam 1.5.2-r10 apk +mbedtls 2.28.5-r0 apk +mpg123-libs 1.31.3-r1 apk +mscorlib 6.0.2523.51912 dotnet +musl 1.2.4-r2 apk +musl-utils 1.2.4-r2 apk +ncurses-terminfo-base 6.4_p20230506-r0 apk +netcat-openbsd 1.219-r1 apk +netstandard 6.0.2523.51912 dotnet +nettle 3.8.1-r2 apk +nghttp2-libs 1.57.0-r0 apk +numactl 2.0.16-r4 apk +onevpl-libs 2023.2.1-r0 apk +oniguruma 6.9.8-r1 apk +opus 1.4-r0 apk +p11-kit 0.24.1-r2 apk +procps-ng 4.0.4-r0 apk +readline 8.2.1-r1 apk +scanelf 1.3.7-r1 apk +shadow 4.13-r4 apk +skalibs 2.13.1.1-r1 apk +soxr 0.1.3-r5 apk +sqlite-libs 3.41.2-r2 apk +ssl_client 1.36.1-r5 apk +svt-av1-libs 1.6.0-r0 apk +tzdata 2023c-r1 apk +utmps-libs 0.1.2.1-r1 apk +wayland-libs-client 1.22.0-r2 apk +x264-libs 0.164_git20220602-r1 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r1 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 3885f6a58a9421755ac5b783370ca77f2bd9a97e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Dec 2023 01:55:59 +0000 Subject: [PATCH 411/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2ee25c5c..50da64e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3870 dotnet +Lidarr 2.1.1.3872 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From c55dd59c5164090a19115fc8553318d21cad95f1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 22 Dec 2023 04:41:29 +0000 Subject: [PATCH 412/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 50da64e6..3e2bbda2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3872 dotnet +Lidarr 2.1.1.3875 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f1787d9e36d4c9c8892f0049e9b4b86980d2d618 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 23 Dec 2023 02:31:44 +0000 Subject: [PATCH 413/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3e2bbda2..1c14af57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3875 dotnet +Lidarr 2.1.1.3877 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 30ee66d8928c734b3dbc48ffd0eff4d5d005a17c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 Dec 2023 03:35:26 +0000 Subject: [PATCH 414/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1c14af57..f9a96b69 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.1.3877 dotnet +Lidarr 2.1.2.3879 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f19b0cbd7f763925662dfe164bc8909e3e640d50 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Dec 2023 05:16:01 +0000 Subject: [PATCH 415/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f9a96b69..c698aef9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3879 dotnet +Lidarr 2.1.2.3883 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -447,7 +447,7 @@ soxr 0.1.3-r5 sqlite-libs 3.41.2-r2 apk ssl_client 1.36.1-r5 apk svt-av1-libs 1.6.0-r0 apk -tzdata 2023c-r1 apk +tzdata 2023d-r0 apk utmps-libs 0.1.2.1-r1 apk wayland-libs-client 1.22.0-r2 apk x264-libs 0.164_git20220602-r1 apk From 1dc1168cb63723ca560dadf4a071b2d7a361a2fb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Dec 2023 07:56:42 +0000 Subject: [PATCH 416/790] Bot Updating Package Versions --- package_versions.txt | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c698aef9..fdad353e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3883 dotnet +Lidarr 2.1.2.3885 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -95,6 +95,8 @@ Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet Microsoft.CSharp 6.0.2523.51912 dotnet Microsoft.Data.SqlClient 2.0.20168.4 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet @@ -165,7 +167,9 @@ NLog.Extensions.Logging v5.0.4 5.0.4.221 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet +Polly 8.2.0.2702 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +Polly.Core 8.2.0.2702 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.25.0.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From 97cbabd42360ef00d14dc1a2d7201e284bae0042 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jan 2024 10:41:15 +0000 Subject: [PATCH 417/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fdad353e..b5fb60e9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3885 dotnet +Lidarr 2.1.2.3889 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From c7f2d678e500eb87f7d86e2d09e871a42f3b5e87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 4 Jan 2024 18:41:13 +0000 Subject: [PATCH 418/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b5fb60e9..184a17b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3889 dotnet +Lidarr 2.1.2.3891 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 6cbd1a50e758c3e2451f42d8912fddf15723dc48 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Jan 2024 14:57:26 +0000 Subject: [PATCH 419/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 184a17b0..276ce89f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3891 dotnet +Lidarr 2.1.2.3892 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From dcf967ebb25b83d1656b052cd048ffe86693b99a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Jan 2024 19:02:08 +0000 Subject: [PATCH 420/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 276ce89f..2764decf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3892 dotnet +Lidarr 2.1.2.3893 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 2c1bff327717fc171701fcf28c03fa4a78340b36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Jan 2024 09:49:31 +0000 Subject: [PATCH 421/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2764decf..d94bf39f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.2.3893 dotnet +Lidarr 2.1.3.3896 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From a1a30ae3eb7c10ed53501e523e58ff4c89514465 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Jan 2024 14:23:36 +0000 Subject: [PATCH 422/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d94bf39f..2070b17e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.2.27524 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3896 dotnet +Lidarr 2.1.3.3898 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 5bcffdb5c8cd6e53ee88982a6f160e02199fcf0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Jan 2024 14:08:10 +0000 Subject: [PATCH 423/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2070b17e..0df9a5e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -11,9 +11,9 @@ FluentValidation 9.5.4.0 ICSharpCode.SharpZipLib 1.3.3.11 dotnet Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.2.27524 dotnet +Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3898 dotnet +Lidarr 2.1.3.3904 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -167,9 +167,9 @@ NLog.Extensions.Logging v5.0.4 5.0.4.221 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet -Polly 8.2.0.2702 dotnet +Polly 8.2.1.2874 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.2.0.2702 dotnet +Polly.Core 8.2.1.2874 dotnet ReusableTasks 2.0.0-master+2aa9a10 dotnet Sentry 3.25.0.0 dotnet SixLabors.ImageSharp 3.0.1.0 dotnet From cb71ad5948b6646ae93e50451acc805bc6d21e3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 02:13:24 +0000 Subject: [PATCH 424/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0df9a5e8..aa8822ed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3904 dotnet +Lidarr 2.1.3.3908 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From e96e06f6a4eec031a186e3a6a00a016f72b6cbd1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 02:53:00 +0000 Subject: [PATCH 425/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aa8822ed..d6c0ee28 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3908 dotnet +Lidarr 2.1.3.3909 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 6807073c61182b9e0183ffd4359bb2f56520ee54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 17:51:57 +0000 Subject: [PATCH 426/790] Bot Updating Templated Files --- Jenkinsfile | 286 +++++++++++++++++++++++++++------------------------- 1 file changed, 147 insertions(+), 139 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 1e49364d..fb6f472f 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -58,11 +58,16 @@ pipeline { env.COMMIT_SHA = sh( script: '''git rev-parse HEAD''', returnStdout: true).trim() + env.GH_DEFAULT_BRANCH = sh( + script: '''git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||' ''', + returnStdout: true).trim() env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' } + sh '''#! /bin/bash + echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' script{ env.LS_RELEASE_NUMBER = sh( script: '''echo ${LS_RELEASE} |sed 's/^.*-ls//g' ''', @@ -120,7 +125,7 @@ pipeline { steps{ script{ env.EXT_RELEASE_CLEAN = sh( - script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g' ''', + script: '''echo ${EXT_RELEASE} | sed 's/[~,%@+;:/ ]//g' ''', returnStdout: true).trim() def semver = env.EXT_RELEASE_CLEAN =~ /(\d+)\.(\d+)\.(\d+)/ @@ -138,7 +143,7 @@ pipeline { } if (env.SEMVER != null) { - if (BRANCH_NAME != "master" && BRANCH_NAME != "main") { + if (BRANCH_NAME != "${env.GH_DEFAULT_BRANCH}") { env.SEMVER = "${env.SEMVER}-${BRANCH_NAME}" } println("SEMVER: ${env.SEMVER}") @@ -256,115 +261,150 @@ pipeline { } } steps { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update - if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ - git add Jenkinsfile - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "Jenkinsfile is up to date." - fi - # 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" - for i in ${OLD_TEMPLATES}; do - if [[ -f "${i}" ]]; then - TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', + usernameVariable: 'DOCKERUSER', + passwordVariable: 'DOCKERPASS' + ] + ]) { + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "Jenkinsfile is up to date." fi - done - if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly - for i in ${TEMPLATES_TO_DELETE}; do - git rm "${i}" + # 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" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" + fi done - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "No templates to delete" - fi - # Stage 3 - Update templates - CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - cd ${TEMPDIR}/docker-${CONTAINER_NAME} - NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" + done + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old and deprecated templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE - cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : - cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : - cd ${TEMPDIR}/repo/${LS_REPO}/ - if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then - echo ".jenkins-external" >> .gitignore - git add .gitignore + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : + cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore + fi + git add readme-vars.yml ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} fi - git add readme-vars.yml ${TEMPLATED_FILES} - git commit -m 'Bot Updating Templated Files' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - else - echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - fi - mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ - cd ${TEMPDIR}/docs/docker-documentation - git add docs/images/docker-${CONTAINER_NAME}.md - git commit -m 'Bot Updating Documentation' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git --all - fi - mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - fi - if [[ ("${BRANCH_NAME}" == "master") || ("${BRANCH_NAME}" == "main") ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then - cd ${TEMPDIR}/unraid/templates/ - if 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 - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + git add docs/images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Documentation' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} + fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + fi + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + 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 + 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 + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : + else + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' + fi + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} + fi + # Stage 4 - Sync Readme to Docker Hub + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" + else + echo "Syncing readme to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" + fi + DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERPASS}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X PATCH \ + -d "{\"full_description\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ + https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml - git commit -m 'Bot Updating Unraid Template' + echo "Not the default Github branch. Skipping readme sync to Docker Hub." fi - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git --all - fi - rm -Rf ${TEMPDIR}''' - script{ - env.FILES_UPDATED = sh( - script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', - returnStdout: true).trim() + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() + } } } } @@ -558,7 +598,8 @@ pipeline { wait git add package_versions.txt git commit -m 'Bot Updating Package Versions' - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git --all + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly echo "true" > /tmp/packages-${COMMIT_SHA}-${BUILD_NUMBER} echo "Package tag updated, stopping build process" else @@ -854,39 +895,6 @@ EOF ) ''' } } - // Use helper container to sync the current README on master to the dockerhub endpoint - stage('Sync-README') { - when { - environment name: 'CHANGE_ID', value: '' - environment name: 'EXIT_STATUS', value: '' - } - steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH="${BRANCH_NAME}" -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - docker pull ghcr.io/linuxserver/readme-sync - docker run --rm=true \ - -e DOCKERHUB_USERNAME=$DOCKERUSER \ - -e DOCKERHUB_PASSWORD=$DOCKERPASS \ - -e GIT_REPOSITORY=${LS_USER}/${LS_REPO} \ - -e DOCKER_REPOSITORY=${IMAGE} \ - -e GIT_BRANCH=master \ - -v ${TEMPDIR}/docker-${CONTAINER_NAME}:/mnt \ - ghcr.io/linuxserver/readme-sync bash -c 'node sync' - rm -Rf ${TEMPDIR} ''' - } - } - } // If this is a Pull request send the CI link as a comment on it stage('Pull Request Comment') { when { From db496d3c4b121c11c95f63a782b857df296b97ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 17:53:45 +0000 Subject: [PATCH 427/790] Bot Updating Templated Files --- README.md | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) diff --git a/README.md b/README.md index 4e57602c..42530c0e 100644 --- a/README.md +++ b/README.md @@ -91,7 +91,6 @@ To help you get started creating a container from this image you can either use ```yaml --- -version: "2.1" services: lidarr: image: lscr.io/linuxserver/lidarr:nightly @@ -208,7 +207,7 @@ We publish various [Docker Mods](https://github.com/linuxserver/docker-mods) to ## Updating Info -Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (ie. nextcloud, plex), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. +Most of our images are static, versioned, and require an image update and container recreation to update the app inside. With some exceptions (noted in the relevant readme.md), we do not recommend or support updating apps inside the container. Please consult the [Application Setup](#application-setup) section above to see if it is recommended for the image. Below are the instructions for updating containers: @@ -273,21 +272,6 @@ Below are the instructions for updating containers: docker image prune ``` -### Via Watchtower auto-updater (only use if you don't remember the original parameters) - -* Pull the latest image at its tag and replace it with the same env variables in one run: - - ```bash - docker run --rm \ - -v /var/run/docker.sock:/var/run/docker.sock \ - containrrr/watchtower \ - --run-once lidarr - ``` - -* You can also remove the old dangling images: `docker image prune` - -**warning**: We do not endorse the use of Watchtower as a solution to automated updates of existing Docker containers. In fact we generally discourage automated updates. However, this is a useful tool for one-time manual updates of containers where you have forgotten the original parameters. In the long term, we highly recommend using [Docker Compose](https://docs.linuxserver.io/general/docker-compose). - ### Image Update Notifications - Diun (Docker Image Update Notifier) **tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. From 9240eb676df912e2b09c0d54d7e4e67b0cc735c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 9 Jan 2024 17:59:06 +0000 Subject: [PATCH 428/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d6c0ee28..dd40bd31 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3909 dotnet +Lidarr 2.1.3.3913 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 716d0191a3034ff947932814be3ede55d2b1e68e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Jan 2024 02:09:40 +0000 Subject: [PATCH 429/790] Bot Updating Templated Files --- Jenkinsfile | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index fb6f472f..87090955 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -16,6 +16,7 @@ pipeline { GITHUB_TOKEN=credentials('498b4638-2d02-4ce5-832d-8a57d01d97ab') GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') + DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat') BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-lidarr' @@ -384,18 +385,18 @@ pipeline { if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" else echo "Syncing readme to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" fi - DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERPASS}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') curl -s \ -H "Authorization: JWT ${DH_TOKEN}" \ -H "Content-Type: application/json" \ -X PATCH \ - -d "{\"full_description\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ - https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} + -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ + https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : else echo "Not the default Github branch. Skipping readme sync to Docker Hub." fi From 7be14504158b467bb9b1772d35d369818fbc4f74 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 01:13:59 +0000 Subject: [PATCH 430/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dd40bd31..ff023421 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3913 dotnet +Lidarr 2.1.3.3918 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -384,7 +384,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r1 apk +libcrypto3 3.1.4-r3 apk libcurl 8.5.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From d2e0babc4165656b2b252efa21c3c1021ddf23d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 03:13:22 +0000 Subject: [PATCH 431/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ff023421..055e595b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3918 dotnet +Lidarr 2.1.3.3920 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From d5c0b5f010caa3f3700c8e87c3169c5707e213bd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 12:12:38 +0000 Subject: [PATCH 432/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 055e595b..e0d86eef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3920 dotnet +Lidarr 2.1.3.3922 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 608ca9076af261b97470c4ffcba05bf80087422a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jan 2024 16:16:42 +0000 Subject: [PATCH 433/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e0d86eef..510ddb90 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3922 dotnet +Lidarr 2.1.3.3923 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 32939cd2d40d65940f6e30be1d760e41d228065e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Jan 2024 00:51:38 +0000 Subject: [PATCH 434/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 510ddb90..7b0337f4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3923 dotnet +Lidarr 2.1.3.3924 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From aff1974992919040045e7ab440f93f327f95d106 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Jan 2024 22:03:00 +0000 Subject: [PATCH 435/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7b0337f4..a119f503 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3924 dotnet +Lidarr 2.1.3.3927 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -407,7 +407,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.4-r1 apk +libssl3 3.1.4-r3 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From 07242edf8f243e1f40934b17b13f11b7ef5f25d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jan 2024 02:08:59 +0000 Subject: [PATCH 436/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a119f503..91e90bdb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -363,7 +363,7 @@ ca-certificates 20230506-r0 ca-certificates-bundle 20230506-r0 apk chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk -cjson 1.7.15-r4 apk +cjson 1.7.17-r0 apk coreutils 9.3-r1 apk curl 8.5.0-r0 apk ffmpeg-libavcodec 6.0.1-r0 apk @@ -384,7 +384,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r3 apk +libcrypto3 3.1.4-r4 apk libcurl 8.5.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From 11e06c3694ed16fa477fcb65124c44e61ba2ebe8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jan 2024 09:10:45 +0000 Subject: [PATCH 437/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 91e90bdb..eb21aa1e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.3.3927 dotnet +Lidarr 2.1.4.3938 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -371,7 +371,7 @@ ffmpeg-libavformat 6.0.1-r0 ffmpeg-libavutil 6.0.1-r0 apk ffmpeg-libswresample 6.0.1-r0 apk gmp 6.2.1-r3 apk -gnutls 3.8.0-r2 apk +gnutls 3.8.3-r0 apk hwdata-pci 0.370-r0 apk icu-data-en 73.2-r2 apk icu-libs 73.2-r2 apk @@ -448,7 +448,7 @@ scanelf 1.3.7-r1 shadow 4.13-r4 apk skalibs 2.13.1.1-r1 apk soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r2 apk +sqlite-libs 3.41.2-r3 apk ssl_client 1.36.1-r5 apk svt-av1-libs 1.6.0-r0 apk tzdata 2023d-r0 apk From f12a0054e2f9dff82105b0d51c1876d02f5b59c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 Jan 2024 00:39:29 +0000 Subject: [PATCH 438/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eb21aa1e..51cd6d3c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.4.3938 dotnet +Lidarr 2.1.4.3939 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From ca33ff5c17fea332fd2f8516b7fed55832a8ff24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 Jan 2024 06:18:28 +0000 Subject: [PATCH 439/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 51cd6d3c..48b13dc0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.4.3939 dotnet +Lidarr 2.1.4.3941 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From fb7a1c627b3cab7c7f040ac074726e8d8821ec60 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 02:09:56 +0000 Subject: [PATCH 440/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 48b13dc0..906e23ec 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -407,7 +407,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.4-r3 apk +libssl3 3.1.4-r4 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk From 8b2aaed27b0b2e15e9655993786fe6b806f25a1c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 09:30:04 +0000 Subject: [PATCH 441/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 906e23ec..62da090c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.4.3941 dotnet +Lidarr 2.1.5.3954 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 78cd3eef8481b5b0f201a8b2699183115041a915 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jan 2024 16:31:54 +0000 Subject: [PATCH 442/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 62da090c..63fbfb12 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3954 dotnet +Lidarr 2.1.5.3955 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From bed0d4a44a6793dd8cddf313d956668bfc4bb49a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jan 2024 03:14:52 +0000 Subject: [PATCH 443/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 63fbfb12..86e7dd20 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3955 dotnet +Lidarr 2.1.5.3957 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 24d1a7552eb165b67e15e3cc119076d482403a56 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jan 2024 08:49:53 +0000 Subject: [PATCH 444/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 86e7dd20..6a67345b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3957 dotnet +Lidarr 2.1.5.3961 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 3a00828c99056d79e5dcb784b457e8f303a9c40b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 09:20:18 +0000 Subject: [PATCH 445/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6a67345b..549267b3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3961 dotnet +Lidarr 2.1.5.3967 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -384,7 +384,7 @@ libbluray 1.3.4-r0 libbsd 0.11.7-r1 apk libbz2 1.0.8-r5 apk libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r4 apk +libcrypto3 3.1.4-r5 apk libcurl 8.5.0-r0 apk libdav1d 1.2.1-r0 apk libdrm 2.4.115-r4 apk From 8476cc97ee129958398d96194c98ac423a5981f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Jan 2024 20:33:59 +0000 Subject: [PATCH 446/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 549267b3..d48ae318 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3967 dotnet +Lidarr 2.1.5.3968 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -352,7 +352,7 @@ WindowsBase 6.0.2523.51912 alpine-baselayout 3.4.3-r1 apk alpine-baselayout-data 3.4.3-r1 apk alpine-keys 2.4-r1 apk -alpine-release 3.18.5-r0 apk +alpine-release 3.18.6-r0 apk aom-libs 3.6.1-r0 apk apk-tools 2.14.0-r2 apk bash 5.2.15-r5 apk @@ -364,7 +364,7 @@ ca-certificates-bundle 20230506-r0 chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk cjson 1.7.17-r0 apk -coreutils 9.3-r1 apk +coreutils 9.3-r2 apk curl 8.5.0-r0 apk ffmpeg-libavcodec 6.0.1-r0 apk ffmpeg-libavformat 6.0.1-r0 apk @@ -407,7 +407,7 @@ librist 0.2.7-r0 libsodium 1.0.18-r3 apk libsrt 1.5.2-r0 apk libssh 0.10.5-r0 apk -libssl3 3.1.4-r4 apk +libssl3 3.1.4-r5 apk libstdc++ 12.2.1_git20220924-r10 apk libtasn1 4.19.0-r1 apk libtheora 1.1.1-r17 apk @@ -427,7 +427,7 @@ libxml2 2.11.6-r0 libxslt 1.1.38-r0 apk libzmq 4.3.4-r4 apk linux-pam 1.5.2-r10 apk -mbedtls 2.28.5-r0 apk +mbedtls 2.28.7-r0 apk mpg123-libs 1.31.3-r1 apk mscorlib 6.0.2523.51912 dotnet musl 1.2.4-r2 apk From bfd4d6f1735d41ceb2e2e87280a6cd78f453ba26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 15:53:13 +0000 Subject: [PATCH 447/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d48ae318..b3863078 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.5.3968 dotnet +Lidarr 2.1.6.3974 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 32e587ebadadd0252105c327926d1193bfd364bb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 30 Jan 2024 16:21:21 +0000 Subject: [PATCH 448/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b3863078..92681088 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3974 dotnet +Lidarr 2.1.6.3977 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From e23bf862d31a563b61842ef069e9872367075a4d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jan 2024 20:47:35 +0000 Subject: [PATCH 449/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 92681088..b9d56278 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3977 dotnet +Lidarr 2.1.6.3982 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From e5feae1df4c021ba0f146d74764da70d6dccec7b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Feb 2024 07:18:41 +0000 Subject: [PATCH 450/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b9d56278..e78ba6e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3982 dotnet +Lidarr 2.1.6.3984 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f583f6ad25b137c69a4d34dab0f89c00f789e9b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Feb 2024 15:14:35 +0000 Subject: [PATCH 451/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e78ba6e4..c6ab7dd5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3984 dotnet +Lidarr 2.1.6.3987 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From a6635dc3e0127dc039b790dbfc962501adb59c9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 1 Feb 2024 17:41:56 +0000 Subject: [PATCH 452/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c6ab7dd5..3c9b7225 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3987 dotnet +Lidarr 2.1.6.3989 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 1128465b473bf2e8d7bfc2b85d5210971bed6604 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 08:19:57 +0000 Subject: [PATCH 453/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3c9b7225..d2e990dc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3989 dotnet +Lidarr 2.1.6.3990 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 9b5d58a8d5561d8b3e3f722b5465e886b1dfe739 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 12:33:01 +0000 Subject: [PATCH 454/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d2e990dc..6cee3713 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3990 dotnet +Lidarr 2.1.6.3991 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 3a08b2b972c53749ce26f12c72576a981c766220 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 13:41:30 +0000 Subject: [PATCH 455/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6cee3713..f3751262 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3991 dotnet +Lidarr 2.1.6.3992 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -451,7 +451,7 @@ soxr 0.1.3-r5 sqlite-libs 3.41.2-r3 apk ssl_client 1.36.1-r5 apk svt-av1-libs 1.6.0-r0 apk -tzdata 2023d-r0 apk +tzdata 2024a-r0 apk utmps-libs 0.1.2.1-r1 apk wayland-libs-client 1.22.0-r2 apk x264-libs 0.164_git20220602-r1 apk From 88e44d0cb6c277a880050bb3c5c8c926f3f15010 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 3 Feb 2024 20:34:38 +0000 Subject: [PATCH 456/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f3751262..70ead913 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3992 dotnet +Lidarr 2.1.6.3993 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 50ed74cbc32dabb7f7c89e9a3e974c470efe7c9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Feb 2024 17:02:38 +0000 Subject: [PATCH 457/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 70ead913..a9780408 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.6.3993 dotnet +Lidarr 2.1.7.3995 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 24ee0383932396ca8acab6545fc731cc44d3452a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Feb 2024 18:40:32 +0000 Subject: [PATCH 458/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a9780408..a01257ae 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.3995 dotnet +Lidarr 2.1.7.3996 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From fa80c0cb5ce6313a7f785d9cdb16eb8ac859381d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Feb 2024 20:40:15 +0000 Subject: [PATCH 459/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a01257ae..25a7846c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.3996 dotnet +Lidarr 2.1.7.4000 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 5de0095744280fc7a7455277bbca5d46acae8ea7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 4 Feb 2024 22:30:39 +0000 Subject: [PATCH 460/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 25a7846c..4f215ba7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4000 dotnet +Lidarr 2.1.7.4002 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 160323b48c7576c7b95a693795cca690d40aed73 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Feb 2024 15:26:54 +0000 Subject: [PATCH 461/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f215ba7..7f1b3622 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4002 dotnet +Lidarr 2.1.7.4003 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 444c1e07463547163b824dc09d9e5c30af96eccc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 5 Feb 2024 21:58:37 +0000 Subject: [PATCH 462/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7f1b3622..9db54b1a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4003 dotnet +Lidarr 2.1.7.4008 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From ce1388a45c6160ecd118c8bd6adf0baba2fe5e2d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Feb 2024 03:43:13 +0000 Subject: [PATCH 463/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9db54b1a..bc578f2b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4008 dotnet +Lidarr 2.1.7.4011 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From d42e1a869fa843b7f14fb3132696df1a321e8af5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 6 Feb 2024 23:48:06 +0000 Subject: [PATCH 464/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bc578f2b..16dc05f0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4011 dotnet +Lidarr 2.1.7.4017 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From d1c011bfdb268a63953a61f2332f10ab06d25061 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Feb 2024 12:47:09 +0000 Subject: [PATCH 465/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 16dc05f0..ba9c8f53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4017 dotnet +Lidarr 2.1.7.4022 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f6432c3e19f27ec4d39eae88a8601ac411f36311 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Feb 2024 12:48:38 +0000 Subject: [PATCH 466/790] Bot Updating Package Versions --- package_versions.txt | 924 +++++++++++++++++++++---------------------- 1 file changed, 462 insertions(+), 462 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ba9c8f53..d8171c76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,462 +1,462 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.123.33578 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc 5.4.3.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet -Ical.Net 1.0.0.0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.3.27908 dotnet -Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4022 dotnet -MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2523.51912 dotnet -Microsoft.Data.SqlClient 2.0.20168.4 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Features 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2523.52315 dotnet -Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2523.51912 dotnet -Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet -Microsoft.Win32.Primitives 6.0.2523.51912 dotnet -Microsoft.Win32.Registry 6.0.2523.51912 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet -Mono.Nat 3.0.1-master+6ab1f3f dotnet -Mono.Posix.NETStandard 1.0.0.0 dotnet -MonoTorrent 2.0.7-monotorrent-2.0+0c4e9bb3 dotnet -NLog v5.2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet -NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet -Polly 8.2.1.2874 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.2.1.2874 dotnet -ReusableTasks 2.0.0-master+2aa9a10 dotnet -Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.0.1.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2523.51912 dotnet -System.AppContext 6.0.2523.51912 dotnet -System.Buffers 6.0.2523.51912 dotnet -System.Collections 6.0.2523.51912 dotnet -System.Collections.Concurrent 6.0.2523.51912 dotnet -System.Collections.Immutable 6.0.2523.51912 dotnet -System.Collections.NonGeneric 6.0.2523.51912 dotnet -System.Collections.Specialized 6.0.2523.51912 dotnet -System.ComponentModel 6.0.2523.51912 dotnet -System.ComponentModel.Annotations 6.0.2523.51912 dotnet -System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet -System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet -System.ComponentModel.Primitives 6.0.2523.51912 dotnet -System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet -System.Configuration 6.0.2523.51912 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2523.51912 dotnet -System.Core 6.0.2523.51912 dotnet -System.Data 6.0.2523.51912 dotnet -System.Data.Common 6.0.2523.51912 dotnet -System.Data.DataSetExtensions 6.0.2523.51912 dotnet -System.Data.SQLite 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2523.51912 dotnet -System.Diagnostics.Debug 6.0.2523.51912 dotnet -System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet -System.Diagnostics.Process 6.0.2523.51912 dotnet -System.Diagnostics.StackTrace 6.0.2523.51912 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet -System.Diagnostics.Tools 6.0.2523.51912 dotnet -System.Diagnostics.TraceSource 6.0.2523.51912 dotnet -System.Diagnostics.Tracing 6.0.2523.51912 dotnet -System.Drawing 6.0.2523.51912 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2523.51912 dotnet -System.Dynamic.Runtime 6.0.2523.51912 dotnet -System.Formats.Asn1 6.0.2523.51912 dotnet -System.Globalization 6.0.2523.51912 dotnet -System.Globalization.Calendars 6.0.2523.51912 dotnet -System.Globalization.Extensions 6.0.2523.51912 dotnet -System.IO 6.0.2523.51912 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2523.51912 dotnet -System.IO.Compression.Brotli 6.0.2523.51912 dotnet -System.IO.Compression.FileSystem 6.0.2523.51912 dotnet -System.IO.Compression.ZipFile 6.0.2523.51912 dotnet -System.IO.FileSystem 6.0.2523.51912 dotnet -System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet -System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet -System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet -System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet -System.IO.IsolatedStorage 6.0.2523.51912 dotnet -System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2523.51912 dotnet -System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet -System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2523.51912 dotnet -System.Linq.Expressions 6.0.2523.51912 dotnet -System.Linq.Parallel 6.0.2523.51912 dotnet -System.Linq.Queryable 6.0.2523.51912 dotnet -System.Memory 6.0.2523.51912 dotnet -System.Net 6.0.2523.51912 dotnet -System.Net.Http 6.0.2523.51912 dotnet -System.Net.Http.Json 6.0.2523.51912 dotnet -System.Net.HttpListener 6.0.2523.51912 dotnet -System.Net.Mail 6.0.2523.51912 dotnet -System.Net.NameResolution 6.0.2523.51912 dotnet -System.Net.NetworkInformation 6.0.2523.51912 dotnet -System.Net.Ping 6.0.2523.51912 dotnet -System.Net.Primitives 6.0.2523.51912 dotnet -System.Net.Quic 6.0.2523.51912 dotnet -System.Net.Requests 6.0.2523.51912 dotnet -System.Net.Security 6.0.2523.51912 dotnet -System.Net.ServicePoint 6.0.2523.51912 dotnet -System.Net.Sockets 6.0.2523.51912 dotnet -System.Net.WebClient 6.0.2523.51912 dotnet -System.Net.WebHeaderCollection 6.0.2523.51912 dotnet -System.Net.WebProxy 6.0.2523.51912 dotnet -System.Net.WebSockets 6.0.2523.51912 dotnet -System.Net.WebSockets.Client 6.0.2523.51912 dotnet -System.Numerics 6.0.2523.51912 dotnet -System.Numerics.Vectors 6.0.2523.51912 dotnet -System.ObjectModel 6.0.2523.51912 dotnet -System.Private.CoreLib 6.0.2523.51912 dotnet -System.Private.DataContractSerialization 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet -System.Private.Uri 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet -System.Private.Xml 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet -System.Private.Xml.Linq 6.0.25-servicing.23519.12+492abbeef0d8a6ea902ac8f90ed339c7b1d18bf4 dotnet -System.Reflection 6.0.2523.51912 dotnet -System.Reflection.DispatchProxy 6.0.2523.51912 dotnet -System.Reflection.Emit 6.0.2523.51912 dotnet -System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet -System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet -System.Reflection.Extensions 6.0.2523.51912 dotnet -System.Reflection.Metadata 6.0.2523.51912 dotnet -System.Reflection.Primitives 6.0.2523.51912 dotnet -System.Reflection.TypeExtensions 6.0.2523.51912 dotnet -System.Resources.Reader 6.0.2523.51912 dotnet -System.Resources.ResourceManager 6.0.2523.51912 dotnet -System.Resources.Writer 6.0.2523.51912 dotnet -System.Runtime 6.0.2523.51912 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet -System.Runtime.Extensions 6.0.2523.51912 dotnet -System.Runtime.Handles 6.0.2523.51912 dotnet -System.Runtime.InteropServices 6.0.2523.51912 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet -System.Runtime.Intrinsics 6.0.2523.51912 dotnet -System.Runtime.Loader 6.0.2523.51912 dotnet -System.Runtime.Numerics 6.0.2523.51912 dotnet -System.Runtime.Serialization 6.0.2523.51912 dotnet -System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet -System.Runtime.Serialization.Json 6.0.2523.51912 dotnet -System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet -System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet -System.Security 6.0.2523.51912 dotnet -System.Security.AccessControl 6.0.2523.51912 dotnet -System.Security.Claims 6.0.2523.51912 dotnet -System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet -System.Security.Cryptography.Cng 6.0.2523.51912 dotnet -System.Security.Cryptography.Csp 6.0.2523.51912 dotnet -System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet -System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2523.51912 dotnet -System.Security.Principal.Windows 6.0.2523.51912 dotnet -System.Security.SecureString 6.0.2523.51912 dotnet -System.ServiceModel.Web 6.0.2523.51912 dotnet -System.ServiceProcess 6.0.2523.51912 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2523.51912 dotnet -System.Text.Encoding.CodePages 6.0.2523.51912 dotnet -System.Text.Encoding.Extensions 6.0.2523.51912 dotnet -System.Text.Encodings.Web 6.0.2523.51912 dotnet -System.Text.Json 6.0.2523.51912 dotnet -System.Text.RegularExpressions 6.0.2523.51912 dotnet -System.Threading 6.0.2523.51912 dotnet -System.Threading.Channels 6.0.2523.51912 dotnet -System.Threading.Overlapped 6.0.2523.51912 dotnet -System.Threading.Tasks 6.0.2523.51912 dotnet -System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet -System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet -System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet -System.Threading.Thread 6.0.2523.51912 dotnet -System.Threading.ThreadPool 6.0.2523.51912 dotnet -System.Threading.Timer 6.0.2523.51912 dotnet -System.Transactions 6.0.2523.51912 dotnet -System.Transactions.Local 6.0.2523.51912 dotnet -System.ValueTuple 6.0.2523.51912 dotnet -System.Web 6.0.2523.51912 dotnet -System.Web.HttpUtility 6.0.2523.51912 dotnet -System.Windows 6.0.2523.51912 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2523.51912 dotnet -System.Xml.Linq 6.0.2523.51912 dotnet -System.Xml.ReaderWriter 6.0.2523.51912 dotnet -System.Xml.Serialization 6.0.2523.51912 dotnet -System.Xml.XDocument 6.0.2523.51912 dotnet -System.Xml.XPath 6.0.2523.51912 dotnet -System.Xml.XPath.XDocument 6.0.2523.51912 dotnet -System.Xml.XmlDocument 6.0.2523.51912 dotnet -System.Xml.XmlSerializer 6.0.2523.51912 dotnet -TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2523.51912 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk -alpine-keys 2.4-r1 apk -alpine-release 3.18.6-r0 apk -aom-libs 3.6.1-r0 apk -apk-tools 2.14.0-r2 apk -bash 5.2.15-r5 apk -brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r5 apk -busybox-binsh 1.36.1-r5 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.17-r0 apk -coreutils 9.3-r2 apk -curl 8.5.0-r0 apk -ffmpeg-libavcodec 6.0.1-r0 apk -ffmpeg-libavformat 6.0.1-r0 apk -ffmpeg-libavutil 6.0.1-r0 apk -ffmpeg-libswresample 6.0.1-r0 apk -gmp 6.2.1-r3 apk -gnutls 3.8.3-r0 apk -hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -lame-libs 3.100-r5 apk -lcms2 2.15-r2 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbluray 1.3.4-r0 apk -libbsd 0.11.7-r1 apk -libbz2 1.0.8-r5 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk -libcurl 8.5.0-r0 apk -libdav1d 1.2.1-r0 apk -libdrm 2.4.115-r4 apk -libffi 3.4.4-r2 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgomp 12.2.1_git20220924-r10 apk -libgpg-error 1.47-r1 apk -libhwy 1.0.4-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libjxl 0.8.2-r0 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libogg 1.3.5-r4 apk -libopenmpt 0.7.2-r0 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.4-r0 apk -librist 0.2.7-r0 apk -libsodium 1.0.18-r3 apk -libsrt 1.5.2-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libtasn1 4.19.0-r1 apk -libtheora 1.1.1-r17 apk -libunistring 1.1-r1 apk -libva 2.18.0-r1 apk -libvdpau 1.5-r1 apk -libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r2 apk -libwebp 1.3.2-r0 apk -libx11 1.8.7-r0 apk -libxau 1.0.11-r2 apk -libxcb 1.15-r1 apk -libxdmcp 1.1.4-r2 apk -libxext 1.3.5-r2 apk -libxfixes 6.0.1-r2 apk -libxml2 2.11.6-r0 apk -libxslt 1.1.38-r0 apk -libzmq 4.3.4-r4 apk -linux-pam 1.5.2-r10 apk -mbedtls 2.28.7-r0 apk -mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.2523.51912 dotnet -musl 1.2.4-r2 apk -musl-utils 1.2.4-r2 apk -ncurses-terminfo-base 6.4_p20230506-r0 apk -netcat-openbsd 1.219-r1 apk -netstandard 6.0.2523.51912 dotnet -nettle 3.8.1-r2 apk -nghttp2-libs 1.57.0-r0 apk -numactl 2.0.16-r4 apk -onevpl-libs 2023.2.1-r0 apk -oniguruma 6.9.8-r1 apk -opus 1.4-r0 apk -p11-kit 0.24.1-r2 apk -procps-ng 4.0.4-r0 apk -readline 8.2.1-r1 apk -scanelf 1.3.7-r1 apk -shadow 4.13-r4 apk -skalibs 2.13.1.1-r1 apk -soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk -svt-av1-libs 1.6.0-r0 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk -wayland-libs-client 1.22.0-r2 apk -x264-libs 0.164_git20220602-r1 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r1 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +NAME VERSION TYPE +Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +Dapper 2.0.123.33578 dotnet +Diacritical 1.0.4.0 dotnet +DryIoc 5.4.3.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET 13.0.3.27908 dotnet +Kveer.XmlRPC 1.2.0.0 dotnet +Lidarr 2.1.7.4028 dotnet +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet +Microsoft.CSharp 6.0.2523.51912 dotnet +Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Features 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.JSInterop 6.0.2523.52315 dotnet +Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.2523.51912 dotnet +Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet +Microsoft.Win32.Primitives 6.0.2523.51912 dotnet +Microsoft.Win32.Registry 6.0.2523.51912 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 1.0.0.0 dotnet +MonoTorrent 2.0.7 dotnet +NLog v5.2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog.Targets.Syslog 7.0.0.0 dotnet +NodaTime 3.0.0.0 dotnet +Npgsql 7.0.6.0 dotnet +Polly 8.2.1.2874 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +Polly.Core 8.2.1.2874 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.0.1.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.2523.51912 dotnet +System.AppContext 6.0.2523.51912 dotnet +System.Buffers 6.0.2523.51912 dotnet +System.Collections 6.0.2523.51912 dotnet +System.Collections.Concurrent 6.0.2523.51912 dotnet +System.Collections.Immutable 6.0.2523.51912 dotnet +System.Collections.NonGeneric 6.0.2523.51912 dotnet +System.Collections.Specialized 6.0.2523.51912 dotnet +System.ComponentModel 6.0.2523.51912 dotnet +System.ComponentModel.Annotations 6.0.2523.51912 dotnet +System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet +System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet +System.ComponentModel.Primitives 6.0.2523.51912 dotnet +System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet +System.Configuration 6.0.2523.51912 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.2523.51912 dotnet +System.Core 6.0.2523.51912 dotnet +System.Data 6.0.2523.51912 dotnet +System.Data.Common 6.0.2523.51912 dotnet +System.Data.DataSetExtensions 6.0.2523.51912 dotnet +System.Data.SQLite 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.2523.51912 dotnet +System.Diagnostics.Debug 6.0.2523.51912 dotnet +System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet +System.Diagnostics.Process 6.0.2523.51912 dotnet +System.Diagnostics.StackTrace 6.0.2523.51912 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet +System.Diagnostics.Tools 6.0.2523.51912 dotnet +System.Diagnostics.TraceSource 6.0.2523.51912 dotnet +System.Diagnostics.Tracing 6.0.2523.51912 dotnet +System.Drawing 6.0.2523.51912 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.2523.51912 dotnet +System.Dynamic.Runtime 6.0.2523.51912 dotnet +System.Formats.Asn1 6.0.2523.51912 dotnet +System.Globalization 6.0.2523.51912 dotnet +System.Globalization.Calendars 6.0.2523.51912 dotnet +System.Globalization.Extensions 6.0.2523.51912 dotnet +System.IO 6.0.2523.51912 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.2523.51912 dotnet +System.IO.Compression.Brotli 6.0.2523.51912 dotnet +System.IO.Compression.FileSystem 6.0.2523.51912 dotnet +System.IO.Compression.ZipFile 6.0.2523.51912 dotnet +System.IO.FileSystem 6.0.2523.51912 dotnet +System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet +System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet +System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet +System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet +System.IO.IsolatedStorage 6.0.2523.51912 dotnet +System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.2523.51912 dotnet +System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet +System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +System.Linq 6.0.2523.51912 dotnet +System.Linq.Expressions 6.0.2523.51912 dotnet +System.Linq.Parallel 6.0.2523.51912 dotnet +System.Linq.Queryable 6.0.2523.51912 dotnet +System.Memory 6.0.2523.51912 dotnet +System.Net 6.0.2523.51912 dotnet +System.Net.Http 6.0.2523.51912 dotnet +System.Net.Http.Json 6.0.2523.51912 dotnet +System.Net.HttpListener 6.0.2523.51912 dotnet +System.Net.Mail 6.0.2523.51912 dotnet +System.Net.NameResolution 6.0.2523.51912 dotnet +System.Net.NetworkInformation 6.0.2523.51912 dotnet +System.Net.Ping 6.0.2523.51912 dotnet +System.Net.Primitives 6.0.2523.51912 dotnet +System.Net.Quic 6.0.2523.51912 dotnet +System.Net.Requests 6.0.2523.51912 dotnet +System.Net.Security 6.0.2523.51912 dotnet +System.Net.ServicePoint 6.0.2523.51912 dotnet +System.Net.Sockets 6.0.2523.51912 dotnet +System.Net.WebClient 6.0.2523.51912 dotnet +System.Net.WebHeaderCollection 6.0.2523.51912 dotnet +System.Net.WebProxy 6.0.2523.51912 dotnet +System.Net.WebSockets 6.0.2523.51912 dotnet +System.Net.WebSockets.Client 6.0.2523.51912 dotnet +System.Numerics 6.0.2523.51912 dotnet +System.Numerics.Vectors 6.0.2523.51912 dotnet +System.ObjectModel 6.0.2523.51912 dotnet +System.Private.CoreLib 6.0.2523.51912 dotnet +System.Private.DataContractSerialization 6.0.2523.51912 dotnet +System.Private.Uri 6.0.2523.51912 dotnet +System.Private.Xml 6.0.2523.51912 dotnet +System.Private.Xml.Linq 6.0.2523.51912 dotnet +System.Reflection 6.0.2523.51912 dotnet +System.Reflection.DispatchProxy 6.0.2523.51912 dotnet +System.Reflection.Emit 6.0.2523.51912 dotnet +System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet +System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet +System.Reflection.Extensions 6.0.2523.51912 dotnet +System.Reflection.Metadata 6.0.2523.51912 dotnet +System.Reflection.Primitives 6.0.2523.51912 dotnet +System.Reflection.TypeExtensions 6.0.2523.51912 dotnet +System.Resources.Reader 6.0.2523.51912 dotnet +System.Resources.ResourceManager 6.0.2523.51912 dotnet +System.Resources.Writer 6.0.2523.51912 dotnet +System.Runtime 6.0.2523.51912 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet +System.Runtime.Extensions 6.0.2523.51912 dotnet +System.Runtime.Handles 6.0.2523.51912 dotnet +System.Runtime.InteropServices 6.0.2523.51912 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet +System.Runtime.Intrinsics 6.0.2523.51912 dotnet +System.Runtime.Loader 6.0.2523.51912 dotnet +System.Runtime.Numerics 6.0.2523.51912 dotnet +System.Runtime.Serialization 6.0.2523.51912 dotnet +System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet +System.Runtime.Serialization.Json 6.0.2523.51912 dotnet +System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet +System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet +System.Security 6.0.2523.51912 dotnet +System.Security.AccessControl 6.0.2523.51912 dotnet +System.Security.Claims 6.0.2523.51912 dotnet +System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet +System.Security.Cryptography.Cng 6.0.2523.51912 dotnet +System.Security.Cryptography.Csp 6.0.2523.51912 dotnet +System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet +System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.2523.51912 dotnet +System.Security.Principal.Windows 6.0.2523.51912 dotnet +System.Security.SecureString 6.0.2523.51912 dotnet +System.ServiceModel.Web 6.0.2523.51912 dotnet +System.ServiceProcess 6.0.2523.51912 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2523.51912 dotnet +System.Text.Encoding.CodePages 6.0.2523.51912 dotnet +System.Text.Encoding.Extensions 6.0.2523.51912 dotnet +System.Text.Encodings.Web 6.0.2523.51912 dotnet +System.Text.Json 6.0.2523.51912 dotnet +System.Text.RegularExpressions 6.0.2523.51912 dotnet +System.Threading 6.0.2523.51912 dotnet +System.Threading.Channels 6.0.2523.51912 dotnet +System.Threading.Overlapped 6.0.2523.51912 dotnet +System.Threading.Tasks 6.0.2523.51912 dotnet +System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet +System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet +System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet +System.Threading.Thread 6.0.2523.51912 dotnet +System.Threading.ThreadPool 6.0.2523.51912 dotnet +System.Threading.Timer 6.0.2523.51912 dotnet +System.Transactions 6.0.2523.51912 dotnet +System.Transactions.Local 6.0.2523.51912 dotnet +System.ValueTuple 6.0.2523.51912 dotnet +System.Web 6.0.2523.51912 dotnet +System.Web.HttpUtility 6.0.2523.51912 dotnet +System.Windows 6.0.2523.51912 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.2523.51912 dotnet +System.Xml.Linq 6.0.2523.51912 dotnet +System.Xml.ReaderWriter 6.0.2523.51912 dotnet +System.Xml.Serialization 6.0.2523.51912 dotnet +System.Xml.XDocument 6.0.2523.51912 dotnet +System.Xml.XPath 6.0.2523.51912 dotnet +System.Xml.XPath.XDocument 6.0.2523.51912 dotnet +System.Xml.XmlDocument 6.0.2523.51912 dotnet +System.Xml.XmlSerializer 6.0.2523.51912 dotnet +TagLib# 2.2.0.27 dotnet +WindowsBase 6.0.2523.51912 dotnet +alpine-baselayout 3.4.3-r1 apk +alpine-baselayout-data 3.4.3-r1 apk +alpine-keys 2.4-r1 apk +alpine-release 3.18.6-r0 apk +aom-libs 3.6.1-r0 apk +apk-tools 2.14.0-r2 apk +bash 5.2.15-r5 apk +brotli-libs 1.0.9-r14 apk +busybox 1.36.1-r5 apk +busybox-binsh 1.36.1-r5 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.17-r0 apk +coreutils 9.3-r2 apk +curl 8.5.0-r0 apk +ffmpeg-libavcodec 6.0.1-r0 apk +ffmpeg-libavformat 6.0.1-r0 apk +ffmpeg-libavutil 6.0.1-r0 apk +ffmpeg-libswresample 6.0.1-r0 apk +gmp 6.2.1-r3 apk +gnutls 3.8.3-r0 apk +hwdata-pci 0.370-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +lame-libs 3.100-r5 apk +lcms2 2.15-r2 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbluray 1.3.4-r0 apk +libbsd 0.11.7-r1 apk +libbz2 1.0.8-r5 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r5 apk +libcurl 8.5.0-r0 apk +libdav1d 1.2.1-r0 apk +libdrm 2.4.115-r4 apk +libffi 3.4.4-r2 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgomp 12.2.1_git20220924-r10 apk +libgpg-error 1.47-r1 apk +libhwy 1.0.4-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libjxl 0.8.2-r0 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libogg 1.3.5-r4 apk +libopenmpt 0.7.2-r0 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.4-r0 apk +librist 0.2.7-r0 apk +libsodium 1.0.18-r3 apk +libsrt 1.5.2-r0 apk +libssh 0.10.5-r0 apk +libssl3 3.1.4-r5 apk +libstdc++ 12.2.1_git20220924-r10 apk +libtasn1 4.19.0-r1 apk +libtheora 1.1.1-r17 apk +libunistring 1.1-r1 apk +libva 2.18.0-r1 apk +libvdpau 1.5-r1 apk +libvorbis 1.3.7-r1 apk +libvpx 1.13.0-r2 apk +libwebp 1.3.2-r0 apk +libx11 1.8.7-r0 apk +libxau 1.0.11-r2 apk +libxcb 1.15-r1 apk +libxdmcp 1.1.4-r2 apk +libxext 1.3.5-r2 apk +libxfixes 6.0.1-r2 apk +libxml2 2.11.6-r0 apk +libxslt 1.1.38-r0 apk +libzmq 4.3.4-r4 apk +linux-pam 1.5.2-r10 apk +mbedtls 2.28.7-r0 apk +mpg123-libs 1.31.3-r1 apk +mscorlib 6.0.2523.51912 dotnet +musl 1.2.4-r2 apk +musl-utils 1.2.4-r2 apk +ncurses-terminfo-base 6.4_p20230506-r0 apk +netcat-openbsd 1.219-r1 apk +netstandard 6.0.2523.51912 dotnet +nettle 3.8.1-r2 apk +nghttp2-libs 1.57.0-r0 apk +numactl 2.0.16-r4 apk +onevpl-libs 2023.2.1-r0 apk +oniguruma 6.9.8-r1 apk +opus 1.4-r0 apk +p11-kit 0.24.1-r2 apk +procps-ng 4.0.4-r0 apk +readline 8.2.1-r1 apk +scanelf 1.3.7-r1 apk +shadow 4.13-r4 apk +skalibs 2.13.1.1-r1 apk +soxr 0.1.3-r5 apk +sqlite-libs 3.41.2-r3 apk +ssl_client 1.36.1-r5 apk +svt-av1-libs 1.6.0-r0 apk +tzdata 2024a-r0 apk +utmps-libs 0.1.2.1-r1 apk +wayland-libs-client 1.22.0-r2 apk +x264-libs 0.164_git20220602-r1 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r1 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From 0abdf4524ce69d0d7c7713e4e8e62610d984f3a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 11 Feb 2024 23:47:52 +0000 Subject: [PATCH 467/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d8171c76..2106f2be 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4028 dotnet +Lidarr 2.1.7.4029 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 1a93f77393200ef694b8e3e1850c555237f76df8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Feb 2024 04:06:13 +0000 Subject: [PATCH 468/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2106f2be..14a32fcd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.1.7.4029 dotnet +Lidarr 2.2.0.4033 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 0ff24f186315111e9fa2b0f2f82caa8b5277e647 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 12 Feb 2024 20:57:01 +0000 Subject: [PATCH 469/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 14a32fcd..505057c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.0.4033 dotnet +Lidarr 2.2.0.4035 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 5976581bdb80a4b88c7790a7d7b7d3ecc68c9f76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 Feb 2024 02:00:27 +0000 Subject: [PATCH 470/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 505057c6..643ee254 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -423,7 +423,7 @@ libxcb 1.15-r1 libxdmcp 1.1.4-r2 apk libxext 1.3.5-r2 apk libxfixes 6.0.1-r2 apk -libxml2 2.11.6-r0 apk +libxml2 2.11.7-r0 apk libxslt 1.1.38-r0 apk libzmq 4.3.4-r4 apk linux-pam 1.5.2-r10 apk From 50b753820d8587f38691122fe365d8384cd6d54f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 15 Feb 2024 01:13:06 +0000 Subject: [PATCH 471/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 643ee254..d5228347 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.0.4035 dotnet +Lidarr 2.2.0.4043 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 97dc371ae6cca0f448ecf5d496586ccb22106f4c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Feb 2024 22:58:20 +0000 Subject: [PATCH 472/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d5228347..47cc3aef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.0.4043 dotnet +Lidarr 2.2.0.4045 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 797bd7f128681c74d5cfd1e9aded4fcbb0f07cee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Feb 2024 23:34:38 +0000 Subject: [PATCH 473/790] Bot Updating Templated Files --- Jenkinsfile | 297 +++++++++++++++++++++++++--------------------------- 1 file changed, 143 insertions(+), 154 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 87090955..242903bd 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,9 +245,11 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.17 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ - apk add --no-cache py3-pip && \ - pip install s3cmd && \ + ghcr.io/linuxserver/baseimage-alpine:3.19 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + apk add --no-cache python3 && \ + python3 -m venv /lsiopy && \ + pip install --no-cache-dir -U pip && \ + pip install --no-cache-dir s3cmd && \ s3cmd put --no-preserve --acl-public -m text/xml /mnt/shellcheck-result.xml s3://ci-tests.linuxserver.io/${IMAGE}/${META_TAG}/shellcheck-result.xml" || :''' } } @@ -262,150 +264,149 @@ pipeline { } } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ] - ]) { - sh '''#! /bin/bash - set -e - TEMPDIR=$(mktemp -d) - docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update - if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ - git add Jenkinsfile - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "Jenkinsfile is up to date." + sh '''#! /bin/bash + set -e + TEMPDIR=$(mktemp -d) + docker pull ghcr.io/linuxserver/jenkins-builder:latest + docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest + # Stage 1 - Jenkinsfile update + if [[ "$(md5sum Jenkinsfile | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile | awk '{ print $1 }')" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/Jenkinsfile ${TEMPDIR}/repo/${LS_REPO}/ + git add Jenkinsfile + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating Jenkinsfile" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "Jenkinsfile is up to date." + fi + # 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" + for i in ${OLD_TEMPLATES}; do + if [[ -f "${i}" ]]; then + TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" fi - # 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" - for i in ${OLD_TEMPLATES}; do - if [[ -f "${i}" ]]; then - TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" - fi + done + if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + for i in ${TEMPLATES_TO_DELETE}; do + git rm "${i}" done - if [[ -n "${TEMPLATES_TO_DELETE}" ]]; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly - for i in ${TEMPLATES_TO_DELETE}; do - git rm "${i}" - done - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" - rm -Rf ${TEMPDIR} - exit 0 - else - echo "No templates to delete" - fi - # Stage 3 - Update templates - CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Deleting old and deprecated templates" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "No templates to delete" + fi + # Stage 3 - Update templates + CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + cd ${TEMPDIR}/docker-${CONTAINER_NAME} + NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) + if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly cd ${TEMPDIR}/docker-${CONTAINER_NAME} - NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) - if [[ "${CURRENTHASH}" != "${NEWHASH}" ]] || ! grep -q '.jenkins-external' "${WORKSPACE}/.gitignore" 2>/dev/null; then - mkdir -p ${TEMPDIR}/repo - git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} - cd ${TEMPDIR}/repo/${LS_REPO} - git checkout -f nightly - cd ${TEMPDIR}/docker-${CONTAINER_NAME} - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows - mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE - cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : - cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : - cd ${TEMPDIR}/repo/${LS_REPO}/ - if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then - echo ".jenkins-external" >> .gitignore - git add .gitignore - fi - git add readme-vars.yml ${TEMPLATED_FILES} - git commit -m 'Bot Updating Templated Files' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly - echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - else - echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - fi - mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ - cd ${TEMPDIR}/docs/docker-documentation - GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') - git add docs/images/docker-${CONTAINER_NAME}.md - git commit -m 'Bot Updating Documentation' - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} - fi - mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates - if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml - elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then - sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/workflows + mkdir -p ${TEMPDIR}/repo/${LS_REPO}/.github/ISSUE_TEMPLATE + cp --parents ${TEMPLATED_FILES} ${TEMPDIR}/repo/${LS_REPO}/ || : + cp --parents readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/ || : + cd ${TEMPDIR}/repo/${LS_REPO}/ + if ! grep -q '.jenkins-external' .gitignore 2>/dev/null; then + echo ".jenkins-external" >> .gitignore + git add .gitignore fi - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then - 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 - 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 - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : - else - cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ - git add unraid/${CONTAINER_NAME}.xml - git commit -m 'Bot Updating Unraid Template' - fi - git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} - git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} + git add readme-vars.yml ${TEMPLATED_FILES} + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + fi + mkdir -p ${TEMPDIR}/docs + git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ + cd ${TEMPDIR}/docs/docker-documentation + GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') + git add docs/images/docker-${CONTAINER_NAME}.md + git commit -m 'Bot Updating Documentation' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} || \ + (MAXWAIT="10" && echo "Push to docs failed, trying again in ${MAXWAIT} seconds" && \ + sleep $((RANDOM % MAXWAIT)) && \ + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase && \ + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH}) + fi + mkdir -p ${TEMPDIR}/unraid + git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then + sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml + fi + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + 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 + 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 + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : + else + cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ + git add unraid/${CONTAINER_NAME}.xml + git commit -m 'Bot Updating Unraid Template' fi - # Stage 4 - Sync Readme to Docker Hub - if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then - if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then - echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" - else - echo "Syncing readme to Docker Hub" - DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" - fi - DH_TOKEN=$(curl -d '{"username":"'${DOCKERUSER}'", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') - curl -s \ - -H "Authorization: JWT ${DH_TOKEN}" \ - -H "Content-Type: application/json" \ - -X PATCH \ - -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ - https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} || \ + (MAXWAIT="10" && echo "Push to unraid templates failed, trying again in ${MAXWAIT} seconds" && \ + sleep $((RANDOM % MAXWAIT)) && \ + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase && \ + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH}) + fi + # Stage 4 - Sync Readme to Docker Hub + if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" else - echo "Not the default Github branch. Skipping readme sync to Docker Hub." + echo "Syncing readme to Docker Hub" + DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" fi - rm -Rf ${TEMPDIR}''' - script{ - env.FILES_UPDATED = sh( - script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', - returnStdout: true).trim() - } + DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X PATCH \ + -d "{\\"full_description\\":$(jq -Rsa . ${DH_README_SYNC_PATH})}" \ + https://hub.docker.com/v2/repositories/${DOCKERHUB_IMAGE} || : + else + echo "Not the default Github branch. Skipping readme sync to Docker Hub." + fi + rm -Rf ${TEMPDIR}''' + script{ + env.FILES_UPDATED = sh( + script: '''cat /tmp/${COMMIT_SHA}-${BUILD_NUMBER}''', + returnStdout: true).trim() } } } @@ -703,12 +704,6 @@ pipeline { } steps { withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ], [ $class: 'UsernamePasswordMultiBinding', credentialsId: 'Quay.io-Robot', @@ -719,7 +714,7 @@ pipeline { retry(5) { sh '''#! /bin/bash set -e - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin @@ -750,12 +745,6 @@ pipeline { } steps { withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: '3f9ba4d5-100d-45b0-a3c4-633fd6061207', - usernameVariable: 'DOCKERUSER', - passwordVariable: 'DOCKERPASS' - ], [ $class: 'UsernamePasswordMultiBinding', credentialsId: 'Quay.io-Robot', @@ -766,7 +755,7 @@ pipeline { retry(5) { sh '''#! /bin/bash set -e - echo $DOCKERPASS | docker login -u $DOCKERUSER --password-stdin + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin From 9ec174c4fbb380386163bec0156be040bafa581d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Feb 2024 23:36:46 +0000 Subject: [PATCH 474/790] Bot Updating Templated Files --- .github/ISSUE_TEMPLATE/issue.bug.yml | 4 ++-- .github/workflows/external_trigger.yml | 2 +- .github/workflows/external_trigger_scheduler.yml | 2 +- .github/workflows/package_trigger.yml | 2 +- .github/workflows/package_trigger_scheduler.yml | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml index ce3d19af..cfff526e 100755 --- a/.github/ISSUE_TEMPLATE/issue.bug.yml +++ b/.github/ISSUE_TEMPLATE/issue.bug.yml @@ -67,10 +67,10 @@ body: - type: textarea attributes: description: | - Provide a full docker log, output of "docker logs linuxserver.io" + Provide a full docker log, output of "docker logs lidarr" label: Container logs placeholder: | - Output of `docker logs linuxserver.io` + Output of `docker logs lidarr` render: bash validations: required: true diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 679dcbc0..aab0c4d7 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -7,7 +7,7 @@ jobs: external-trigger-nightly: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 - name: External Trigger if: github.ref == 'refs/heads/nightly' diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 0bfbd11b..dc455e76 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: external-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 with: fetch-depth: '0' diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 0365e35a..9a214e0b 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -7,7 +7,7 @@ jobs: package-trigger-nightly: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 - name: Package Trigger if: github.ref == 'refs/heads/nightly' diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index af0a39b8..eb2e4af6 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -9,7 +9,7 @@ jobs: package-trigger-scheduler: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3.1.0 + - uses: actions/checkout@v4.1.1 with: fetch-depth: '0' From d27bab15b46585f6a0580a03f3e38208de5ba2c4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 23 Feb 2024 23:40:11 +0000 Subject: [PATCH 475/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 47cc3aef..58163222 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.0.4045 dotnet +Lidarr 2.2.0.4053 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 3b438fdb99a1674c6f14d3820c2f134ec3215e46 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Feb 2024 05:16:54 +0000 Subject: [PATCH 476/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 58163222..81148818 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.0.4053 dotnet +Lidarr 2.2.1.4061 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From fb1bdc5e60cbaf18659dff50d30f6b744442811a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 29 Feb 2024 05:39:57 +0000 Subject: [PATCH 477/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81148818..08d1d939 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.1.4061 dotnet +Lidarr 2.2.1.4062 dotnet MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From cd458b106bcf5e788c5c22a90b300511c76652e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 01:10:46 +0000 Subject: [PATCH 478/790] Bot Updating Package Versions --- package_versions.txt | 924 +++++++++++++++++++++---------------------- 1 file changed, 462 insertions(+), 462 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 08d1d939..2fc0b9ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,462 +1,462 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.123.33578 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc 5.4.3.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet -Ical.Net 1.0.0.0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.3.27908 dotnet -Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.1.4062 dotnet -MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2523.51912 dotnet -Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Features 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2523.52315 dotnet -Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2523.51912 dotnet -Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet -Microsoft.Win32.Primitives 6.0.2523.51912 dotnet -Microsoft.Win32.Registry 6.0.2523.51912 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 1.0.0.0 dotnet -MonoTorrent 2.0.7 dotnet -NLog v5.2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet -NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet -Polly 8.2.1.2874 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.2.1.2874 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.0.1.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2523.51912 dotnet -System.AppContext 6.0.2523.51912 dotnet -System.Buffers 6.0.2523.51912 dotnet -System.Collections 6.0.2523.51912 dotnet -System.Collections.Concurrent 6.0.2523.51912 dotnet -System.Collections.Immutable 6.0.2523.51912 dotnet -System.Collections.NonGeneric 6.0.2523.51912 dotnet -System.Collections.Specialized 6.0.2523.51912 dotnet -System.ComponentModel 6.0.2523.51912 dotnet -System.ComponentModel.Annotations 6.0.2523.51912 dotnet -System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet -System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet -System.ComponentModel.Primitives 6.0.2523.51912 dotnet -System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet -System.Configuration 6.0.2523.51912 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2523.51912 dotnet -System.Core 6.0.2523.51912 dotnet -System.Data 6.0.2523.51912 dotnet -System.Data.Common 6.0.2523.51912 dotnet -System.Data.DataSetExtensions 6.0.2523.51912 dotnet -System.Data.SQLite 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2523.51912 dotnet -System.Diagnostics.Debug 6.0.2523.51912 dotnet -System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet -System.Diagnostics.Process 6.0.2523.51912 dotnet -System.Diagnostics.StackTrace 6.0.2523.51912 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet -System.Diagnostics.Tools 6.0.2523.51912 dotnet -System.Diagnostics.TraceSource 6.0.2523.51912 dotnet -System.Diagnostics.Tracing 6.0.2523.51912 dotnet -System.Drawing 6.0.2523.51912 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2523.51912 dotnet -System.Dynamic.Runtime 6.0.2523.51912 dotnet -System.Formats.Asn1 6.0.2523.51912 dotnet -System.Globalization 6.0.2523.51912 dotnet -System.Globalization.Calendars 6.0.2523.51912 dotnet -System.Globalization.Extensions 6.0.2523.51912 dotnet -System.IO 6.0.2523.51912 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2523.51912 dotnet -System.IO.Compression.Brotli 6.0.2523.51912 dotnet -System.IO.Compression.FileSystem 6.0.2523.51912 dotnet -System.IO.Compression.ZipFile 6.0.2523.51912 dotnet -System.IO.FileSystem 6.0.2523.51912 dotnet -System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet -System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet -System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet -System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet -System.IO.IsolatedStorage 6.0.2523.51912 dotnet -System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2523.51912 dotnet -System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet -System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2523.51912 dotnet -System.Linq.Expressions 6.0.2523.51912 dotnet -System.Linq.Parallel 6.0.2523.51912 dotnet -System.Linq.Queryable 6.0.2523.51912 dotnet -System.Memory 6.0.2523.51912 dotnet -System.Net 6.0.2523.51912 dotnet -System.Net.Http 6.0.2523.51912 dotnet -System.Net.Http.Json 6.0.2523.51912 dotnet -System.Net.HttpListener 6.0.2523.51912 dotnet -System.Net.Mail 6.0.2523.51912 dotnet -System.Net.NameResolution 6.0.2523.51912 dotnet -System.Net.NetworkInformation 6.0.2523.51912 dotnet -System.Net.Ping 6.0.2523.51912 dotnet -System.Net.Primitives 6.0.2523.51912 dotnet -System.Net.Quic 6.0.2523.51912 dotnet -System.Net.Requests 6.0.2523.51912 dotnet -System.Net.Security 6.0.2523.51912 dotnet -System.Net.ServicePoint 6.0.2523.51912 dotnet -System.Net.Sockets 6.0.2523.51912 dotnet -System.Net.WebClient 6.0.2523.51912 dotnet -System.Net.WebHeaderCollection 6.0.2523.51912 dotnet -System.Net.WebProxy 6.0.2523.51912 dotnet -System.Net.WebSockets 6.0.2523.51912 dotnet -System.Net.WebSockets.Client 6.0.2523.51912 dotnet -System.Numerics 6.0.2523.51912 dotnet -System.Numerics.Vectors 6.0.2523.51912 dotnet -System.ObjectModel 6.0.2523.51912 dotnet -System.Private.CoreLib 6.0.2523.51912 dotnet -System.Private.DataContractSerialization 6.0.2523.51912 dotnet -System.Private.Uri 6.0.2523.51912 dotnet -System.Private.Xml 6.0.2523.51912 dotnet -System.Private.Xml.Linq 6.0.2523.51912 dotnet -System.Reflection 6.0.2523.51912 dotnet -System.Reflection.DispatchProxy 6.0.2523.51912 dotnet -System.Reflection.Emit 6.0.2523.51912 dotnet -System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet -System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet -System.Reflection.Extensions 6.0.2523.51912 dotnet -System.Reflection.Metadata 6.0.2523.51912 dotnet -System.Reflection.Primitives 6.0.2523.51912 dotnet -System.Reflection.TypeExtensions 6.0.2523.51912 dotnet -System.Resources.Reader 6.0.2523.51912 dotnet -System.Resources.ResourceManager 6.0.2523.51912 dotnet -System.Resources.Writer 6.0.2523.51912 dotnet -System.Runtime 6.0.2523.51912 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet -System.Runtime.Extensions 6.0.2523.51912 dotnet -System.Runtime.Handles 6.0.2523.51912 dotnet -System.Runtime.InteropServices 6.0.2523.51912 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet -System.Runtime.Intrinsics 6.0.2523.51912 dotnet -System.Runtime.Loader 6.0.2523.51912 dotnet -System.Runtime.Numerics 6.0.2523.51912 dotnet -System.Runtime.Serialization 6.0.2523.51912 dotnet -System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet -System.Runtime.Serialization.Json 6.0.2523.51912 dotnet -System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet -System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet -System.Security 6.0.2523.51912 dotnet -System.Security.AccessControl 6.0.2523.51912 dotnet -System.Security.Claims 6.0.2523.51912 dotnet -System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet -System.Security.Cryptography.Cng 6.0.2523.51912 dotnet -System.Security.Cryptography.Csp 6.0.2523.51912 dotnet -System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet -System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2523.51912 dotnet -System.Security.Principal.Windows 6.0.2523.51912 dotnet -System.Security.SecureString 6.0.2523.51912 dotnet -System.ServiceModel.Web 6.0.2523.51912 dotnet -System.ServiceProcess 6.0.2523.51912 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2523.51912 dotnet -System.Text.Encoding.CodePages 6.0.2523.51912 dotnet -System.Text.Encoding.Extensions 6.0.2523.51912 dotnet -System.Text.Encodings.Web 6.0.2523.51912 dotnet -System.Text.Json 6.0.2523.51912 dotnet -System.Text.RegularExpressions 6.0.2523.51912 dotnet -System.Threading 6.0.2523.51912 dotnet -System.Threading.Channels 6.0.2523.51912 dotnet -System.Threading.Overlapped 6.0.2523.51912 dotnet -System.Threading.Tasks 6.0.2523.51912 dotnet -System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet -System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet -System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet -System.Threading.Thread 6.0.2523.51912 dotnet -System.Threading.ThreadPool 6.0.2523.51912 dotnet -System.Threading.Timer 6.0.2523.51912 dotnet -System.Transactions 6.0.2523.51912 dotnet -System.Transactions.Local 6.0.2523.51912 dotnet -System.ValueTuple 6.0.2523.51912 dotnet -System.Web 6.0.2523.51912 dotnet -System.Web.HttpUtility 6.0.2523.51912 dotnet -System.Windows 6.0.2523.51912 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2523.51912 dotnet -System.Xml.Linq 6.0.2523.51912 dotnet -System.Xml.ReaderWriter 6.0.2523.51912 dotnet -System.Xml.Serialization 6.0.2523.51912 dotnet -System.Xml.XDocument 6.0.2523.51912 dotnet -System.Xml.XPath 6.0.2523.51912 dotnet -System.Xml.XPath.XDocument 6.0.2523.51912 dotnet -System.Xml.XmlDocument 6.0.2523.51912 dotnet -System.Xml.XmlSerializer 6.0.2523.51912 dotnet -TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2523.51912 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk -alpine-keys 2.4-r1 apk -alpine-release 3.18.6-r0 apk -aom-libs 3.6.1-r0 apk -apk-tools 2.14.0-r2 apk -bash 5.2.15-r5 apk -brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r5 apk -busybox-binsh 1.36.1-r5 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.17-r0 apk -coreutils 9.3-r2 apk -curl 8.5.0-r0 apk -ffmpeg-libavcodec 6.0.1-r0 apk -ffmpeg-libavformat 6.0.1-r0 apk -ffmpeg-libavutil 6.0.1-r0 apk -ffmpeg-libswresample 6.0.1-r0 apk -gmp 6.2.1-r3 apk -gnutls 3.8.3-r0 apk -hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -lame-libs 3.100-r5 apk -lcms2 2.15-r2 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbluray 1.3.4-r0 apk -libbsd 0.11.7-r1 apk -libbz2 1.0.8-r5 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk -libcurl 8.5.0-r0 apk -libdav1d 1.2.1-r0 apk -libdrm 2.4.115-r4 apk -libffi 3.4.4-r2 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgomp 12.2.1_git20220924-r10 apk -libgpg-error 1.47-r1 apk -libhwy 1.0.4-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libjxl 0.8.2-r0 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libogg 1.3.5-r4 apk -libopenmpt 0.7.2-r0 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.4-r0 apk -librist 0.2.7-r0 apk -libsodium 1.0.18-r3 apk -libsrt 1.5.2-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libtasn1 4.19.0-r1 apk -libtheora 1.1.1-r17 apk -libunistring 1.1-r1 apk -libva 2.18.0-r1 apk -libvdpau 1.5-r1 apk -libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r2 apk -libwebp 1.3.2-r0 apk -libx11 1.8.7-r0 apk -libxau 1.0.11-r2 apk -libxcb 1.15-r1 apk -libxdmcp 1.1.4-r2 apk -libxext 1.3.5-r2 apk -libxfixes 6.0.1-r2 apk -libxml2 2.11.7-r0 apk -libxslt 1.1.38-r0 apk -libzmq 4.3.4-r4 apk -linux-pam 1.5.2-r10 apk -mbedtls 2.28.7-r0 apk -mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.2523.51912 dotnet -musl 1.2.4-r2 apk -musl-utils 1.2.4-r2 apk -ncurses-terminfo-base 6.4_p20230506-r0 apk -netcat-openbsd 1.219-r1 apk -netstandard 6.0.2523.51912 dotnet -nettle 3.8.1-r2 apk -nghttp2-libs 1.57.0-r0 apk -numactl 2.0.16-r4 apk -onevpl-libs 2023.2.1-r0 apk -oniguruma 6.9.8-r1 apk -opus 1.4-r0 apk -p11-kit 0.24.1-r2 apk -procps-ng 4.0.4-r0 apk -readline 8.2.1-r1 apk -scanelf 1.3.7-r1 apk -shadow 4.13-r4 apk -skalibs 2.13.1.1-r1 apk -soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk -svt-av1-libs 1.6.0-r0 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk -wayland-libs-client 1.22.0-r2 apk -x264-libs 0.164_git20220602-r1 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r1 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +NAME VERSION TYPE +Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +Dapper 2.0.123.33578 dotnet +Diacritical 1.0.4.0 dotnet +DryIoc 5.4.3.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet (+19 duplicates) +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET 13.0.3.27908 dotnet +Kveer.XmlRPC 1.2.0.0 dotnet +Lidarr 2.2.1.4073 dotnet (+7 duplicates) +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet +Microsoft.CSharp 6.0.2523.51912 dotnet +Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Features 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.JSInterop 6.0.2523.52315 dotnet +Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.2523.51912 dotnet +Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet +Microsoft.Win32.Primitives 6.0.2523.51912 dotnet +Microsoft.Win32.Registry 6.0.2523.51912 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 1.0.0.0 dotnet +MonoTorrent 2.0.7 dotnet +NLog v5.2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog.Targets.Syslog 7.0.0.0 dotnet +NodaTime 3.0.0.0 dotnet +Npgsql 7.0.6.0 dotnet +Polly 8.2.1.2874 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +Polly.Core 8.2.1.2874 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.0.1.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.2523.51912 dotnet +System.AppContext 6.0.2523.51912 dotnet +System.Buffers 6.0.2523.51912 dotnet +System.Collections 6.0.2523.51912 dotnet +System.Collections.Concurrent 6.0.2523.51912 dotnet +System.Collections.Immutable 6.0.2523.51912 dotnet +System.Collections.NonGeneric 6.0.2523.51912 dotnet +System.Collections.Specialized 6.0.2523.51912 dotnet +System.ComponentModel 6.0.2523.51912 dotnet +System.ComponentModel.Annotations 6.0.2523.51912 dotnet +System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet +System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet +System.ComponentModel.Primitives 6.0.2523.51912 dotnet +System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet +System.Configuration 6.0.2523.51912 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.2523.51912 dotnet +System.Core 6.0.2523.51912 dotnet +System.Data 6.0.2523.51912 dotnet +System.Data.Common 6.0.2523.51912 dotnet +System.Data.DataSetExtensions 6.0.2523.51912 dotnet +System.Data.SQLite 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.2523.51912 dotnet +System.Diagnostics.Debug 6.0.2523.51912 dotnet +System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet +System.Diagnostics.Process 6.0.2523.51912 dotnet +System.Diagnostics.StackTrace 6.0.2523.51912 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet +System.Diagnostics.Tools 6.0.2523.51912 dotnet +System.Diagnostics.TraceSource 6.0.2523.51912 dotnet +System.Diagnostics.Tracing 6.0.2523.51912 dotnet +System.Drawing 6.0.2523.51912 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.2523.51912 dotnet +System.Dynamic.Runtime 6.0.2523.51912 dotnet +System.Formats.Asn1 6.0.2523.51912 dotnet +System.Globalization 6.0.2523.51912 dotnet +System.Globalization.Calendars 6.0.2523.51912 dotnet +System.Globalization.Extensions 6.0.2523.51912 dotnet +System.IO 6.0.2523.51912 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.2523.51912 dotnet +System.IO.Compression.Brotli 6.0.2523.51912 dotnet +System.IO.Compression.FileSystem 6.0.2523.51912 dotnet +System.IO.Compression.ZipFile 6.0.2523.51912 dotnet +System.IO.FileSystem 6.0.2523.51912 dotnet +System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet +System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet +System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet +System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet +System.IO.IsolatedStorage 6.0.2523.51912 dotnet +System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.2523.51912 dotnet +System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet +System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +System.Linq 6.0.2523.51912 dotnet +System.Linq.Expressions 6.0.2523.51912 dotnet +System.Linq.Parallel 6.0.2523.51912 dotnet +System.Linq.Queryable 6.0.2523.51912 dotnet +System.Memory 6.0.2523.51912 dotnet +System.Net 6.0.2523.51912 dotnet +System.Net.Http 6.0.2523.51912 dotnet +System.Net.Http.Json 6.0.2523.51912 dotnet +System.Net.HttpListener 6.0.2523.51912 dotnet +System.Net.Mail 6.0.2523.51912 dotnet +System.Net.NameResolution 6.0.2523.51912 dotnet +System.Net.NetworkInformation 6.0.2523.51912 dotnet +System.Net.Ping 6.0.2523.51912 dotnet +System.Net.Primitives 6.0.2523.51912 dotnet +System.Net.Quic 6.0.2523.51912 dotnet +System.Net.Requests 6.0.2523.51912 dotnet +System.Net.Security 6.0.2523.51912 dotnet +System.Net.ServicePoint 6.0.2523.51912 dotnet +System.Net.Sockets 6.0.2523.51912 dotnet +System.Net.WebClient 6.0.2523.51912 dotnet +System.Net.WebHeaderCollection 6.0.2523.51912 dotnet +System.Net.WebProxy 6.0.2523.51912 dotnet +System.Net.WebSockets 6.0.2523.51912 dotnet +System.Net.WebSockets.Client 6.0.2523.51912 dotnet +System.Numerics 6.0.2523.51912 dotnet +System.Numerics.Vectors 6.0.2523.51912 dotnet +System.ObjectModel 6.0.2523.51912 dotnet +System.Private.CoreLib 6.0.2523.51912 dotnet +System.Private.DataContractSerialization 6.0.2523.51912 dotnet +System.Private.Uri 6.0.2523.51912 dotnet +System.Private.Xml 6.0.2523.51912 dotnet +System.Private.Xml.Linq 6.0.2523.51912 dotnet +System.Reflection 6.0.2523.51912 dotnet +System.Reflection.DispatchProxy 6.0.2523.51912 dotnet +System.Reflection.Emit 6.0.2523.51912 dotnet +System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet +System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet +System.Reflection.Extensions 6.0.2523.51912 dotnet +System.Reflection.Metadata 6.0.2523.51912 dotnet +System.Reflection.Primitives 6.0.2523.51912 dotnet +System.Reflection.TypeExtensions 6.0.2523.51912 dotnet +System.Resources.Reader 6.0.2523.51912 dotnet +System.Resources.ResourceManager 6.0.2523.51912 dotnet +System.Resources.Writer 6.0.2523.51912 dotnet +System.Runtime 6.0.2523.51912 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet +System.Runtime.Extensions 6.0.2523.51912 dotnet +System.Runtime.Handles 6.0.2523.51912 dotnet +System.Runtime.InteropServices 6.0.2523.51912 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet +System.Runtime.Intrinsics 6.0.2523.51912 dotnet +System.Runtime.Loader 6.0.2523.51912 dotnet +System.Runtime.Numerics 6.0.2523.51912 dotnet +System.Runtime.Serialization 6.0.2523.51912 dotnet +System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet +System.Runtime.Serialization.Json 6.0.2523.51912 dotnet +System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet +System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet +System.Security 6.0.2523.51912 dotnet +System.Security.AccessControl 6.0.2523.51912 dotnet +System.Security.Claims 6.0.2523.51912 dotnet +System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet +System.Security.Cryptography.Cng 6.0.2523.51912 dotnet +System.Security.Cryptography.Csp 6.0.2523.51912 dotnet +System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet +System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.2523.51912 dotnet +System.Security.Principal.Windows 6.0.2523.51912 dotnet +System.Security.SecureString 6.0.2523.51912 dotnet +System.ServiceModel.Web 6.0.2523.51912 dotnet +System.ServiceProcess 6.0.2523.51912 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2523.51912 dotnet +System.Text.Encoding.CodePages 6.0.2523.51912 dotnet +System.Text.Encoding.Extensions 6.0.2523.51912 dotnet +System.Text.Encodings.Web 6.0.2523.51912 dotnet +System.Text.Json 6.0.2523.51912 dotnet +System.Text.RegularExpressions 6.0.2523.51912 dotnet +System.Threading 6.0.2523.51912 dotnet +System.Threading.Channels 6.0.2523.51912 dotnet +System.Threading.Overlapped 6.0.2523.51912 dotnet +System.Threading.Tasks 6.0.2523.51912 dotnet +System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet +System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet +System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet +System.Threading.Thread 6.0.2523.51912 dotnet +System.Threading.ThreadPool 6.0.2523.51912 dotnet +System.Threading.Timer 6.0.2523.51912 dotnet +System.Transactions 6.0.2523.51912 dotnet +System.Transactions.Local 6.0.2523.51912 dotnet +System.ValueTuple 6.0.2523.51912 dotnet +System.Web 6.0.2523.51912 dotnet +System.Web.HttpUtility 6.0.2523.51912 dotnet +System.Windows 6.0.2523.51912 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.2523.51912 dotnet +System.Xml.Linq 6.0.2523.51912 dotnet +System.Xml.ReaderWriter 6.0.2523.51912 dotnet +System.Xml.Serialization 6.0.2523.51912 dotnet +System.Xml.XDocument 6.0.2523.51912 dotnet +System.Xml.XPath 6.0.2523.51912 dotnet +System.Xml.XPath.XDocument 6.0.2523.51912 dotnet +System.Xml.XmlDocument 6.0.2523.51912 dotnet +System.Xml.XmlSerializer 6.0.2523.51912 dotnet +TagLib# 2.2.0.27 dotnet +WindowsBase 6.0.2523.51912 dotnet +alpine-baselayout 3.4.3-r1 apk +alpine-baselayout-data 3.4.3-r1 apk +alpine-keys 2.4-r1 apk +alpine-release 3.18.6-r0 apk +aom-libs 3.6.1-r0 apk +apk-tools 2.14.0-r2 apk +bash 5.2.15-r5 apk +brotli-libs 1.0.9-r14 apk +busybox 1.36.1-r5 apk +busybox-binsh 1.36.1-r5 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.17-r0 apk +coreutils 9.3-r2 apk +curl 8.5.0-r0 apk +ffmpeg-libavcodec 6.0.1-r0 apk +ffmpeg-libavformat 6.0.1-r0 apk +ffmpeg-libavutil 6.0.1-r0 apk +ffmpeg-libswresample 6.0.1-r0 apk +gmp 6.2.1-r3 apk +gnutls 3.8.3-r0 apk +hwdata-pci 0.370-r0 apk +icu-data-en 73.2-r2 apk +icu-libs 73.2-r2 apk +jq 1.6-r4 apk +lame-libs 3.100-r5 apk +lcms2 2.15-r2 apk +libacl 2.3.1-r3 apk +libattr 2.5.1-r4 apk +libbluray 1.3.4-r0 apk +libbsd 0.11.7-r1 apk +libbz2 1.0.8-r5 apk +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r5 apk +libcurl 8.5.0-r0 apk +libdav1d 1.2.1-r0 apk +libdrm 2.4.115-r4 apk +libffi 3.4.4-r2 apk +libgcc 12.2.1_git20220924-r10 apk +libgcrypt 1.10.2-r1 apk +libgomp 12.2.1_git20220924-r10 apk +libgpg-error 1.47-r1 apk +libhwy 1.0.4-r1 apk +libidn2 2.3.4-r1 apk +libintl 0.21.1-r7 apk +libjxl 0.8.2-r0 apk +libmd 1.0.4-r2 apk +libncursesw 6.4_p20230506-r0 apk +libogg 1.3.5-r4 apk +libopenmpt 0.7.2-r0 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.4-r0 apk +librist 0.2.7-r0 apk +libsodium 1.0.18-r3 apk +libsrt 1.5.2-r0 apk +libssh 0.10.5-r0 apk +libssl3 3.1.4-r5 apk +libstdc++ 12.2.1_git20220924-r10 apk +libtasn1 4.19.0-r1 apk +libtheora 1.1.1-r17 apk +libunistring 1.1-r1 apk +libva 2.18.0-r1 apk +libvdpau 1.5-r1 apk +libvorbis 1.3.7-r1 apk +libvpx 1.13.0-r2 apk +libwebp 1.3.2-r0 apk +libx11 1.8.7-r0 apk +libxau 1.0.11-r2 apk +libxcb 1.15-r1 apk +libxdmcp 1.1.4-r2 apk +libxext 1.3.5-r2 apk +libxfixes 6.0.1-r2 apk +libxml2 2.11.7-r0 apk +libxslt 1.1.38-r0 apk +libzmq 4.3.4-r4 apk +linux-pam 1.5.2-r10 apk +mbedtls 2.28.7-r0 apk +mpg123-libs 1.31.3-r1 apk +mscorlib 6.0.2523.51912 dotnet +musl 1.2.4-r2 apk +musl-utils 1.2.4-r2 apk +ncurses-terminfo-base 6.4_p20230506-r0 apk +netcat-openbsd 1.219-r1 apk +netstandard 6.0.2523.51912 dotnet +nettle 3.8.1-r2 apk +nghttp2-libs 1.57.0-r0 apk +numactl 2.0.16-r4 apk +onevpl-libs 2023.2.1-r0 apk +oniguruma 6.9.8-r1 apk +opus 1.4-r0 apk +p11-kit 0.24.1-r2 apk +procps-ng 4.0.4-r0 apk +readline 8.2.1-r1 apk +scanelf 1.3.7-r1 apk +shadow 4.13-r4 apk +skalibs 2.13.1.1-r1 apk +soxr 0.1.3-r5 apk +sqlite-libs 3.41.2-r3 apk +ssl_client 1.36.1-r5 apk +svt-av1-libs 1.6.0-r0 apk +tzdata 2024a-r0 apk +utmps-libs 0.1.2.1-r1 apk +wayland-libs-client 1.22.0-r2 apk +x264-libs 0.164_git20220602-r1 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r1 apk +xz-libs 5.4.3-r0 apk +zlib 1.2.13-r1 apk From a12c5de62cbb7e730ffff188a3108ac3e0fb7e0a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 12:12:50 +0000 Subject: [PATCH 479/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2fc0b9ce..cbe6b2e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.1.4073 dotnet (+7 duplicates) +Lidarr 2.2.2.4074 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f5c6722646409054c1096236e5b0139c838013ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Mar 2024 12:47:48 +0000 Subject: [PATCH 480/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cbe6b2e8..e95a2ad9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4074 dotnet (+7 duplicates) +Lidarr 2.2.2.4075 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 4e9c6286ff155f4ea4e42765efe19da6420d778a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Mar 2024 02:52:16 +0000 Subject: [PATCH 481/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e95a2ad9..bed36425 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4075 dotnet (+7 duplicates) +Lidarr 2.2.2.4076 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 4d67fccc28fe1cd6c4ec01cfa84141c836bc9784 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Mar 2024 09:20:48 +0000 Subject: [PATCH 482/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bed36425..6fccee8a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4076 dotnet (+7 duplicates) +Lidarr 2.2.2.4083 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 4f119b0710ec6acf11f91e590f2e8e080785d394 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 8 Mar 2024 10:24:30 +0000 Subject: [PATCH 483/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6fccee8a..81f51c0a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4083 dotnet (+7 duplicates) +Lidarr 2.2.2.4085 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 42b61eaccb4d1c5e3f5a3b0432ec8f6f4957814f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 9 Mar 2024 09:58:00 +0000 Subject: [PATCH 484/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 81f51c0a..e6dda176 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4085 dotnet (+7 duplicates) +Lidarr 2.2.2.4090 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 40eb0e209b2db6d794ddf1aff87b871c9936bf6d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Mar 2024 09:09:20 +0000 Subject: [PATCH 485/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e6dda176..8a176d7e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.2.4090 dotnet (+7 duplicates) +Lidarr 2.2.3.4092 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 4db38cd64526c1dd6b00a83d77cb280292f7847b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Mar 2024 11:54:03 +0000 Subject: [PATCH 486/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8a176d7e..9b2cd42f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.3.4092 dotnet (+7 duplicates) +Lidarr 2.2.3.4093 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -167,12 +167,12 @@ NLog.Extensions.Logging v5.0.4 5.0.4.221 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.6.0 dotnet -Polly 8.2.1.2874 dotnet +Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.2.1.2874 dotnet +Polly.Core 8.3.1.3207 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.0.1.0 dotnet +SixLabors.ImageSharp 3.1.3.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet From 1c1e9a2de4870de6be2361f23dc24a5f675ce3f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Mar 2024 17:54:31 +0000 Subject: [PATCH 487/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9b2cd42f..419461e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.3.4093 dotnet (+7 duplicates) +Lidarr 2.2.3.4095 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From ef6684333d8316fce125b8d0ce659cc5e8227b8c Mon Sep 17 00:00:00 2001 From: aptalca <541623+aptalca@users.noreply.github.com> Date: Sun, 10 Mar 2024 17:03:15 -0400 Subject: [PATCH 488/790] fix ci screenshot --- jenkins-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 39368afc..5bcde52d 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -23,7 +23,7 @@ repo_vars: - CI_SSL='false' - CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' - - CI_AUTH='user:password' + - CI_AUTH='' - CI_WEBPATH='/system/status' sponsor_links: - { name: "Lidarr", url: "https://opencollective.com/lidarr" } From a0bcd96ce60a317933d0040eff8f9b6f7880a698 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 10 Mar 2024 21:19:34 +0000 Subject: [PATCH 489/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 242903bd..628f4272 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_SSL='false' CI_DELAY='120' CI_DOCKERENV='TZ=US/Pacific' - CI_AUTH='user:password' + CI_AUTH='' CI_WEBPATH='/system/status' } stages { From c93bf3ab222c836df0d6855b1d42020e441d3373 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Mar 2024 02:02:17 +0000 Subject: [PATCH 490/790] Bot Updating Templated Files --- Jenkinsfile | 61 +++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 45 insertions(+), 16 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 628f4272..c08f0361 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -268,8 +268,15 @@ pipeline { set -e TEMPDIR=$(mktemp -d) docker pull ghcr.io/linuxserver/jenkins-builder:latest - docker run --rm -e CONTAINER_NAME=${CONTAINER_NAME} -e GITHUB_BRANCH=nightly -v ${TEMPDIR}:/ansible/jenkins ghcr.io/linuxserver/jenkins-builder:latest - # Stage 1 - Jenkinsfile update + # Cloned repo paths for templating: + # ${TEMPDIR}/docker-${CONTAINER_NAME}: Cloned branch nightly of ${LS_USER}/${LS_REPO} for running the jenkins builder on + # ${TEMPDIR}/repo/${LS_REPO}: Cloned branch nightly of ${LS_USER}/${LS_REPO} for commiting various templated file changes and pushing back to Github + # ${TEMPDIR}/docs/docker-documentation: Cloned docs repo for pushing docs updates to Github + # ${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 nightly --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 + 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 git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} @@ -281,13 +288,13 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Updating Jenkinsfile" + echo "Updating Jenkinsfile and exiting build, new one will trigger based on commit" rm -Rf ${TEMPDIR} exit 0 else echo "Jenkinsfile is up to date." fi - # Stage 2 - Delete old templates + 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" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then @@ -306,13 +313,13 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} - echo "Deleting old and deprecated templates" + echo "Deleting old/deprecated templates and exiting build, new one will trigger based on commit" rm -Rf ${TEMPDIR} exit 0 else echo "No templates to delete" fi - # Stage 3 - Update templates + echo "Starting Stage 3 - Update templates" CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} NEWHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) @@ -336,9 +343,14 @@ pipeline { git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating templates and exiting build, new one will trigger based on commit" + rm -Rf ${TEMPDIR} + exit 0 else echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "No templates to update" fi + echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub" mkdir -p ${TEMPDIR}/docs git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then @@ -346,6 +358,7 @@ pipeline { cd ${TEMPDIR}/docs/docker-documentation GH_DOCS_DEFAULT_BRANCH=$(git remote show origin | grep "HEAD branch:" | sed 's|.*HEAD branch: ||') git add docs/images/docker-${CONTAINER_NAME}.md + echo "Updating docs repo" git commit -m 'Bot Updating Documentation' git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} || \ @@ -353,6 +366,8 @@ pipeline { sleep $((RANDOM % MAXWAIT)) && \ git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH} --rebase && \ git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/docker-documentation.git ${GH_DOCS_DEFAULT_BRANCH}) + else + echo "Docs update not needed, skipping" fi mkdir -p ${TEMPDIR}/unraid git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates @@ -363,6 +378,7 @@ pipeline { sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-icon.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml fi if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml) || ("$(md5sum ${TEMPDIR}/unraid/templates/unraid/${CONTAINER_NAME}.xml | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml | awk '{ print $1 }')") ]]; then + 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 @@ -382,16 +398,27 @@ pipeline { sleep $((RANDOM % MAXWAIT)) && \ git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH} --rebase && \ git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/linuxserver/templates.git ${GH_TEMPLATES_DEFAULT_BRANCH}) + else + echo "No updates to Unraid template needed, skipping" fi - # Stage 4 - Sync Readme to Docker Hub if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]]; then - if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) > 25000 ]]; then + if [[ $(cat ${TEMPDIR}/docker-${CONTAINER_NAME}/README.md | wc -m) -gt 25000 ]]; then echo "Readme is longer than 25,000 characters. Syncing the lite version to Docker Hub" DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/README.lite" else echo "Syncing readme to Docker Hub" DH_README_SYNC_PATH="${TEMPDIR}/docker-${CONTAINER_NAME}/README.md" fi + if curl -s https://hub.docker.com/v2/namespaces/${DOCKERHUB_IMAGE%%/*}/repositories/${DOCKERHUB_IMAGE##*/}/tags | jq -r '.message' | grep -q 404; then + echo "Docker Hub endpoint doesn't exist. Creating endpoint first." + DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') + curl -s \ + -H "Authorization: JWT ${DH_TOKEN}" \ + -H "Content-Type: application/json" \ + -X POST \ + -d '{"name":"'${DOCKERHUB_IMAGE##*/}'", "namespace":"'${DOCKERHUB_IMAGE%%/*}'"}' \ + https://hub.docker.com/v2/repositories/ || : + fi DH_TOKEN=$(curl -d '{"username":"linuxserverci", "password":"'${DOCKERHUB_TOKEN}'"}' -H "Content-Type: application/json" -X POST https://hub.docker.com/v2/users/login | jq -r '.token') curl -s \ -H "Authorization: JWT ${DH_TOKEN}" \ @@ -456,14 +483,16 @@ pipeline { } steps{ sh '''curl -H "Content-Type: application/json" -H "Private-Token: ${GITLAB_TOKEN}" -X POST https://gitlab.com/api/v4/projects \ - -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ - "name":"'${LS_REPO}'", - "mirror":true,\ - "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ - "issues_access_level":"disabled",\ - "merge_requests_access_level":"disabled",\ - "repository_access_level":"enabled",\ - "visibility":"public"}' ''' + -d '{"namespace_id":'${GITLAB_NAMESPACE}',\ + "name":"'${LS_REPO}'", + "mirror":true,\ + "import_url":"https://github.com/linuxserver/'${LS_REPO}'.git",\ + "issues_access_level":"disabled",\ + "merge_requests_access_level":"disabled",\ + "repository_access_level":"enabled",\ + "visibility":"public"}' ''' + sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \ + -d "mirror=true&import_url=https://github.com/linuxserver/${LS_REPO}.git" ''' } } /* ############### From bb6d910962bd7b93d5bd3060f77cd9372d2e8197 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 14 Mar 2024 14:51:39 +0000 Subject: [PATCH 491/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 419461e4..dddeecd8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.3.4095 dotnet (+7 duplicates) +Lidarr 2.2.3.4098 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 0c8d4a411a19579a0da9cf65128bcf3e58a0c369 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Mar 2024 12:33:29 +0000 Subject: [PATCH 492/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dddeecd8..73b9dee9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.3.4098 dotnet (+7 duplicates) +Lidarr 2.2.4.4100 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 9ba5cb6a13aa5cf5af31464c31cd33b0eb63b088 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Mar 2024 01:59:03 +0000 Subject: [PATCH 493/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 73b9dee9..e1323e15 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -359,8 +359,8 @@ bash 5.2.15-r5 brotli-libs 1.0.9-r14 apk busybox 1.36.1-r5 apk busybox-binsh 1.36.1-r5 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk +ca-certificates 20240226-r0 apk +ca-certificates-bundle 20240226-r0 apk chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk cjson 1.7.17-r0 apk From a728b0433ba7888dbc9457893ec5d1ecef7139a5 Mon Sep 17 00:00:00 2001 From: TheSpad <git@spad.co.uk> Date: Wed, 20 Mar 2024 17:43:10 +0000 Subject: [PATCH 494/790] Rebase to 3.19 --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- readme-vars.yml | 14 +++++--------- 3 files changed, 7 insertions(+), 11 deletions(-) diff --git a/Dockerfile b/Dockerfile index f71c0aa2..b9a9d547 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.18 +FROM ghcr.io/linuxserver/baseimage-alpine:3.19 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 033c3c82..26b95b3a 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.18 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 # set version label ARG BUILD_DATE diff --git a/readme-vars.yml b/readme-vars.yml index 26db4c28..7a934f59 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -22,15 +22,10 @@ development_versions_items: # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional' param_container_name: "{{ project_name }}" -param_usage_include_env: true -param_env_vars: - - { env_var: "TZ", env_value: "Europe/London", desc: "Specify a timezone to use EG Europe/London." } -# optional env variables -opt_param_usage_include_env: false param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/appdata/config", desc: "Configuration files for Lidarr." } + - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Configuration files for Lidarr." } opt_param_usage_include_vols: true opt_param_volumes: - { vol_path: "/music", vol_host_path: "/path/to/music", desc: "Music files (See note in Application setup)." } @@ -44,20 +39,21 @@ app_setup_block_enabled: true app_setup_block: | Access the webui at `<your-ip>:8686`, for more information check out [Lidarr]({{ project_url }}). - Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. + Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on separate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. - Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. + Another item to keep in mind, is that within Lidarr itself, you should then map your download client folder to your Lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to separate your downloaded data types. ### Media folders We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. - Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. + Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. # changelog changelogs: + - { date: "20.03.24:", desc: "Rebase to Alpine 3.19." } - { date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18." } - { date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17." } - { date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3." } From 16e36e853c24e8bcf4406912ce9bd543f4ce620c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Mar 2024 19:17:15 +0000 Subject: [PATCH 495/790] Bot Updating Templated Files --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 42530c0e..c7572e20 100644 --- a/README.md +++ b/README.md @@ -71,15 +71,15 @@ This image provides various versions that are available via tags. Please read th Access the webui at `<your-ip>:8686`, for more information check out [Lidarr](https://github.com/lidarr/Lidarr). -Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on seperate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. +Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on separate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. -Another item to keep in mind, is that within lidarr itself, you should then map your download client folder to your lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to seperate your downloaded data types. +Another item to keep in mind, is that within Lidarr itself, you should then map your download client folder to your Lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to separate your downloaded data types. ### Media folders We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. -Use the optional paths if you dont understand, or dont want hardlinks/atomic moves. +Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. @@ -100,7 +100,7 @@ services: - PGID=1000 - TZ=Etc/UTC volumes: - - /path/to/appdata/config:/config + - /path/to/lidarr/config:/config - /path/to/music:/music #optional - /path/to/downloads:/downloads #optional ports: @@ -117,7 +117,7 @@ docker run -d \ -e PGID=1000 \ -e TZ=Etc/UTC \ -p 8686:8686 \ - -v /path/to/appdata/config:/config \ + -v /path/to/lidarr/config:/config \ -v /path/to/music:/music `#optional` \ -v /path/to/downloads:/downloads `#optional` \ --restart unless-stopped \ @@ -299,6 +299,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **20.03.24:** - Rebase to Alpine 3.19. * **06.06.23:** - Rebase nightly to Alpine 3.18. * **19.12.22:** - Rebase nightly to Alpine 3.17. * **27.10.22:** - Rebase nightly to Alpine 3.16, migrate to s6v3. From 4c3ddcbe8dbf8856cf422f395187490edc7518d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Mar 2024 19:20:31 +0000 Subject: [PATCH 496/790] Bot Updating Package Versions --- package_versions.txt | 1007 +++++++++++++++++++++++------------------- 1 file changed, 545 insertions(+), 462 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e1323e15..c83125ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,462 +1,545 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.123.33578 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc 5.4.3.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet (+19 duplicates) -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet -Ical.Net 1.0.0.0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.3.27908 dotnet -Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4100 dotnet (+7 duplicates) -MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2523.51912 dotnet -Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Features 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2523.52315 dotnet -Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2523.51912 dotnet -Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet -Microsoft.Win32.Primitives 6.0.2523.51912 dotnet -Microsoft.Win32.Registry 6.0.2523.51912 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 1.0.0.0 dotnet -MonoTorrent 2.0.7 dotnet -NLog v5.2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet -NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet -Polly 8.3.1.3207 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.3.1.3207 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.1.3.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2523.51912 dotnet -System.AppContext 6.0.2523.51912 dotnet -System.Buffers 6.0.2523.51912 dotnet -System.Collections 6.0.2523.51912 dotnet -System.Collections.Concurrent 6.0.2523.51912 dotnet -System.Collections.Immutable 6.0.2523.51912 dotnet -System.Collections.NonGeneric 6.0.2523.51912 dotnet -System.Collections.Specialized 6.0.2523.51912 dotnet -System.ComponentModel 6.0.2523.51912 dotnet -System.ComponentModel.Annotations 6.0.2523.51912 dotnet -System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet -System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet -System.ComponentModel.Primitives 6.0.2523.51912 dotnet -System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet -System.Configuration 6.0.2523.51912 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2523.51912 dotnet -System.Core 6.0.2523.51912 dotnet -System.Data 6.0.2523.51912 dotnet -System.Data.Common 6.0.2523.51912 dotnet -System.Data.DataSetExtensions 6.0.2523.51912 dotnet -System.Data.SQLite 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2523.51912 dotnet -System.Diagnostics.Debug 6.0.2523.51912 dotnet -System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet -System.Diagnostics.Process 6.0.2523.51912 dotnet -System.Diagnostics.StackTrace 6.0.2523.51912 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet -System.Diagnostics.Tools 6.0.2523.51912 dotnet -System.Diagnostics.TraceSource 6.0.2523.51912 dotnet -System.Diagnostics.Tracing 6.0.2523.51912 dotnet -System.Drawing 6.0.2523.51912 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2523.51912 dotnet -System.Dynamic.Runtime 6.0.2523.51912 dotnet -System.Formats.Asn1 6.0.2523.51912 dotnet -System.Globalization 6.0.2523.51912 dotnet -System.Globalization.Calendars 6.0.2523.51912 dotnet -System.Globalization.Extensions 6.0.2523.51912 dotnet -System.IO 6.0.2523.51912 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2523.51912 dotnet -System.IO.Compression.Brotli 6.0.2523.51912 dotnet -System.IO.Compression.FileSystem 6.0.2523.51912 dotnet -System.IO.Compression.ZipFile 6.0.2523.51912 dotnet -System.IO.FileSystem 6.0.2523.51912 dotnet -System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet -System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet -System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet -System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet -System.IO.IsolatedStorage 6.0.2523.51912 dotnet -System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2523.51912 dotnet -System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet -System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2523.51912 dotnet -System.Linq.Expressions 6.0.2523.51912 dotnet -System.Linq.Parallel 6.0.2523.51912 dotnet -System.Linq.Queryable 6.0.2523.51912 dotnet -System.Memory 6.0.2523.51912 dotnet -System.Net 6.0.2523.51912 dotnet -System.Net.Http 6.0.2523.51912 dotnet -System.Net.Http.Json 6.0.2523.51912 dotnet -System.Net.HttpListener 6.0.2523.51912 dotnet -System.Net.Mail 6.0.2523.51912 dotnet -System.Net.NameResolution 6.0.2523.51912 dotnet -System.Net.NetworkInformation 6.0.2523.51912 dotnet -System.Net.Ping 6.0.2523.51912 dotnet -System.Net.Primitives 6.0.2523.51912 dotnet -System.Net.Quic 6.0.2523.51912 dotnet -System.Net.Requests 6.0.2523.51912 dotnet -System.Net.Security 6.0.2523.51912 dotnet -System.Net.ServicePoint 6.0.2523.51912 dotnet -System.Net.Sockets 6.0.2523.51912 dotnet -System.Net.WebClient 6.0.2523.51912 dotnet -System.Net.WebHeaderCollection 6.0.2523.51912 dotnet -System.Net.WebProxy 6.0.2523.51912 dotnet -System.Net.WebSockets 6.0.2523.51912 dotnet -System.Net.WebSockets.Client 6.0.2523.51912 dotnet -System.Numerics 6.0.2523.51912 dotnet -System.Numerics.Vectors 6.0.2523.51912 dotnet -System.ObjectModel 6.0.2523.51912 dotnet -System.Private.CoreLib 6.0.2523.51912 dotnet -System.Private.DataContractSerialization 6.0.2523.51912 dotnet -System.Private.Uri 6.0.2523.51912 dotnet -System.Private.Xml 6.0.2523.51912 dotnet -System.Private.Xml.Linq 6.0.2523.51912 dotnet -System.Reflection 6.0.2523.51912 dotnet -System.Reflection.DispatchProxy 6.0.2523.51912 dotnet -System.Reflection.Emit 6.0.2523.51912 dotnet -System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet -System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet -System.Reflection.Extensions 6.0.2523.51912 dotnet -System.Reflection.Metadata 6.0.2523.51912 dotnet -System.Reflection.Primitives 6.0.2523.51912 dotnet -System.Reflection.TypeExtensions 6.0.2523.51912 dotnet -System.Resources.Reader 6.0.2523.51912 dotnet -System.Resources.ResourceManager 6.0.2523.51912 dotnet -System.Resources.Writer 6.0.2523.51912 dotnet -System.Runtime 6.0.2523.51912 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet -System.Runtime.Extensions 6.0.2523.51912 dotnet -System.Runtime.Handles 6.0.2523.51912 dotnet -System.Runtime.InteropServices 6.0.2523.51912 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet -System.Runtime.Intrinsics 6.0.2523.51912 dotnet -System.Runtime.Loader 6.0.2523.51912 dotnet -System.Runtime.Numerics 6.0.2523.51912 dotnet -System.Runtime.Serialization 6.0.2523.51912 dotnet -System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet -System.Runtime.Serialization.Json 6.0.2523.51912 dotnet -System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet -System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet -System.Security 6.0.2523.51912 dotnet -System.Security.AccessControl 6.0.2523.51912 dotnet -System.Security.Claims 6.0.2523.51912 dotnet -System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet -System.Security.Cryptography.Cng 6.0.2523.51912 dotnet -System.Security.Cryptography.Csp 6.0.2523.51912 dotnet -System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet -System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2523.51912 dotnet -System.Security.Principal.Windows 6.0.2523.51912 dotnet -System.Security.SecureString 6.0.2523.51912 dotnet -System.ServiceModel.Web 6.0.2523.51912 dotnet -System.ServiceProcess 6.0.2523.51912 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2523.51912 dotnet -System.Text.Encoding.CodePages 6.0.2523.51912 dotnet -System.Text.Encoding.Extensions 6.0.2523.51912 dotnet -System.Text.Encodings.Web 6.0.2523.51912 dotnet -System.Text.Json 6.0.2523.51912 dotnet -System.Text.RegularExpressions 6.0.2523.51912 dotnet -System.Threading 6.0.2523.51912 dotnet -System.Threading.Channels 6.0.2523.51912 dotnet -System.Threading.Overlapped 6.0.2523.51912 dotnet -System.Threading.Tasks 6.0.2523.51912 dotnet -System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet -System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet -System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet -System.Threading.Thread 6.0.2523.51912 dotnet -System.Threading.ThreadPool 6.0.2523.51912 dotnet -System.Threading.Timer 6.0.2523.51912 dotnet -System.Transactions 6.0.2523.51912 dotnet -System.Transactions.Local 6.0.2523.51912 dotnet -System.ValueTuple 6.0.2523.51912 dotnet -System.Web 6.0.2523.51912 dotnet -System.Web.HttpUtility 6.0.2523.51912 dotnet -System.Windows 6.0.2523.51912 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2523.51912 dotnet -System.Xml.Linq 6.0.2523.51912 dotnet -System.Xml.ReaderWriter 6.0.2523.51912 dotnet -System.Xml.Serialization 6.0.2523.51912 dotnet -System.Xml.XDocument 6.0.2523.51912 dotnet -System.Xml.XPath 6.0.2523.51912 dotnet -System.Xml.XPath.XDocument 6.0.2523.51912 dotnet -System.Xml.XmlDocument 6.0.2523.51912 dotnet -System.Xml.XmlSerializer 6.0.2523.51912 dotnet -TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2523.51912 dotnet -alpine-baselayout 3.4.3-r1 apk -alpine-baselayout-data 3.4.3-r1 apk -alpine-keys 2.4-r1 apk -alpine-release 3.18.6-r0 apk -aom-libs 3.6.1-r0 apk -apk-tools 2.14.0-r2 apk -bash 5.2.15-r5 apk -brotli-libs 1.0.9-r14 apk -busybox 1.36.1-r5 apk -busybox-binsh 1.36.1-r5 apk -ca-certificates 20240226-r0 apk -ca-certificates-bundle 20240226-r0 apk -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.17-r0 apk -coreutils 9.3-r2 apk -curl 8.5.0-r0 apk -ffmpeg-libavcodec 6.0.1-r0 apk -ffmpeg-libavformat 6.0.1-r0 apk -ffmpeg-libavutil 6.0.1-r0 apk -ffmpeg-libswresample 6.0.1-r0 apk -gmp 6.2.1-r3 apk -gnutls 3.8.3-r0 apk -hwdata-pci 0.370-r0 apk -icu-data-en 73.2-r2 apk -icu-libs 73.2-r2 apk -jq 1.6-r4 apk -lame-libs 3.100-r5 apk -lcms2 2.15-r2 apk -libacl 2.3.1-r3 apk -libattr 2.5.1-r4 apk -libbluray 1.3.4-r0 apk -libbsd 0.11.7-r1 apk -libbz2 1.0.8-r5 apk -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk -libcurl 8.5.0-r0 apk -libdav1d 1.2.1-r0 apk -libdrm 2.4.115-r4 apk -libffi 3.4.4-r2 apk -libgcc 12.2.1_git20220924-r10 apk -libgcrypt 1.10.2-r1 apk -libgomp 12.2.1_git20220924-r10 apk -libgpg-error 1.47-r1 apk -libhwy 1.0.4-r1 apk -libidn2 2.3.4-r1 apk -libintl 0.21.1-r7 apk -libjxl 0.8.2-r0 apk -libmd 1.0.4-r2 apk -libncursesw 6.4_p20230506-r0 apk -libogg 1.3.5-r4 apk -libopenmpt 0.7.2-r0 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.4-r0 apk -librist 0.2.7-r0 apk -libsodium 1.0.18-r3 apk -libsrt 1.5.2-r0 apk -libssh 0.10.5-r0 apk -libssl3 3.1.4-r5 apk -libstdc++ 12.2.1_git20220924-r10 apk -libtasn1 4.19.0-r1 apk -libtheora 1.1.1-r17 apk -libunistring 1.1-r1 apk -libva 2.18.0-r1 apk -libvdpau 1.5-r1 apk -libvorbis 1.3.7-r1 apk -libvpx 1.13.0-r2 apk -libwebp 1.3.2-r0 apk -libx11 1.8.7-r0 apk -libxau 1.0.11-r2 apk -libxcb 1.15-r1 apk -libxdmcp 1.1.4-r2 apk -libxext 1.3.5-r2 apk -libxfixes 6.0.1-r2 apk -libxml2 2.11.7-r0 apk -libxslt 1.1.38-r0 apk -libzmq 4.3.4-r4 apk -linux-pam 1.5.2-r10 apk -mbedtls 2.28.7-r0 apk -mpg123-libs 1.31.3-r1 apk -mscorlib 6.0.2523.51912 dotnet -musl 1.2.4-r2 apk -musl-utils 1.2.4-r2 apk -ncurses-terminfo-base 6.4_p20230506-r0 apk -netcat-openbsd 1.219-r1 apk -netstandard 6.0.2523.51912 dotnet -nettle 3.8.1-r2 apk -nghttp2-libs 1.57.0-r0 apk -numactl 2.0.16-r4 apk -onevpl-libs 2023.2.1-r0 apk -oniguruma 6.9.8-r1 apk -opus 1.4-r0 apk -p11-kit 0.24.1-r2 apk -procps-ng 4.0.4-r0 apk -readline 8.2.1-r1 apk -scanelf 1.3.7-r1 apk -shadow 4.13-r4 apk -skalibs 2.13.1.1-r1 apk -soxr 0.1.3-r5 apk -sqlite-libs 3.41.2-r3 apk -ssl_client 1.36.1-r5 apk -svt-av1-libs 1.6.0-r0 apk -tzdata 2024a-r0 apk -utmps-libs 0.1.2.1-r1 apk -wayland-libs-client 1.22.0-r2 apk -x264-libs 0.164_git20220602-r1 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r1 apk -xz-libs 5.4.3-r0 apk -zlib 1.2.13-r1 apk +NAME VERSION TYPE +Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +Dapper 2.0.123.33578 dotnet +Diacritical 1.0.4.0 dotnet +DryIoc 5.4.3.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet (+19 duplicates) +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET 13.0.3.27908 dotnet +Kveer.XmlRPC 1.2.0.0 dotnet +Lidarr 2.2.4.4100 dotnet (+7 duplicates) +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet +Microsoft.CSharp 6.0.2523.51912 dotnet +Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Features 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization 6.0.2523.52315 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.JSInterop 6.0.2523.52315 dotnet +Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.2523.51912 dotnet +Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet +Microsoft.Win32.Primitives 6.0.2523.51912 dotnet +Microsoft.Win32.Registry 6.0.2523.51912 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 1.0.0.0 dotnet +MonoTorrent 2.0.7 dotnet +NLog v5.2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog.Targets.Syslog 7.0.0.0 dotnet +NodaTime 3.0.0.0 dotnet +Npgsql 7.0.6.0 dotnet +Polly 8.3.1.3207 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +Polly.Core 8.3.1.3207 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.1.3.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.2523.51912 dotnet +System.AppContext 6.0.2523.51912 dotnet +System.Buffers 6.0.2523.51912 dotnet +System.Collections 6.0.2523.51912 dotnet +System.Collections.Concurrent 6.0.2523.51912 dotnet +System.Collections.Immutable 6.0.2523.51912 dotnet +System.Collections.NonGeneric 6.0.2523.51912 dotnet +System.Collections.Specialized 6.0.2523.51912 dotnet +System.ComponentModel 6.0.2523.51912 dotnet +System.ComponentModel.Annotations 6.0.2523.51912 dotnet +System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet +System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet +System.ComponentModel.Primitives 6.0.2523.51912 dotnet +System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet +System.Configuration 6.0.2523.51912 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.2523.51912 dotnet +System.Core 6.0.2523.51912 dotnet +System.Data 6.0.2523.51912 dotnet +System.Data.Common 6.0.2523.51912 dotnet +System.Data.DataSetExtensions 6.0.2523.51912 dotnet +System.Data.SQLite 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.2523.51912 dotnet +System.Diagnostics.Debug 6.0.2523.51912 dotnet +System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet +System.Diagnostics.Process 6.0.2523.51912 dotnet +System.Diagnostics.StackTrace 6.0.2523.51912 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet +System.Diagnostics.Tools 6.0.2523.51912 dotnet +System.Diagnostics.TraceSource 6.0.2523.51912 dotnet +System.Diagnostics.Tracing 6.0.2523.51912 dotnet +System.Drawing 6.0.2523.51912 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.2523.51912 dotnet +System.Dynamic.Runtime 6.0.2523.51912 dotnet +System.Formats.Asn1 6.0.2523.51912 dotnet +System.Globalization 6.0.2523.51912 dotnet +System.Globalization.Calendars 6.0.2523.51912 dotnet +System.Globalization.Extensions 6.0.2523.51912 dotnet +System.IO 6.0.2523.51912 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.2523.51912 dotnet +System.IO.Compression.Brotli 6.0.2523.51912 dotnet +System.IO.Compression.FileSystem 6.0.2523.51912 dotnet +System.IO.Compression.ZipFile 6.0.2523.51912 dotnet +System.IO.FileSystem 6.0.2523.51912 dotnet +System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet +System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet +System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet +System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet +System.IO.IsolatedStorage 6.0.2523.51912 dotnet +System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.2523.51912 dotnet +System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet +System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +System.Linq 6.0.2523.51912 dotnet +System.Linq.Expressions 6.0.2523.51912 dotnet +System.Linq.Parallel 6.0.2523.51912 dotnet +System.Linq.Queryable 6.0.2523.51912 dotnet +System.Memory 6.0.2523.51912 dotnet +System.Net 6.0.2523.51912 dotnet +System.Net.Http 6.0.2523.51912 dotnet +System.Net.Http.Json 6.0.2523.51912 dotnet +System.Net.HttpListener 6.0.2523.51912 dotnet +System.Net.Mail 6.0.2523.51912 dotnet +System.Net.NameResolution 6.0.2523.51912 dotnet +System.Net.NetworkInformation 6.0.2523.51912 dotnet +System.Net.Ping 6.0.2523.51912 dotnet +System.Net.Primitives 6.0.2523.51912 dotnet +System.Net.Quic 6.0.2523.51912 dotnet +System.Net.Requests 6.0.2523.51912 dotnet +System.Net.Security 6.0.2523.51912 dotnet +System.Net.ServicePoint 6.0.2523.51912 dotnet +System.Net.Sockets 6.0.2523.51912 dotnet +System.Net.WebClient 6.0.2523.51912 dotnet +System.Net.WebHeaderCollection 6.0.2523.51912 dotnet +System.Net.WebProxy 6.0.2523.51912 dotnet +System.Net.WebSockets 6.0.2523.51912 dotnet +System.Net.WebSockets.Client 6.0.2523.51912 dotnet +System.Numerics 6.0.2523.51912 dotnet +System.Numerics.Vectors 6.0.2523.51912 dotnet +System.ObjectModel 6.0.2523.51912 dotnet +System.Private.CoreLib 6.0.2523.51912 dotnet +System.Private.DataContractSerialization 6.0.2523.51912 dotnet +System.Private.Uri 6.0.2523.51912 dotnet +System.Private.Xml 6.0.2523.51912 dotnet +System.Private.Xml.Linq 6.0.2523.51912 dotnet +System.Reflection 6.0.2523.51912 dotnet +System.Reflection.DispatchProxy 6.0.2523.51912 dotnet +System.Reflection.Emit 6.0.2523.51912 dotnet +System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet +System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet +System.Reflection.Extensions 6.0.2523.51912 dotnet +System.Reflection.Metadata 6.0.2523.51912 dotnet +System.Reflection.Primitives 6.0.2523.51912 dotnet +System.Reflection.TypeExtensions 6.0.2523.51912 dotnet +System.Resources.Reader 6.0.2523.51912 dotnet +System.Resources.ResourceManager 6.0.2523.51912 dotnet +System.Resources.Writer 6.0.2523.51912 dotnet +System.Runtime 6.0.2523.51912 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet +System.Runtime.Extensions 6.0.2523.51912 dotnet +System.Runtime.Handles 6.0.2523.51912 dotnet +System.Runtime.InteropServices 6.0.2523.51912 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet +System.Runtime.Intrinsics 6.0.2523.51912 dotnet +System.Runtime.Loader 6.0.2523.51912 dotnet +System.Runtime.Numerics 6.0.2523.51912 dotnet +System.Runtime.Serialization 6.0.2523.51912 dotnet +System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet +System.Runtime.Serialization.Json 6.0.2523.51912 dotnet +System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet +System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet +System.Security 6.0.2523.51912 dotnet +System.Security.AccessControl 6.0.2523.51912 dotnet +System.Security.Claims 6.0.2523.51912 dotnet +System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet +System.Security.Cryptography.Cng 6.0.2523.51912 dotnet +System.Security.Cryptography.Csp 6.0.2523.51912 dotnet +System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet +System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.2523.51912 dotnet +System.Security.Principal.Windows 6.0.2523.51912 dotnet +System.Security.SecureString 6.0.2523.51912 dotnet +System.ServiceModel.Web 6.0.2523.51912 dotnet +System.ServiceProcess 6.0.2523.51912 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2523.51912 dotnet +System.Text.Encoding.CodePages 6.0.2523.51912 dotnet +System.Text.Encoding.Extensions 6.0.2523.51912 dotnet +System.Text.Encodings.Web 6.0.2523.51912 dotnet +System.Text.Json 6.0.2523.51912 dotnet +System.Text.RegularExpressions 6.0.2523.51912 dotnet +System.Threading 6.0.2523.51912 dotnet +System.Threading.Channels 6.0.2523.51912 dotnet +System.Threading.Overlapped 6.0.2523.51912 dotnet +System.Threading.Tasks 6.0.2523.51912 dotnet +System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet +System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet +System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet +System.Threading.Thread 6.0.2523.51912 dotnet +System.Threading.ThreadPool 6.0.2523.51912 dotnet +System.Threading.Timer 6.0.2523.51912 dotnet +System.Transactions 6.0.2523.51912 dotnet +System.Transactions.Local 6.0.2523.51912 dotnet +System.ValueTuple 6.0.2523.51912 dotnet +System.Web 6.0.2523.51912 dotnet +System.Web.HttpUtility 6.0.2523.51912 dotnet +System.Windows 6.0.2523.51912 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.2523.51912 dotnet +System.Xml.Linq 6.0.2523.51912 dotnet +System.Xml.ReaderWriter 6.0.2523.51912 dotnet +System.Xml.Serialization 6.0.2523.51912 dotnet +System.Xml.XDocument 6.0.2523.51912 dotnet +System.Xml.XPath 6.0.2523.51912 dotnet +System.Xml.XPath.XDocument 6.0.2523.51912 dotnet +System.Xml.XmlDocument 6.0.2523.51912 dotnet +System.Xml.XmlSerializer 6.0.2523.51912 dotnet +TagLib# 2.2.0.27 dotnet +WindowsBase 6.0.2523.51912 dotnet +alpine-baselayout 3.4.3-r2 apk +alpine-baselayout-data 3.4.3-r2 apk +alpine-keys 2.4-r1 apk +alpine-release 3.19.1-r0 apk +anyhow 1.0.71 rust-crate +aom-libs 3.7.1-r0 apk +apk-tools 2.14.0-r5 apk +arg_enum_proc_macro 0.3.2 rust-crate +arrayvec 0.7.2 rust-crate +av-metrics 0.9.0 rust-crate +av1-grain 0.2.2 rust-crate +bash 5.2.21-r0 apk +bitflags 1.3.2 rust-crate +bitstream-io 1.6.0 rust-crate +brotli-libs 1.1.0-r1 apk +busybox 1.36.1-r15 apk +busybox-binsh 1.36.1-r15 apk +c-ares 1.24.0-r1 apk +ca-certificates 20230506-r0 apk +ca-certificates-bundle 20230506-r0 apk +cfg-if 1.0.0 rust-crate +chromaprint 1.5.1-r6 apk +chromaprint-libs 1.5.1-r6 apk +cjson 1.7.17-r0 apk +clap 4.0.32 rust-crate +clap_complete 4.0.7 rust-crate +clap_derive 4.0.21 rust-crate +clap_lex 0.3.0 rust-crate +console 0.15.5 rust-crate +coreutils 9.4-r2 apk +coreutils-env 9.4-r2 apk +coreutils-fmt 9.4-r2 apk +coreutils-sha512sum 9.4-r2 apk +crossbeam 0.8.2 rust-crate +crossbeam-channel 0.5.8 rust-crate +crossbeam-deque 0.8.3 rust-crate +crossbeam-epoch 0.9.14 rust-crate +crossbeam-queue 0.3.8 rust-crate +crossbeam-utils 0.8.15 rust-crate +curl 8.5.0-r0 apk +either 1.8.1 rust-crate +fern 0.6.2 rust-crate +ffmpeg-libavcodec 6.1.1-r0 apk +ffmpeg-libavformat 6.1.1-r0 apk +ffmpeg-libavutil 6.1.1-r0 apk +ffmpeg-libswresample 6.1.1-r0 apk +getrandom 0.2.9 rust-crate +heck 0.4.1 rust-crate +hwdata-pci 0.377.2-r0 apk +icu-data-en 74.1-r0 apk +icu-libs 74.1-r0 apk +interpolate_name 0.2.3 rust-crate +io-lifetimes 1.0.10 rust-crate +is-terminal 0.4.7 rust-crate +itertools 0.10.5 rust-crate +ivf 0.1.2 rust-crate +jq 1.7.1-r0 apk +lab 0.11.0 rust-crate +lame-libs 3.100-r5 apk +lazy_static 1.4.0 rust-crate +lcms2 2.15-r4 apk +libSvtAv1Enc 1.7.0-r0 apk +libacl 2.3.1-r4 apk +libattr 2.5.1-r5 apk +libbluray 1.3.4-r1 apk +libbsd 0.11.7-r3 apk +libbz2 1.0.8-r6 apk +libc 0.2.144 rust-crate +libc-utils 0.7.2-r5 apk +libcrypto3 3.1.4-r5 apk +libcurl 8.5.0-r0 apk +libdav1d 1.3.0-r1 apk +libdrm 2.4.118-r0 apk +libffi 3.4.4-r3 apk +libgcc 13.2.1_git20231014-r0 apk +libgcrypt 1.10.3-r0 apk +libgomp 13.2.1_git20231014-r0 apk +libgpg-error 1.47-r2 apk +libhwy 1.0.7-r0 apk +libidn2 2.3.4-r4 apk +libintl 0.22.3-r0 apk +libjxl 0.8.2-r0 apk +libmd 1.1.0-r0 apk +libncursesw 6.4_p20231125-r0 apk +libogg 1.3.5-r5 apk +libopenmpt 0.7.3-r1 apk +libpciaccess 0.17-r2 apk +libproc2 4.0.4-r0 apk +librist 0.2.10-r0 apk +libsharpyuv 1.3.2-r0 apk +libsodium 1.0.19-r0 apk +libsrt 1.5.3-r0 apk +libssh 0.10.6-r0 apk +libssl3 3.1.4-r5 apk +libstdc++ 13.2.1_git20231014-r0 apk +libtheora 1.1.1-r18 apk +libunistring 1.1-r2 apk +libva 2.20.0-r0 apk +libvdpau 1.5-r2 apk +libvorbis 1.3.7-r2 apk +libvpx 1.13.1-r0 apk +libwebp 1.3.2-r0 apk +libwebpmux 1.3.2-r0 apk +libx11 1.8.7-r0 apk +libxau 1.0.11-r3 apk +libxcb 1.16-r0 apk +libxdmcp 1.1.4-r3 apk +libxext 1.3.5-r3 apk +libxfixes 6.0.1-r3 apk +libxml2 2.11.7-r0 apk +libxslt 1.1.39-r0 apk +libzmq 4.3.5-r2 apk +linux-pam 1.5.3-r7 apk +linux-raw-sys 0.3.7 rust-crate +log 0.4.17 rust-crate +maybe-rayon 0.1.1 rust-crate +mbedtls 2.28.7-r0 apk +memchr 2.5.0 rust-crate +memoffset 0.8.0 rust-crate +minimal-lexical 0.2.1 rust-crate +mpg123-libs 1.32.3-r0 apk +mscorlib 6.0.2523.51912 dotnet +musl 1.2.4_git20230717-r4 apk +musl-utils 1.2.4_git20230717-r4 apk +ncurses-terminfo-base 6.4_p20231125-r0 apk +netcat-openbsd 1.226-r0 apk +netstandard 6.0.2523.51912 dotnet +new_debug_unreachable 1.0.4 rust-crate +nghttp2-libs 1.58.0-r0 apk +nom 7.1.3 rust-crate +noop_proc_macro 0.3.0 rust-crate +num-bigint 0.4.3 rust-crate +num-derive 0.3.3 rust-crate +num-integer 0.1.45 rust-crate +num-rational 0.4.1 rust-crate +num-traits 0.2.15 rust-crate +num_cpus 1.15.0 rust-crate +numactl 2.0.16-r4 apk +once_cell 1.17.1 rust-crate +onevpl-libs 2023.3.1-r2 apk +oniguruma 6.9.9-r0 apk +opus 1.4-r0 apk +os_str_bytes 6.5.0 rust-crate +paste 1.0.12 rust-crate +ppv-lite86 0.2.17 rust-crate +proc-macro-error 1.0.4 rust-crate +proc-macro-error-attr 1.0.4 rust-crate +proc-macro2 1.0.57 rust-crate +procps-ng 4.0.4-r0 apk +quote 1.0.27 rust-crate +rand 0.8.5 rust-crate +rand_chacha 0.3.1 rust-crate +rand_core 0.6.4 rust-crate +rav1e 0.6.6 rust-crate +rav1e-libs 0.6.6-r2 apk +rayon 1.7.0 rust-crate +rayon-core 1.11.0 rust-crate +readline 8.2.1-r2 apk +rust_hawktracer 0.7.0 rust-crate +rust_hawktracer_normal_macro 0.4.1 rust-crate +rust_hawktracer_proc_macro 0.4.1 rust-crate +rustix 0.37.19 rust-crate +scan_fmt 0.2.6 rust-crate +scanelf 1.3.7-r2 apk +scopeguard 1.1.0 rust-crate +serde 1.0.163 rust-crate +serde_derive 1.0.163 rust-crate +shadow 4.14.2-r0 apk +signal-hook 0.3.15 rust-crate +signal-hook-registry 1.4.1 rust-crate +simd_helpers 0.1.0 rust-crate +skalibs 2.14.0.1-r0 apk +soxr 0.1.3-r7 apk +sqlite-libs 3.44.2-r0 apk +ssl_client 1.36.1-r15 apk +syn 1.0.109 rust-crate +syn 2.0.16 rust-crate +termcolor 1.2.0 rust-crate +terminal_size 0.2.6 rust-crate +thiserror 1.0.40 rust-crate +thiserror-impl 1.0.40 rust-crate +tzdata 2024a-r0 apk +unicode-ident 1.0.8 rust-crate +unicode-width 0.1.10 rust-crate +utmps-libs 0.1.2.2-r0 apk +v_frame 0.3.3 rust-crate +wayland-libs-client 1.22.0-r4 apk +x264-libs 0.164_git20231001-r0 apk +x265-libs 3.5-r4 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r2 apk +xz-libs 5.4.5-r0 apk +y4m 0.8.0 rust-crate +zlib 1.3.1-r0 apk From 603c9504c8ce2546b12a884a6932b9b457681861 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Mar 2024 02:03:20 +0000 Subject: [PATCH 497/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c83125ef..72d5d9c0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -367,8 +367,8 @@ brotli-libs 1.1.0-r1 busybox 1.36.1-r15 apk busybox-binsh 1.36.1-r15 apk c-ares 1.24.0-r1 apk -ca-certificates 20230506-r0 apk -ca-certificates-bundle 20230506-r0 apk +ca-certificates 20240226-r0 apk +ca-certificates-bundle 20240226-r0 apk cfg-if 1.0.0 rust-crate chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk From 4bc4d801347a1fa9e7be3dc2bb9ac855d71c73e7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Mar 2024 15:04:39 +0000 Subject: [PATCH 498/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 72d5d9c0..7252c900 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4100 dotnet (+7 duplicates) +Lidarr 2.2.4.4115 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -366,7 +366,7 @@ bitstream-io 1.6.0 brotli-libs 1.1.0-r1 apk busybox 1.36.1-r15 apk busybox-binsh 1.36.1-r15 apk -c-ares 1.24.0-r1 apk +c-ares 1.27.0-r0 apk ca-certificates 20240226-r0 apk ca-certificates-bundle 20240226-r0 apk cfg-if 1.0.0 rust-crate @@ -465,7 +465,7 @@ linux-pam 1.5.3-r7 linux-raw-sys 0.3.7 rust-crate log 0.4.17 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls 2.28.7-r0 apk +mbedtls 2.28.8-r0 apk memchr 2.5.0 rust-crate memoffset 0.8.0 rust-crate minimal-lexical 0.2.1 rust-crate From 2906ebb0f76fab8f5b92f54c692af6f3869dd98f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 Mar 2024 18:47:43 +0000 Subject: [PATCH 499/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7252c900..4d40c4ce 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4115 dotnet (+7 duplicates) +Lidarr 2.2.4.4116 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From d500e71a2aa592bf458f7f028e56087f74ef03eb Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 04:26:33 +0000 Subject: [PATCH 500/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4d40c4ce..9bde43d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4116 dotnet (+7 duplicates) +Lidarr 2.2.4.4120 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 05be7e0ad3ac00da87eb368ea4f8225efa8f0d82 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 16:40:05 +0000 Subject: [PATCH 501/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9bde43d3..820bb249 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4120 dotnet (+7 duplicates) +Lidarr 2.2.4.4125 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -355,7 +355,7 @@ alpine-keys 2.4-r1 alpine-release 3.19.1-r0 apk anyhow 1.0.71 rust-crate aom-libs 3.7.1-r0 apk -apk-tools 2.14.0-r5 apk +apk-tools 2.14.3-r1 apk arg_enum_proc_macro 0.3.2 rust-crate arrayvec 0.7.2 rust-crate av-metrics 0.9.0 rust-crate From adcf241d21b4b2ec4446e379285bc8e5731d4609 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 6 Apr 2024 17:00:11 +0000 Subject: [PATCH 502/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 820bb249..6922b434 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4125 dotnet (+7 duplicates) +Lidarr 2.2.4.4128 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From e8bfda4876f21a2e8150daf43c89ff14805046be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Apr 2024 00:42:25 +0000 Subject: [PATCH 503/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6922b434..c089228c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4128 dotnet (+7 duplicates) +Lidarr 2.2.4.4130 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 6800745b01bc03aa39785746115bde9157aa2e58 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 8 Apr 2024 16:04:50 +0000 Subject: [PATCH 504/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c089228c..de87cdaa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.4.4130 dotnet (+7 duplicates) +Lidarr 2.2.5.4133 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From d6ea24a439e51ca0d9b37e8042cd741b638d72e8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Apr 2024 02:03:20 +0000 Subject: [PATCH 505/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index de87cdaa..ad7b41c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -418,7 +418,7 @@ libbsd 0.11.7-r3 libbz2 1.0.8-r6 apk libc 0.2.144 rust-crate libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r5 apk +libcrypto3 3.1.4-r6 apk libcurl 8.5.0-r0 apk libdav1d 1.3.0-r1 apk libdrm 2.4.118-r0 apk @@ -442,7 +442,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.1.4-r5 apk +libssl3 3.1.4-r6 apk libstdc++ 13.2.1_git20231014-r0 apk libtheora 1.1.1-r18 apk libunistring 1.1-r2 apk From 3348dacdb799579f42971cd71b11245c4e6eb18c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Apr 2024 05:00:30 +0000 Subject: [PATCH 506/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ad7b41c3..8101a5d5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.5.4133 dotnet (+7 duplicates) +Lidarr 2.2.5.4138 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From f979388068eb1e6afa6590a42ec196706d9d9fa2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 11 Apr 2024 20:57:57 +0000 Subject: [PATCH 507/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8101a5d5..2c39ba9c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.5.4138 dotnet (+7 duplicates) +Lidarr 2.2.5.4139 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 8afb1fdf4f1c9929538e948c84f51cb066cb3ec2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Apr 2024 13:17:55 +0000 Subject: [PATCH 508/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2c39ba9c..ce92851d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.2.5.4139 dotnet (+7 duplicates) +Lidarr 2.3.0.4143 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From 632f8f1e8f56b3ccd52142ad0e08972bb1bd1ca4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Apr 2024 05:46:33 +0000 Subject: [PATCH 509/790] Bot Updating Package Versions --- package_versions.txt | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ce92851d..f4b30392 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.3.0.4143 dotnet (+7 duplicates) +Lidarr 2.3.0.4156 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet @@ -172,7 +172,7 @@ Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22 Polly.Core 8.3.1.3207 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.1.3.0 dotnet +SixLabors.ImageSharp 3.1.4.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet @@ -355,7 +355,7 @@ alpine-keys 2.4-r1 alpine-release 3.19.1-r0 apk anyhow 1.0.71 rust-crate aom-libs 3.7.1-r0 apk -apk-tools 2.14.3-r1 apk +apk-tools 2.14.4-r0 apk arg_enum_proc_macro 0.3.2 rust-crate arrayvec 0.7.2 rust-crate av-metrics 0.9.0 rust-crate @@ -395,6 +395,7 @@ ffmpeg-libavcodec 6.1.1-r0 ffmpeg-libavformat 6.1.1-r0 apk ffmpeg-libavutil 6.1.1-r0 apk ffmpeg-libswresample 6.1.1-r0 apk +findutils 4.9.0-r5 apk getrandom 0.2.9 rust-crate heck 0.4.1 rust-crate hwdata-pci 0.377.2-r0 apk From b5dba13d0b7d95fcbcff8382dd42aefafdf978f7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 20 Apr 2024 19:20:22 +0000 Subject: [PATCH 510/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f4b30392..e620cc44 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ Ical.Net 1.0.0.0 ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.3.0.4156 dotnet (+7 duplicates) +Lidarr 2.3.0.4159 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2523.52315 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet From a282f9bc4ec3fd85ce36a7ae1937dd75d379621d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 22 Apr 2024 06:38:01 +0000 Subject: [PATCH 511/790] Bot Updating Package Versions --- package_versions.txt | 519 +++++++++++++++++++++---------------------- 1 file changed, 259 insertions(+), 260 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e620cc44..d7be1e57 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,6 +1,6 @@ NAME VERSION TYPE Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.123.33578 dotnet +Dapper 2.0.151.35995 dotnet Diacritical 1.0.4.0 dotnet DryIoc 5.4.3.0 dotnet DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet @@ -12,92 +12,91 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Kveer.XmlRPC 1.2.0.0 dotnet -Lidarr 2.3.0.4159 dotnet (+7 duplicates) +Lidarr 2.3.1.4167 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2523.52315 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Identity 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Metadata 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.Session 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2523.52315 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2523.52315 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2523.52315 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2523.52315 dotnet +Microsoft.AspNetCore 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authorization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cors 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Identity 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Localization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Metadata 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Razor 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Routing 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Session 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2924.17108 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2924.17108 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2924.17108 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2924.17108 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2523.51912 dotnet +Microsoft.CSharp 6.0.2924.17105 dotnet Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet @@ -109,27 +108,27 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2523.52315 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2924.17108 dotnet Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2523.52315 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2523.52315 dotnet -Microsoft.Extensions.Features 6.0.2523.52315 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2924.17108 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2924.17108 dotnet +Microsoft.Extensions.Features 6.0.2924.17108 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2523.52315 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2924.17108 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet Microsoft.Extensions.Hosting 6.0.222.6406 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2523.52315 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization 6.0.2523.52315 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2523.52315 dotnet +Microsoft.Extensions.Identity.Core 6.0.2924.17108 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2924.17108 dotnet +Microsoft.Extensions.Localization 6.0.2924.17108 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2924.17108 dotnet Microsoft.Extensions.Logging 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet @@ -138,25 +137,25 @@ Microsoft.Extensions.Logging.Debug 6.0.21.52210 Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2523.52315 dotnet +Microsoft.Extensions.ObjectPool 6.0.2924.17108 dotnet Microsoft.Extensions.Options 6.0.21.52210 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2523.52315 dotnet +Microsoft.Extensions.WebEncoders 6.0.2924.17108 dotnet Microsoft.Identity.Client 4.21.1.0 dotnet Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2523.52315 dotnet -Microsoft.Net.Http.Headers 6.0.2523.52315 dotnet +Microsoft.JSInterop 6.0.2924.17108 dotnet +Microsoft.Net.Http.Headers 6.0.2924.17108 dotnet Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2523.51912 dotnet -Microsoft.VisualBasic.Core 11.100.2523.51912 dotnet -Microsoft.Win32.Primitives 6.0.2523.51912 dotnet -Microsoft.Win32.Registry 6.0.2523.51912 dotnet +Microsoft.VisualBasic 6.0.2924.17105 dotnet +Microsoft.VisualBasic.Core 11.100.2924.17105 dotnet +Microsoft.Win32.Primitives 6.0.2924.17105 dotnet +Microsoft.Win32.Registry 6.0.2924.17105 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet MimeKit 3.6.0.0 dotnet Mono.Nat 3.0.1 dotnet @@ -176,179 +175,179 @@ SixLabors.ImageSharp 3.1.4.0 SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2523.51912 dotnet -System.AppContext 6.0.2523.51912 dotnet -System.Buffers 6.0.2523.51912 dotnet -System.Collections 6.0.2523.51912 dotnet -System.Collections.Concurrent 6.0.2523.51912 dotnet -System.Collections.Immutable 6.0.2523.51912 dotnet -System.Collections.NonGeneric 6.0.2523.51912 dotnet -System.Collections.Specialized 6.0.2523.51912 dotnet -System.ComponentModel 6.0.2523.51912 dotnet -System.ComponentModel.Annotations 6.0.2523.51912 dotnet -System.ComponentModel.DataAnnotations 6.0.2523.51912 dotnet -System.ComponentModel.EventBasedAsync 6.0.2523.51912 dotnet -System.ComponentModel.Primitives 6.0.2523.51912 dotnet -System.ComponentModel.TypeConverter 6.0.2523.51912 dotnet -System.Configuration 6.0.2523.51912 dotnet +System 6.0.2924.17105 dotnet +System.AppContext 6.0.2924.17105 dotnet +System.Buffers 6.0.2924.17105 dotnet +System.Collections 6.0.2924.17105 dotnet +System.Collections.Concurrent 6.0.2924.17105 dotnet +System.Collections.Immutable 6.0.2924.17105 dotnet +System.Collections.NonGeneric 6.0.2924.17105 dotnet +System.Collections.Specialized 6.0.2924.17105 dotnet +System.ComponentModel 6.0.2924.17105 dotnet +System.ComponentModel.Annotations 6.0.2924.17105 dotnet +System.ComponentModel.DataAnnotations 6.0.2924.17105 dotnet +System.ComponentModel.EventBasedAsync 6.0.2924.17105 dotnet +System.ComponentModel.Primitives 6.0.2924.17105 dotnet +System.ComponentModel.TypeConverter 6.0.2924.17105 dotnet +System.Configuration 6.0.2924.17105 dotnet System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2523.51912 dotnet -System.Core 6.0.2523.51912 dotnet -System.Data 6.0.2523.51912 dotnet -System.Data.Common 6.0.2523.51912 dotnet -System.Data.DataSetExtensions 6.0.2523.51912 dotnet +System.Console 6.0.2924.17105 dotnet +System.Core 6.0.2924.17105 dotnet +System.Data 6.0.2924.17105 dotnet +System.Data.Common 6.0.2924.17105 dotnet +System.Data.DataSetExtensions 6.0.2924.17105 dotnet System.Data.SQLite 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2523.51912 dotnet -System.Diagnostics.Debug 6.0.2523.51912 dotnet -System.Diagnostics.DiagnosticSource 6.0.2523.51912 dotnet +System.Diagnostics.Contracts 6.0.2924.17105 dotnet +System.Diagnostics.Debug 6.0.2924.17105 dotnet +System.Diagnostics.DiagnosticSource 6.0.2924.17105 dotnet System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2523.51912 dotnet -System.Diagnostics.Process 6.0.2523.51912 dotnet -System.Diagnostics.StackTrace 6.0.2523.51912 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2523.51912 dotnet -System.Diagnostics.Tools 6.0.2523.51912 dotnet -System.Diagnostics.TraceSource 6.0.2523.51912 dotnet -System.Diagnostics.Tracing 6.0.2523.51912 dotnet -System.Drawing 6.0.2523.51912 dotnet +System.Diagnostics.FileVersionInfo 6.0.2924.17105 dotnet +System.Diagnostics.Process 6.0.2924.17105 dotnet +System.Diagnostics.StackTrace 6.0.2924.17105 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2924.17105 dotnet +System.Diagnostics.Tools 6.0.2924.17105 dotnet +System.Diagnostics.TraceSource 6.0.2924.17105 dotnet +System.Diagnostics.Tracing 6.0.2924.17105 dotnet +System.Drawing 6.0.2924.17105 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2523.51912 dotnet -System.Dynamic.Runtime 6.0.2523.51912 dotnet -System.Formats.Asn1 6.0.2523.51912 dotnet -System.Globalization 6.0.2523.51912 dotnet -System.Globalization.Calendars 6.0.2523.51912 dotnet -System.Globalization.Extensions 6.0.2523.51912 dotnet -System.IO 6.0.2523.51912 dotnet +System.Drawing.Primitives 6.0.2924.17105 dotnet +System.Dynamic.Runtime 6.0.2924.17105 dotnet +System.Formats.Asn1 6.0.2924.17105 dotnet +System.Globalization 6.0.2924.17105 dotnet +System.Globalization.Calendars 6.0.2924.17105 dotnet +System.Globalization.Extensions 6.0.2924.17105 dotnet +System.IO 6.0.2924.17105 dotnet System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2523.51912 dotnet -System.IO.Compression.Brotli 6.0.2523.51912 dotnet -System.IO.Compression.FileSystem 6.0.2523.51912 dotnet -System.IO.Compression.ZipFile 6.0.2523.51912 dotnet -System.IO.FileSystem 6.0.2523.51912 dotnet -System.IO.FileSystem.AccessControl 6.0.2523.51912 dotnet -System.IO.FileSystem.DriveInfo 6.0.2523.51912 dotnet -System.IO.FileSystem.Primitives 6.0.2523.51912 dotnet -System.IO.FileSystem.Watcher 6.0.2523.51912 dotnet -System.IO.IsolatedStorage 6.0.2523.51912 dotnet -System.IO.MemoryMappedFiles 6.0.2523.51912 dotnet +System.IO.Compression 6.0.2924.17105 dotnet +System.IO.Compression.Brotli 6.0.2924.17105 dotnet +System.IO.Compression.FileSystem 6.0.2924.17105 dotnet +System.IO.Compression.ZipFile 6.0.2924.17105 dotnet +System.IO.FileSystem 6.0.2924.17105 dotnet +System.IO.FileSystem.AccessControl 6.0.2924.17105 dotnet +System.IO.FileSystem.DriveInfo 6.0.2924.17105 dotnet +System.IO.FileSystem.Primitives 6.0.2924.17105 dotnet +System.IO.FileSystem.Watcher 6.0.2924.17105 dotnet +System.IO.IsolatedStorage 6.0.2924.17105 dotnet +System.IO.MemoryMappedFiles 6.0.2924.17105 dotnet System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2523.51912 dotnet -System.IO.Pipes.AccessControl 6.0.2523.51912 dotnet -System.IO.UnmanagedMemoryStream 6.0.2523.51912 dotnet +System.IO.Pipes 6.0.2924.17105 dotnet +System.IO.Pipes.AccessControl 6.0.2924.17105 dotnet +System.IO.UnmanagedMemoryStream 6.0.2924.17105 dotnet System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2523.51912 dotnet -System.Linq.Expressions 6.0.2523.51912 dotnet -System.Linq.Parallel 6.0.2523.51912 dotnet -System.Linq.Queryable 6.0.2523.51912 dotnet -System.Memory 6.0.2523.51912 dotnet -System.Net 6.0.2523.51912 dotnet -System.Net.Http 6.0.2523.51912 dotnet -System.Net.Http.Json 6.0.2523.51912 dotnet -System.Net.HttpListener 6.0.2523.51912 dotnet -System.Net.Mail 6.0.2523.51912 dotnet -System.Net.NameResolution 6.0.2523.51912 dotnet -System.Net.NetworkInformation 6.0.2523.51912 dotnet -System.Net.Ping 6.0.2523.51912 dotnet -System.Net.Primitives 6.0.2523.51912 dotnet -System.Net.Quic 6.0.2523.51912 dotnet -System.Net.Requests 6.0.2523.51912 dotnet -System.Net.Security 6.0.2523.51912 dotnet -System.Net.ServicePoint 6.0.2523.51912 dotnet -System.Net.Sockets 6.0.2523.51912 dotnet -System.Net.WebClient 6.0.2523.51912 dotnet -System.Net.WebHeaderCollection 6.0.2523.51912 dotnet -System.Net.WebProxy 6.0.2523.51912 dotnet -System.Net.WebSockets 6.0.2523.51912 dotnet -System.Net.WebSockets.Client 6.0.2523.51912 dotnet -System.Numerics 6.0.2523.51912 dotnet -System.Numerics.Vectors 6.0.2523.51912 dotnet -System.ObjectModel 6.0.2523.51912 dotnet -System.Private.CoreLib 6.0.2523.51912 dotnet -System.Private.DataContractSerialization 6.0.2523.51912 dotnet -System.Private.Uri 6.0.2523.51912 dotnet -System.Private.Xml 6.0.2523.51912 dotnet -System.Private.Xml.Linq 6.0.2523.51912 dotnet -System.Reflection 6.0.2523.51912 dotnet -System.Reflection.DispatchProxy 6.0.2523.51912 dotnet -System.Reflection.Emit 6.0.2523.51912 dotnet -System.Reflection.Emit.ILGeneration 6.0.2523.51912 dotnet -System.Reflection.Emit.Lightweight 6.0.2523.51912 dotnet -System.Reflection.Extensions 6.0.2523.51912 dotnet -System.Reflection.Metadata 6.0.2523.51912 dotnet -System.Reflection.Primitives 6.0.2523.51912 dotnet -System.Reflection.TypeExtensions 6.0.2523.51912 dotnet -System.Resources.Reader 6.0.2523.51912 dotnet -System.Resources.ResourceManager 6.0.2523.51912 dotnet -System.Resources.Writer 6.0.2523.51912 dotnet -System.Runtime 6.0.2523.51912 dotnet +System.Linq 6.0.2924.17105 dotnet +System.Linq.Expressions 6.0.2924.17105 dotnet +System.Linq.Parallel 6.0.2924.17105 dotnet +System.Linq.Queryable 6.0.2924.17105 dotnet +System.Memory 6.0.2924.17105 dotnet +System.Net 6.0.2924.17105 dotnet +System.Net.Http 6.0.2924.17105 dotnet +System.Net.Http.Json 6.0.2924.17105 dotnet +System.Net.HttpListener 6.0.2924.17105 dotnet +System.Net.Mail 6.0.2924.17105 dotnet +System.Net.NameResolution 6.0.2924.17105 dotnet +System.Net.NetworkInformation 6.0.2924.17105 dotnet +System.Net.Ping 6.0.2924.17105 dotnet +System.Net.Primitives 6.0.2924.17105 dotnet +System.Net.Quic 6.0.2924.17105 dotnet +System.Net.Requests 6.0.2924.17105 dotnet +System.Net.Security 6.0.2924.17105 dotnet +System.Net.ServicePoint 6.0.2924.17105 dotnet +System.Net.Sockets 6.0.2924.17105 dotnet +System.Net.WebClient 6.0.2924.17105 dotnet +System.Net.WebHeaderCollection 6.0.2924.17105 dotnet +System.Net.WebProxy 6.0.2924.17105 dotnet +System.Net.WebSockets 6.0.2924.17105 dotnet +System.Net.WebSockets.Client 6.0.2924.17105 dotnet +System.Numerics 6.0.2924.17105 dotnet +System.Numerics.Vectors 6.0.2924.17105 dotnet +System.ObjectModel 6.0.2924.17105 dotnet +System.Private.CoreLib 6.0.2924.17105 dotnet +System.Private.DataContractSerialization 6.0.2924.17105 dotnet +System.Private.Uri 6.0.2924.17105 dotnet +System.Private.Xml 6.0.2924.17105 dotnet +System.Private.Xml.Linq 6.0.2924.17105 dotnet +System.Reflection 6.0.2924.17105 dotnet +System.Reflection.DispatchProxy 6.0.2924.17105 dotnet +System.Reflection.Emit 6.0.2924.17105 dotnet +System.Reflection.Emit.ILGeneration 6.0.2924.17105 dotnet +System.Reflection.Emit.Lightweight 6.0.2924.17105 dotnet +System.Reflection.Extensions 6.0.2924.17105 dotnet +System.Reflection.Metadata 6.0.2924.17105 dotnet +System.Reflection.Primitives 6.0.2924.17105 dotnet +System.Reflection.TypeExtensions 6.0.2924.17105 dotnet +System.Resources.Reader 6.0.2924.17105 dotnet +System.Resources.ResourceManager 6.0.2924.17105 dotnet +System.Resources.Writer 6.0.2924.17105 dotnet +System.Runtime 6.0.2924.17105 dotnet System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2523.51912 dotnet -System.Runtime.Extensions 6.0.2523.51912 dotnet -System.Runtime.Handles 6.0.2523.51912 dotnet -System.Runtime.InteropServices 6.0.2523.51912 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2523.51912 dotnet -System.Runtime.Intrinsics 6.0.2523.51912 dotnet -System.Runtime.Loader 6.0.2523.51912 dotnet -System.Runtime.Numerics 6.0.2523.51912 dotnet -System.Runtime.Serialization 6.0.2523.51912 dotnet -System.Runtime.Serialization.Formatters 6.0.2523.51912 dotnet -System.Runtime.Serialization.Json 6.0.2523.51912 dotnet -System.Runtime.Serialization.Primitives 6.0.2523.51912 dotnet -System.Runtime.Serialization.Xml 6.0.2523.51912 dotnet -System.Security 6.0.2523.51912 dotnet -System.Security.AccessControl 6.0.2523.51912 dotnet -System.Security.Claims 6.0.2523.51912 dotnet -System.Security.Cryptography.Algorithms 6.0.2523.51912 dotnet -System.Security.Cryptography.Cng 6.0.2523.51912 dotnet -System.Security.Cryptography.Csp 6.0.2523.51912 dotnet -System.Security.Cryptography.Encoding 6.0.2523.51912 dotnet -System.Security.Cryptography.OpenSsl 6.0.2523.51912 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2924.17105 dotnet +System.Runtime.Extensions 6.0.2924.17105 dotnet +System.Runtime.Handles 6.0.2924.17105 dotnet +System.Runtime.InteropServices 6.0.2924.17105 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2924.17105 dotnet +System.Runtime.Intrinsics 6.0.2924.17105 dotnet +System.Runtime.Loader 6.0.2924.17105 dotnet +System.Runtime.Numerics 6.0.2924.17105 dotnet +System.Runtime.Serialization 6.0.2924.17105 dotnet +System.Runtime.Serialization.Formatters 6.0.2924.17105 dotnet +System.Runtime.Serialization.Json 6.0.2924.17105 dotnet +System.Runtime.Serialization.Primitives 6.0.2924.17105 dotnet +System.Runtime.Serialization.Xml 6.0.2924.17105 dotnet +System.Security 6.0.2924.17105 dotnet +System.Security.AccessControl 6.0.2924.17105 dotnet +System.Security.Claims 6.0.2924.17105 dotnet +System.Security.Cryptography.Algorithms 6.0.2924.17105 dotnet +System.Security.Cryptography.Cng 6.0.2924.17105 dotnet +System.Security.Cryptography.Csp 6.0.2924.17105 dotnet +System.Security.Cryptography.Encoding 6.0.2924.17105 dotnet +System.Security.Cryptography.OpenSsl 6.0.2924.17105 dotnet System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2523.51912 dotnet +System.Security.Cryptography.Primitives 6.0.2924.17105 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2523.51912 dotnet +System.Security.Cryptography.X509Certificates 6.0.2924.17105 dotnet System.Security.Cryptography.Xml 6.0.822.36306 dotnet System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2523.51912 dotnet -System.Security.Principal.Windows 6.0.2523.51912 dotnet -System.Security.SecureString 6.0.2523.51912 dotnet -System.ServiceModel.Web 6.0.2523.51912 dotnet -System.ServiceProcess 6.0.2523.51912 dotnet +System.Security.Principal 6.0.2924.17105 dotnet +System.Security.Principal.Windows 6.0.2924.17105 dotnet +System.Security.SecureString 6.0.2924.17105 dotnet +System.ServiceModel.Web 6.0.2924.17105 dotnet +System.ServiceProcess 6.0.2924.17105 dotnet System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2523.51912 dotnet -System.Text.Encoding.CodePages 6.0.2523.51912 dotnet -System.Text.Encoding.Extensions 6.0.2523.51912 dotnet -System.Text.Encodings.Web 6.0.2523.51912 dotnet -System.Text.Json 6.0.2523.51912 dotnet -System.Text.RegularExpressions 6.0.2523.51912 dotnet -System.Threading 6.0.2523.51912 dotnet -System.Threading.Channels 6.0.2523.51912 dotnet -System.Threading.Overlapped 6.0.2523.51912 dotnet -System.Threading.Tasks 6.0.2523.51912 dotnet -System.Threading.Tasks.Dataflow 6.0.2523.51912 dotnet -System.Threading.Tasks.Extensions 6.0.2523.51912 dotnet -System.Threading.Tasks.Parallel 6.0.2523.51912 dotnet -System.Threading.Thread 6.0.2523.51912 dotnet -System.Threading.ThreadPool 6.0.2523.51912 dotnet -System.Threading.Timer 6.0.2523.51912 dotnet -System.Transactions 6.0.2523.51912 dotnet -System.Transactions.Local 6.0.2523.51912 dotnet -System.ValueTuple 6.0.2523.51912 dotnet -System.Web 6.0.2523.51912 dotnet -System.Web.HttpUtility 6.0.2523.51912 dotnet -System.Windows 6.0.2523.51912 dotnet +System.Text.Encoding 6.0.2924.17105 dotnet +System.Text.Encoding.CodePages 6.0.2924.17105 dotnet +System.Text.Encoding.Extensions 6.0.2924.17105 dotnet +System.Text.Encodings.Web 6.0.2924.17105 dotnet +System.Text.Json 6.0.2924.17105 dotnet +System.Text.RegularExpressions 6.0.2924.17105 dotnet +System.Threading 6.0.2924.17105 dotnet +System.Threading.Channels 6.0.2924.17105 dotnet +System.Threading.Overlapped 6.0.2924.17105 dotnet +System.Threading.Tasks 6.0.2924.17105 dotnet +System.Threading.Tasks.Dataflow 6.0.2924.17105 dotnet +System.Threading.Tasks.Extensions 6.0.2924.17105 dotnet +System.Threading.Tasks.Parallel 6.0.2924.17105 dotnet +System.Threading.Thread 6.0.2924.17105 dotnet +System.Threading.ThreadPool 6.0.2924.17105 dotnet +System.Threading.Timer 6.0.2924.17105 dotnet +System.Transactions 6.0.2924.17105 dotnet +System.Transactions.Local 6.0.2924.17105 dotnet +System.ValueTuple 6.0.2924.17105 dotnet +System.Web 6.0.2924.17105 dotnet +System.Web.HttpUtility 6.0.2924.17105 dotnet +System.Windows 6.0.2924.17105 dotnet System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2523.51912 dotnet -System.Xml.Linq 6.0.2523.51912 dotnet -System.Xml.ReaderWriter 6.0.2523.51912 dotnet -System.Xml.Serialization 6.0.2523.51912 dotnet -System.Xml.XDocument 6.0.2523.51912 dotnet -System.Xml.XPath 6.0.2523.51912 dotnet -System.Xml.XPath.XDocument 6.0.2523.51912 dotnet -System.Xml.XmlDocument 6.0.2523.51912 dotnet -System.Xml.XmlSerializer 6.0.2523.51912 dotnet +System.Xml 6.0.2924.17105 dotnet +System.Xml.Linq 6.0.2924.17105 dotnet +System.Xml.ReaderWriter 6.0.2924.17105 dotnet +System.Xml.Serialization 6.0.2924.17105 dotnet +System.Xml.XDocument 6.0.2924.17105 dotnet +System.Xml.XPath 6.0.2924.17105 dotnet +System.Xml.XPath.XDocument 6.0.2924.17105 dotnet +System.Xml.XmlDocument 6.0.2924.17105 dotnet +System.Xml.XmlSerializer 6.0.2924.17105 dotnet TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2523.51912 dotnet +WindowsBase 6.0.2924.17105 dotnet alpine-baselayout 3.4.3-r2 apk alpine-baselayout-data 3.4.3-r2 apk alpine-keys 2.4-r1 apk @@ -471,12 +470,12 @@ memchr 2.5.0 memoffset 0.8.0 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.32.3-r0 apk -mscorlib 6.0.2523.51912 dotnet +mscorlib 6.0.2924.17105 dotnet musl 1.2.4_git20230717-r4 apk musl-utils 1.2.4_git20230717-r4 apk ncurses-terminfo-base 6.4_p20231125-r0 apk netcat-openbsd 1.226-r0 apk -netstandard 6.0.2523.51912 dotnet +netstandard 6.0.2924.17105 dotnet new_debug_unreachable 1.0.4 rust-crate nghttp2-libs 1.58.0-r0 apk nom 7.1.3 rust-crate From 5dc26febe053d4a3cc0b6f185651536e5cf7850c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 27 Apr 2024 19:14:13 +0000 Subject: [PATCH 512/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d7be1e57..d36914c7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.1.4167 dotnet (+7 duplicates) +Lidarr 2.3.1.4171 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 6098c2166ae468d3c193025da45d75a4ec654976 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 28 Apr 2024 13:42:09 +0000 Subject: [PATCH 513/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d36914c7..5bb4260e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.1.4171 dotnet (+7 duplicates) +Lidarr 2.3.2.4178 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 11960031ef2291e034ac96e5a3d6c4d32151e8ca Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 May 2024 02:07:33 +0000 Subject: [PATCH 514/790] Bot Updating Templated Files --- Jenkinsfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index c08f0361..b56bf9c3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -275,7 +275,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 nightly --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 @@ -608,7 +608,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} From 92fe4290efb1ce72fb304149fe11e0fd12b23acf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 01:25:18 +0000 Subject: [PATCH 515/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5bb4260e..8a2e1acb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.2.4178 dotnet (+7 duplicates) +Lidarr 2.3.2.4183 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 7ed91edd00e70f6c220abef75801e3a3c26aa845 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 10:27:22 +0000 Subject: [PATCH 516/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8a2e1acb..b2a74aba 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.2.4183 dotnet (+7 duplicates) +Lidarr 2.3.3.4187 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From eafb86f7de0cfff67ec6cc8a8799828a18293bfa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 May 2024 11:40:49 +0000 Subject: [PATCH 517/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b2a74aba..a5c20569 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4187 dotnet (+7 duplicates) +Lidarr 2.3.3.4189 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 4d3791068986cdbecf0633e21641c79739ad5afd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 May 2024 01:48:40 +0000 Subject: [PATCH 518/790] Bot Updating Templated Files --- Jenkinsfile | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b56bf9c3..a6538244 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -382,11 +382,15 @@ pipeline { 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 - 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 - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : + if [[ -f ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ]]; 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 + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : + else + echo "Image is on the ignore list, but no template exist, skipping deprecation" + fi else cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ git add unraid/${CONTAINER_NAME}.xml From ce4772ba2a0d4b52b29f57c969e0f537900bb2e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 03:01:27 +0000 Subject: [PATCH 519/790] Bot Updating Package Versions --- package_versions.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a5c20569..f1b8a809 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4189 dotnet (+7 duplicates) +Lidarr 2.3.3.4191 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -368,6 +368,7 @@ busybox-binsh 1.36.1-r15 c-ares 1.27.0-r0 apk ca-certificates 20240226-r0 apk ca-certificates-bundle 20240226-r0 apk +catatonit 0.2.0-r0 apk cfg-if 1.0.0 rust-crate chromaprint 1.5.1-r6 apk chromaprint-libs 1.5.1-r6 apk From 32e0c11a21e8cfaa0f0146eae6f9872bab971ecd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 23:12:16 +0000 Subject: [PATCH 520/790] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a6538244..ae4c3493 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -381,16 +381,14 @@ 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 [[ -f ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ]]; 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 - git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : - git commit -m 'Bot Moving Deprecated Unraid Template' || : - else - echo "Image is on the ignore list, but no template exist, skipping deprecation" - fi + 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 + git mv unraid/${CONTAINER_NAME}.xml unraid/deprecated/${CONTAINER_NAME}.xml || : + git commit -m 'Bot Moving Deprecated Unraid Template' || : else cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml ${TEMPDIR}/unraid/templates/unraid/ git add unraid/${CONTAINER_NAME}.xml From d400e672c540d25d308c550f903c13357521fb4a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 May 2024 23:15:28 +0000 Subject: [PATCH 521/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f1b8a809..fc726d40 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4191 dotnet (+7 duplicates) +Lidarr 2.3.3.4192 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From b78280bfb550f4c6884956a64c344620ccf40e9d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 May 2024 12:52:39 +0000 Subject: [PATCH 522/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fc726d40..8d901c13 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4192 dotnet (+7 duplicates) +Lidarr 2.3.3.4196 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 99862ce9b3048f245178a6c5b39938da1afcef63 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 10 May 2024 17:17:59 +0000 Subject: [PATCH 523/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8d901c13..95fc66b2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4196 dotnet (+7 duplicates) +Lidarr 2.3.3.4197 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From b28c57f14ebf8549d349dd83cb91efdb755d72d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 May 2024 22:37:51 +0000 Subject: [PATCH 524/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 95fc66b2..e9af284d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4197 dotnet (+7 duplicates) +Lidarr 2.3.3.4199 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From f41ba9aff2b678a90b96fe34e6c14603851648d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 May 2024 13:18:57 +0000 Subject: [PATCH 525/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e9af284d..8941f769 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4199 dotnet (+7 duplicates) +Lidarr 2.3.3.4200 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From ceea6226e94a9cf3e8403cbe3f893d6781ccf5a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 May 2024 13:04:32 +0000 Subject: [PATCH 526/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8941f769..ee687cf9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4200 dotnet (+7 duplicates) +Lidarr 2.3.3.4202 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -165,7 +165,7 @@ NLog v5.2.0 5.2.0.1813 NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet -Npgsql 7.0.6.0 dotnet +Npgsql 7.0.7.0 dotnet Polly 8.3.1.3207 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.3.1.3207 dotnet From 18d6229689fcda5c04bcc1020e6f2a89e930319f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 13 May 2024 14:36:27 +0000 Subject: [PATCH 527/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ee687cf9..d379cc11 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.3.3.4202 dotnet (+7 duplicates) +Lidarr 2.4.0.4205 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From e43b0cdb84230082b7cb82b7ce5143c376f2c639 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 01:02:03 +0000 Subject: [PATCH 528/790] Bot Updating Templated Files --- Jenkinsfile | 41 +++++++++++------------------------------ 1 file changed, 11 insertions(+), 30 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index ae4c3493..ab2af298 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -295,7 +295,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}" @@ -525,6 +525,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --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} ." } } @@ -556,6 +557,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --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} ." } } @@ -584,6 +586,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --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) { @@ -707,7 +710,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}\" \ @@ -815,35 +818,13 @@ pipeline { docker push ${MANIFESTIMAGE}:amd64-${SEMVER} docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi - docker manifest push --purge ${MANIFESTIMAGE}:nightly || : - docker manifest create ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly - docker manifest annotate ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:arm64v8-nightly --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 - 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-nightly") - if [[ $(echo "$digest" | jq -r '.layers') != "null" ]]; then - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-nightly || : - docker manifest create ${MANIFESTIMAGE}:arm32v7-nightly ${MANIFESTIMAGE}:amd64-nightly - docker manifest push --purge ${MANIFESTIMAGE}:arm32v7-nightly - fi - docker manifest push --purge ${MANIFESTIMAGE}:nightly - docker manifest push --purge ${MANIFESTIMAGE}:${META_TAG} - docker manifest push --purge ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} + done + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly + 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 buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} fi done ''' From 9889306e7b9153bb8a9470078392c00510000275 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 01:03:47 +0000 Subject: [PATCH 529/790] Bot Updating Templated Files --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c7572e20..8649a8a7 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ Find us at: # [linuxserver/lidarr](https://github.com/linuxserver/docker-lidarr) -[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Flidarr?color=94398d&label-color=555555&logo-color=ffffff&style=for-the-badge&package-type=docker)](https://scarf.sh/gateway/linuxserver-ci/docker/linuxserver%2Flidarr) +[![Scarf.io pulls](https://scarf.sh/installs-badge/linuxserver-ci/linuxserver%2Flidarr?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-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr) [![GitHub Release](https://img.shields.io/github/release/linuxserver/docker-lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=github)](https://github.com/linuxserver/docker-lidarr/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-lidarr/packages) From ab244df97edbae60f8bf04a4cd7759afab93252d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 01:06:43 +0000 Subject: [PATCH 530/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d379cc11..5ab59a74 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4205 dotnet (+7 duplicates) +Lidarr 2.4.0.4210 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -419,7 +419,7 @@ libbsd 0.11.7-r3 libbz2 1.0.8-r6 apk libc 0.2.144 rust-crate libc-utils 0.7.2-r5 apk -libcrypto3 3.1.4-r6 apk +libcrypto3 3.1.5-r0 apk libcurl 8.5.0-r0 apk libdav1d 1.3.0-r1 apk libdrm 2.4.118-r0 apk @@ -443,7 +443,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.1.4-r6 apk +libssl3 3.1.5-r0 apk libstdc++ 13.2.1_git20231014-r0 apk libtheora 1.1.1-r18 apk libunistring 1.1-r2 apk @@ -459,7 +459,7 @@ libxcb 1.16-r0 libxdmcp 1.1.4-r3 apk libxext 1.3.5-r3 apk libxfixes 6.0.1-r3 apk -libxml2 2.11.7-r0 apk +libxml2 2.11.8-r0 apk libxslt 1.1.39-r0 apk libzmq 4.3.5-r2 apk linux-pam 1.5.3-r7 apk From bc9d765659d098850f78503ba81b6519be1f2050 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 May 2024 01:10:37 +0000 Subject: [PATCH 531/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5ab59a74..ddc9b0c6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4210 dotnet (+7 duplicates) +Lidarr 2.4.0.4211 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From d0acb677a159371af541485d91eb5cfac43c8e0f Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 25 May 2024 20:42:47 +0100 Subject: [PATCH 532/790] Rebase to 3.20 --- Dockerfile | 3 ++- Dockerfile.aarch64 | 1 + Jenkinsfile | 4 ++-- README.md | 1 + jenkins-vars.yml | 5 ++--- readme-vars.yml | 1 + 6 files changed, 9 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index b9a9d547..5ac24b59 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.19 +FROM ghcr.io/linuxserver/baseimage-alpine:3.20 # set version label ARG BUILD_DATE @@ -33,6 +33,7 @@ RUN \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 26b95b3a..f3719d12 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -33,6 +33,7 @@ RUN \ /tmp/lidarr.tar.gz -C \ /app/lidarr/bin --strip-components=1 && \ echo -e "UpdateMethod=docker\nBranch=${LIDARR_BRANCH}\nPackageVersion=${VERSION}\nPackageAuthor=[linuxserver.io](https://www.linuxserver.io/)" > /app/lidarr/package_info && \ + printf "Linuxserver.io version: ${VERSION}\nBuild-date: ${BUILD_DATE}" > /build_version && \ echo "**** cleanup ****" && \ rm -rf \ /app/lidarr/bin/Lidarr.Update \ diff --git a/Jenkinsfile b/Jenkinsfile index ab2af298..b00111ec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -30,8 +30,8 @@ pipeline { CI_WEB='true' CI_PORT='8686' CI_SSL='false' - CI_DELAY='120' - CI_DOCKERENV='TZ=US/Pacific' + CI_DELAY='60' + CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='/system/status' } diff --git a/README.md b/README.md index 8649a8a7..42348889 100644 --- a/README.md +++ b/README.md @@ -299,6 +299,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **25.05.24:** - Rebase to Alpine 3.20. * **20.03.24:** - Rebase to Alpine 3.19. * **06.06.23:** - Rebase nightly to Alpine 3.18. * **19.12.22:** - Rebase nightly to Alpine 3.17. diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 5bcde52d..96be5a71 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -6,7 +6,6 @@ custom_version_command: curl -sL "https://lidarr.servarr.com/v1/update/nightly/c release_type: prerelease release_tag: nightly ls_branch: nightly -build_armhf: false repo_vars: - BUILD_VERSION_ARG = 'LIDARR_RELEASE' - LS_USER = 'linuxserver' @@ -21,8 +20,8 @@ repo_vars: - CI_WEB='true' - CI_PORT='8686' - CI_SSL='false' - - CI_DELAY='120' - - CI_DOCKERENV='TZ=US/Pacific' + - CI_DELAY='60' + - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='/system/status' sponsor_links: diff --git a/readme-vars.yml b/readme-vars.yml index 7a934f59..e79fe890 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -53,6 +53,7 @@ app_setup_block: | # changelog changelogs: + - { date: "25.05.24:", desc: "Rebase to Alpine 3.20." } - { date: "20.03.24:", desc: "Rebase to Alpine 3.19." } - { date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18." } - { date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17." } From 2b04c423ced952ebd3856e304d5a65f72a766e40 Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Sat, 25 May 2024 20:43:37 +0100 Subject: [PATCH 533/790] Changing baseimage might be helpful --- Dockerfile.aarch64 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index f3719d12..f60512d1 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.19 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 # set version label ARG BUILD_DATE From b48ea6adf218f49da4ae32ddf2e7c98623c904a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 26 May 2024 13:43:46 +0000 Subject: [PATCH 534/790] Bot Updating Package Versions --- package_versions.txt | 1019 ++++++++++++++++++++---------------------- 1 file changed, 473 insertions(+), 546 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ddc9b0c6..47578cc8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,546 +1,473 @@ -NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet -Dapper 2.0.151.35995 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc 5.4.3.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet (+19 duplicates) -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet -Ical.Net 1.0.0.0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4211 dotnet (+7 duplicates) -MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authorization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cors 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Identity 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Localization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Metadata 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Razor 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Routing 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Session 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2924.17108 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2924.17108 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2924.17108 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2924.17108 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2924.17105 dotnet -Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2924.17108 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2924.17108 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2924.17108 dotnet -Microsoft.Extensions.Features 6.0.2924.17108 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2924.17108 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2924.17108 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2924.17108 dotnet -Microsoft.Extensions.Localization 6.0.2924.17108 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2924.17108 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2924.17108 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2924.17108 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2924.17108 dotnet -Microsoft.Net.Http.Headers 6.0.2924.17108 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet -Microsoft.VisualBasic 6.0.2924.17105 dotnet -Microsoft.VisualBasic.Core 11.100.2924.17105 dotnet -Microsoft.Win32.Primitives 6.0.2924.17105 dotnet -Microsoft.Win32.Registry 6.0.2924.17105 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 1.0.0.0 dotnet -MonoTorrent 2.0.7 dotnet -NLog v5.2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet -NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.7.0 dotnet -Polly 8.3.1.3207 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.3.1.3207 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.1.4.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet -System 6.0.2924.17105 dotnet -System.AppContext 6.0.2924.17105 dotnet -System.Buffers 6.0.2924.17105 dotnet -System.Collections 6.0.2924.17105 dotnet -System.Collections.Concurrent 6.0.2924.17105 dotnet -System.Collections.Immutable 6.0.2924.17105 dotnet -System.Collections.NonGeneric 6.0.2924.17105 dotnet -System.Collections.Specialized 6.0.2924.17105 dotnet -System.ComponentModel 6.0.2924.17105 dotnet -System.ComponentModel.Annotations 6.0.2924.17105 dotnet -System.ComponentModel.DataAnnotations 6.0.2924.17105 dotnet -System.ComponentModel.EventBasedAsync 6.0.2924.17105 dotnet -System.ComponentModel.Primitives 6.0.2924.17105 dotnet -System.ComponentModel.TypeConverter 6.0.2924.17105 dotnet -System.Configuration 6.0.2924.17105 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2924.17105 dotnet -System.Core 6.0.2924.17105 dotnet -System.Data 6.0.2924.17105 dotnet -System.Data.Common 6.0.2924.17105 dotnet -System.Data.DataSetExtensions 6.0.2924.17105 dotnet -System.Data.SQLite 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2924.17105 dotnet -System.Diagnostics.Debug 6.0.2924.17105 dotnet -System.Diagnostics.DiagnosticSource 6.0.2924.17105 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2924.17105 dotnet -System.Diagnostics.Process 6.0.2924.17105 dotnet -System.Diagnostics.StackTrace 6.0.2924.17105 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2924.17105 dotnet -System.Diagnostics.Tools 6.0.2924.17105 dotnet -System.Diagnostics.TraceSource 6.0.2924.17105 dotnet -System.Diagnostics.Tracing 6.0.2924.17105 dotnet -System.Drawing 6.0.2924.17105 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2924.17105 dotnet -System.Dynamic.Runtime 6.0.2924.17105 dotnet -System.Formats.Asn1 6.0.2924.17105 dotnet -System.Globalization 6.0.2924.17105 dotnet -System.Globalization.Calendars 6.0.2924.17105 dotnet -System.Globalization.Extensions 6.0.2924.17105 dotnet -System.IO 6.0.2924.17105 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2924.17105 dotnet -System.IO.Compression.Brotli 6.0.2924.17105 dotnet -System.IO.Compression.FileSystem 6.0.2924.17105 dotnet -System.IO.Compression.ZipFile 6.0.2924.17105 dotnet -System.IO.FileSystem 6.0.2924.17105 dotnet -System.IO.FileSystem.AccessControl 6.0.2924.17105 dotnet -System.IO.FileSystem.DriveInfo 6.0.2924.17105 dotnet -System.IO.FileSystem.Primitives 6.0.2924.17105 dotnet -System.IO.FileSystem.Watcher 6.0.2924.17105 dotnet -System.IO.IsolatedStorage 6.0.2924.17105 dotnet -System.IO.MemoryMappedFiles 6.0.2924.17105 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2924.17105 dotnet -System.IO.Pipes.AccessControl 6.0.2924.17105 dotnet -System.IO.UnmanagedMemoryStream 6.0.2924.17105 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2924.17105 dotnet -System.Linq.Expressions 6.0.2924.17105 dotnet -System.Linq.Parallel 6.0.2924.17105 dotnet -System.Linq.Queryable 6.0.2924.17105 dotnet -System.Memory 6.0.2924.17105 dotnet -System.Net 6.0.2924.17105 dotnet -System.Net.Http 6.0.2924.17105 dotnet -System.Net.Http.Json 6.0.2924.17105 dotnet -System.Net.HttpListener 6.0.2924.17105 dotnet -System.Net.Mail 6.0.2924.17105 dotnet -System.Net.NameResolution 6.0.2924.17105 dotnet -System.Net.NetworkInformation 6.0.2924.17105 dotnet -System.Net.Ping 6.0.2924.17105 dotnet -System.Net.Primitives 6.0.2924.17105 dotnet -System.Net.Quic 6.0.2924.17105 dotnet -System.Net.Requests 6.0.2924.17105 dotnet -System.Net.Security 6.0.2924.17105 dotnet -System.Net.ServicePoint 6.0.2924.17105 dotnet -System.Net.Sockets 6.0.2924.17105 dotnet -System.Net.WebClient 6.0.2924.17105 dotnet -System.Net.WebHeaderCollection 6.0.2924.17105 dotnet -System.Net.WebProxy 6.0.2924.17105 dotnet -System.Net.WebSockets 6.0.2924.17105 dotnet -System.Net.WebSockets.Client 6.0.2924.17105 dotnet -System.Numerics 6.0.2924.17105 dotnet -System.Numerics.Vectors 6.0.2924.17105 dotnet -System.ObjectModel 6.0.2924.17105 dotnet -System.Private.CoreLib 6.0.2924.17105 dotnet -System.Private.DataContractSerialization 6.0.2924.17105 dotnet -System.Private.Uri 6.0.2924.17105 dotnet -System.Private.Xml 6.0.2924.17105 dotnet -System.Private.Xml.Linq 6.0.2924.17105 dotnet -System.Reflection 6.0.2924.17105 dotnet -System.Reflection.DispatchProxy 6.0.2924.17105 dotnet -System.Reflection.Emit 6.0.2924.17105 dotnet -System.Reflection.Emit.ILGeneration 6.0.2924.17105 dotnet -System.Reflection.Emit.Lightweight 6.0.2924.17105 dotnet -System.Reflection.Extensions 6.0.2924.17105 dotnet -System.Reflection.Metadata 6.0.2924.17105 dotnet -System.Reflection.Primitives 6.0.2924.17105 dotnet -System.Reflection.TypeExtensions 6.0.2924.17105 dotnet -System.Resources.Reader 6.0.2924.17105 dotnet -System.Resources.ResourceManager 6.0.2924.17105 dotnet -System.Resources.Writer 6.0.2924.17105 dotnet -System.Runtime 6.0.2924.17105 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2924.17105 dotnet -System.Runtime.Extensions 6.0.2924.17105 dotnet -System.Runtime.Handles 6.0.2924.17105 dotnet -System.Runtime.InteropServices 6.0.2924.17105 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2924.17105 dotnet -System.Runtime.Intrinsics 6.0.2924.17105 dotnet -System.Runtime.Loader 6.0.2924.17105 dotnet -System.Runtime.Numerics 6.0.2924.17105 dotnet -System.Runtime.Serialization 6.0.2924.17105 dotnet -System.Runtime.Serialization.Formatters 6.0.2924.17105 dotnet -System.Runtime.Serialization.Json 6.0.2924.17105 dotnet -System.Runtime.Serialization.Primitives 6.0.2924.17105 dotnet -System.Runtime.Serialization.Xml 6.0.2924.17105 dotnet -System.Security 6.0.2924.17105 dotnet -System.Security.AccessControl 6.0.2924.17105 dotnet -System.Security.Claims 6.0.2924.17105 dotnet -System.Security.Cryptography.Algorithms 6.0.2924.17105 dotnet -System.Security.Cryptography.Cng 6.0.2924.17105 dotnet -System.Security.Cryptography.Csp 6.0.2924.17105 dotnet -System.Security.Cryptography.Encoding 6.0.2924.17105 dotnet -System.Security.Cryptography.OpenSsl 6.0.2924.17105 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2924.17105 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2924.17105 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2924.17105 dotnet -System.Security.Principal.Windows 6.0.2924.17105 dotnet -System.Security.SecureString 6.0.2924.17105 dotnet -System.ServiceModel.Web 6.0.2924.17105 dotnet -System.ServiceProcess 6.0.2924.17105 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2924.17105 dotnet -System.Text.Encoding.CodePages 6.0.2924.17105 dotnet -System.Text.Encoding.Extensions 6.0.2924.17105 dotnet -System.Text.Encodings.Web 6.0.2924.17105 dotnet -System.Text.Json 6.0.2924.17105 dotnet -System.Text.RegularExpressions 6.0.2924.17105 dotnet -System.Threading 6.0.2924.17105 dotnet -System.Threading.Channels 6.0.2924.17105 dotnet -System.Threading.Overlapped 6.0.2924.17105 dotnet -System.Threading.Tasks 6.0.2924.17105 dotnet -System.Threading.Tasks.Dataflow 6.0.2924.17105 dotnet -System.Threading.Tasks.Extensions 6.0.2924.17105 dotnet -System.Threading.Tasks.Parallel 6.0.2924.17105 dotnet -System.Threading.Thread 6.0.2924.17105 dotnet -System.Threading.ThreadPool 6.0.2924.17105 dotnet -System.Threading.Timer 6.0.2924.17105 dotnet -System.Transactions 6.0.2924.17105 dotnet -System.Transactions.Local 6.0.2924.17105 dotnet -System.ValueTuple 6.0.2924.17105 dotnet -System.Web 6.0.2924.17105 dotnet -System.Web.HttpUtility 6.0.2924.17105 dotnet -System.Windows 6.0.2924.17105 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2924.17105 dotnet -System.Xml.Linq 6.0.2924.17105 dotnet -System.Xml.ReaderWriter 6.0.2924.17105 dotnet -System.Xml.Serialization 6.0.2924.17105 dotnet -System.Xml.XDocument 6.0.2924.17105 dotnet -System.Xml.XPath 6.0.2924.17105 dotnet -System.Xml.XPath.XDocument 6.0.2924.17105 dotnet -System.Xml.XmlDocument 6.0.2924.17105 dotnet -System.Xml.XmlSerializer 6.0.2924.17105 dotnet -TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2924.17105 dotnet -alpine-baselayout 3.4.3-r2 apk -alpine-baselayout-data 3.4.3-r2 apk -alpine-keys 2.4-r1 apk -alpine-release 3.19.1-r0 apk -anyhow 1.0.71 rust-crate -aom-libs 3.7.1-r0 apk -apk-tools 2.14.4-r0 apk -arg_enum_proc_macro 0.3.2 rust-crate -arrayvec 0.7.2 rust-crate -av-metrics 0.9.0 rust-crate -av1-grain 0.2.2 rust-crate -bash 5.2.21-r0 apk -bitflags 1.3.2 rust-crate -bitstream-io 1.6.0 rust-crate -brotli-libs 1.1.0-r1 apk -busybox 1.36.1-r15 apk -busybox-binsh 1.36.1-r15 apk -c-ares 1.27.0-r0 apk -ca-certificates 20240226-r0 apk -ca-certificates-bundle 20240226-r0 apk -catatonit 0.2.0-r0 apk -cfg-if 1.0.0 rust-crate -chromaprint 1.5.1-r6 apk -chromaprint-libs 1.5.1-r6 apk -cjson 1.7.17-r0 apk -clap 4.0.32 rust-crate -clap_complete 4.0.7 rust-crate -clap_derive 4.0.21 rust-crate -clap_lex 0.3.0 rust-crate -console 0.15.5 rust-crate -coreutils 9.4-r2 apk -coreutils-env 9.4-r2 apk -coreutils-fmt 9.4-r2 apk -coreutils-sha512sum 9.4-r2 apk -crossbeam 0.8.2 rust-crate -crossbeam-channel 0.5.8 rust-crate -crossbeam-deque 0.8.3 rust-crate -crossbeam-epoch 0.9.14 rust-crate -crossbeam-queue 0.3.8 rust-crate -crossbeam-utils 0.8.15 rust-crate -curl 8.5.0-r0 apk -either 1.8.1 rust-crate -fern 0.6.2 rust-crate -ffmpeg-libavcodec 6.1.1-r0 apk -ffmpeg-libavformat 6.1.1-r0 apk -ffmpeg-libavutil 6.1.1-r0 apk -ffmpeg-libswresample 6.1.1-r0 apk -findutils 4.9.0-r5 apk -getrandom 0.2.9 rust-crate -heck 0.4.1 rust-crate -hwdata-pci 0.377.2-r0 apk -icu-data-en 74.1-r0 apk -icu-libs 74.1-r0 apk -interpolate_name 0.2.3 rust-crate -io-lifetimes 1.0.10 rust-crate -is-terminal 0.4.7 rust-crate -itertools 0.10.5 rust-crate -ivf 0.1.2 rust-crate -jq 1.7.1-r0 apk -lab 0.11.0 rust-crate -lame-libs 3.100-r5 apk -lazy_static 1.4.0 rust-crate -lcms2 2.15-r4 apk -libSvtAv1Enc 1.7.0-r0 apk -libacl 2.3.1-r4 apk -libattr 2.5.1-r5 apk -libbluray 1.3.4-r1 apk -libbsd 0.11.7-r3 apk -libbz2 1.0.8-r6 apk -libc 0.2.144 rust-crate -libc-utils 0.7.2-r5 apk -libcrypto3 3.1.5-r0 apk -libcurl 8.5.0-r0 apk -libdav1d 1.3.0-r1 apk -libdrm 2.4.118-r0 apk -libffi 3.4.4-r3 apk -libgcc 13.2.1_git20231014-r0 apk -libgcrypt 1.10.3-r0 apk -libgomp 13.2.1_git20231014-r0 apk -libgpg-error 1.47-r2 apk -libhwy 1.0.7-r0 apk -libidn2 2.3.4-r4 apk -libintl 0.22.3-r0 apk -libjxl 0.8.2-r0 apk -libmd 1.1.0-r0 apk -libncursesw 6.4_p20231125-r0 apk -libogg 1.3.5-r5 apk -libopenmpt 0.7.3-r1 apk -libpciaccess 0.17-r2 apk -libproc2 4.0.4-r0 apk -librist 0.2.10-r0 apk -libsharpyuv 1.3.2-r0 apk -libsodium 1.0.19-r0 apk -libsrt 1.5.3-r0 apk -libssh 0.10.6-r0 apk -libssl3 3.1.5-r0 apk -libstdc++ 13.2.1_git20231014-r0 apk -libtheora 1.1.1-r18 apk -libunistring 1.1-r2 apk -libva 2.20.0-r0 apk -libvdpau 1.5-r2 apk -libvorbis 1.3.7-r2 apk -libvpx 1.13.1-r0 apk -libwebp 1.3.2-r0 apk -libwebpmux 1.3.2-r0 apk -libx11 1.8.7-r0 apk -libxau 1.0.11-r3 apk -libxcb 1.16-r0 apk -libxdmcp 1.1.4-r3 apk -libxext 1.3.5-r3 apk -libxfixes 6.0.1-r3 apk -libxml2 2.11.8-r0 apk -libxslt 1.1.39-r0 apk -libzmq 4.3.5-r2 apk -linux-pam 1.5.3-r7 apk -linux-raw-sys 0.3.7 rust-crate -log 0.4.17 rust-crate -maybe-rayon 0.1.1 rust-crate -mbedtls 2.28.8-r0 apk -memchr 2.5.0 rust-crate -memoffset 0.8.0 rust-crate -minimal-lexical 0.2.1 rust-crate -mpg123-libs 1.32.3-r0 apk -mscorlib 6.0.2924.17105 dotnet -musl 1.2.4_git20230717-r4 apk -musl-utils 1.2.4_git20230717-r4 apk -ncurses-terminfo-base 6.4_p20231125-r0 apk -netcat-openbsd 1.226-r0 apk -netstandard 6.0.2924.17105 dotnet -new_debug_unreachable 1.0.4 rust-crate -nghttp2-libs 1.58.0-r0 apk -nom 7.1.3 rust-crate -noop_proc_macro 0.3.0 rust-crate -num-bigint 0.4.3 rust-crate -num-derive 0.3.3 rust-crate -num-integer 0.1.45 rust-crate -num-rational 0.4.1 rust-crate -num-traits 0.2.15 rust-crate -num_cpus 1.15.0 rust-crate -numactl 2.0.16-r4 apk -once_cell 1.17.1 rust-crate -onevpl-libs 2023.3.1-r2 apk -oniguruma 6.9.9-r0 apk -opus 1.4-r0 apk -os_str_bytes 6.5.0 rust-crate -paste 1.0.12 rust-crate -ppv-lite86 0.2.17 rust-crate -proc-macro-error 1.0.4 rust-crate -proc-macro-error-attr 1.0.4 rust-crate -proc-macro2 1.0.57 rust-crate -procps-ng 4.0.4-r0 apk -quote 1.0.27 rust-crate -rand 0.8.5 rust-crate -rand_chacha 0.3.1 rust-crate -rand_core 0.6.4 rust-crate -rav1e 0.6.6 rust-crate -rav1e-libs 0.6.6-r2 apk -rayon 1.7.0 rust-crate -rayon-core 1.11.0 rust-crate -readline 8.2.1-r2 apk -rust_hawktracer 0.7.0 rust-crate -rust_hawktracer_normal_macro 0.4.1 rust-crate -rust_hawktracer_proc_macro 0.4.1 rust-crate -rustix 0.37.19 rust-crate -scan_fmt 0.2.6 rust-crate -scanelf 1.3.7-r2 apk -scopeguard 1.1.0 rust-crate -serde 1.0.163 rust-crate -serde_derive 1.0.163 rust-crate -shadow 4.14.2-r0 apk -signal-hook 0.3.15 rust-crate -signal-hook-registry 1.4.1 rust-crate -simd_helpers 0.1.0 rust-crate -skalibs 2.14.0.1-r0 apk -soxr 0.1.3-r7 apk -sqlite-libs 3.44.2-r0 apk -ssl_client 1.36.1-r15 apk -syn 1.0.109 rust-crate -syn 2.0.16 rust-crate -termcolor 1.2.0 rust-crate -terminal_size 0.2.6 rust-crate -thiserror 1.0.40 rust-crate -thiserror-impl 1.0.40 rust-crate -tzdata 2024a-r0 apk -unicode-ident 1.0.8 rust-crate -unicode-width 0.1.10 rust-crate -utmps-libs 0.1.2.2-r0 apk -v_frame 0.3.3 rust-crate -wayland-libs-client 1.22.0-r4 apk -x264-libs 0.164_git20231001-r0 apk -x265-libs 3.5-r4 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r2 apk -xz-libs 5.4.5-r0 apk -y4m 0.8.0 rust-crate -zlib 1.3.1-r0 apk +NAME VERSION TYPE +Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +Dapper 2.0.151.35995 dotnet +Diacritical 1.0.4.0 dotnet +DryIoc 5.4.3.0 dotnet +DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet +Dynamitey 2.0.9.136 dotnet +Equ 2.3.0 dotnet +FluentMigrator 3.3.2.9 dotnet (+19 duplicates) +FluentValidation 9.5.4.0 dotnet +ICSharpCode.SharpZipLib 1.3.3.11 dotnet +Ical.Net 1.0.0.0 dotnet +ImpromptuInterface 7.0.1.0 dotnet +Json.NET 13.0.3.27908 dotnet +Lidarr 2.4.0.4211 dotnet (+7 duplicates) +MailKit 3.6.0.0 dotnet +Microsoft.AspNetCore 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authorization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Server 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Components.Web 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cors 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Features 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Http.Results 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.2924.17108 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Identity 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Localization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Metadata 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Razor 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Rewrite 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Routing 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2924.17108 dotnet +Microsoft.AspNetCore.Session 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.2924.17108 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2924.17108 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.2924.17108 dotnet +Microsoft.AspNetCore.WebSockets 6.0.2924.17108 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.2924.17108 dotnet +Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet +Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet +Microsoft.CSharp 6.0.2924.17105 dotnet +Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet +Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration 6.0.322.12309 dotnet +Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.2924.17108 dotnet +Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet +Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet +Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2924.17108 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2924.17108 dotnet +Microsoft.Extensions.Features 6.0.2924.17108 dotnet +Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.2924.17108 dotnet +Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet +Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting 6.0.222.6406 dotnet +Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet +Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet +Microsoft.Extensions.Http 6.0.21.52210 dotnet +Microsoft.Extensions.Identity.Core 6.0.2924.17108 dotnet +Microsoft.Extensions.Identity.Stores 6.0.2924.17108 dotnet +Microsoft.Extensions.Localization 6.0.2924.17108 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.2924.17108 dotnet +Microsoft.Extensions.Logging 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet +Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet +Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet +Microsoft.Extensions.ObjectPool 6.0.2924.17108 dotnet +Microsoft.Extensions.Options 6.0.21.52210 dotnet +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet +Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet +Microsoft.Extensions.Primitives 6.0.21.52210 dotnet +Microsoft.Extensions.WebEncoders 6.0.2924.17108 dotnet +Microsoft.Identity.Client 4.21.1.0 dotnet +Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +Microsoft.JSInterop 6.0.2924.17108 dotnet +Microsoft.Net.Http.Headers 6.0.2924.17108 dotnet +Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.VisualBasic 6.0.2924.17105 dotnet +Microsoft.VisualBasic.Core 11.100.2924.17105 dotnet +Microsoft.Win32.Primitives 6.0.2924.17105 dotnet +Microsoft.Win32.Registry 6.0.2924.17105 dotnet +Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet +MimeKit 3.6.0.0 dotnet +Mono.Nat 3.0.1 dotnet +Mono.Posix.NETStandard 1.0.0.0 dotnet +MonoTorrent 2.0.7 dotnet +NLog v5.2.0 5.2.0.1813 dotnet +NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog.Targets.Syslog 7.0.0.0 dotnet +NodaTime 3.0.0.0 dotnet +Npgsql 7.0.7.0 dotnet +Polly 8.3.1.3207 dotnet +Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet +Polly.Core 8.3.1.3207 dotnet +ReusableTasks 2.0.0 dotnet +Sentry 3.25.0.0 dotnet +SixLabors.ImageSharp 3.1.4.0 dotnet +SpotifyAPI.Web 1.0.0.0 dotnet +Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +System 6.0.2924.17105 dotnet +System.AppContext 6.0.2924.17105 dotnet +System.Buffers 6.0.2924.17105 dotnet +System.Collections 6.0.2924.17105 dotnet +System.Collections.Concurrent 6.0.2924.17105 dotnet +System.Collections.Immutable 6.0.2924.17105 dotnet +System.Collections.NonGeneric 6.0.2924.17105 dotnet +System.Collections.Specialized 6.0.2924.17105 dotnet +System.ComponentModel 6.0.2924.17105 dotnet +System.ComponentModel.Annotations 6.0.2924.17105 dotnet +System.ComponentModel.DataAnnotations 6.0.2924.17105 dotnet +System.ComponentModel.EventBasedAsync 6.0.2924.17105 dotnet +System.ComponentModel.Primitives 6.0.2924.17105 dotnet +System.ComponentModel.TypeConverter 6.0.2924.17105 dotnet +System.Configuration 6.0.2924.17105 dotnet +System.Configuration.ConfigurationManager 6.0.922.41905 dotnet +System.Console 6.0.2924.17105 dotnet +System.Core 6.0.2924.17105 dotnet +System.Data 6.0.2924.17105 dotnet +System.Data.Common 6.0.2924.17105 dotnet +System.Data.DataSetExtensions 6.0.2924.17105 dotnet +System.Data.SQLite 1.0.115.5 dotnet +System.Data.SqlServerCe 4.0.8876.1 dotnet +System.Diagnostics.Contracts 6.0.2924.17105 dotnet +System.Diagnostics.Debug 6.0.2924.17105 dotnet +System.Diagnostics.DiagnosticSource 6.0.2924.17105 dotnet +System.Diagnostics.EventLog 6.0.21.52210 dotnet +System.Diagnostics.FileVersionInfo 6.0.2924.17105 dotnet +System.Diagnostics.Process 6.0.2924.17105 dotnet +System.Diagnostics.StackTrace 6.0.2924.17105 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.2924.17105 dotnet +System.Diagnostics.Tools 6.0.2924.17105 dotnet +System.Diagnostics.TraceSource 6.0.2924.17105 dotnet +System.Diagnostics.Tracing 6.0.2924.17105 dotnet +System.Drawing 6.0.2924.17105 dotnet +System.Drawing.Common 6.0.21.52210 dotnet +System.Drawing.Primitives 6.0.2924.17105 dotnet +System.Dynamic.Runtime 6.0.2924.17105 dotnet +System.Formats.Asn1 6.0.2924.17105 dotnet +System.Globalization 6.0.2924.17105 dotnet +System.Globalization.Calendars 6.0.2924.17105 dotnet +System.Globalization.Extensions 6.0.2924.17105 dotnet +System.IO 6.0.2924.17105 dotnet +System.IO.Abstractions 17.0.24.38649 dotnet +System.IO.Compression 6.0.2924.17105 dotnet +System.IO.Compression.Brotli 6.0.2924.17105 dotnet +System.IO.Compression.FileSystem 6.0.2924.17105 dotnet +System.IO.Compression.ZipFile 6.0.2924.17105 dotnet +System.IO.FileSystem 6.0.2924.17105 dotnet +System.IO.FileSystem.AccessControl 6.0.2924.17105 dotnet +System.IO.FileSystem.DriveInfo 6.0.2924.17105 dotnet +System.IO.FileSystem.Primitives 6.0.2924.17105 dotnet +System.IO.FileSystem.Watcher 6.0.2924.17105 dotnet +System.IO.IsolatedStorage 6.0.2924.17105 dotnet +System.IO.MemoryMappedFiles 6.0.2924.17105 dotnet +System.IO.Pipelines 6.0.522.21309 dotnet +System.IO.Pipes 6.0.2924.17105 dotnet +System.IO.Pipes.AccessControl 6.0.2924.17105 dotnet +System.IO.UnmanagedMemoryStream 6.0.2924.17105 dotnet +System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet +System.Linq 6.0.2924.17105 dotnet +System.Linq.Expressions 6.0.2924.17105 dotnet +System.Linq.Parallel 6.0.2924.17105 dotnet +System.Linq.Queryable 6.0.2924.17105 dotnet +System.Memory 6.0.2924.17105 dotnet +System.Net 6.0.2924.17105 dotnet +System.Net.Http 6.0.2924.17105 dotnet +System.Net.Http.Json 6.0.2924.17105 dotnet +System.Net.HttpListener 6.0.2924.17105 dotnet +System.Net.Mail 6.0.2924.17105 dotnet +System.Net.NameResolution 6.0.2924.17105 dotnet +System.Net.NetworkInformation 6.0.2924.17105 dotnet +System.Net.Ping 6.0.2924.17105 dotnet +System.Net.Primitives 6.0.2924.17105 dotnet +System.Net.Quic 6.0.2924.17105 dotnet +System.Net.Requests 6.0.2924.17105 dotnet +System.Net.Security 6.0.2924.17105 dotnet +System.Net.ServicePoint 6.0.2924.17105 dotnet +System.Net.Sockets 6.0.2924.17105 dotnet +System.Net.WebClient 6.0.2924.17105 dotnet +System.Net.WebHeaderCollection 6.0.2924.17105 dotnet +System.Net.WebProxy 6.0.2924.17105 dotnet +System.Net.WebSockets 6.0.2924.17105 dotnet +System.Net.WebSockets.Client 6.0.2924.17105 dotnet +System.Numerics 6.0.2924.17105 dotnet +System.Numerics.Vectors 6.0.2924.17105 dotnet +System.ObjectModel 6.0.2924.17105 dotnet +System.Private.CoreLib 6.0.2924.17105 dotnet +System.Private.DataContractSerialization 6.0.2924.17105 dotnet +System.Private.Uri 6.0.2924.17105 dotnet +System.Private.Xml 6.0.2924.17105 dotnet +System.Private.Xml.Linq 6.0.2924.17105 dotnet +System.Reflection 6.0.2924.17105 dotnet +System.Reflection.DispatchProxy 6.0.2924.17105 dotnet +System.Reflection.Emit 6.0.2924.17105 dotnet +System.Reflection.Emit.ILGeneration 6.0.2924.17105 dotnet +System.Reflection.Emit.Lightweight 6.0.2924.17105 dotnet +System.Reflection.Extensions 6.0.2924.17105 dotnet +System.Reflection.Metadata 6.0.2924.17105 dotnet +System.Reflection.Primitives 6.0.2924.17105 dotnet +System.Reflection.TypeExtensions 6.0.2924.17105 dotnet +System.Resources.Reader 6.0.2924.17105 dotnet +System.Resources.ResourceManager 6.0.2924.17105 dotnet +System.Resources.Writer 6.0.2924.17105 dotnet +System.Runtime 6.0.2924.17105 dotnet +System.Runtime.Caching 4.700.19.56404 dotnet +System.Runtime.CompilerServices.VisualC 6.0.2924.17105 dotnet +System.Runtime.Extensions 6.0.2924.17105 dotnet +System.Runtime.Handles 6.0.2924.17105 dotnet +System.Runtime.InteropServices 6.0.2924.17105 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.2924.17105 dotnet +System.Runtime.Intrinsics 6.0.2924.17105 dotnet +System.Runtime.Loader 6.0.2924.17105 dotnet +System.Runtime.Numerics 6.0.2924.17105 dotnet +System.Runtime.Serialization 6.0.2924.17105 dotnet +System.Runtime.Serialization.Formatters 6.0.2924.17105 dotnet +System.Runtime.Serialization.Json 6.0.2924.17105 dotnet +System.Runtime.Serialization.Primitives 6.0.2924.17105 dotnet +System.Runtime.Serialization.Xml 6.0.2924.17105 dotnet +System.Security 6.0.2924.17105 dotnet +System.Security.AccessControl 6.0.2924.17105 dotnet +System.Security.Claims 6.0.2924.17105 dotnet +System.Security.Cryptography.Algorithms 6.0.2924.17105 dotnet +System.Security.Cryptography.Cng 6.0.2924.17105 dotnet +System.Security.Cryptography.Csp 6.0.2924.17105 dotnet +System.Security.Cryptography.Encoding 6.0.2924.17105 dotnet +System.Security.Cryptography.OpenSsl 6.0.2924.17105 dotnet +System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Primitives 6.0.2924.17105 dotnet +System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet +System.Security.Cryptography.X509Certificates 6.0.2924.17105 dotnet +System.Security.Cryptography.Xml 6.0.822.36306 dotnet +System.Security.Permissions 6.0.21.52210 dotnet +System.Security.Principal 6.0.2924.17105 dotnet +System.Security.Principal.Windows 6.0.2924.17105 dotnet +System.Security.SecureString 6.0.2924.17105 dotnet +System.ServiceModel.Web 6.0.2924.17105 dotnet +System.ServiceProcess 6.0.2924.17105 dotnet +System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet +System.Text.Encoding 6.0.2924.17105 dotnet +System.Text.Encoding.CodePages 6.0.2924.17105 dotnet +System.Text.Encoding.Extensions 6.0.2924.17105 dotnet +System.Text.Encodings.Web 6.0.2924.17105 dotnet +System.Text.Json 6.0.2924.17105 dotnet +System.Text.RegularExpressions 6.0.2924.17105 dotnet +System.Threading 6.0.2924.17105 dotnet +System.Threading.Channels 6.0.2924.17105 dotnet +System.Threading.Overlapped 6.0.2924.17105 dotnet +System.Threading.Tasks 6.0.2924.17105 dotnet +System.Threading.Tasks.Dataflow 6.0.2924.17105 dotnet +System.Threading.Tasks.Extensions 6.0.2924.17105 dotnet +System.Threading.Tasks.Parallel 6.0.2924.17105 dotnet +System.Threading.Thread 6.0.2924.17105 dotnet +System.Threading.ThreadPool 6.0.2924.17105 dotnet +System.Threading.Timer 6.0.2924.17105 dotnet +System.Transactions 6.0.2924.17105 dotnet +System.Transactions.Local 6.0.2924.17105 dotnet +System.ValueTuple 6.0.2924.17105 dotnet +System.Web 6.0.2924.17105 dotnet +System.Web.HttpUtility 6.0.2924.17105 dotnet +System.Windows 6.0.2924.17105 dotnet +System.Windows.Extensions 6.0.21.52210 dotnet +System.Xml 6.0.2924.17105 dotnet +System.Xml.Linq 6.0.2924.17105 dotnet +System.Xml.ReaderWriter 6.0.2924.17105 dotnet +System.Xml.Serialization 6.0.2924.17105 dotnet +System.Xml.XDocument 6.0.2924.17105 dotnet +System.Xml.XPath 6.0.2924.17105 dotnet +System.Xml.XPath.XDocument 6.0.2924.17105 dotnet +System.Xml.XmlDocument 6.0.2924.17105 dotnet +System.Xml.XmlSerializer 6.0.2924.17105 dotnet +TagLib# 2.2.0.27 dotnet +WindowsBase 6.0.2924.17105 dotnet +alpine-baselayout 3.6.5-r0 apk +alpine-baselayout-data 3.6.5-r0 apk +alpine-keys 2.4-r1 apk +alpine-release 3.20.0-r0 apk +aom-libs 3.9.0-r0 apk +apk-tools 2.14.4-r0 apk +bash 5.2.26-r0 apk +brotli-libs 1.1.0-r2 apk +busybox 1.36.1-r28 apk +busybox-binsh 1.36.1-r28 apk +c-ares 1.28.1-r0 apk +ca-certificates 20240226-r0 apk +ca-certificates-bundle 20240226-r0 apk +catatonit 0.2.0-r0 apk +chromaprint 1.5.1-r7 apk +chromaprint-libs 1.5.1-r7 apk +cjson 1.7.18-r0 apk +coreutils 9.5-r1 apk +coreutils-env 9.5-r1 apk +coreutils-fmt 9.5-r1 apk +coreutils-sha512sum 9.5-r1 apk +curl 8.7.1-r0 apk +ffmpeg-libavcodec 6.1.1-r7 apk +ffmpeg-libavformat 6.1.1-r7 apk +ffmpeg-libavutil 6.1.1-r7 apk +ffmpeg-libswresample 6.1.1-r7 apk +findutils 4.9.0-r5 apk +giflib 5.2.2-r0 apk +hwdata-pci 0.382-r0 apk +icu-data-en 74.2-r0 apk +icu-libs 74.2-r0 apk +imath 3.1.11-r2 apk +jq 1.7.1-r0 apk +lame-libs 3.100-r5 apk +lcms2 2.16-r0 apk +libSvtAv1Enc 2.0.0-r1 apk +libacl 2.3.2-r0 apk +libattr 2.5.2-r0 apk +libbluray 1.3.4-r1 apk +libbsd 0.12.2-r0 apk +libbz2 1.0.8-r6 apk +libcrypto3 3.3.0-r2 apk +libcurl 8.7.1-r0 apk +libdav1d 1.4.1-r0 apk +libdrm 2.4.120-r0 apk +libffi 3.4.6-r0 apk +libgcc 13.2.1_git20240309-r0 apk +libgcrypt 1.10.3-r0 apk +libgomp 13.2.1_git20240309-r0 apk +libgpg-error 1.49-r0 apk +libhwy 1.0.7-r0 apk +libidn2 2.3.7-r0 apk +libintl 0.22.5-r0 apk +libjpeg-turbo 3.0.3-r0 apk +libjxl 0.10.2-r0 apk +libmd 1.1.0-r0 apk +libncursesw 6.4_p20240420-r0 apk +libogg 1.3.5-r5 apk +libopenmpt 0.7.7-r0 apk +libpciaccess 0.18.1-r0 apk +libpng 1.6.43-r0 apk +libproc2 4.0.4-r0 apk +libpsl 0.21.5-r1 apk +librist 0.2.10-r1 apk +libsharpyuv 1.3.2-r0 apk +libsodium 1.0.19-r0 apk +libsrt 1.5.3-r0 apk +libssh 0.10.6-r0 apk +libssl3 3.3.0-r2 apk +libstdc++ 13.2.1_git20240309-r0 apk +libtheora 1.1.1-r18 apk +libunistring 1.2-r0 apk +libva 2.21.0-r0 apk +libvdpau 1.5-r3 apk +libvorbis 1.3.7-r2 apk +libvpx 1.14.0-r0 apk +libwebp 1.3.2-r0 apk +libwebpmux 1.3.2-r0 apk +libx11 1.8.9-r1 apk +libxau 1.0.11-r4 apk +libxcb 1.16.1-r0 apk +libxdmcp 1.1.5-r1 apk +libxext 1.3.6-r2 apk +libxfixes 6.0.1-r4 apk +libxml2 2.12.7-r0 apk +libxslt 1.1.39-r1 apk +libzmq 4.3.5-r2 apk +linux-pam 1.6.0-r0 apk +mbedtls 3.6.0-r0 apk +mpg123-libs 1.32.6-r0 apk +mscorlib 6.0.2924.17105 dotnet +musl 1.2.5-r0 apk +musl-utils 1.2.5-r0 apk +ncurses-terminfo-base 6.4_p20240420-r0 apk +netcat-openbsd 1.226-r0 apk +netstandard 6.0.2924.17105 dotnet +nghttp2-libs 1.62.0-r0 apk +numactl 2.0.18-r0 apk +onevpl-libs 2023.3.1-r2 apk +oniguruma 6.9.9-r0 apk +openexr-libiex 3.1.13-r1 apk +openexr-libilmthread 3.1.13-r1 apk +openexr-libopenexr 3.1.13-r1 apk +opus 1.5.2-r0 apk +procps-ng 4.0.4-r0 apk +rav1e-libs 0.7.1-r0 apk +readline 8.2.10-r0 apk +scanelf 1.3.7-r2 apk +shadow 4.15.1-r0 apk +skalibs 2.14.1.1-r0 apk +soxr 0.1.3-r7 apk +sqlite-libs 3.45.3-r1 apk +ssl_client 1.36.1-r28 apk +tzdata 2024a-r1 apk +utmps-libs 0.1.2.2-r1 apk +wayland-libs-client 1.22.0-r4 apk +x264-libs 0.164_git20231001-r0 apk +x265-libs 3.6-r0 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r2 apk +xz-libs 5.6.1-r3 apk +zlib 1.3.1-r1 apk +zstd-libs 1.5.6-r0 apk From 5819d2c0a063de2db6debd64137db98484b99869 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 May 2024 02:12:20 +0000 Subject: [PATCH 535/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 47578cc8..1e0b579e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -391,7 +391,7 @@ libbsd 0.12.2-r0 libbz2 1.0.8-r6 apk libcrypto3 3.3.0-r2 apk libcurl 8.7.1-r0 apk -libdav1d 1.4.1-r0 apk +libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk libgcc 13.2.1_git20240309-r0 apk From 4253ae80cb484ebc748f8570a7ab50283bd9f8c8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Jun 2024 07:30:08 +0000 Subject: [PATCH 536/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1e0b579e..5dad2924 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4211 dotnet (+7 duplicates) +Lidarr 2.4.0.4212 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 9d9319cfa116f6dac1006244b936277ac7c1f429 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 04:57:37 +0000 Subject: [PATCH 537/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 5dad2924..8398e708 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4212 dotnet (+7 duplicates) +Lidarr 2.4.0.4217 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -370,10 +370,10 @@ coreutils-env 9.5-r1 coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk curl 8.7.1-r0 apk -ffmpeg-libavcodec 6.1.1-r7 apk -ffmpeg-libavformat 6.1.1-r7 apk -ffmpeg-libavutil 6.1.1-r7 apk -ffmpeg-libswresample 6.1.1-r7 apk +ffmpeg-libavcodec 6.1.1-r8 apk +ffmpeg-libavformat 6.1.1-r8 apk +ffmpeg-libavutil 6.1.1-r8 apk +ffmpeg-libswresample 6.1.1-r8 apk findutils 4.9.0-r5 apk giflib 5.2.2-r0 apk hwdata-pci 0.382-r0 apk @@ -389,7 +389,7 @@ libattr 2.5.2-r0 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.0-r2 apk +libcrypto3 3.3.1-r0 apk libcurl 8.7.1-r0 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk @@ -416,14 +416,14 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.3.0-r2 apk +libssl3 3.3.1-r0 apk libstdc++ 13.2.1_git20240309-r0 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk libva 2.21.0-r0 apk libvdpau 1.5-r3 apk libvorbis 1.3.7-r2 apk -libvpx 1.14.0-r0 apk +libvpx 1.14.1-r0 apk libwebp 1.3.2-r0 apk libwebpmux 1.3.2-r0 apk libx11 1.8.9-r1 apk From 4ee9ceabd00b9906fac3af405c1b6485a39e74f6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 05:30:56 +0000 Subject: [PATCH 538/790] Bot Updating Package Versions --- package_versions.txt | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 8398e708..1ea21314 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4217 dotnet (+7 duplicates) +Lidarr 2.4.0.4220 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -151,7 +151,7 @@ Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.82 Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.JSInterop 6.0.2924.17108 dotnet Microsoft.Net.Http.Headers 6.0.2924.17108 dotnet -Microsoft.OpenApi 1.2.3.0 dotnet +Microsoft.OpenApi 1.6.14.0 dotnet Microsoft.VisualBasic 6.0.2924.17105 dotnet Microsoft.VisualBasic.Core 11.100.2924.17105 dotnet Microsoft.Win32.Primitives 6.0.2924.17105 dotnet @@ -173,8 +173,9 @@ ReusableTasks 2.0.0 Sentry 3.25.0.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Swagger 6.5.0.0 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.5.0.0 dotnet +Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet +Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet +Swashbuckle.AspNetCore.SwaggerGen 6.6.2.401 dotnet System 6.0.2924.17105 dotnet System.AppContext 6.0.2924.17105 dotnet System.Buffers 6.0.2924.17105 dotnet From 416eda72e816c1767184f6352a34b1f525de138f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 10:42:58 +0000 Subject: [PATCH 539/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1ea21314..a4095249 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4220 dotnet (+7 duplicates) +Lidarr 2.4.0.4221 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -357,8 +357,8 @@ aom-libs 3.9.0-r0 apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk -busybox 1.36.1-r28 apk -busybox-binsh 1.36.1-r28 apk +busybox 1.36.1-r29 apk +busybox-binsh 1.36.1-r29 apk c-ares 1.28.1-r0 apk ca-certificates 20240226-r0 apk ca-certificates-bundle 20240226-r0 apk @@ -461,7 +461,7 @@ shadow 4.15.1-r0 skalibs 2.14.1.1-r0 apk soxr 0.1.3-r7 apk sqlite-libs 3.45.3-r1 apk -ssl_client 1.36.1-r28 apk +ssl_client 1.36.1-r29 apk tzdata 2024a-r1 apk utmps-libs 0.1.2.2-r1 apk wayland-libs-client 1.22.0-r4 apk From ba7d67d2bf26e2c075ebeac3e60ead715d3f2901 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 11 Jun 2024 21:40:37 +0000 Subject: [PATCH 540/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a4095249..921e5587 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4221 dotnet (+7 duplicates) +Lidarr 2.4.0.4222 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From b5692d1133cdc53529644ddb41ff9b64df61dc24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Jun 2024 02:12:43 +0000 Subject: [PATCH 541/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 921e5587..764ccdda 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -352,7 +352,7 @@ WindowsBase 6.0.2924.17105 alpine-baselayout 3.6.5-r0 apk alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk -alpine-release 3.20.0-r0 apk +alpine-release 3.20.1-r0 apk aom-libs 3.9.0-r0 apk apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk From 2a5349e8d45910fef55e7b42f84154a24ddd1dd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Jun 2024 03:56:41 +0000 Subject: [PATCH 542/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 764ccdda..5cdd3c55 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.0.4222 dotnet (+7 duplicates) +Lidarr 2.4.1.4234 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -370,7 +370,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.7.1-r0 apk +curl 8.8.0-r0 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -390,8 +390,8 @@ libattr 2.5.2-r0 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.1-r0 apk -libcurl 8.7.1-r0 apk +libcrypto3 3.3.1-r1 apk +libcurl 8.8.0-r0 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk @@ -417,7 +417,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.3.1-r0 apk +libssl3 3.3.1-r1 apk libstdc++ 13.2.1_git20240309-r0 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk @@ -445,7 +445,7 @@ musl-utils 1.2.5-r0 ncurses-terminfo-base 6.4_p20240420-r0 apk netcat-openbsd 1.226-r0 apk netstandard 6.0.2924.17105 dotnet -nghttp2-libs 1.62.0-r0 apk +nghttp2-libs 1.62.1-r0 apk numactl 2.0.18-r0 apk onevpl-libs 2023.3.1-r2 apk oniguruma 6.9.9-r0 apk From 35136d8186367b250ad9a30141ec5048c7823df0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Jun 2024 04:53:33 +0000 Subject: [PATCH 543/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5cdd3c55..fb4684f7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.1.4234 dotnet (+7 duplicates) +Lidarr 2.4.2.4236 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 6d0d263dc33465fc4d880e42281fd0ea39d44501 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 1 Jul 2024 06:15:05 +0000 Subject: [PATCH 544/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fb4684f7..82b57f4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.2.4236 dotnet (+7 duplicates) +Lidarr 2.4.2.4238 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From bb92ea60903af9b050da002caa3d39e3d379584f Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Wed, 3 Jul 2024 16:40:59 +0100 Subject: [PATCH 545/790] Move tmpdir, set COMPlus_EnableDiagnostics --- Dockerfile | 4 +++- Dockerfile.aarch64 | 4 +++- readme-vars.yml | 2 ++ root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run | 5 ++++- 4 files changed, 12 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5ac24b59..0323a018 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" +ENV XDG_CONFIG_HOME="/config/xdg"\ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/lidarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index f60512d1..8d84a7b2 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -11,7 +11,9 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg" +ENV XDG_CONFIG_HOME="/config/xdg"\ + COMPlus_EnableDiagnostics=0 \ + TMPDIR=/run/lidarr-temp RUN \ echo "**** install packages ****" && \ diff --git a/readme-vars.yml b/readme-vars.yml index e79fe890..82ca33bc 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -34,6 +34,8 @@ param_usage_include_ports: true param_ports: - { external_port: "8686", internal_port: "8686", port_desc: "Application WebUI" } +readonly_supported: true + # application setup block app_setup_block_enabled: true app_setup_block: | diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run index efea8517..7e43d1e6 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run @@ -1,6 +1,9 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash +mkdir -p /run/lidarr-temp + # permissions lsiown -R abc:abc \ - /config + /config \ + /run/lidarr-temp From 5bae426358f02386d741b6cc23ee4ec27f855b7f Mon Sep 17 00:00:00 2001 From: thespad <git@spad.co.uk> Date: Wed, 3 Jul 2024 16:42:58 +0100 Subject: [PATCH 546/790] Spacing --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 0323a018..157d84da 100644 --- a/Dockerfile +++ b/Dockerfile @@ -11,7 +11,7 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg"\ +ENV XDG_CONFIG_HOME="/config/xdg" \ COMPlus_EnableDiagnostics=0 \ TMPDIR=/run/lidarr-temp diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 8d84a7b2..1badf825 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -11,7 +11,7 @@ LABEL maintainer="Roxedus,thespad" # environment settings ARG LIDARR_BRANCH="nightly" -ENV XDG_CONFIG_HOME="/config/xdg"\ +ENV XDG_CONFIG_HOME="/config/xdg" \ COMPlus_EnableDiagnostics=0 \ TMPDIR=/run/lidarr-temp From 998e1c384ddec63d7bb81443d9ddc242c7644703 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Jul 2024 12:19:08 +0000 Subject: [PATCH 547/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 82b57f4e..e473b5cd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.2.4238 dotnet (+7 duplicates) +Lidarr 2.4.3.4239 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From b2a256b665d9bfeb38cb7d1f601fca2dc969e54d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jul 2024 11:20:03 +0000 Subject: [PATCH 548/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e473b5cd..c8b2190c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.3.4239 dotnet (+7 duplicates) +Lidarr 2.4.3.4243 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -390,7 +390,7 @@ libattr 2.5.2-r0 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.1-r1 apk +libcrypto3 3.3.1-r3 apk libcurl 8.8.0-r0 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk @@ -417,7 +417,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.3.1-r1 apk +libssl3 3.3.1-r3 apk libstdc++ 13.2.1_git20240309-r0 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk From b4ea8b8ab97025f64451b5c2676be07a520791ef Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 12 Jul 2024 13:06:37 +0000 Subject: [PATCH 549/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c8b2190c..e712cbbf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.3.4243 dotnet (+7 duplicates) +Lidarr 2.4.3.4246 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From d832e1088e6f09658ec8d3608f162f8266b65a72 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:22:09 +0000 Subject: [PATCH 550/790] Bot Updating Templated Files --- Jenkinsfile | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b00111ec..0ac86ee7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -245,7 +245,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.19 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ @@ -352,7 +352,7 @@ pipeline { fi echo "Starting Stage 4 - External repo updates: Docs, Unraid Template and Readme Sync to Docker Hub" mkdir -p ${TEMPDIR}/docs - git clone https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation + git clone --depth=1 https://github.com/linuxserver/docker-documentation.git ${TEMPDIR}/docs/docker-documentation if [[ "${BRANCH_NAME}" == "${GH_DEFAULT_BRANCH}" ]] && [[ (! -f ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md) || ("$(md5sum ${TEMPDIR}/docs/docker-documentation/docs/images/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')" != "$(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md | awk '{ print $1 }')") ]]; then cp ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/docker-${CONTAINER_NAME}.md ${TEMPDIR}/docs/docker-documentation/docs/images/ cd ${TEMPDIR}/docs/docker-documentation @@ -370,8 +370,8 @@ pipeline { echo "Docs update not needed, skipping" fi mkdir -p ${TEMPDIR}/unraid - git clone https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates - git clone https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates + git clone --depth=1 https://github.com/linuxserver/docker-templates.git ${TEMPDIR}/unraid/docker-templates + git clone --depth=1 https://github.com/linuxserver/templates.git ${TEMPDIR}/unraid/templates if [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-logo.png ]]; then sed -i "s|master/linuxserver.io/img/linuxserver-ls-logo.png|master/linuxserver.io/img/${CONTAINER_NAME}-logo.png|" ${TEMPDIR}/docker-${CONTAINER_NAME}/.jenkins-external/${CONTAINER_NAME}.xml elif [[ -f ${TEMPDIR}/unraid/docker-templates/linuxserver.io/img/${CONTAINER_NAME}-icon.png ]]; then @@ -703,7 +703,7 @@ pipeline { set -e docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi docker run --rm \ @@ -794,7 +794,7 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} fi for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do From 7a0ba466c6eed1234140c7848dcc727782a0a4b3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:24:37 +0000 Subject: [PATCH 551/790] Bot Updating Templated Files --- .github/workflows/permissions.yml | 2 ++ README.md | 6 ++++++ 2 files changed, 8 insertions(+) diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml index 1447bc55..02e1bdb9 100755 --- a/.github/workflows/permissions.yml +++ b/.github/workflows/permissions.yml @@ -5,6 +5,8 @@ on: - '**/run' - '**/finish' - '**/check' + - 'root/migrations/*' + jobs: permission_check: uses: linuxserver/github-workflows/.github/workflows/init-svc-executable-permissions.yml@v1 diff --git a/README.md b/README.md index 42348889..85d097b0 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,11 @@ Use the optional paths if you don't understand, or don't want hardlinks/atomic m The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. +## Read-Only Operation + +This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). + + ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -137,6 +142,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `-v /config` | Configuration files for Lidarr. | | `-v /music` | Music files (See note in Application setup). | | `-v /downloads` | Path to your download folder for music (See note in Application setup). | +| `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). | ## Environment variables from files (Docker secrets) From 83a6682d73a03c08b6a1416a9b6953e4f429cbee Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 10:27:27 +0000 Subject: [PATCH 552/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e712cbbf..0b48cf3c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.3.4246 dotnet (+7 duplicates) +Lidarr 2.4.3.4247 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet @@ -360,8 +360,8 @@ brotli-libs 1.1.0-r2 busybox 1.36.1-r29 apk busybox-binsh 1.36.1-r29 apk c-ares 1.28.1-r0 apk -ca-certificates 20240226-r0 apk -ca-certificates-bundle 20240226-r0 apk +ca-certificates 20240705-r0 apk +ca-certificates-bundle 20240705-r0 apk catatonit 0.2.0-r0 apk chromaprint 1.5.1-r7 apk chromaprint-libs 1.5.1-r7 apk From aa0c0a38b5f2715ecfce5624cb7e9bd45b0965a4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 11:38:43 +0000 Subject: [PATCH 553/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0b48cf3c..2b0d877a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.4.3.4247 dotnet (+7 duplicates) +Lidarr 2.5.0.4249 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 054770c6cdc2b0a18bfd84677482a77002db45a6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 19:19:17 +0000 Subject: [PATCH 554/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2b0d877a..67f97f56 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4249 dotnet (+7 duplicates) +Lidarr 2.5.0.4260 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 8ccb88323b36ec248ab9d50e1ed6d747571a14f1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 21:20:08 +0000 Subject: [PATCH 555/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 67f97f56..db83b3dd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4260 dotnet (+7 duplicates) +Lidarr 2.5.0.4261 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From aba00018af6b65c86460307e1bcf9c5b1090de87 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 14 Jul 2024 23:01:16 +0000 Subject: [PATCH 556/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index db83b3dd..ce0b0199 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4261 dotnet (+7 duplicates) +Lidarr 2.5.0.4263 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 69b3ea8fb170e5dd17666912ebc8345be93fd1e0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 17:45:19 +0000 Subject: [PATCH 557/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ce0b0199..d93f5695 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4263 dotnet (+7 duplicates) +Lidarr 2.5.0.4267 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 166d764bbcbba603843f986cd027aab08d1da43a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 17:55:12 +0000 Subject: [PATCH 558/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d93f5695..5835d2bb 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4267 dotnet (+7 duplicates) +Lidarr 2.5.0.4269 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From b56aec0d45600e9cbab665f54aa09b5c7c98cf0d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 17:57:48 +0000 Subject: [PATCH 559/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5835d2bb..36649f32 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4269 dotnet (+7 duplicates) +Lidarr 2.5.0.4270 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From cb51cb6c0642d1d8762272995392131e43c96f32 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 18 Jul 2024 18:31:12 +0000 Subject: [PATCH 560/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 36649f32..e8dfee5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4270 dotnet (+7 duplicates) +Lidarr 2.5.0.4271 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From 3aa59658e4d442fd4e748ae6f4fded6a5740f3ce Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jul 2024 02:40:03 +0000 Subject: [PATCH 561/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e8dfee5e..27fbc57b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4271 dotnet (+7 duplicates) +Lidarr 2.5.0.4273 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From bd93f0b9bdabada207e5a99382f5bc1593ee47de Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jul 2024 14:09:50 +0000 Subject: [PATCH 562/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 27fbc57b..6438219a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.3.3.11 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4273 dotnet (+7 duplicates) +Lidarr 2.5.0.4274 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.2924.17108 dotnet Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet From e87e52bb9a21d7af1b1f4b990962f1ccda94737d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 19 Jul 2024 21:10:55 +0000 Subject: [PATCH 563/790] Bot Updating Package Versions --- package_versions.txt | 522 +++++++++++++++++++++---------------------- 1 file changed, 261 insertions(+), 261 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6438219a..32d16204 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -8,95 +8,95 @@ Dynamitey 2.0.9.136 Equ 2.3.0 dotnet FluentMigrator 3.3.2.9 dotnet (+19 duplicates) FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.3.3.11 dotnet +ICSharpCode.SharpZipLib 1.4.2.13 dotnet Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4274 dotnet (+7 duplicates) +Lidarr 2.5.0.4277 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authorization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Server 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Components.Web 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cors 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Features 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Http.Results 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.2924.17108 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Identity 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Localization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Metadata 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Razor 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Rewrite 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Routing 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.2924.17108 dotnet -Microsoft.AspNetCore.Session 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.2924.17108 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.2924.17108 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.2924.17108 dotnet -Microsoft.AspNetCore.WebSockets 6.0.2924.17108 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.2924.17108 dotnet +Microsoft.AspNetCore 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authentication 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authorization 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Components 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Components.Server 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Components.Web 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Cors 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.3224.31405 dotnet +Microsoft.AspNetCore.DataProtection 6.0.3224.31405 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.3224.31405 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Hosting 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Features 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Http.Results 6.0.3224.31405 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.3224.31405 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.3224.31405 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Identity 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Localization 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Metadata 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Razor 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.3224.31405 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.3224.31405 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Rewrite 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Routing 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.3224.31405 dotnet +Microsoft.AspNetCore.Session 6.0.3224.31405 dotnet +Microsoft.AspNetCore.SignalR 6.0.3224.31405 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.3224.31405 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.3224.31405 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.3224.31405 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.3224.31405 dotnet +Microsoft.AspNetCore.WebSockets 6.0.3224.31405 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.3224.31405 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.2924.17105 dotnet +Microsoft.CSharp 6.0.3224.31407 dotnet Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet @@ -108,27 +108,27 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.2924.17108 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.3224.31405 dotnet Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.2924.17108 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.2924.17108 dotnet -Microsoft.Extensions.Features 6.0.2924.17108 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.3224.31405 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.3224.31405 dotnet +Microsoft.Extensions.Features 6.0.3224.31405 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.2924.17108 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.3224.31405 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet Microsoft.Extensions.Hosting 6.0.222.6406 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.2924.17108 dotnet -Microsoft.Extensions.Identity.Stores 6.0.2924.17108 dotnet -Microsoft.Extensions.Localization 6.0.2924.17108 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.2924.17108 dotnet +Microsoft.Extensions.Identity.Core 6.0.3224.31405 dotnet +Microsoft.Extensions.Identity.Stores 6.0.3224.31405 dotnet +Microsoft.Extensions.Localization 6.0.3224.31405 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.3224.31405 dotnet Microsoft.Extensions.Logging 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet @@ -137,25 +137,25 @@ Microsoft.Extensions.Logging.Debug 6.0.21.52210 Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.2924.17108 dotnet +Microsoft.Extensions.ObjectPool 6.0.3224.31405 dotnet Microsoft.Extensions.Options 6.0.21.52210 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.2924.17108 dotnet +Microsoft.Extensions.WebEncoders 6.0.3224.31405 dotnet Microsoft.Identity.Client 4.21.1.0 dotnet Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.2924.17108 dotnet -Microsoft.Net.Http.Headers 6.0.2924.17108 dotnet +Microsoft.JSInterop 6.0.3224.31405 dotnet +Microsoft.Net.Http.Headers 6.0.3224.31405 dotnet Microsoft.OpenApi 1.6.14.0 dotnet -Microsoft.VisualBasic 6.0.2924.17105 dotnet -Microsoft.VisualBasic.Core 11.100.2924.17105 dotnet -Microsoft.Win32.Primitives 6.0.2924.17105 dotnet -Microsoft.Win32.Registry 6.0.2924.17105 dotnet +Microsoft.VisualBasic 6.0.3224.31407 dotnet +Microsoft.VisualBasic.Core 11.100.3224.31407 dotnet +Microsoft.Win32.Primitives 6.0.3224.31407 dotnet +Microsoft.Win32.Registry 6.0.3224.31407 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet MimeKit 3.6.0.0 dotnet Mono.Nat 3.0.1 dotnet @@ -166,9 +166,9 @@ NLog.Extensions.Logging v5.0.4 5.0.4.221 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.7.0 dotnet -Polly 8.3.1.3207 dotnet +Polly 8.4.1.3582 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.3.1.3207 dotnet +Polly.Core 8.4.1.3582 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet SixLabors.ImageSharp 3.1.4.0 dotnet @@ -176,179 +176,179 @@ SpotifyAPI.Web 1.0.0.0 Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.6.2.401 dotnet -System 6.0.2924.17105 dotnet -System.AppContext 6.0.2924.17105 dotnet -System.Buffers 6.0.2924.17105 dotnet -System.Collections 6.0.2924.17105 dotnet -System.Collections.Concurrent 6.0.2924.17105 dotnet -System.Collections.Immutable 6.0.2924.17105 dotnet -System.Collections.NonGeneric 6.0.2924.17105 dotnet -System.Collections.Specialized 6.0.2924.17105 dotnet -System.ComponentModel 6.0.2924.17105 dotnet -System.ComponentModel.Annotations 6.0.2924.17105 dotnet -System.ComponentModel.DataAnnotations 6.0.2924.17105 dotnet -System.ComponentModel.EventBasedAsync 6.0.2924.17105 dotnet -System.ComponentModel.Primitives 6.0.2924.17105 dotnet -System.ComponentModel.TypeConverter 6.0.2924.17105 dotnet -System.Configuration 6.0.2924.17105 dotnet +System 6.0.3224.31407 dotnet +System.AppContext 6.0.3224.31407 dotnet +System.Buffers 6.0.3224.31407 dotnet +System.Collections 6.0.3224.31407 dotnet +System.Collections.Concurrent 6.0.3224.31407 dotnet +System.Collections.Immutable 6.0.3224.31407 dotnet +System.Collections.NonGeneric 6.0.3224.31407 dotnet +System.Collections.Specialized 6.0.3224.31407 dotnet +System.ComponentModel 6.0.3224.31407 dotnet +System.ComponentModel.Annotations 6.0.3224.31407 dotnet +System.ComponentModel.DataAnnotations 6.0.3224.31407 dotnet +System.ComponentModel.EventBasedAsync 6.0.3224.31407 dotnet +System.ComponentModel.Primitives 6.0.3224.31407 dotnet +System.ComponentModel.TypeConverter 6.0.3224.31407 dotnet +System.Configuration 6.0.3224.31407 dotnet System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.2924.17105 dotnet -System.Core 6.0.2924.17105 dotnet -System.Data 6.0.2924.17105 dotnet -System.Data.Common 6.0.2924.17105 dotnet -System.Data.DataSetExtensions 6.0.2924.17105 dotnet +System.Console 6.0.3224.31407 dotnet +System.Core 6.0.3224.31407 dotnet +System.Data 6.0.3224.31407 dotnet +System.Data.Common 6.0.3224.31407 dotnet +System.Data.DataSetExtensions 6.0.3224.31407 dotnet System.Data.SQLite 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.2924.17105 dotnet -System.Diagnostics.Debug 6.0.2924.17105 dotnet -System.Diagnostics.DiagnosticSource 6.0.2924.17105 dotnet +System.Diagnostics.Contracts 6.0.3224.31407 dotnet +System.Diagnostics.Debug 6.0.3224.31407 dotnet +System.Diagnostics.DiagnosticSource 6.0.3224.31407 dotnet System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.2924.17105 dotnet -System.Diagnostics.Process 6.0.2924.17105 dotnet -System.Diagnostics.StackTrace 6.0.2924.17105 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.2924.17105 dotnet -System.Diagnostics.Tools 6.0.2924.17105 dotnet -System.Diagnostics.TraceSource 6.0.2924.17105 dotnet -System.Diagnostics.Tracing 6.0.2924.17105 dotnet -System.Drawing 6.0.2924.17105 dotnet +System.Diagnostics.FileVersionInfo 6.0.3224.31407 dotnet +System.Diagnostics.Process 6.0.3224.31407 dotnet +System.Diagnostics.StackTrace 6.0.3224.31407 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.3224.31407 dotnet +System.Diagnostics.Tools 6.0.3224.31407 dotnet +System.Diagnostics.TraceSource 6.0.3224.31407 dotnet +System.Diagnostics.Tracing 6.0.3224.31407 dotnet +System.Drawing 6.0.3224.31407 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.2924.17105 dotnet -System.Dynamic.Runtime 6.0.2924.17105 dotnet -System.Formats.Asn1 6.0.2924.17105 dotnet -System.Globalization 6.0.2924.17105 dotnet -System.Globalization.Calendars 6.0.2924.17105 dotnet -System.Globalization.Extensions 6.0.2924.17105 dotnet -System.IO 6.0.2924.17105 dotnet +System.Drawing.Primitives 6.0.3224.31407 dotnet +System.Dynamic.Runtime 6.0.3224.31407 dotnet +System.Formats.Asn1 6.0.3224.31407 dotnet +System.Globalization 6.0.3224.31407 dotnet +System.Globalization.Calendars 6.0.3224.31407 dotnet +System.Globalization.Extensions 6.0.3224.31407 dotnet +System.IO 6.0.3224.31407 dotnet System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.2924.17105 dotnet -System.IO.Compression.Brotli 6.0.2924.17105 dotnet -System.IO.Compression.FileSystem 6.0.2924.17105 dotnet -System.IO.Compression.ZipFile 6.0.2924.17105 dotnet -System.IO.FileSystem 6.0.2924.17105 dotnet -System.IO.FileSystem.AccessControl 6.0.2924.17105 dotnet -System.IO.FileSystem.DriveInfo 6.0.2924.17105 dotnet -System.IO.FileSystem.Primitives 6.0.2924.17105 dotnet -System.IO.FileSystem.Watcher 6.0.2924.17105 dotnet -System.IO.IsolatedStorage 6.0.2924.17105 dotnet -System.IO.MemoryMappedFiles 6.0.2924.17105 dotnet +System.IO.Compression 6.0.3224.31407 dotnet +System.IO.Compression.Brotli 6.0.3224.31407 dotnet +System.IO.Compression.FileSystem 6.0.3224.31407 dotnet +System.IO.Compression.ZipFile 6.0.3224.31407 dotnet +System.IO.FileSystem 6.0.3224.31407 dotnet +System.IO.FileSystem.AccessControl 6.0.3224.31407 dotnet +System.IO.FileSystem.DriveInfo 6.0.3224.31407 dotnet +System.IO.FileSystem.Primitives 6.0.3224.31407 dotnet +System.IO.FileSystem.Watcher 6.0.3224.31407 dotnet +System.IO.IsolatedStorage 6.0.3224.31407 dotnet +System.IO.MemoryMappedFiles 6.0.3224.31407 dotnet System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.2924.17105 dotnet -System.IO.Pipes.AccessControl 6.0.2924.17105 dotnet -System.IO.UnmanagedMemoryStream 6.0.2924.17105 dotnet +System.IO.Pipes 6.0.3224.31407 dotnet +System.IO.Pipes.AccessControl 6.0.3224.31407 dotnet +System.IO.UnmanagedMemoryStream 6.0.3224.31407 dotnet System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.2924.17105 dotnet -System.Linq.Expressions 6.0.2924.17105 dotnet -System.Linq.Parallel 6.0.2924.17105 dotnet -System.Linq.Queryable 6.0.2924.17105 dotnet -System.Memory 6.0.2924.17105 dotnet -System.Net 6.0.2924.17105 dotnet -System.Net.Http 6.0.2924.17105 dotnet -System.Net.Http.Json 6.0.2924.17105 dotnet -System.Net.HttpListener 6.0.2924.17105 dotnet -System.Net.Mail 6.0.2924.17105 dotnet -System.Net.NameResolution 6.0.2924.17105 dotnet -System.Net.NetworkInformation 6.0.2924.17105 dotnet -System.Net.Ping 6.0.2924.17105 dotnet -System.Net.Primitives 6.0.2924.17105 dotnet -System.Net.Quic 6.0.2924.17105 dotnet -System.Net.Requests 6.0.2924.17105 dotnet -System.Net.Security 6.0.2924.17105 dotnet -System.Net.ServicePoint 6.0.2924.17105 dotnet -System.Net.Sockets 6.0.2924.17105 dotnet -System.Net.WebClient 6.0.2924.17105 dotnet -System.Net.WebHeaderCollection 6.0.2924.17105 dotnet -System.Net.WebProxy 6.0.2924.17105 dotnet -System.Net.WebSockets 6.0.2924.17105 dotnet -System.Net.WebSockets.Client 6.0.2924.17105 dotnet -System.Numerics 6.0.2924.17105 dotnet -System.Numerics.Vectors 6.0.2924.17105 dotnet -System.ObjectModel 6.0.2924.17105 dotnet -System.Private.CoreLib 6.0.2924.17105 dotnet -System.Private.DataContractSerialization 6.0.2924.17105 dotnet -System.Private.Uri 6.0.2924.17105 dotnet -System.Private.Xml 6.0.2924.17105 dotnet -System.Private.Xml.Linq 6.0.2924.17105 dotnet -System.Reflection 6.0.2924.17105 dotnet -System.Reflection.DispatchProxy 6.0.2924.17105 dotnet -System.Reflection.Emit 6.0.2924.17105 dotnet -System.Reflection.Emit.ILGeneration 6.0.2924.17105 dotnet -System.Reflection.Emit.Lightweight 6.0.2924.17105 dotnet -System.Reflection.Extensions 6.0.2924.17105 dotnet -System.Reflection.Metadata 6.0.2924.17105 dotnet -System.Reflection.Primitives 6.0.2924.17105 dotnet -System.Reflection.TypeExtensions 6.0.2924.17105 dotnet -System.Resources.Reader 6.0.2924.17105 dotnet -System.Resources.ResourceManager 6.0.2924.17105 dotnet -System.Resources.Writer 6.0.2924.17105 dotnet -System.Runtime 6.0.2924.17105 dotnet +System.Linq 6.0.3224.31407 dotnet +System.Linq.Expressions 6.0.3224.31407 dotnet +System.Linq.Parallel 6.0.3224.31407 dotnet +System.Linq.Queryable 6.0.3224.31407 dotnet +System.Memory 6.0.3224.31407 dotnet +System.Net 6.0.3224.31407 dotnet +System.Net.Http 6.0.3224.31407 dotnet +System.Net.Http.Json 6.0.3224.31407 dotnet +System.Net.HttpListener 6.0.3224.31407 dotnet +System.Net.Mail 6.0.3224.31407 dotnet +System.Net.NameResolution 6.0.3224.31407 dotnet +System.Net.NetworkInformation 6.0.3224.31407 dotnet +System.Net.Ping 6.0.3224.31407 dotnet +System.Net.Primitives 6.0.3224.31407 dotnet +System.Net.Quic 6.0.3224.31407 dotnet +System.Net.Requests 6.0.3224.31407 dotnet +System.Net.Security 6.0.3224.31407 dotnet +System.Net.ServicePoint 6.0.3224.31407 dotnet +System.Net.Sockets 6.0.3224.31407 dotnet +System.Net.WebClient 6.0.3224.31407 dotnet +System.Net.WebHeaderCollection 6.0.3224.31407 dotnet +System.Net.WebProxy 6.0.3224.31407 dotnet +System.Net.WebSockets 6.0.3224.31407 dotnet +System.Net.WebSockets.Client 6.0.3224.31407 dotnet +System.Numerics 6.0.3224.31407 dotnet +System.Numerics.Vectors 6.0.3224.31407 dotnet +System.ObjectModel 6.0.3224.31407 dotnet +System.Private.CoreLib 6.0.3224.31407 dotnet +System.Private.DataContractSerialization 6.0.3224.31407 dotnet +System.Private.Uri 6.0.3224.31407 dotnet +System.Private.Xml 6.0.3224.31407 dotnet +System.Private.Xml.Linq 6.0.3224.31407 dotnet +System.Reflection 6.0.3224.31407 dotnet +System.Reflection.DispatchProxy 6.0.3224.31407 dotnet +System.Reflection.Emit 6.0.3224.31407 dotnet +System.Reflection.Emit.ILGeneration 6.0.3224.31407 dotnet +System.Reflection.Emit.Lightweight 6.0.3224.31407 dotnet +System.Reflection.Extensions 6.0.3224.31407 dotnet +System.Reflection.Metadata 6.0.3224.31407 dotnet +System.Reflection.Primitives 6.0.3224.31407 dotnet +System.Reflection.TypeExtensions 6.0.3224.31407 dotnet +System.Resources.Reader 6.0.3224.31407 dotnet +System.Resources.ResourceManager 6.0.3224.31407 dotnet +System.Resources.Writer 6.0.3224.31407 dotnet +System.Runtime 6.0.3224.31407 dotnet System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.2924.17105 dotnet -System.Runtime.Extensions 6.0.2924.17105 dotnet -System.Runtime.Handles 6.0.2924.17105 dotnet -System.Runtime.InteropServices 6.0.2924.17105 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.2924.17105 dotnet -System.Runtime.Intrinsics 6.0.2924.17105 dotnet -System.Runtime.Loader 6.0.2924.17105 dotnet -System.Runtime.Numerics 6.0.2924.17105 dotnet -System.Runtime.Serialization 6.0.2924.17105 dotnet -System.Runtime.Serialization.Formatters 6.0.2924.17105 dotnet -System.Runtime.Serialization.Json 6.0.2924.17105 dotnet -System.Runtime.Serialization.Primitives 6.0.2924.17105 dotnet -System.Runtime.Serialization.Xml 6.0.2924.17105 dotnet -System.Security 6.0.2924.17105 dotnet -System.Security.AccessControl 6.0.2924.17105 dotnet -System.Security.Claims 6.0.2924.17105 dotnet -System.Security.Cryptography.Algorithms 6.0.2924.17105 dotnet -System.Security.Cryptography.Cng 6.0.2924.17105 dotnet -System.Security.Cryptography.Csp 6.0.2924.17105 dotnet -System.Security.Cryptography.Encoding 6.0.2924.17105 dotnet -System.Security.Cryptography.OpenSsl 6.0.2924.17105 dotnet +System.Runtime.CompilerServices.VisualC 6.0.3224.31407 dotnet +System.Runtime.Extensions 6.0.3224.31407 dotnet +System.Runtime.Handles 6.0.3224.31407 dotnet +System.Runtime.InteropServices 6.0.3224.31407 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.3224.31407 dotnet +System.Runtime.Intrinsics 6.0.3224.31407 dotnet +System.Runtime.Loader 6.0.3224.31407 dotnet +System.Runtime.Numerics 6.0.3224.31407 dotnet +System.Runtime.Serialization 6.0.3224.31407 dotnet +System.Runtime.Serialization.Formatters 6.0.3224.31407 dotnet +System.Runtime.Serialization.Json 6.0.3224.31407 dotnet +System.Runtime.Serialization.Primitives 6.0.3224.31407 dotnet +System.Runtime.Serialization.Xml 6.0.3224.31407 dotnet +System.Security 6.0.3224.31407 dotnet +System.Security.AccessControl 6.0.3224.31407 dotnet +System.Security.Claims 6.0.3224.31407 dotnet +System.Security.Cryptography.Algorithms 6.0.3224.31407 dotnet +System.Security.Cryptography.Cng 6.0.3224.31407 dotnet +System.Security.Cryptography.Csp 6.0.3224.31407 dotnet +System.Security.Cryptography.Encoding 6.0.3224.31407 dotnet +System.Security.Cryptography.OpenSsl 6.0.3224.31407 dotnet System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.2924.17105 dotnet +System.Security.Cryptography.Primitives 6.0.3224.31407 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.2924.17105 dotnet +System.Security.Cryptography.X509Certificates 6.0.3224.31407 dotnet System.Security.Cryptography.Xml 6.0.822.36306 dotnet System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.2924.17105 dotnet -System.Security.Principal.Windows 6.0.2924.17105 dotnet -System.Security.SecureString 6.0.2924.17105 dotnet -System.ServiceModel.Web 6.0.2924.17105 dotnet -System.ServiceProcess 6.0.2924.17105 dotnet +System.Security.Principal 6.0.3224.31407 dotnet +System.Security.Principal.Windows 6.0.3224.31407 dotnet +System.Security.SecureString 6.0.3224.31407 dotnet +System.ServiceModel.Web 6.0.3224.31407 dotnet +System.ServiceProcess 6.0.3224.31407 dotnet System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.2924.17105 dotnet -System.Text.Encoding.CodePages 6.0.2924.17105 dotnet -System.Text.Encoding.Extensions 6.0.2924.17105 dotnet -System.Text.Encodings.Web 6.0.2924.17105 dotnet -System.Text.Json 6.0.2924.17105 dotnet -System.Text.RegularExpressions 6.0.2924.17105 dotnet -System.Threading 6.0.2924.17105 dotnet -System.Threading.Channels 6.0.2924.17105 dotnet -System.Threading.Overlapped 6.0.2924.17105 dotnet -System.Threading.Tasks 6.0.2924.17105 dotnet -System.Threading.Tasks.Dataflow 6.0.2924.17105 dotnet -System.Threading.Tasks.Extensions 6.0.2924.17105 dotnet -System.Threading.Tasks.Parallel 6.0.2924.17105 dotnet -System.Threading.Thread 6.0.2924.17105 dotnet -System.Threading.ThreadPool 6.0.2924.17105 dotnet -System.Threading.Timer 6.0.2924.17105 dotnet -System.Transactions 6.0.2924.17105 dotnet -System.Transactions.Local 6.0.2924.17105 dotnet -System.ValueTuple 6.0.2924.17105 dotnet -System.Web 6.0.2924.17105 dotnet -System.Web.HttpUtility 6.0.2924.17105 dotnet -System.Windows 6.0.2924.17105 dotnet +System.Text.Encoding 6.0.3224.31407 dotnet +System.Text.Encoding.CodePages 6.0.3224.31407 dotnet +System.Text.Encoding.Extensions 6.0.3224.31407 dotnet +System.Text.Encodings.Web 6.0.3224.31407 dotnet +System.Text.Json 6.0.3224.31407 dotnet +System.Text.RegularExpressions 6.0.3224.31407 dotnet +System.Threading 6.0.3224.31407 dotnet +System.Threading.Channels 6.0.3224.31407 dotnet +System.Threading.Overlapped 6.0.3224.31407 dotnet +System.Threading.Tasks 6.0.3224.31407 dotnet +System.Threading.Tasks.Dataflow 6.0.3224.31407 dotnet +System.Threading.Tasks.Extensions 6.0.3224.31407 dotnet +System.Threading.Tasks.Parallel 6.0.3224.31407 dotnet +System.Threading.Thread 6.0.3224.31407 dotnet +System.Threading.ThreadPool 6.0.3224.31407 dotnet +System.Threading.Timer 6.0.3224.31407 dotnet +System.Transactions 6.0.3224.31407 dotnet +System.Transactions.Local 6.0.3224.31407 dotnet +System.ValueTuple 6.0.3224.31407 dotnet +System.Web 6.0.3224.31407 dotnet +System.Web.HttpUtility 6.0.3224.31407 dotnet +System.Windows 6.0.3224.31407 dotnet System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.2924.17105 dotnet -System.Xml.Linq 6.0.2924.17105 dotnet -System.Xml.ReaderWriter 6.0.2924.17105 dotnet -System.Xml.Serialization 6.0.2924.17105 dotnet -System.Xml.XDocument 6.0.2924.17105 dotnet -System.Xml.XPath 6.0.2924.17105 dotnet -System.Xml.XPath.XDocument 6.0.2924.17105 dotnet -System.Xml.XmlDocument 6.0.2924.17105 dotnet -System.Xml.XmlSerializer 6.0.2924.17105 dotnet +System.Xml 6.0.3224.31407 dotnet +System.Xml.Linq 6.0.3224.31407 dotnet +System.Xml.ReaderWriter 6.0.3224.31407 dotnet +System.Xml.Serialization 6.0.3224.31407 dotnet +System.Xml.XDocument 6.0.3224.31407 dotnet +System.Xml.XPath 6.0.3224.31407 dotnet +System.Xml.XPath.XDocument 6.0.3224.31407 dotnet +System.Xml.XmlDocument 6.0.3224.31407 dotnet +System.Xml.XmlSerializer 6.0.3224.31407 dotnet TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.2924.17105 dotnet +WindowsBase 6.0.3224.31407 dotnet alpine-baselayout 3.6.5-r0 apk alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk @@ -439,12 +439,12 @@ libzmq 4.3.5-r2 linux-pam 1.6.0-r0 apk mbedtls 3.6.0-r0 apk mpg123-libs 1.32.6-r0 apk -mscorlib 6.0.2924.17105 dotnet +mscorlib 6.0.3224.31407 dotnet musl 1.2.5-r0 apk musl-utils 1.2.5-r0 apk ncurses-terminfo-base 6.4_p20240420-r0 apk netcat-openbsd 1.226-r0 apk -netstandard 6.0.2924.17105 dotnet +netstandard 6.0.3224.31407 dotnet nghttp2-libs 1.62.1-r0 apk numactl 2.0.18-r0 apk onevpl-libs 2023.3.1-r2 apk From ba948c2677022b506bd0bcdc82a5ba28058bdff3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 21 Jul 2024 15:38:51 +0000 Subject: [PATCH 564/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 32d16204..9baf38e4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.0.4277 dotnet (+7 duplicates) +Lidarr 2.5.1.4278 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 05b77a183f7acf723b4dc811d3d61de9732ccf98 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 05:14:35 +0000 Subject: [PATCH 565/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9baf38e4..57e36453 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4278 dotnet (+7 duplicates) +Lidarr 2.5.1.4281 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 745223b745638f1d551398ca022af2be74612bd8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 25 Jul 2024 21:40:26 +0000 Subject: [PATCH 566/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 57e36453..ca40dd97 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4281 dotnet (+7 duplicates) +Lidarr 2.5.1.4284 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -171,7 +171,7 @@ Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22 Polly.Core 8.4.1.3582 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.1.4.0 dotnet +SixLabors.ImageSharp 3.1.5.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet From ad51e3b1c49fafe8904e2ec368658390e7248d3b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 26 Jul 2024 22:06:13 +0000 Subject: [PATCH 567/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ca40dd97..e4c02bd9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4284 dotnet (+7 duplicates) +Lidarr 2.5.1.4285 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From fb72a409e3bea341e3d416fe07602b2cd3187c8a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 31 Jul 2024 01:55:10 +0000 Subject: [PATCH 568/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e4c02bd9..c8eda899 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -352,7 +352,7 @@ WindowsBase 6.0.3224.31407 alpine-baselayout 3.6.5-r0 apk alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk -alpine-release 3.20.1-r0 apk +alpine-release 3.20.2-r0 apk aom-libs 3.9.0-r0 apk apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk @@ -370,7 +370,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.8.0-r0 apk +curl 8.9.0-r0 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -391,7 +391,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.1-r3 apk -libcurl 8.8.0-r0 apk +libcurl 8.9.0-r0 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk From d019545015bb9ded38aca69515c7386f43382c6e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Aug 2024 02:17:52 +0000 Subject: [PATCH 569/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c8eda899..d09c1cbc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -353,7 +353,7 @@ alpine-baselayout 3.6.5-r0 alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk alpine-release 3.20.2-r0 apk -aom-libs 3.9.0-r0 apk +aom-libs 3.9.1-r0 apk apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk @@ -469,6 +469,6 @@ x264-libs 0.164_git20231001-r0 x265-libs 3.6-r0 apk xmlstarlet 1.6.1-r2 apk xvidcore 1.3.7-r2 apk -xz-libs 5.6.1-r3 apk +xz-libs 5.6.2-r0 apk zlib 1.3.1-r1 apk zstd-libs 1.5.6-r0 apk From 0f5c73babc7f91cb356cd5f1696b7df9bd76411a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 16:11:05 +0000 Subject: [PATCH 570/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d09c1cbc..7eccd069 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4285 dotnet (+7 duplicates) +Lidarr 2.5.1.4300 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 0e678bf3ad41ab697b67a75bbf3d901a2e4c0df2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 16:21:29 +0000 Subject: [PATCH 571/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7eccd069..786ca727 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4300 dotnet (+7 duplicates) +Lidarr 2.5.1.4302 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 5bf960cc084d37025a84101e3949d2847eb82d2f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 16:35:36 +0000 Subject: [PATCH 572/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 786ca727..99d558a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4302 dotnet (+7 duplicates) +Lidarr 2.5.1.4304 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From e2c0f829f4456b70f3fe1b2aa9d01d7b14eab12d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 17 Aug 2024 17:41:25 +0000 Subject: [PATCH 573/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 99d558a3..6bced045 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4304 dotnet (+7 duplicates) +Lidarr 2.5.1.4306 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 3df745c13a04a576c92d03a11775682fe08a9402 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 01:45:35 +0000 Subject: [PATCH 574/790] Bot Updating Templated Files --- Jenkinsfile | 62 ++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 52 insertions(+), 10 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0ac86ee7..2b30e221 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,8 @@ pipeline { GITLAB_TOKEN=credentials('b6f0f1dd-6952-4cf6-95d1-9c06380283f0') GITLAB_NAMESPACE=credentials('gitlab-namespace-id') DOCKERHUB_TOKEN=credentials('docker-hub-ci-pat') + QUAYIO_API_TOKEN=credentials('quayio-repo-api-token') + GIT_SIGNING_KEY=credentials('484fbca6-9a4f-455e-b9e3-97ac98785f5f') BUILD_VERSION_ARG = 'LIDARR_RELEASE' LS_USER = 'linuxserver' LS_REPO = 'docker-lidarr' @@ -36,9 +38,23 @@ pipeline { CI_WEBPATH='/system/status' } stages { + stage("Set git config"){ + steps{ + sh '''#!/bin/bash + cat ${GIT_SIGNING_KEY} > /config/.ssh/id_sign + chmod 600 /config/.ssh/id_sign + ssh-keygen -y -f /config/.ssh/id_sign > /config/.ssh/id_sign.pub + echo "Using $(ssh-keygen -lf /config/.ssh/id_sign) to sign commits" + git config --global gpg.format ssh + git config --global user.signingkey /config/.ssh/id_sign + git config --global commit.gpgsign true + ''' + } + } // Setup all the basic environment variables needed for the build stage("Set ENV Variables base"){ steps{ + echo "Running on node: ${NODE_NAME}" sh '''#! /bin/bash containers=$(docker ps -aq) if [[ -n "${containers}" ]]; then @@ -381,9 +397,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 && [[ -f ${TEMPDIR}/unraid/templates/unraid/deprecated/${CONTAINER_NAME}.xml ]]; 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 + 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 @@ -476,10 +492,10 @@ pipeline { } } /* ####################### - GitLab Mirroring + GitLab Mirroring and Quay.io Repo Visibility ####################### */ - // Ping into Gitlab to mirror this repo and have a registry endpoint - stage("GitLab Mirror"){ + // Ping into Gitlab to mirror this repo and have a registry endpoint & mark this repo on Quay.io as public + stage("GitLab Mirror and Quay.io Visibility"){ when { environment name: 'EXIT_STATUS', value: '' } @@ -495,6 +511,8 @@ pipeline { "visibility":"public"}' ''' sh '''curl -H "Private-Token: ${GITLAB_TOKEN}" -X PUT "https://gitlab.com/api/v4/projects/Linuxserver.io%2F${LS_REPO}" \ -d "mirror=true&import_url=https://github.com/linuxserver/${LS_REPO}.git" ''' + sh '''curl -H "Content-Type: application/json" -H "Authorization: Bearer ${QUAYIO_API_TOKEN}" -X POST "https://quay.io/api/v1/repository${QUAYIMAGE/quay.io/}/changevisibility" \ + -d '{"visibility":"public"}' ||: ''' } } /* ############### @@ -589,7 +607,7 @@ pipeline { --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) { + retry_backoff(5,5) { sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" } sh '''#! /bin/bash @@ -745,7 +763,7 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { - retry(5) { + retry_backoff(5,5) { sh '''#! /bin/bash set -e echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin @@ -763,7 +781,7 @@ pipeline { docker push ${PUSHIMAGE}:${META_TAG} docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} + docker push ${PUSHIMAGE}:${SEMVER} fi done ''' @@ -786,7 +804,7 @@ pipeline { passwordVariable: 'QUAYPASS' ] ]) { - retry(5) { + retry_backoff(5,5) { sh '''#! /bin/bash set -e echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin @@ -849,7 +867,7 @@ pipeline { "object": "'${COMMIT_SHA}'",\ "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ "type": "commit",\ - "tagger": {"name": "LinuxServer Jenkins","email": "jenkins@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' + "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' echo "Pushing New release for Tag" sh '''#! /bin/bash echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json @@ -981,6 +999,13 @@ EOF ###################### */ post { always { + sh '''#!/bin/bash + rm -rf /config/.ssh/id_sign + rm -rf /config/.ssh/id_sign.pub + git config --global --unset gpg.format + git config --global --unset user.signingkey + git config --global --unset commit.gpgsign + ''' script{ if (env.EXIT_STATUS == "ABORTED"){ sh 'echo "build aborted"' @@ -1010,3 +1035,20 @@ EOF } } } + +def retry_backoff(int max_attempts, int power_base, Closure c) { + int n = 0 + while (n < max_attempts) { + try { + c() + return + } catch (err) { + if ((n + 1) >= max_attempts) { + throw err + } + sleep(power_base ** n) + n++ + } + } + return +} From 17697b09e35bcc6afcd6d8bcf3d8f8296b43e931 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 01:47:47 +0000 Subject: [PATCH 575/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 45 +++++++++---------- .../workflows/external_trigger_scheduler.yml | 24 +++++----- .github/workflows/package_trigger.yml | 22 ++++----- .../workflows/package_trigger_scheduler.yml | 18 ++++---- 4 files changed, 54 insertions(+), 55 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index aab0c4d7..88074368 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -12,17 +12,20 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/nightly' run: | + printf "# External trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** External trigger running off of nightly branch. To disable this trigger, set a Github secret named \"PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\". ****" - echo "External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY - echo "**** Retrieving external version ****" + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version') + echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then - echo "**** Can't retrieve external version, exiting ****" + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY FAILURE_REASON="Can't retrieve external version for lidarr branch nightly" GHA_TRIGGER_URL="https://github.com/linuxserver/docker-lidarr/actions/runs/${{ github.run_id }}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, @@ -31,9 +34,8 @@ jobs: exit 1 fi EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') - echo "**** External version: ${EXT_RELEASE} ****" - echo "External version: ${EXT_RELEASE}" >> $GITHUB_STEP_SUMMARY - echo "**** Retrieving last pushed version ****" + echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY + echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY image="linuxserver/lidarr" tag="nightly" token=$(curl -sX GET \ @@ -60,37 +62,34 @@ jobs: IMAGE_RELEASE=$(echo ${image_info} | jq -r '.Labels.build_version' | awk '{print $3}') IMAGE_VERSION=$(echo ${IMAGE_RELEASE} | awk -F'-ls' '{print $1}') if [ -z "${IMAGE_VERSION}" ]; then - echo "**** Can't retrieve last pushed version, exiting ****" + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "Can't retrieve last pushed version, exiting" >> $GITHUB_STEP_SUMMARY FAILURE_REASON="Can't retrieve last pushed version for lidarr tag nightly" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 16711680, "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - echo "**** Last pushed version: ${IMAGE_VERSION} ****" - echo "Last pushed version: ${IMAGE_VERSION}" >> $GITHUB_STEP_SUMMARY + echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "**** Version ${EXT_RELEASE} already pushed, exiting ****" - echo "Version ${EXT_RELEASE} already pushed, exiting" >> $GITHUB_STEP_SUMMARY + echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "**** New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting ****" - echo "New version ${EXT_RELEASE} found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else - echo "**** New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build ****" - echo "New version ${EXT_RELEASE} found; old version was ${IMAGE_VERSION}. Triggering new build" >> $GITHUB_STEP_SUMMARY + printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "**** Jenkins job queue url: ${response%$'\r'} ****" - echo "**** Sleeping 10 seconds until job starts ****" + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" - echo "**** Jenkins job build url: ${buildurl} ****" - echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY - echo "**** Attempting to change the Jenkins job description ****" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY curl -iX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index dc455e76..2a813d9b 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -15,31 +15,31 @@ jobs: - name: External Trigger Scheduler run: | - echo "**** Branches found: ****" - git for-each-ref --format='%(refname:short)' refs/remotes - for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + printf "# External trigger scheduler for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY + printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY + for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes) do - br=$(echo "$br" | sed 's|origin/||g') - echo "**** Evaluating branch ${br} ****" + if [[ "${br}" == "HEAD" ]]; then + printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY + continue + fi + printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY ls_jenkins_vars=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml) ls_branch=$(echo "${ls_jenkins_vars}" | yq -r '.ls_branch') ls_trigger=$(echo "${ls_jenkins_vars}" | yq -r '.external_type') if [[ "${br}" == "${ls_branch}" ]] && [[ "${ls_trigger}" != "os" ]]; then - echo "**** Branch ${br} appears to be live and trigger is not os; checking workflow. ****" + echo "Branch appears to be live and trigger is not os; checking workflow." >> $GITHUB_STEP_SUMMARY if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/external_trigger.yml > /dev/null 2>&1; then - echo "**** Workflow exists. Triggering external trigger workflow for branch ${br} ****." - echo "Triggering external trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY + echo "Triggering external trigger workflow for branch." >> $GITHUB_STEP_SUMMARY curl -iX POST \ -H "Authorization: token ${{ secrets.CR_PAT }}" \ -H "Accept: application/vnd.github.v3+json" \ -d "{\"ref\":\"refs/heads/${br}\"}" \ https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/external_trigger.yml/dispatches else - echo "**** Workflow doesn't exist; skipping trigger. ****" - echo "Skipping branch ${br} due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY + echo "Skipping branch due to no external trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} is either a dev branch, or has no external version; skipping trigger. ****" - echo "Skipping branch ${br} due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY + echo "Skipping branch due to being detected as dev branch or having no external version." >> $GITHUB_STEP_SUMMARY fi done diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml index 9a214e0b..af6341cd 100644 --- a/.github/workflows/package_trigger.yml +++ b/.github/workflows/package_trigger.yml @@ -12,29 +12,29 @@ jobs: - name: Package Trigger if: github.ref == 'refs/heads/nightly' run: | + printf "# Package trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY }}" ]; then - echo "**** Github secret PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY is set; skipping trigger. ****" - echo "Github secret \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "**** There already seems to be an active build on Jenkins; skipping package trigger ****" - echo "There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY exit 0 fi - echo "**** Package trigger running off of nightly branch. To disable, set a Github secret named \"PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\". ****" - echo "Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "**** Jenkins job queue url: ${response%$'\r'} ****" - echo "**** Sleeping 10 seconds until job starts ****" + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') buildurl="${buildurl%$'\r'}" - echo "**** Jenkins job build url: ${buildurl} ****" - echo "Jenkins job build url: ${buildurl}" >> $GITHUB_STEP_SUMMARY - echo "**** Attempting to change the Jenkins job description ****" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY curl -iX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index eb2e4af6..6aa4aea1 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -15,17 +15,19 @@ jobs: - name: Package Trigger Scheduler run: | - echo "**** Branches found: ****" - git for-each-ref --format='%(refname:short)' refs/remotes - for br in $(git for-each-ref --format='%(refname:short)' refs/remotes) + printf "# Package trigger scheduler for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY + printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY + for br in $(git for-each-ref --format='%(refname:lstrip=3)' refs/remotes) do - br=$(echo "$br" | sed 's|origin/||g') - echo "**** Evaluating branch ${br} ****" + if [[ "${br}" == "HEAD" ]]; then + printf "\nSkipping %s.\n" ${br} >> $GITHUB_STEP_SUMMARY + continue + fi + printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml | yq -r '.ls_branch') if [ "${br}" == "${ls_branch}" ]; then - echo "**** Branch ${br} appears to be live; checking workflow. ****" + echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - echo "**** Workflow exists. Triggering package trigger workflow for branch ${br}. ****" echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " curl -iX POST \ @@ -35,11 +37,9 @@ jobs: https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/package_trigger.yml/dispatches sleep 30 else - echo "**** Workflow doesn't exist; skipping trigger. ****" echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY fi else - echo "**** ${br} appears to be a dev branch; skipping trigger. ****" echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done From 281fb01f5ea318249478f7813d4c3c74a24f6c54 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 01:51:11 +0000 Subject: [PATCH 576/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6bced045..f4a95b68 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4306 dotnet (+7 duplicates) +Lidarr 2.5.1.4311 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 14624c8eca8d6cccd32e6e5ee4d5cfb1fd06744e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 15:57:30 +0000 Subject: [PATCH 577/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f4a95b68..dd870989 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.1.4311 dotnet (+7 duplicates) +Lidarr 2.5.2.4314 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 5c5e6af71dcb01bd68f289c2eeee3e7a495236c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Aug 2024 17:48:05 +0000 Subject: [PATCH 578/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dd870989..6aeaabd4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -12,7 +12,7 @@ ICSharpCode.SharpZipLib 1.4.2.13 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.2.4314 dotnet (+7 duplicates) +Lidarr 2.5.2.4316 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From da1deb545adda5af08dc8150cfbdefca4be7d2a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Sep 2024 06:39:45 +0000 Subject: [PATCH 579/790] Bot Updating Package Versions --- package_versions.txt | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6aeaabd4..b872657f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -9,10 +9,11 @@ Equ 2.3.0 FluentMigrator 3.3.2.9 dotnet (+19 duplicates) FluentValidation 9.5.4.0 dotnet ICSharpCode.SharpZipLib 1.4.2.13 dotnet +IPAddressRange 6.0.0.0 dotnet Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.2.4316 dotnet (+7 duplicates) +Lidarr 2.5.3.4340 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -161,8 +162,9 @@ MimeKit 3.6.0.0 Mono.Nat 3.0.1 dotnet Mono.Posix.NETStandard 1.0.0.0 dotnet MonoTorrent 2.0.7 dotnet -NLog v5.2.0 5.2.0.1813 dotnet -NLog.Extensions.Logging v5.0.4 5.0.4.221 dotnet +NLog v5.3.3 5.3.3.2683 dotnet +NLog.Extensions.Logging v5.3.12 5.3.12.562 dotnet +NLog.Layouts.ClefJsonLayout 1.0.0.0 dotnet NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet Npgsql 7.0.7.0 dotnet @@ -370,7 +372,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.9.0-r0 apk +curl 8.9.1-r1 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -391,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.1-r3 apk -libcurl 8.9.0-r0 apk +libcurl 8.9.1-r1 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk @@ -437,7 +439,7 @@ libxml2 2.12.7-r0 libxslt 1.1.39-r1 apk libzmq 4.3.5-r2 apk linux-pam 1.6.0-r0 apk -mbedtls 3.6.0-r0 apk +mbedtls 3.6.1-r0 apk mpg123-libs 1.32.6-r0 apk mscorlib 6.0.3224.31407 dotnet musl 1.2.5-r0 apk From a2664177bc59e74eee872001c68bdfea066b8c9c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 1 Sep 2024 08:34:43 +0000 Subject: [PATCH 580/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b872657f..f5ca9fe6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.5.3.4340 dotnet (+7 duplicates) +Lidarr 2.6.0.4342 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 1f0683950bc5c7d9c3fe7a6c496043c9f5a35b5c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Sep 2024 17:18:10 +0000 Subject: [PATCH 581/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f5ca9fe6..4d320085 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.0.4342 dotnet (+7 duplicates) +Lidarr 2.6.0.4344 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -392,7 +392,7 @@ libattr 2.5.2-r0 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.1-r3 apk +libcrypto3 3.3.2-r0 apk libcurl 8.9.1-r1 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk @@ -419,7 +419,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.3.1-r3 apk +libssl3 3.3.2-r0 apk libstdc++ 13.2.1_git20240309-r0 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk From 8e9f79192c333120c068bf51bd9efdeae2494c71 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Sep 2024 09:04:24 +0000 Subject: [PATCH 582/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4d320085..46878dfc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.0.4344 dotnet (+7 duplicates) +Lidarr 2.6.0.4345 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -354,7 +354,7 @@ WindowsBase 6.0.3224.31407 alpine-baselayout 3.6.5-r0 apk alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk -alpine-release 3.20.2-r0 apk +alpine-release 3.20.3-r0 apk aom-libs 3.9.1-r0 apk apk-tools 2.14.4-r0 apk bash 5.2.26-r0 apk @@ -464,7 +464,7 @@ skalibs 2.14.1.1-r0 soxr 0.1.3-r7 apk sqlite-libs 3.45.3-r1 apk ssl_client 1.36.1-r29 apk -tzdata 2024a-r1 apk +tzdata 2024b-r0 apk utmps-libs 0.1.2.2-r1 apk wayland-libs-client 1.22.0-r4 apk x264-libs 0.164_git20231001-r0 apk From d7ddf854512c5e732b535d2b2b2746a9cf35e7c2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 8 Sep 2024 15:44:14 +0000 Subject: [PATCH 583/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 46878dfc..9d7b5857 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.0.4345 dotnet (+7 duplicates) +Lidarr 2.6.0.4346 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From f87677f8f3bd1a050d5dc31f44027783d6c5f268 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 10 Sep 2024 21:21:21 +0000 Subject: [PATCH 584/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9d7b5857..9daed975 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.0.4346 dotnet (+7 duplicates) +Lidarr 2.6.0.4348 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -382,7 +382,7 @@ giflib 5.2.2-r0 hwdata-pci 0.382-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk -imath 3.1.11-r2 apk +imath 3.1.12-r0 apk jq 1.7.1-r0 apk lame-libs 3.100-r5 apk lcms2 2.16-r0 apk From 8215fa80f421c00ba892b02a9aa43208d410c728 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Sep 2024 13:25:21 +0000 Subject: [PATCH 585/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9daed975..0b7d59c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.0.4348 dotnet (+7 duplicates) +Lidarr 2.6.1.4350 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -372,7 +372,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.9.1-r1 apk +curl 8.10.0-r0 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.2-r0 apk -libcurl 8.9.1-r1 apk +libcurl 8.10.0-r0 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk @@ -407,7 +407,7 @@ libintl 0.22.5-r0 libjpeg-turbo 3.0.3-r0 apk libjxl 0.10.2-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r0 apk +libncursesw 6.4_p20240420-r1 apk libogg 1.3.5-r5 apk libopenmpt 0.7.7-r0 apk libpciaccess 0.18.1-r0 apk @@ -444,7 +444,7 @@ mpg123-libs 1.32.6-r0 mscorlib 6.0.3224.31407 dotnet musl 1.2.5-r0 apk musl-utils 1.2.5-r0 apk -ncurses-terminfo-base 6.4_p20240420-r0 apk +ncurses-terminfo-base 6.4_p20240420-r1 apk netcat-openbsd 1.226-r0 apk netstandard 6.0.3224.31407 dotnet nghttp2-libs 1.62.1-r0 apk From 794a99951a7a01b3a5b45cd64c66b3f35450369b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Sep 2024 14:39:13 +0000 Subject: [PATCH 586/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0b7d59c9..1bf7e7a7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4350 dotnet (+7 duplicates) +Lidarr 2.6.1.4354 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From b74f9f5a2a787daeda3afdd1e56d367671c0bcf1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 15:14:08 +0000 Subject: [PATCH 587/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1bf7e7a7..56bf8568 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4354 dotnet (+7 duplicates) +Lidarr 2.6.1.4356 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -411,7 +411,7 @@ libncursesw 6.4_p20240420-r1 libogg 1.3.5-r5 apk libopenmpt 0.7.7-r0 apk libpciaccess 0.18.1-r0 apk -libpng 1.6.43-r0 apk +libpng 1.6.44-r0 apk libproc2 4.0.4-r0 apk libpsl 0.21.5-r1 apk librist 0.2.10-r1 apk From e641ef067b93b54916f09338caac87df59ec01e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Sep 2024 23:01:54 +0000 Subject: [PATCH 588/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 56bf8568..dba0019f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4356 dotnet (+7 duplicates) +Lidarr 2.6.1.4358 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From ec46b078d72cb1cf1ccdecbeb2001d7685df9b3c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Sep 2024 00:25:00 +0000 Subject: [PATCH 589/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dba0019f..7dab9669 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4358 dotnet (+7 duplicates) +Lidarr 2.6.1.4367 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From a323cf4259534950a967e8ef139dba098b341da0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Sep 2024 19:40:20 +0000 Subject: [PATCH 590/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7dab9669..296fd34b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4367 dotnet (+7 duplicates) +Lidarr 2.6.1.4369 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -372,7 +372,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.10.0-r0 apk +curl 8.9.1-r2 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.2-r0 apk -libcurl 8.10.0-r0 apk +libcurl 8.9.1-r2 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk From 66fa4b1aa8dcdbcbd3c7113daab8f7497c170d51 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Sep 2024 02:23:29 +0000 Subject: [PATCH 591/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 296fd34b..6faec6df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4369 dotnet (+7 duplicates) +Lidarr 2.6.1.4370 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 4e6a273391a360de5f495d3c1f1982149f8b4526 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Sep 2024 05:17:34 +0000 Subject: [PATCH 592/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6faec6df..e40b68fe 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.1.4370 dotnet (+7 duplicates) +Lidarr 2.6.2.4371 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 338f7de91703be55f77c348f9b1764c94bbfc7b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Sep 2024 19:28:29 +0000 Subject: [PATCH 593/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e40b68fe..b721454c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.2.4371 dotnet (+7 duplicates) +Lidarr 2.6.2.4373 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From aa13499322274e6f231be22051867874597e1451 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 23 Sep 2024 01:21:56 +0000 Subject: [PATCH 594/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b721454c..7d0a3247 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.2.4373 dotnet (+7 duplicates) +Lidarr 2.6.2.4374 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From aca2f7141c88278f97e6d2f73dbf9aefc84827c9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:38:45 +0000 Subject: [PATCH 595/790] Bot Updating Templated Files --- Jenkinsfile | 60 +++++++++++++++++++++++++++++++++++++++++++---------- 1 file changed, 49 insertions(+), 11 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2b30e221..aaeafb00 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -81,7 +81,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/commit/' + env.GIT_COMMIT env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID - env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./.github/workflows/package_trigger.yml ./root/donate.txt' + env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./root/donate.txt' } sh '''#! /bin/bash echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' @@ -311,7 +311,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" + 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 .github/workflows/package_trigger.yml" for i in ${OLD_TEMPLATES}; do if [[ -f "${i}" ]]; then TEMPLATES_TO_DELETE="${i} ${TEMPLATES_TO_DELETE}" @@ -719,6 +719,14 @@ pipeline { } sh '''#! /bin/bash set -e + if grep -q 'docker-baseimage' <<< "${LS_REPO}"; then + echo "Detected baseimage, setting LSIO_FIRST_PARTY=true" + if [ -n "${CI_DOCKERENV}" ]; then + CI_DOCKERENV="LSIO_FIRST_PARTY=true|${CI_DOCKERENV}" + else + CI_DOCKERENV="LSIO_FIRST_PARTY=true" + fi + fi docker pull ghcr.io/linuxserver/ci:latest if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 @@ -731,6 +739,7 @@ pipeline { -e DOCKER_LOGS_TIMEOUT=\"${CI_DELAY}\" \ -e TAGS=\"${CI_TAGS}\" \ -e META_TAG=\"${META_TAG}\" \ + -e RELEASE_TAG=\"nightly\" \ -e PORT=\"${CI_PORT}\" \ -e SSL=\"${CI_SSL}\" \ -e BASE=\"${DIST_IMAGE}\" \ @@ -740,6 +749,7 @@ pipeline { -e WEB_SCREENSHOT=\"${CI_WEB}\" \ -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ + -e NODE_NAME=\"${NODE_NAME}\" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } @@ -1007,17 +1017,45 @@ EOF git config --global --unset commit.gpgsign ''' script{ + env.JOB_DATE = sh( + script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', + returnStdout: true).trim() if (env.EXIT_STATUS == "ABORTED"){ sh 'echo "build aborted"' - } - else if (currentBuild.currentResult == "SUCCESS"){ - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 1681177,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** Success\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ - "username": "Jenkins"}' ${BUILDS_DISCORD} ''' - } - else { - sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"color": 16711680,\ - "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** failure\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ + }else{ + if (currentBuild.currentResult == "SUCCESS"){ + if (env.GITHUBIMAGE =~ /lspipepr/){ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=3957028 + env.JOB_WEBHOOK_FOOTER='PR Build' + }else if (env.GITHUBIMAGE =~ /lsiodev/){ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=3957028 + env.JOB_WEBHOOK_FOOTER='Dev Build' + }else{ + env.JOB_WEBHOOK_STATUS='Success' + env.JOB_WEBHOOK_COLOUR=1681177 + env.JOB_WEBHOOK_FOOTER='Live Build' + } + }else{ + if (env.GITHUBIMAGE =~ /lspipepr/){ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=12669523 + env.JOB_WEBHOOK_FOOTER='PR Build' + }else if (env.GITHUBIMAGE =~ /lsiodev/){ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=12669523 + env.JOB_WEBHOOK_FOOTER='Dev Build' + }else{ + env.JOB_WEBHOOK_STATUS='Failure' + env.JOB_WEBHOOK_COLOUR=16711680 + env.JOB_WEBHOOK_FOOTER='Live Build' + } + } + sh ''' curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/jenkins-avatar.png","embeds": [{"'color'": '${JOB_WEBHOOK_COLOUR}',\ + "footer": {"text" : "'"${JOB_WEBHOOK_FOOTER}"'"},\ + "timestamp": "'${JOB_DATE}'",\ + "description": "**Build:** '${BUILD_NUMBER}'\\n**CI Results:** '${CI_URL}'\\n**ShellCheck Results:** '${SHELLCHECK_URL}'\\n**Status:** '${JOB_WEBHOOK_STATUS}'\\n**Job:** '${RUN_DISPLAY_URL}'\\n**Change:** '${CODE_URL}'\\n**External Release:**: '${RELEASE_LINK}'\\n**DockerHub:** '${DOCKERHUB_LINK}'\\n"}],\ "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } } From 65183d4c4f6b2f5688bd553f7a8f20e4db447f39 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:40:48 +0000 Subject: [PATCH 596/790] Bot Updating Templated Files --- .github/workflows/package_trigger.yml | 42 --------------------------- 1 file changed, 42 deletions(-) delete mode 100644 .github/workflows/package_trigger.yml diff --git a/.github/workflows/package_trigger.yml b/.github/workflows/package_trigger.yml deleted file mode 100644 index af6341cd..00000000 --- a/.github/workflows/package_trigger.yml +++ /dev/null @@ -1,42 +0,0 @@ -name: Package Trigger Main - -on: - workflow_dispatch: - -jobs: - package-trigger-nightly: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4.1.1 - - - name: Package Trigger - if: github.ref == 'refs/heads/nightly' - run: | - printf "# Package trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY }}" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY - exit 0 - fi - if [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then - echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> There already seems to be an active build on Jenkins; skipping package trigger" >> $GITHUB_STEP_SUMMARY - exit 0 - fi - echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY - echo "> Package trigger running off of nightly branch. To disable, set a Github secret named \`PAUSE_PACKAGE_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=true \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY - echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY - sleep 10 - buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') - buildurl="${buildurl%$'\r'}" - echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY - echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ - "${buildurl}submitDescription" \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ - --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" From 2158764d0ae793772accc37a60e08e4052c9eb0e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:42:30 +0000 Subject: [PATCH 597/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 64 +++++++++++-------- .../workflows/package_trigger_scheduler.yml | 64 ++++++++++++++----- README.md | 6 +- 3 files changed, 90 insertions(+), 44 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 88074368..b7275c0d 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -11,15 +11,17 @@ jobs: - name: External Trigger if: github.ref == 'refs/heads/nightly' + env: + SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY - if [ -n "${{ secrets.PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY }}" ]; then + if grep -wq "^lidarr_nightly$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY - echo "> Github secret \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\` is set; skipping trigger." >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`lidarr_nightly\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 fi echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY - echo "> External trigger running off of nightly branch. To disable this trigger, set a Github secret named \`PAUSE_EXTERNAL_TRIGGER_LIDARR_NIGHTLY\`" >> $GITHUB_STEP_SUMMARY + echo "> External trigger running off of nightly branch. To disable this trigger, add \`lidarr_nightly\` into the Github organizational variable \`SKIP_EXTERNAL_TRIGGER\`." >> $GITHUB_STEP_SUMMARY printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY @@ -78,26 +80,38 @@ jobs: echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY exit 0 else - printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY - echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - response=$(curl -iX POST \ - https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") - echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY - echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY - sleep 10 - buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') - buildurl="${buildurl%$'\r'}" - echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY - echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ - "${buildurl}submitDescription" \ - --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ - --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" - echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" - curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], - "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + if [[ "${artifacts_found}" == "false" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> New version detected, but not all artifacts are published yet; skipping trigger" >> $GITHUB_STEP_SUMMARY + FAILURE_REASON="New version ${EXT_RELEASE} for lidarr tag nightly is detected, however not all artifacts are uploaded to upstream release yet. Will try again later." + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Trigger Failed** \n**Reason:** '"${FAILURE_REASON}"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + else + printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY + echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY + if "${artifacts_found}" == "true" ]]; then + echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY + fi + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/buildWithParameters?PACKAGE_CHECK=false \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY + curl -iX POST \ + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + echo "**** Notifying Discord ****" + TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi fi diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 6aa4aea1..aa1ac1f0 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -14,6 +14,8 @@ jobs: fetch-depth: '0' - name: Package Trigger Scheduler + env: + SKIP_PACKAGE_TRIGGER: ${{ vars.SKIP_PACKAGE_TRIGGER }} run: | printf "# Package trigger scheduler for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY printf "Found the branches:\n\n%s\n" "$(git for-each-ref --format='- %(refname:lstrip=3)' refs/remotes)" >> $GITHUB_STEP_SUMMARY @@ -24,27 +26,57 @@ jobs: continue fi printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY - ls_branch=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml | yq -r '.ls_branch') - if [ "${br}" == "${ls_branch}" ]; then + JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml) + if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY - if curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/.github/workflows/package_trigger.yml > /dev/null 2>&1; then - echo "Triggering package trigger workflow for branch ${br}" >> $GITHUB_STEP_SUMMARY + if [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif grep -wq "^lidarr_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`lidarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + else + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Triggering package trigger for branch ${br}" >> $GITHUB_STEP_SUMMARY + printf "> To disable, add \`lidarr_%s\` into the Github organizational variable \`SKIP_PACKAGE_TRIGGER\`.\n\n" "${br}" >> $GITHUB_STEP_SUMMARY triggered_branches="${triggered_branches}${br} " + response=$(curl -iX POST \ + https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY + echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY + sleep 10 + buildurl=$(curl -s "${response%$'\r'}api/json" | jq -r '.executable.url') + buildurl="${buildurl%$'\r'}" + echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY + echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY curl -iX POST \ - -H "Authorization: token ${{ secrets.CR_PAT }}" \ - -H "Accept: application/vnd.github.v3+json" \ - -d "{\"ref\":\"refs/heads/${br}\"}" \ - https://api.github.com/repos/linuxserver/docker-lidarr/actions/workflows/package_trigger.yml/dispatches - sleep 30 - else - echo "Skipping branch ${br} due to no package trigger workflow present." >> $GITHUB_STEP_SUMMARY + "${buildurl}submitDescription" \ + --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ + --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ + --data-urlencode "Submit=Submit" + sleep 20 fi else echo "Skipping branch ${br} due to being detected as dev branch." >> $GITHUB_STEP_SUMMARY fi done - echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" - echo "**** Notifying Discord ****" - curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for lidarr** \n**Branch(es):** '"${triggered_branches}"' \n**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], - "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then + if [[ -n "${triggered_branches}" ]]; then + NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n" + fi + if [[ -n "${skipped_branches}" ]]; then + NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n" + fi + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" + echo "**** Notifying Discord ****" + curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, + "description": "**Package Check Build(s) Triggered for lidarr** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], + "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} + fi diff --git a/README.md b/README.md index 85d097b0..58257538 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ Find us at: [![Docker Pulls](https://img.shields.io/docker/pulls/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=pulls&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Docker Stars](https://img.shields.io/docker/stars/linuxserver/lidarr.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=stars&logo=docker)](https://hub.docker.com/r/linuxserver/lidarr) [![Jenkins Build](https://img.shields.io/jenkins/build?labelColor=555555&logoColor=ffffff&style=for-the-badge&jobUrl=https%3A%2F%2Fci.linuxserver.io%2Fjob%2FDocker-Pipeline-Builders%2Fjob%2Fdocker-lidarr%2Fjob%2Fnightly%2F&logo=jenkins)](https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/) -[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Flidarr%2Flatest%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/lidarr/latest/index.html) +[![LSIO CI](https://img.shields.io/badge/dynamic/yaml?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=CI&query=CI&url=https%3A%2F%2Fci-tests.linuxserver.io%2Flinuxserver%2Flidarr%2Fnightly%2Fci-status.yml)](https://ci-tests.linuxserver.io/linuxserver/lidarr/nightly/index.html) [Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available. @@ -87,7 +87,6 @@ The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/d This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). - ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -280,7 +279,8 @@ Below are the instructions for updating containers: ### Image Update Notifications - Diun (Docker Image Update Notifier) -**tip**: We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. +>[!TIP] +>We recommend [Diun](https://crazymax.dev/diun/) for update notifications. Other tools that automatically update containers unattended are not recommended or supported. ## Building locally From e060d36765cf5bf596c3e6f92e580de60b4ecaed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Sep 2024 02:45:28 +0000 Subject: [PATCH 598/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d0a3247..cb0cfc6a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.2.4374 dotnet (+7 duplicates) +Lidarr 2.6.2.4379 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 0e8e39b132c1e5e07cd8caa6f4ae4dea74c84f76 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Sep 2024 05:51:29 +0000 Subject: [PATCH 599/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 2 +- .github/workflows/package_trigger_scheduler.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index b7275c0d..b64fc7c1 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -15,7 +15,7 @@ jobs: SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY - if grep -wq "^lidarr_nightly$" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^lidarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`lidarr_nightly\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index aa1ac1f0..8a67ad4b 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -33,7 +33,7 @@ jobs: echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif grep -wq "^lidarr_${br}$" <<< "${SKIP_PACKAGE_TRIGGER}"; then + elif grep -q "^lidarr_${br}" <<< "${SKIP_PACKAGE_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`lidarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " From cd13da66f232f2502a58196bcd71a786528dc530 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Sep 2024 05:53:56 +0000 Subject: [PATCH 600/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cb0cfc6a..4fd1e71b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.2.4379 dotnet (+7 duplicates) +Lidarr 2.6.3.4380 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet @@ -361,7 +361,7 @@ bash 5.2.26-r0 brotli-libs 1.1.0-r2 apk busybox 1.36.1-r29 apk busybox-binsh 1.36.1-r29 apk -c-ares 1.28.1-r0 apk +c-ares 1.33.1-r0 apk ca-certificates 20240705-r0 apk ca-certificates-bundle 20240705-r0 apk catatonit 0.2.0-r0 apk From 735e9179f5d579c6c6b790889192da492b0eb612 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 07:10:44 +0000 Subject: [PATCH 601/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4fd1e71b..823400fa 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.3.4380 dotnet (+7 duplicates) +Lidarr 2.6.3.4381 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 169efdfe6a265d8e8e803ef6dc46a38a544879d1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 2 Oct 2024 20:21:28 +0000 Subject: [PATCH 602/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 823400fa..169dd7c9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.3.4381 dotnet (+7 duplicates) +Lidarr 2.6.3.4386 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 3ca9074b96cb66b7739b29c828949beb7805b67a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 3 Oct 2024 18:14:03 +0000 Subject: [PATCH 603/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 169dd7c9..d80cdf4f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.3.4386 dotnet (+7 duplicates) +Lidarr 2.6.3.4389 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 5a2a7b15443447861618018ec556dd50ef2430ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Oct 2024 09:40:10 +0000 Subject: [PATCH 604/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d80cdf4f..89b5d26b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.3.4389 dotnet (+7 duplicates) +Lidarr 2.6.4.4391 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 62946fe26a6c11cc3f912a954ae4978b454ea813 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 6 Oct 2024 13:53:10 +0000 Subject: [PATCH 605/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 89b5d26b..aecffae5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.4.4391 dotnet (+7 duplicates) +Lidarr 2.6.4.4392 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 2be03b9ed04445fd99c203050ebf5a8fe37e07e6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 7 Oct 2024 14:31:40 +0000 Subject: [PATCH 606/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index aecffae5..ea6e3884 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.4.4392 dotnet (+7 duplicates) +Lidarr 2.6.4.4393 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 3ec9c95b8963008feda65b026171afc59041df93 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 00:06:46 +0000 Subject: [PATCH 607/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ea6e3884..41ea32de 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.4.4393 dotnet (+7 duplicates) +Lidarr 2.6.4.4397 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 2875b9d1ac78878cc3b7ec9f26a214f2f0cabb47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Oct 2024 00:19:04 +0000 Subject: [PATCH 608/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 41ea32de..84c1b184 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.4.4397 dotnet (+7 duplicates) +Lidarr 2.6.4.4399 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From de416df802cc5ed1fa4f966ac90e7972eb4814af Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Oct 2024 13:03:55 +0000 Subject: [PATCH 609/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 84c1b184..2495c66a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.6.4.4399 dotnet (+7 duplicates) +Lidarr 2.7.0.4403 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From 87d914ca5e7dce36046eea0bcd9094aae7338469 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 9 Oct 2024 17:30:44 +0000 Subject: [PATCH 610/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 2495c66a..dafb7094 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.0.4403 dotnet (+7 duplicates) +Lidarr 2.7.0.4404 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3224.31405 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet From c211b77f0d8ab7a41d047cf012cb2bbd6234f35b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Oct 2024 21:03:05 +0000 Subject: [PATCH 611/790] Bot Updating Package Versions --- package_versions.txt | 524 +++++++++++++++++++++---------------------- 1 file changed, 262 insertions(+), 262 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index dafb7094..0260339f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,94 +13,94 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.0.4404 dotnet (+7 duplicates) +Lidarr 2.7.0.4406 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet -Microsoft.AspNetCore 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authentication 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authorization 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Components 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Components.Server 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Components.Web 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Cors 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.3224.31405 dotnet -Microsoft.AspNetCore.DataProtection 6.0.3224.31405 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.3224.31405 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Hosting 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Features 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Http.Results 6.0.3224.31405 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.3224.31405 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.3224.31405 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Identity 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Localization 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Metadata 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Razor 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.3224.31405 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.3224.31405 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Rewrite 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Routing 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.3224.31405 dotnet -Microsoft.AspNetCore.Session 6.0.3224.31405 dotnet -Microsoft.AspNetCore.SignalR 6.0.3224.31405 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.3224.31405 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.3224.31405 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.3224.31405 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.3224.31405 dotnet -Microsoft.AspNetCore.WebSockets 6.0.3224.31405 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.3224.31405 dotnet +Microsoft.AspNetCore 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authentication 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authentication.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authentication.Cookies 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authentication.Core 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authentication.OAuth 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authorization 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Authorization.Policy 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Components 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Components.Authorization 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Components.Forms 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Components.Server 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Components.Web 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Connections.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.CookiePolicy 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Cors 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Cryptography.Internal 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.3524.46214 dotnet +Microsoft.AspNetCore.DataProtection 6.0.3524.46214 dotnet +Microsoft.AspNetCore.DataProtection.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.DataProtection.Extensions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Diagnostics 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.3524.46214 dotnet +Microsoft.AspNetCore.HostFiltering 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Hosting 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Hosting.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Html.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Connections 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Connections.Common 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Extensions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Features 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Http.Results 6.0.3524.46214 dotnet +Microsoft.AspNetCore.HttpLogging 6.0.3524.46214 dotnet +Microsoft.AspNetCore.HttpOverrides 6.0.3524.46214 dotnet +Microsoft.AspNetCore.HttpsPolicy 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Identity 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Localization 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Localization.Routing 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Metadata 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Core 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Cors 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Localization 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.Razor 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.RazorPages 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.TagHelpers 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Razor 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Razor.Runtime 6.0.3524.46214 dotnet +Microsoft.AspNetCore.ResponseCaching 6.0.3524.46214 dotnet +Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.ResponseCompression 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Rewrite 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Routing 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Routing.Abstractions 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.HttpSys 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.IIS 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.IISIntegration 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.Kestrel 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.Kestrel.Core 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.3524.46214 dotnet +Microsoft.AspNetCore.Session 6.0.3524.46214 dotnet +Microsoft.AspNetCore.SignalR 6.0.3524.46214 dotnet +Microsoft.AspNetCore.SignalR.Common 6.0.3524.46214 dotnet +Microsoft.AspNetCore.SignalR.Core 6.0.3524.46214 dotnet +Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.3524.46214 dotnet +Microsoft.AspNetCore.StaticFiles 6.0.3524.46214 dotnet +Microsoft.AspNetCore.WebSockets 6.0.3524.46214 dotnet +Microsoft.AspNetCore.WebUtilities 6.0.3524.46214 dotnet Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.3224.31407 dotnet +Microsoft.CSharp 6.0.3524.45918 dotnet Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.222.6406 dotnet +Microsoft.Extensions.Caching.Memory 6.0.3524.45918 dotnet Microsoft.Extensions.Configuration 6.0.322.12309 dotnet Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet @@ -109,27 +109,27 @@ Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.3224.31405 dotnet +Microsoft.Extensions.Configuration.KeyPerFile 6.0.3524.46214 dotnet Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.3224.31405 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.3224.31405 dotnet -Microsoft.Extensions.Features 6.0.3224.31405 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks 6.0.3524.46214 dotnet +Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.3524.46214 dotnet +Microsoft.Extensions.Features 6.0.3524.46214 dotnet Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.3224.31405 dotnet +Microsoft.Extensions.FileProviders.Embedded 6.0.3524.46214 dotnet Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet Microsoft.Extensions.Hosting 6.0.222.6406 dotnet Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.3224.31405 dotnet -Microsoft.Extensions.Identity.Stores 6.0.3224.31405 dotnet -Microsoft.Extensions.Localization 6.0.3224.31405 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.3224.31405 dotnet +Microsoft.Extensions.Identity.Core 6.0.3524.46214 dotnet +Microsoft.Extensions.Identity.Stores 6.0.3524.46214 dotnet +Microsoft.Extensions.Localization 6.0.3524.46214 dotnet +Microsoft.Extensions.Localization.Abstractions 6.0.3524.46214 dotnet Microsoft.Extensions.Logging 6.0.21.52210 dotnet Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet @@ -138,25 +138,25 @@ Microsoft.Extensions.Logging.Debug 6.0.21.52210 Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.3224.31405 dotnet +Microsoft.Extensions.ObjectPool 6.0.3524.46214 dotnet Microsoft.Extensions.Options 6.0.21.52210 dotnet Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.3224.31405 dotnet +Microsoft.Extensions.WebEncoders 6.0.3524.46214 dotnet Microsoft.Identity.Client 4.21.1.0 dotnet Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.3224.31405 dotnet -Microsoft.Net.Http.Headers 6.0.3224.31405 dotnet +Microsoft.JSInterop 6.0.3524.46214 dotnet +Microsoft.Net.Http.Headers 6.0.3524.46214 dotnet Microsoft.OpenApi 1.6.14.0 dotnet -Microsoft.VisualBasic 6.0.3224.31407 dotnet -Microsoft.VisualBasic.Core 11.100.3224.31407 dotnet -Microsoft.Win32.Primitives 6.0.3224.31407 dotnet -Microsoft.Win32.Registry 6.0.3224.31407 dotnet +Microsoft.VisualBasic 6.0.3524.45918 dotnet +Microsoft.VisualBasic.Core 11.100.3524.45918 dotnet +Microsoft.Win32.Primitives 6.0.3524.45918 dotnet +Microsoft.Win32.Registry 6.0.3524.45918 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet MimeKit 3.6.0.0 dotnet Mono.Nat 3.0.1 dotnet @@ -167,10 +167,10 @@ NLog.Extensions.Logging v5.3.12 5.3.12.562 NLog.Layouts.ClefJsonLayout 1.0.0.0 dotnet NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.0.0.0 dotnet -Npgsql 7.0.7.0 dotnet -Polly 8.4.1.3582 dotnet +Npgsql 7.0.8.0 dotnet +Polly 8.4.2.3950 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.4.1.3582 dotnet +Polly.Core 8.4.2.3950 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet SixLabors.ImageSharp 3.1.5.0 dotnet @@ -178,179 +178,179 @@ SpotifyAPI.Web 1.0.0.0 Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet Swashbuckle.AspNetCore.SwaggerGen 6.6.2.401 dotnet -System 6.0.3224.31407 dotnet -System.AppContext 6.0.3224.31407 dotnet -System.Buffers 6.0.3224.31407 dotnet -System.Collections 6.0.3224.31407 dotnet -System.Collections.Concurrent 6.0.3224.31407 dotnet -System.Collections.Immutable 6.0.3224.31407 dotnet -System.Collections.NonGeneric 6.0.3224.31407 dotnet -System.Collections.Specialized 6.0.3224.31407 dotnet -System.ComponentModel 6.0.3224.31407 dotnet -System.ComponentModel.Annotations 6.0.3224.31407 dotnet -System.ComponentModel.DataAnnotations 6.0.3224.31407 dotnet -System.ComponentModel.EventBasedAsync 6.0.3224.31407 dotnet -System.ComponentModel.Primitives 6.0.3224.31407 dotnet -System.ComponentModel.TypeConverter 6.0.3224.31407 dotnet -System.Configuration 6.0.3224.31407 dotnet +System 6.0.3524.45918 dotnet +System.AppContext 6.0.3524.45918 dotnet +System.Buffers 6.0.3524.45918 dotnet +System.Collections 6.0.3524.45918 dotnet +System.Collections.Concurrent 6.0.3524.45918 dotnet +System.Collections.Immutable 6.0.3524.45918 dotnet +System.Collections.NonGeneric 6.0.3524.45918 dotnet +System.Collections.Specialized 6.0.3524.45918 dotnet +System.ComponentModel 6.0.3524.45918 dotnet +System.ComponentModel.Annotations 6.0.3524.45918 dotnet +System.ComponentModel.DataAnnotations 6.0.3524.45918 dotnet +System.ComponentModel.EventBasedAsync 6.0.3524.45918 dotnet +System.ComponentModel.Primitives 6.0.3524.45918 dotnet +System.ComponentModel.TypeConverter 6.0.3524.45918 dotnet +System.Configuration 6.0.3524.45918 dotnet System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.3224.31407 dotnet -System.Core 6.0.3224.31407 dotnet -System.Data 6.0.3224.31407 dotnet -System.Data.Common 6.0.3224.31407 dotnet -System.Data.DataSetExtensions 6.0.3224.31407 dotnet +System.Console 6.0.3524.45918 dotnet +System.Core 6.0.3524.45918 dotnet +System.Data 6.0.3524.45918 dotnet +System.Data.Common 6.0.3524.45918 dotnet +System.Data.DataSetExtensions 6.0.3524.45918 dotnet System.Data.SQLite 1.0.115.5 dotnet System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.3224.31407 dotnet -System.Diagnostics.Debug 6.0.3224.31407 dotnet -System.Diagnostics.DiagnosticSource 6.0.3224.31407 dotnet +System.Diagnostics.Contracts 6.0.3524.45918 dotnet +System.Diagnostics.Debug 6.0.3524.45918 dotnet +System.Diagnostics.DiagnosticSource 6.0.3524.45918 dotnet System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.3224.31407 dotnet -System.Diagnostics.Process 6.0.3224.31407 dotnet -System.Diagnostics.StackTrace 6.0.3224.31407 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.3224.31407 dotnet -System.Diagnostics.Tools 6.0.3224.31407 dotnet -System.Diagnostics.TraceSource 6.0.3224.31407 dotnet -System.Diagnostics.Tracing 6.0.3224.31407 dotnet -System.Drawing 6.0.3224.31407 dotnet +System.Diagnostics.FileVersionInfo 6.0.3524.45918 dotnet +System.Diagnostics.Process 6.0.3524.45918 dotnet +System.Diagnostics.StackTrace 6.0.3524.45918 dotnet +System.Diagnostics.TextWriterTraceListener 6.0.3524.45918 dotnet +System.Diagnostics.Tools 6.0.3524.45918 dotnet +System.Diagnostics.TraceSource 6.0.3524.45918 dotnet +System.Diagnostics.Tracing 6.0.3524.45918 dotnet +System.Drawing 6.0.3524.45918 dotnet System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.3224.31407 dotnet -System.Dynamic.Runtime 6.0.3224.31407 dotnet -System.Formats.Asn1 6.0.3224.31407 dotnet -System.Globalization 6.0.3224.31407 dotnet -System.Globalization.Calendars 6.0.3224.31407 dotnet -System.Globalization.Extensions 6.0.3224.31407 dotnet -System.IO 6.0.3224.31407 dotnet +System.Drawing.Primitives 6.0.3524.45918 dotnet +System.Dynamic.Runtime 6.0.3524.45918 dotnet +System.Formats.Asn1 6.0.3524.45918 dotnet +System.Globalization 6.0.3524.45918 dotnet +System.Globalization.Calendars 6.0.3524.45918 dotnet +System.Globalization.Extensions 6.0.3524.45918 dotnet +System.IO 6.0.3524.45918 dotnet System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.3224.31407 dotnet -System.IO.Compression.Brotli 6.0.3224.31407 dotnet -System.IO.Compression.FileSystem 6.0.3224.31407 dotnet -System.IO.Compression.ZipFile 6.0.3224.31407 dotnet -System.IO.FileSystem 6.0.3224.31407 dotnet -System.IO.FileSystem.AccessControl 6.0.3224.31407 dotnet -System.IO.FileSystem.DriveInfo 6.0.3224.31407 dotnet -System.IO.FileSystem.Primitives 6.0.3224.31407 dotnet -System.IO.FileSystem.Watcher 6.0.3224.31407 dotnet -System.IO.IsolatedStorage 6.0.3224.31407 dotnet -System.IO.MemoryMappedFiles 6.0.3224.31407 dotnet +System.IO.Compression 6.0.3524.45918 dotnet +System.IO.Compression.Brotli 6.0.3524.45918 dotnet +System.IO.Compression.FileSystem 6.0.3524.45918 dotnet +System.IO.Compression.ZipFile 6.0.3524.45918 dotnet +System.IO.FileSystem 6.0.3524.45918 dotnet +System.IO.FileSystem.AccessControl 6.0.3524.45918 dotnet +System.IO.FileSystem.DriveInfo 6.0.3524.45918 dotnet +System.IO.FileSystem.Primitives 6.0.3524.45918 dotnet +System.IO.FileSystem.Watcher 6.0.3524.45918 dotnet +System.IO.IsolatedStorage 6.0.3524.45918 dotnet +System.IO.MemoryMappedFiles 6.0.3524.45918 dotnet System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.3224.31407 dotnet -System.IO.Pipes.AccessControl 6.0.3224.31407 dotnet -System.IO.UnmanagedMemoryStream 6.0.3224.31407 dotnet +System.IO.Pipes 6.0.3524.45918 dotnet +System.IO.Pipes.AccessControl 6.0.3524.45918 dotnet +System.IO.UnmanagedMemoryStream 6.0.3524.45918 dotnet System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.3224.31407 dotnet -System.Linq.Expressions 6.0.3224.31407 dotnet -System.Linq.Parallel 6.0.3224.31407 dotnet -System.Linq.Queryable 6.0.3224.31407 dotnet -System.Memory 6.0.3224.31407 dotnet -System.Net 6.0.3224.31407 dotnet -System.Net.Http 6.0.3224.31407 dotnet -System.Net.Http.Json 6.0.3224.31407 dotnet -System.Net.HttpListener 6.0.3224.31407 dotnet -System.Net.Mail 6.0.3224.31407 dotnet -System.Net.NameResolution 6.0.3224.31407 dotnet -System.Net.NetworkInformation 6.0.3224.31407 dotnet -System.Net.Ping 6.0.3224.31407 dotnet -System.Net.Primitives 6.0.3224.31407 dotnet -System.Net.Quic 6.0.3224.31407 dotnet -System.Net.Requests 6.0.3224.31407 dotnet -System.Net.Security 6.0.3224.31407 dotnet -System.Net.ServicePoint 6.0.3224.31407 dotnet -System.Net.Sockets 6.0.3224.31407 dotnet -System.Net.WebClient 6.0.3224.31407 dotnet -System.Net.WebHeaderCollection 6.0.3224.31407 dotnet -System.Net.WebProxy 6.0.3224.31407 dotnet -System.Net.WebSockets 6.0.3224.31407 dotnet -System.Net.WebSockets.Client 6.0.3224.31407 dotnet -System.Numerics 6.0.3224.31407 dotnet -System.Numerics.Vectors 6.0.3224.31407 dotnet -System.ObjectModel 6.0.3224.31407 dotnet -System.Private.CoreLib 6.0.3224.31407 dotnet -System.Private.DataContractSerialization 6.0.3224.31407 dotnet -System.Private.Uri 6.0.3224.31407 dotnet -System.Private.Xml 6.0.3224.31407 dotnet -System.Private.Xml.Linq 6.0.3224.31407 dotnet -System.Reflection 6.0.3224.31407 dotnet -System.Reflection.DispatchProxy 6.0.3224.31407 dotnet -System.Reflection.Emit 6.0.3224.31407 dotnet -System.Reflection.Emit.ILGeneration 6.0.3224.31407 dotnet -System.Reflection.Emit.Lightweight 6.0.3224.31407 dotnet -System.Reflection.Extensions 6.0.3224.31407 dotnet -System.Reflection.Metadata 6.0.3224.31407 dotnet -System.Reflection.Primitives 6.0.3224.31407 dotnet -System.Reflection.TypeExtensions 6.0.3224.31407 dotnet -System.Resources.Reader 6.0.3224.31407 dotnet -System.Resources.ResourceManager 6.0.3224.31407 dotnet -System.Resources.Writer 6.0.3224.31407 dotnet -System.Runtime 6.0.3224.31407 dotnet +System.Linq 6.0.3524.45918 dotnet +System.Linq.Expressions 6.0.3524.45918 dotnet +System.Linq.Parallel 6.0.3524.45918 dotnet +System.Linq.Queryable 6.0.3524.45918 dotnet +System.Memory 6.0.3524.45918 dotnet +System.Net 6.0.3524.45918 dotnet +System.Net.Http 6.0.3524.45918 dotnet +System.Net.Http.Json 6.0.3524.45918 dotnet +System.Net.HttpListener 6.0.3524.45918 dotnet +System.Net.Mail 6.0.3524.45918 dotnet +System.Net.NameResolution 6.0.3524.45918 dotnet +System.Net.NetworkInformation 6.0.3524.45918 dotnet +System.Net.Ping 6.0.3524.45918 dotnet +System.Net.Primitives 6.0.3524.45918 dotnet +System.Net.Quic 6.0.3524.45918 dotnet +System.Net.Requests 6.0.3524.45918 dotnet +System.Net.Security 6.0.3524.45918 dotnet +System.Net.ServicePoint 6.0.3524.45918 dotnet +System.Net.Sockets 6.0.3524.45918 dotnet +System.Net.WebClient 6.0.3524.45918 dotnet +System.Net.WebHeaderCollection 6.0.3524.45918 dotnet +System.Net.WebProxy 6.0.3524.45918 dotnet +System.Net.WebSockets 6.0.3524.45918 dotnet +System.Net.WebSockets.Client 6.0.3524.45918 dotnet +System.Numerics 6.0.3524.45918 dotnet +System.Numerics.Vectors 6.0.3524.45918 dotnet +System.ObjectModel 6.0.3524.45918 dotnet +System.Private.CoreLib 6.0.3524.45918 dotnet +System.Private.DataContractSerialization 6.0.3524.45918 dotnet +System.Private.Uri 6.0.3524.45918 dotnet +System.Private.Xml 6.0.3524.45918 dotnet +System.Private.Xml.Linq 6.0.3524.45918 dotnet +System.Reflection 6.0.3524.45918 dotnet +System.Reflection.DispatchProxy 6.0.3524.45918 dotnet +System.Reflection.Emit 6.0.3524.45918 dotnet +System.Reflection.Emit.ILGeneration 6.0.3524.45918 dotnet +System.Reflection.Emit.Lightweight 6.0.3524.45918 dotnet +System.Reflection.Extensions 6.0.3524.45918 dotnet +System.Reflection.Metadata 6.0.3524.45918 dotnet +System.Reflection.Primitives 6.0.3524.45918 dotnet +System.Reflection.TypeExtensions 6.0.3524.45918 dotnet +System.Resources.Reader 6.0.3524.45918 dotnet +System.Resources.ResourceManager 6.0.3524.45918 dotnet +System.Resources.Writer 6.0.3524.45918 dotnet +System.Runtime 6.0.3524.45918 dotnet System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.3224.31407 dotnet -System.Runtime.Extensions 6.0.3224.31407 dotnet -System.Runtime.Handles 6.0.3224.31407 dotnet -System.Runtime.InteropServices 6.0.3224.31407 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.3224.31407 dotnet -System.Runtime.Intrinsics 6.0.3224.31407 dotnet -System.Runtime.Loader 6.0.3224.31407 dotnet -System.Runtime.Numerics 6.0.3224.31407 dotnet -System.Runtime.Serialization 6.0.3224.31407 dotnet -System.Runtime.Serialization.Formatters 6.0.3224.31407 dotnet -System.Runtime.Serialization.Json 6.0.3224.31407 dotnet -System.Runtime.Serialization.Primitives 6.0.3224.31407 dotnet -System.Runtime.Serialization.Xml 6.0.3224.31407 dotnet -System.Security 6.0.3224.31407 dotnet -System.Security.AccessControl 6.0.3224.31407 dotnet -System.Security.Claims 6.0.3224.31407 dotnet -System.Security.Cryptography.Algorithms 6.0.3224.31407 dotnet -System.Security.Cryptography.Cng 6.0.3224.31407 dotnet -System.Security.Cryptography.Csp 6.0.3224.31407 dotnet -System.Security.Cryptography.Encoding 6.0.3224.31407 dotnet -System.Security.Cryptography.OpenSsl 6.0.3224.31407 dotnet +System.Runtime.CompilerServices.VisualC 6.0.3524.45918 dotnet +System.Runtime.Extensions 6.0.3524.45918 dotnet +System.Runtime.Handles 6.0.3524.45918 dotnet +System.Runtime.InteropServices 6.0.3524.45918 dotnet +System.Runtime.InteropServices.RuntimeInformation 6.0.3524.45918 dotnet +System.Runtime.Intrinsics 6.0.3524.45918 dotnet +System.Runtime.Loader 6.0.3524.45918 dotnet +System.Runtime.Numerics 6.0.3524.45918 dotnet +System.Runtime.Serialization 6.0.3524.45918 dotnet +System.Runtime.Serialization.Formatters 6.0.3524.45918 dotnet +System.Runtime.Serialization.Json 6.0.3524.45918 dotnet +System.Runtime.Serialization.Primitives 6.0.3524.45918 dotnet +System.Runtime.Serialization.Xml 6.0.3524.45918 dotnet +System.Security 6.0.3524.45918 dotnet +System.Security.AccessControl 6.0.3524.45918 dotnet +System.Security.Claims 6.0.3524.45918 dotnet +System.Security.Cryptography.Algorithms 6.0.3524.45918 dotnet +System.Security.Cryptography.Cng 6.0.3524.45918 dotnet +System.Security.Cryptography.Csp 6.0.3524.45918 dotnet +System.Security.Cryptography.Encoding 6.0.3524.45918 dotnet +System.Security.Cryptography.OpenSsl 6.0.3524.45918 dotnet System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet -System.Security.Cryptography.Primitives 6.0.3224.31407 dotnet +System.Security.Cryptography.Primitives 6.0.3524.45918 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.3224.31407 dotnet +System.Security.Cryptography.X509Certificates 6.0.3524.45918 dotnet System.Security.Cryptography.Xml 6.0.822.36306 dotnet System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.3224.31407 dotnet -System.Security.Principal.Windows 6.0.3224.31407 dotnet -System.Security.SecureString 6.0.3224.31407 dotnet -System.ServiceModel.Web 6.0.3224.31407 dotnet -System.ServiceProcess 6.0.3224.31407 dotnet +System.Security.Principal 6.0.3524.45918 dotnet +System.Security.Principal.Windows 6.0.3524.45918 dotnet +System.Security.SecureString 6.0.3524.45918 dotnet +System.ServiceModel.Web 6.0.3524.45918 dotnet +System.ServiceProcess 6.0.3524.45918 dotnet System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.3224.31407 dotnet -System.Text.Encoding.CodePages 6.0.3224.31407 dotnet -System.Text.Encoding.Extensions 6.0.3224.31407 dotnet -System.Text.Encodings.Web 6.0.3224.31407 dotnet -System.Text.Json 6.0.3224.31407 dotnet -System.Text.RegularExpressions 6.0.3224.31407 dotnet -System.Threading 6.0.3224.31407 dotnet -System.Threading.Channels 6.0.3224.31407 dotnet -System.Threading.Overlapped 6.0.3224.31407 dotnet -System.Threading.Tasks 6.0.3224.31407 dotnet -System.Threading.Tasks.Dataflow 6.0.3224.31407 dotnet -System.Threading.Tasks.Extensions 6.0.3224.31407 dotnet -System.Threading.Tasks.Parallel 6.0.3224.31407 dotnet -System.Threading.Thread 6.0.3224.31407 dotnet -System.Threading.ThreadPool 6.0.3224.31407 dotnet -System.Threading.Timer 6.0.3224.31407 dotnet -System.Transactions 6.0.3224.31407 dotnet -System.Transactions.Local 6.0.3224.31407 dotnet -System.ValueTuple 6.0.3224.31407 dotnet -System.Web 6.0.3224.31407 dotnet -System.Web.HttpUtility 6.0.3224.31407 dotnet -System.Windows 6.0.3224.31407 dotnet +System.Text.Encoding 6.0.3524.45918 dotnet +System.Text.Encoding.CodePages 6.0.3524.45918 dotnet +System.Text.Encoding.Extensions 6.0.3524.45918 dotnet +System.Text.Encodings.Web 6.0.3524.45918 dotnet +System.Text.Json 6.0.3524.45918 dotnet +System.Text.RegularExpressions 6.0.3524.45918 dotnet +System.Threading 6.0.3524.45918 dotnet +System.Threading.Channels 6.0.3524.45918 dotnet +System.Threading.Overlapped 6.0.3524.45918 dotnet +System.Threading.Tasks 6.0.3524.45918 dotnet +System.Threading.Tasks.Dataflow 6.0.3524.45918 dotnet +System.Threading.Tasks.Extensions 6.0.3524.45918 dotnet +System.Threading.Tasks.Parallel 6.0.3524.45918 dotnet +System.Threading.Thread 6.0.3524.45918 dotnet +System.Threading.ThreadPool 6.0.3524.45918 dotnet +System.Threading.Timer 6.0.3524.45918 dotnet +System.Transactions 6.0.3524.45918 dotnet +System.Transactions.Local 6.0.3524.45918 dotnet +System.ValueTuple 6.0.3524.45918 dotnet +System.Web 6.0.3524.45918 dotnet +System.Web.HttpUtility 6.0.3524.45918 dotnet +System.Windows 6.0.3524.45918 dotnet System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.3224.31407 dotnet -System.Xml.Linq 6.0.3224.31407 dotnet -System.Xml.ReaderWriter 6.0.3224.31407 dotnet -System.Xml.Serialization 6.0.3224.31407 dotnet -System.Xml.XDocument 6.0.3224.31407 dotnet -System.Xml.XPath 6.0.3224.31407 dotnet -System.Xml.XPath.XDocument 6.0.3224.31407 dotnet -System.Xml.XmlDocument 6.0.3224.31407 dotnet -System.Xml.XmlSerializer 6.0.3224.31407 dotnet +System.Xml 6.0.3524.45918 dotnet +System.Xml.Linq 6.0.3524.45918 dotnet +System.Xml.ReaderWriter 6.0.3524.45918 dotnet +System.Xml.Serialization 6.0.3524.45918 dotnet +System.Xml.XDocument 6.0.3524.45918 dotnet +System.Xml.XPath 6.0.3524.45918 dotnet +System.Xml.XPath.XDocument 6.0.3524.45918 dotnet +System.Xml.XmlDocument 6.0.3524.45918 dotnet +System.Xml.XmlSerializer 6.0.3524.45918 dotnet TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.3224.31407 dotnet +WindowsBase 6.0.3524.45918 dotnet alpine-baselayout 3.6.5-r0 apk alpine-baselayout-data 3.6.5-r0 apk alpine-keys 2.4-r1 apk @@ -441,12 +441,12 @@ libzmq 4.3.5-r2 linux-pam 1.6.0-r0 apk mbedtls 3.6.1-r0 apk mpg123-libs 1.32.6-r0 apk -mscorlib 6.0.3224.31407 dotnet +mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r0 apk musl-utils 1.2.5-r0 apk ncurses-terminfo-base 6.4_p20240420-r1 apk netcat-openbsd 1.226-r0 apk -netstandard 6.0.3224.31407 dotnet +netstandard 6.0.3524.45918 dotnet nghttp2-libs 1.62.1-r0 apk numactl 2.0.18-r0 apk onevpl-libs 2023.3.1-r2 apk From 9f61aceef6aff851bf8dd11f3d19dfe492048443 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Oct 2024 02:36:11 +0000 Subject: [PATCH 612/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0260339f..a785ac76 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -439,7 +439,7 @@ libxml2 2.12.7-r0 libxslt 1.1.39-r1 apk libzmq 4.3.5-r2 apk linux-pam 1.6.0-r0 apk -mbedtls 3.6.1-r0 apk +mbedtls 3.6.2-r0 apk mpg123-libs 1.32.6-r0 apk mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r0 apk From 0d3ab1462ff5bc0d668eb4ec68962b8450f46954 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 03:38:38 +0000 Subject: [PATCH 613/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a785ac76..0a103dbc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.0.4406 dotnet (+7 duplicates) +Lidarr 2.7.0.4412 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 37ed7fd77862b888e0ad422ff76b531f9d81d089 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 04:44:45 +0000 Subject: [PATCH 614/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0a103dbc..eaf4f6bf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.0.4412 dotnet (+7 duplicates) +Lidarr 2.7.0.4413 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 732026a858496a88aee2c100a8ef057966e09aa0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 05:42:05 +0000 Subject: [PATCH 615/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eaf4f6bf..7de35894 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.0.4413 dotnet (+7 duplicates) +Lidarr 2.7.1.4414 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 00614217a4964e62a97795ed099d44a183ae18b6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 20 Oct 2024 09:16:02 +0000 Subject: [PATCH 616/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7de35894..8fd53b77 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.1.4414 dotnet (+7 duplicates) +Lidarr 2.7.1.4415 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -392,7 +392,7 @@ libattr 2.5.2-r0 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.2-r0 apk +libcrypto3 3.3.2-r1 apk libcurl 8.9.1-r2 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk @@ -419,7 +419,7 @@ libsharpyuv 1.3.2-r0 libsodium 1.0.19-r0 apk libsrt 1.5.3-r0 apk libssh 0.10.6-r0 apk -libssl3 3.3.2-r0 apk +libssl3 3.3.2-r1 apk libstdc++ 13.2.1_git20240309-r0 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk From 86616ebe543ccd57edd9e365118656797581e803 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 05:23:09 +0000 Subject: [PATCH 617/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8fd53b77..f1f44590 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.1.4415 dotnet (+7 duplicates) +Lidarr 2.7.1.4416 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From b07f3880b2c83ab97fad0d8e1538c9869351fc24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 26 Oct 2024 06:44:37 +0000 Subject: [PATCH 618/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f1f44590..ecdfbf53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.7.1.4416 dotnet (+7 duplicates) +Lidarr 2.8.0.4418 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 442be12eab47ca5785c8636c1f6a89ebcd1ec66a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 03:35:16 +0000 Subject: [PATCH 619/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ecdfbf53..833d567c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4418 dotnet (+7 duplicates) +Lidarr 2.8.0.4425 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From cbd2628ea8143fcc976edb70e5cf47d89adf11f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 03:50:27 +0000 Subject: [PATCH 620/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 833d567c..1049185d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4425 dotnet (+7 duplicates) +Lidarr 2.8.0.4427 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From f61797aba6e7ae9d2d31fa3ff238f4dcc54c86d1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 07:47:19 +0000 Subject: [PATCH 621/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 1049185d..437e26c3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4427 dotnet (+7 duplicates) +Lidarr 2.8.0.4428 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 2d5adc84c7395c36a375e6417e71b7522c77db5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 27 Oct 2024 07:58:52 +0000 Subject: [PATCH 622/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 437e26c3..ad5e9d72 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4428 dotnet (+7 duplicates) +Lidarr 2.8.0.4429 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 657149d971db5532e768cce366515f4bce810bd4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 30 Oct 2024 02:35:18 +0000 Subject: [PATCH 623/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ad5e9d72..0bab936d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -440,7 +440,7 @@ libxslt 1.1.39-r1 libzmq 4.3.5-r2 apk linux-pam 1.6.0-r0 apk mbedtls 3.6.2-r0 apk -mpg123-libs 1.32.6-r0 apk +mpg123-libs 1.32.8-r0 apk mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r0 apk musl-utils 1.2.5-r0 apk From 06263025b7c84302e6c0fd050fc6f92c5736ac2a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 2 Nov 2024 20:41:17 +0000 Subject: [PATCH 624/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0bab936d..c5591362 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4429 dotnet (+7 duplicates) +Lidarr 2.8.0.4431 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From afe9742b13eb433afc0f596512d51aabcecff6da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 3 Nov 2024 10:19:52 +0000 Subject: [PATCH 625/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index c5591362..090b899f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.0.4431 dotnet (+7 duplicates) +Lidarr 2.8.1.4432 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 8f9708a6b4bda132cd3d6600222c82517842a92b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 17:08:03 +0000 Subject: [PATCH 626/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 090b899f..6534bd83 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4432 dotnet (+7 duplicates) +Lidarr 2.8.1.4437 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 728c2e9e9d6f94b47b40f2f95fcb6a13b7a97835 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 17:25:47 +0000 Subject: [PATCH 627/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6534bd83..21d10bfd 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4437 dotnet (+7 duplicates) +Lidarr 2.8.1.4439 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 9978f5743aaca6a852ed31c9ef18936a0529d59f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 17:42:46 +0000 Subject: [PATCH 628/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 21d10bfd..a8165888 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4439 dotnet (+7 duplicates) +Lidarr 2.8.1.4440 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 034c55347585a03a8eab387c2b82084b035b4c88 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 4 Nov 2024 18:46:33 +0000 Subject: [PATCH 629/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a8165888..342c183a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4440 dotnet (+7 duplicates) +Lidarr 2.8.1.4442 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d04e595fdfdb4c269ac715df70bba705bf8dd32b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 7 Nov 2024 15:19:45 +0000 Subject: [PATCH 630/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 342c183a..21445d5a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4442 dotnet (+7 duplicates) +Lidarr 2.8.1.4444 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d32a655a9bf0d08ec0125c222bbee26ead505313 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 7 Nov 2024 15:33:11 +0000 Subject: [PATCH 631/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 21445d5a..bca3afa0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4444 dotnet (+7 duplicates) +Lidarr 2.8.1.4445 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 6290318d17917e3fbac4533a34a2d8989a2d77da Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Nov 2024 02:31:49 +0000 Subject: [PATCH 632/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index aaeafb00..3bbd80ec 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -884,7 +884,7 @@ pipeline { echo '{"tag_name":"'${META_TAG}'",\ "target_commitish": "nightly",\ "name": "'${META_TAG}'",\ - "body": "**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start + "body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start printf '","draft": false,"prerelease": true}' >> releasebody.json paste -d'\\0' start releasebody.json > releasebody.json.done curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' From 1a080a6eb8b7d239170789161e7e0a0693df8768 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 13 Nov 2024 02:34:19 +0000 Subject: [PATCH 633/790] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 4 ++-- .github/workflows/package_trigger_scheduler.yml | 5 +++-- README.md | 5 +++-- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 0b357717..52acb78e 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -105,10 +105,10 @@ docker build \ -t linuxserver/lidarr:latest . ``` -The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` +The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static` ```bash -docker run --rm --privileged multiarch/qemu-user-static:register --reset +docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset ``` Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 8a67ad4b..3f9cc3bb 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -70,13 +70,14 @@ jobs: if [[ -n "${triggered_branches}" ]] || [[ -n "${skipped_branches}" ]]; then if [[ -n "${triggered_branches}" ]]; then NOTIFY_BRANCHES="**Triggered:** ${triggered_branches} \n" + NOTIFY_BUILD_URL="**Build URL:** https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/ \n" + echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" fi if [[ -n "${skipped_branches}" ]]; then NOTIFY_BRANCHES="${NOTIFY_BRANCHES}**Skipped:** ${skipped_branches} \n" fi - echo "**** Package check build(s) triggered for branch(es): ${triggered_branches} ****" echo "**** Notifying Discord ****" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, - "description": "**Package Check Build(s) Triggered for lidarr** \n'"${NOTIFY_BRANCHES}"'**Build URL:** '"https://ci.linuxserver.io/blue/organizations/jenkins/Docker-Pipeline-Builders%2Fdocker-lidarr/activity/"' \n"}], + "description": "**Package Check Build(s) for lidarr** \n'"${NOTIFY_BRANCHES}"''"${NOTIFY_BUILD_URL}"'"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} fi diff --git a/README.md b/README.md index 58257538..93038e32 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,7 @@ Use the optional paths if you don't understand, or don't want hardlinks/atomic m The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. + ## Read-Only Operation This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). @@ -295,10 +296,10 @@ docker build \ -t lscr.io/linuxserver/lidarr:nightly . ``` -The ARM variants can be built on x86_64 hardware using `multiarch/qemu-user-static` +The ARM variants can be built on x86_64 hardware and vice versa using `lscr.io/linuxserver/qemu-static` ```bash -docker run --rm --privileged multiarch/qemu-user-static:register --reset +docker run --rm --privileged lscr.io/linuxserver/qemu-static --reset ``` Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64`. From 4a4c0c1ccacd7b8d954795efc16f7f2aae4f819a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 15 Nov 2024 22:19:28 +0000 Subject: [PATCH 634/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bca3afa0..a2bf0d5e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4445 dotnet (+7 duplicates) +Lidarr 2.8.1.4453 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 6501524ec5d7cb9b2b3bd6fc9c410ed39b87f6c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Nov 2024 10:09:56 +0000 Subject: [PATCH 635/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index a2bf0d5e..f765f88d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4453 dotnet (+7 duplicates) +Lidarr 2.8.1.4454 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From b51ed17ca742ce59ef4e867532a13b82ecc83ecc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 17 Nov 2024 10:44:19 +0000 Subject: [PATCH 636/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f765f88d..33f0a068 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4454 dotnet (+7 duplicates) +Lidarr 2.8.1.4455 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From e1de0c5e258b16b2833a42d741169f678903c387 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Nov 2024 10:57:56 +0000 Subject: [PATCH 637/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 33f0a068..f3d935d3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4455 dotnet (+7 duplicates) +Lidarr 2.8.1.4462 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From f76e2b1cb50874043ad96e5f059b9e58cad0fba2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 27 Nov 2024 23:43:23 +0000 Subject: [PATCH 638/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f3d935d3..7d44d586 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4462 dotnet (+7 duplicates) +Lidarr 2.8.1.4467 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 620a40f5fb7e3c2dc22294bd36b73ae5f61c99e1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 01:18:31 +0000 Subject: [PATCH 639/790] Bot Updating Templated Files --- Jenkinsfile | 268 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 176 insertions(+), 92 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3bbd80ec..26db6c78 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -8,7 +8,7 @@ pipeline { } // Input to determine if this is a package check parameters { - string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') + string(defaultValue: 'false', description: 'package check run', name: 'PACKAGE_CHECK') } // Configuration for the variables used for this specific repo environment { @@ -191,6 +191,7 @@ pipeline { env.VERSION_TAG = env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -215,6 +216,7 @@ pipeline { env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-pkg-' + env.PACKAGE_TAG + '-dev-' + env.COMMIT_SHA env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -239,6 +241,7 @@ pipeline { env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' + env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' } } } @@ -335,6 +338,35 @@ pipeline { else echo "No templates to delete" fi + echo "Starting Stage 2.5 - Update init diagram" + if ! grep -q 'init_diagram:' readme-vars.yml; then + echo "Adding the key 'init_diagram' to readme-vars.yml" + sed -i '\\|^#.*changelog.*$|d' readme-vars.yml + sed -i 's|^changelogs:|# init diagram\\ninit_diagram:\\n\\n# changelog\\nchangelogs:|' readme-vars.yml + fi + mkdir -p ${TEMPDIR}/d2 + docker run --rm -v ${TEMPDIR}/d2:/output -e PUID=$(id -u) -e PGID=$(id -g) -e RAW="true" ghcr.io/linuxserver/d2-builder:latest ${CONTAINER_NAME}:nightly + ls -al ${TEMPDIR}/d2 + yq -ei ".init_diagram |= load_str(\\"${TEMPDIR}/d2/${CONTAINER_NAME}-nightly.d2\\")" readme-vars.yml + if [[ $(md5sum readme-vars.yml | cut -c1-8) != $(md5sum ${TEMPDIR}/docker-${CONTAINER_NAME}/readme-vars.yml | cut -c1-8) ]]; then + echo "'init_diagram' has been updated. Updating repo and exiting build, new one will trigger based on commit." + mkdir -p ${TEMPDIR}/repo + git clone https://github.com/${LS_USER}/${LS_REPO}.git ${TEMPDIR}/repo/${LS_REPO} + cd ${TEMPDIR}/repo/${LS_REPO} + git checkout -f nightly + cp ${WORKSPACE}/readme-vars.yml ${TEMPDIR}/repo/${LS_REPO}/readme-vars.yml + git add readme-vars.yml + git commit -m 'Bot Updating Templated Files' + git pull https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + git push https://LinuxServer-CI:${GITHUB_TOKEN}@github.com/${LS_USER}/${LS_REPO}.git nightly + echo "true" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Updating templates and exiting build, new one will trigger based on commit" + rm -Rf ${TEMPDIR} + exit 0 + else + echo "false" > /tmp/${COMMIT_SHA}-${BUILD_NUMBER} + echo "Init diagram is unchanged" + fi echo "Starting Stage 3 - Update templates" CURRENTHASH=$(grep -hs ^ ${TEMPLATED_FILES} | md5sum | cut -c1-8) cd ${TEMPDIR}/docker-${CONTAINER_NAME} @@ -543,8 +575,40 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } + } } } // Build MultiArch Docker containers for push to LS Repo @@ -575,8 +639,40 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:amd64-${META_TAG} ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } + } } } stage('Build ARM64') { @@ -585,10 +681,6 @@ pipeline { } steps { echo "Running on node: ${NODE_NAME}" - echo 'Logging into Github' - sh '''#! /bin/bash - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - ''' sh "sed -r -i 's|(^FROM .*)|\\1\\n\\nENV LSIO_FIRST_PARTY=true|g' Dockerfile.aarch64" sh "docker buildx build \ --label \"org.opencontainers.image.created=${GITHUB_DATE}\" \ @@ -604,18 +696,47 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false \ + --provenance=false --sbom=false --builder=container --load \ --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_backoff(5,5) { - sh "docker push ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER}" + sh '''#! /bin/bash + set -e + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker tag ${IMAGE}:arm64v8-${META_TAG} ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + done + ''' + withCredentials([ + [ + $class: 'UsernamePasswordMultiBinding', + credentialsId: 'Quay.io-Robot', + usernameVariable: 'QUAYUSER', + passwordVariable: 'QUAYPASS' + ] + ]) { + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin + echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin + echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin + echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + done + wait + fi + ''' + } } sh '''#! /bin/bash containers=$(docker ps -aq) if [[ -n "${containers}" ]]; then docker stop ${containers} fi - docker system prune -af --volumes || : ''' + docker system prune -af --volumes || : + ''' } } } @@ -765,37 +886,23 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - for PUSHIMAGE in "${GITHUBIMAGE}" "${GITLABIMAGE}" "${QUAYIMAGE}" "${IMAGE}"; do - docker tag ${IMAGE}:${META_TAG} ${PUSHIMAGE}:${META_TAG} - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:nightly - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${PUSHIMAGE}:${META_TAG} ${PUSHIMAGE}:${SEMVER} - fi - docker push ${PUSHIMAGE}:nightly - docker push ${PUSHIMAGE}:${META_TAG} - docker push ${PUSHIMAGE}:${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${PUSHIMAGE}:${SEMVER} - fi + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for PUSHIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${PUSHIMAGE%%/*} =~ \\. ]] && PUSHIMAGEPLUS="${PUSHIMAGE}" || PUSHIMAGEPLUS="docker.io/${PUSHIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${PUSHIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi done - ''' - } + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + fi + done + ''' } } } @@ -806,57 +913,34 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - withCredentials([ - [ - $class: 'UsernamePasswordMultiBinding', - credentialsId: 'Quay.io-Robot', - usernameVariable: 'QUAYUSER', - passwordVariable: 'QUAYPASS' - ] - ]) { - retry_backoff(5,5) { - sh '''#! /bin/bash - set -e - echo $DOCKERHUB_TOKEN | docker login -u linuxserverci --password-stdin - echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin - echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin - echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin - if [ "${CI}" == "false" ]; then - docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 - docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} - fi - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker tag ${IMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-nightly - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker tag ${IMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-nightly - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker tag ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:amd64-${SEMVER} - docker tag ${MANIFESTIMAGE}:arm64v8-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi - docker push ${MANIFESTIMAGE}:amd64-${META_TAG} - docker push ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} - docker push ${MANIFESTIMAGE}:amd64-nightly - docker push ${MANIFESTIMAGE}:arm64v8-${META_TAG} - docker push ${MANIFESTIMAGE}:arm64v8-nightly - docker push ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} - if [ -n "${SEMVER}" ]; then - docker push ${MANIFESTIMAGE}:amd64-${SEMVER} - docker push ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi - done - for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly - 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 buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} - fi + retry_backoff(5,5) { + sh '''#! /bin/bash + set -e + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + [[ ${MANIFESTIMAGE%%/*} =~ \\. ]] && MANIFESTIMAGEPLUS="${MANIFESTIMAGE}" || MANIFESTIMAGEPLUS="docker.io/${MANIFESTIMAGE}" + IFS=',' read -ra CACHE <<< "$BUILDCACHE" + for i in "${CACHE[@]}"; do + if [[ "${MANIFESTIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then + CACHEIMAGE=${i} + fi done - ''' - } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-nightly -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-nightly -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + if [ -n "${SEMVER}" ]; then + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + fi + done + for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do + docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly + 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 buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + fi + done + ''' } } } From 51268fa5588f303ca7333f196db5315c74361f3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 01:20:06 +0000 Subject: [PATCH 640/790] Bot Updating Templated Files --- readme-vars.yml | 112 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 74 insertions(+), 38 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 82ca33bc..69d73f6e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -6,36 +6,30 @@ project_url: "https://github.com/lidarr/Lidarr" project_logo: "https://github.com/lidarr/Lidarr/blob/develop/Logo/400.png" project_blurb: "[{{ project_name|capitalize }}]({{ project_url }}) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available." project_lsio_github_repo_url: "https://github.com/linuxserver/docker-{{ project_name }}" - # supported architectures available_architectures: - - { arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} - - { arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} - + - {arch: "{{ arch_x86_64 }}", tag: "amd64-latest"} + - {arch: "{{ arch_arm64 }}", tag: "arm64v8-latest"} # development version development_versions: true development_versions_items: - - { tag: "latest", desc: "Stable Lidarr releases." } - - { tag: "develop", desc: "Develop Lidarr Releases." } - - { tag: "nightly", desc: "Nightly Lidarr Releases." } - + - {tag: "latest", desc: "Stable Lidarr releases."} + - {tag: "develop", desc: "Develop Lidarr Releases."} + - {tag: "nightly", desc: "Nightly Lidarr Releases."} # container parameters common_param_env_vars_enabled: true #PGID, PUID, etc, you can set it to 'optional' param_container_name: "{{ project_name }}" - param_usage_include_vols: true param_volumes: - - { vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Configuration files for Lidarr." } + - {vol_path: "/config", vol_host_path: "/path/to/{{ project_name }}/config", desc: "Configuration files for Lidarr."} opt_param_usage_include_vols: true opt_param_volumes: - - { vol_path: "/music", vol_host_path: "/path/to/music", desc: "Music files (See note in Application setup)." } - - { vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Path to your download folder for music (See note in Application setup)." } + - {vol_path: "/music", vol_host_path: "/path/to/music", desc: "Music files (See note in Application setup)."} + - {vol_path: "/downloads", vol_host_path: "/path/to/downloads", desc: "Path to your download folder for music (See note in Application setup)."} param_usage_include_ports: true param_ports: - - { external_port: "8686", internal_port: "8686", port_desc: "Application WebUI" } - + - {external_port: "8686", internal_port: "8686", port_desc: "Application WebUI"} readonly_supported: true - # application setup block app_setup_block_enabled: true app_setup_block: | @@ -52,28 +46,70 @@ app_setup_block: | Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. - +# init diagram +init_diagram: | + "lidarr:nightly": { + docker-mods + base { + fix-attr +\nlegacy cont-init + } + docker-mods -> base + legacy-services + custom services + init-services -> legacy-services + init-services -> custom services + custom services -> legacy-services + legacy-services -> ci-service-check + init-migrations -> init-adduser + init-os-end -> init-config + init-config -> init-config-end + init-lidarr-config -> init-config-end + init-os-end -> init-crontab-config + init-mods-end -> init-custom-files + base -> init-envfile + init-config -> init-lidarr-config + base -> init-migrations + base -> init-mods + init-config-end -> init-mods + init-mods -> init-mods-end + init-mods-package-install -> init-mods-end + init-mods -> init-mods-package-install + base -> init-os-end + init-adduser -> init-os-end + init-envfile -> init-os-end + init-migrations -> init-os-end + init-custom-files -> init-services + init-mods-end -> init-services + init-services -> svc-cron + svc-cron -> legacy-services + init-services -> svc-lidarr + svc-lidarr -> legacy-services + } + Base Images: { + "baseimage-alpine:3.20" + } + "lidarr:nightly" <- Base Images # changelog changelogs: - - { date: "25.05.24:", desc: "Rebase to Alpine 3.20." } - - { date: "20.03.24:", desc: "Rebase to Alpine 3.19." } - - { date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18." } - - { date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17." } - - { date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3." } - - { date: "04.02.22:", desc: "Rebase nightly branch to Alpine." } - - { date: "30.12.21:", desc: "Add nightly-alpine branch." } - - { date: "01.08.21:", desc: "Add libchromaprint-tools." } - - { date: "11.07.21:", desc: "Make the paths clearer to the user." } - - { date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information." } - - { date: "27.09.20:", desc: "Move preview branch/tag to nightly." } - - { date: "05.04.20:", desc: "Move app to /app." } - - { date: "29.10.19:", desc: "Switch preview branch to netcore builds." } - - { date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version." } - - { date: "13.06.19:", desc: "Add env variable for setting umask." } - - { date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag." } - - { date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint." } - - { date: "26.01.19:", desc: "Add pipeline logic and multi arch." } - - { date: "22.04.18:", desc: "Switch to beta builds." } - - { date: "17.03.18:", desc: "Add ENV XDG_CONFIG_HOME=\"/config/xdg\" to Dockerfile for signalr fix." } - - { date: "27.02.18:", desc: "Use json to query for new version." } - - { date: "23.02.18:", desc: "Initial Release." } + - {date: "25.05.24:", desc: "Rebase to Alpine 3.20."} + - {date: "20.03.24:", desc: "Rebase to Alpine 3.19."} + - {date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18."} + - {date: "19.12.22:", desc: "Rebase nightly to Alpine 3.17."} + - {date: "27.10.22:", desc: "Rebase nightly to Alpine 3.16, migrate to s6v3."} + - {date: "04.02.22:", desc: "Rebase nightly branch to Alpine."} + - {date: "30.12.21:", desc: "Add nightly-alpine branch."} + - {date: "01.08.21:", desc: "Add libchromaprint-tools."} + - {date: "11.07.21:", desc: "Make the paths clearer to the user."} + - {date: "20.01.21:", desc: "Deprecate `UMASK_SET` in favor of UMASK in baseimage, see above for more information."} + - {date: "27.09.20:", desc: "Move preview branch/tag to nightly."} + - {date: "05.04.20:", desc: "Move app to /app."} + - {date: "29.10.19:", desc: "Switch preview branch to netcore builds."} + - {date: "01.08.19:", desc: "Rebase to Linuxserver LTS mono version."} + - {date: "13.06.19:", desc: "Add env variable for setting umask."} + - {date: "23.03.19:", desc: "Switching to new Base images, shift to arm32v7 tag."} + - {date: "08.03.19:", desc: "Rebase to Bionic, use proposed endpoint for libchromaprint."} + - {date: "26.01.19:", desc: "Add pipeline logic and multi arch."} + - {date: "22.04.18:", desc: "Switch to beta builds."} + - {date: "17.03.18:", desc: "Add ENV XDG_CONFIG_HOME=\"/config/xdg\" to Dockerfile for signalr fix."} + - {date: "27.02.18:", desc: "Use json to query for new version."} + - {date: "23.02.18:", desc: "Initial Release."} From b9eb2e4a0d4c79f7f28ff6a74ea21196ea41f74f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 01:21:57 +0000 Subject: [PATCH 641/790] Bot Updating Templated Files --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 93038e32..b7533780 100644 --- a/README.md +++ b/README.md @@ -83,7 +83,6 @@ Use the optional paths if you don't understand, or don't want hardlinks/atomic m The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. - ## Read-Only Operation This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). @@ -92,6 +91,9 @@ This image can be run with a read-only container filesystem. For details please To help you get started creating a container from this image you can either use docker-compose or the docker cli. +>[!NOTE] +>Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided. + ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) ```yaml @@ -135,7 +137,7 @@ Containers are configured using parameters passed at runtime (such as those abov | Parameter | Function | | :----: | --- | -| `-p 8686` | Application WebUI | +| `-p 8686:8686` | Application WebUI | | `-e PUID=1000` | for UserID - see below for explanation | | `-e PGID=1000` | for GroupID - see below for explanation | | `-e TZ=Etc/UTC` | specify a timezone to use, see this [list](https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#List). | From 3046e1a7e40b48a9bd0742dcfd4c364c97160393 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 2 Dec 2024 01:24:53 +0000 Subject: [PATCH 642/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7d44d586..7bba6223 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4467 dotnet (+7 duplicates) +Lidarr 2.8.1.4473 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From c5854400515d4407f36f3558d6be0a3c70f948ac Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Dec 2024 02:44:00 +0000 Subject: [PATCH 643/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index b64fc7c1..42bad348 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -43,16 +43,18 @@ jobs: token=$(curl -sX GET \ "https://ghcr.io/token?scope=repository%3Alinuxserver%2Flidarr%3Apull" \ | jq -r '.token') - multidigest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${tag}" \ - | jq -r 'first(.manifests[].digest)') - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ - | jq -r '.config.digest') + multidigest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.index.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${tag}") + multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") + digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.manifest.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ + | jq -r '.config.digest') image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/blobs/${digest}") From 4977efff4fab89f0861e785c0676c9854fd34f34 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Dec 2024 02:47:55 +0000 Subject: [PATCH 644/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7bba6223..1f2ec878 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.1.4473 dotnet (+7 duplicates) +Lidarr 2.8.2.4483 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -356,7 +356,7 @@ alpine-baselayout-data 3.6.5-r0 alpine-keys 2.4-r1 apk alpine-release 3.20.3-r0 apk aom-libs 3.9.1-r0 apk -apk-tools 2.14.4-r0 apk +apk-tools 2.14.4-r1 apk bash 5.2.26-r0 apk brotli-libs 1.1.0-r2 apk busybox 1.36.1-r29 apk @@ -372,7 +372,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.9.1-r2 apk +curl 8.11.0-r2 apk ffmpeg-libavcodec 6.1.1-r8 apk ffmpeg-libavformat 6.1.1-r8 apk ffmpeg-libavutil 6.1.1-r8 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.2-r1 apk -libcurl 8.9.1-r2 apk +libcurl 8.11.0-r2 apk libdav1d 1.4.2-r0 apk libdrm 2.4.120-r0 apk libffi 3.4.6-r0 apk @@ -407,7 +407,7 @@ libintl 0.22.5-r0 libjpeg-turbo 3.0.3-r0 apk libjxl 0.10.2-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r1 apk +libncursesw 6.4_p20240420-r2 apk libogg 1.3.5-r5 apk libopenmpt 0.7.7-r0 apk libpciaccess 0.18.1-r0 apk @@ -444,7 +444,7 @@ mpg123-libs 1.32.8-r0 mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r0 apk musl-utils 1.2.5-r0 apk -ncurses-terminfo-base 6.4_p20240420-r1 apk +ncurses-terminfo-base 6.4_p20240420-r2 apk netcat-openbsd 1.226-r0 apk netstandard 6.0.3524.45918 dotnet nghttp2-libs 1.62.1-r0 apk From 43187e0aa1b5ec1482874e306c953e9ac323e96d Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 12 Dec 2024 19:11:36 +0000 Subject: [PATCH 645/790] Rebase to 3.21, support non-root operation --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- README.md | 6 ++++++ readme-vars.yml | 2 ++ root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run | 9 +++++---- root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 7 +++++++ 6 files changed, 22 insertions(+), 6 deletions(-) diff --git a/Dockerfile b/Dockerfile index 157d84da..3cbbeb81 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.20 +FROM ghcr.io/linuxserver/baseimage-alpine:3.21 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 1badf825..dccf8b4e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.20 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 # set version label ARG BUILD_DATE diff --git a/README.md b/README.md index b7533780..df8aa123 100644 --- a/README.md +++ b/README.md @@ -87,6 +87,10 @@ The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/d This image can be run with a read-only container filesystem. For details please [read the docs](https://docs.linuxserver.io/misc/read-only/). +## Non-Root Operation + +This image can be run with a non-root user. For details please [read the docs](https://docs.linuxserver.io/misc/non-root/). + ## Usage To help you get started creating a container from this image you can either use docker-compose or the docker cli. @@ -145,6 +149,7 @@ Containers are configured using parameters passed at runtime (such as those abov | `-v /music` | Music files (See note in Application setup). | | `-v /downloads` | Path to your download folder for music (See note in Application setup). | | `--read-only=true` | Run container with a read-only filesystem. Please [read the docs](https://docs.linuxserver.io/misc/read-only/). | +| `--user=1000:1000` | Run container with a non-root user. Please [read the docs](https://docs.linuxserver.io/misc/non-root/). | ## Environment variables from files (Docker secrets) @@ -308,6 +313,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **12.12.24:** - Rebase to Alpine 3.21. * **25.05.24:** - Rebase to Alpine 3.20. * **20.03.24:** - Rebase to Alpine 3.19. * **06.06.23:** - Rebase nightly to Alpine 3.18. diff --git a/readme-vars.yml b/readme-vars.yml index 69d73f6e..4bcab191 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -30,6 +30,7 @@ param_usage_include_ports: true param_ports: - {external_port: "8686", internal_port: "8686", port_desc: "Application WebUI"} readonly_supported: true +nonroot_supported: true # application setup block app_setup_block_enabled: true app_setup_block: | @@ -91,6 +92,7 @@ init_diagram: | "lidarr:nightly" <- Base Images # changelog changelogs: + - {date: "12.12.24:", desc: "Rebase to Alpine 3.21."} - {date: "25.05.24:", desc: "Rebase to Alpine 3.20."} - {date: "20.03.24:", desc: "Rebase to Alpine 3.19."} - {date: "06.06.23:", desc: "Rebase nightly to Alpine 3.18."} diff --git a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run index 7e43d1e6..6e16909e 100755 --- a/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run +++ b/root/etc/s6-overlay/s6-rc.d/init-lidarr-config/run @@ -3,7 +3,8 @@ mkdir -p /run/lidarr-temp -# permissions -lsiown -R abc:abc \ - /config \ - /run/lidarr-temp +if [[ -z ${LSIO_NON_ROOT_USER} ]]; then + lsiown -R abc:abc \ + /config \ + /run/lidarr-temp +fi diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run index 00b84553..93fef4bb 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -1,7 +1,14 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash +if [[ -n ${LSIO_NON_ROOT_USER} ]]; then +exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/lidarr/bin /app/lidarr/bin/Lidarr \ + -nobrowser -data=/config +else exec \ s6-notifyoncheck -d -n 300 -w 1000 \ cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ -nobrowser -data=/config +fi From c5499f55b6f4970196f6552c8d4283028d499953 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 12 Dec 2024 19:17:51 +0000 Subject: [PATCH 646/790] Fix indent --- root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run index 93fef4bb..5aaf7b40 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -2,13 +2,13 @@ # shellcheck shell=bash if [[ -n ${LSIO_NON_ROOT_USER} ]]; then -exec \ - s6-notifyoncheck -d -n 300 -w 1000 \ - cd /app/lidarr/bin /app/lidarr/bin/Lidarr \ - -nobrowser -data=/config + exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/lidarr/bin /app/lidarr/bin/Lidarr \ + -nobrowser -data=/config else -exec \ - s6-notifyoncheck -d -n 300 -w 1000 \ - cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ - -nobrowser -data=/config + exec \ + s6-notifyoncheck -d -n 300 -w 1000 \ + cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ + -nobrowser -data=/config fi From 1e41f9f041dbae6f2cc1bb5bc4ad84ea7b7337a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Dec 2024 20:02:54 +0000 Subject: [PATCH 647/790] Bot Updating Templated Files --- readme-vars.yml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/readme-vars.yml b/readme-vars.yml index 4bcab191..fc01e563 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -64,30 +64,26 @@ init_diagram: | init-migrations -> init-adduser init-os-end -> init-config init-config -> init-config-end + init-crontab-config -> init-config-end init-lidarr-config -> init-config-end - init-os-end -> init-crontab-config + init-config -> init-crontab-config init-mods-end -> init-custom-files base -> init-envfile init-config -> init-lidarr-config base -> init-migrations - base -> init-mods init-config-end -> init-mods - init-mods -> init-mods-end init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install - base -> init-os-end init-adduser -> init-os-end init-envfile -> init-os-end - init-migrations -> init-os-end init-custom-files -> init-services - init-mods-end -> init-services init-services -> svc-cron svc-cron -> legacy-services init-services -> svc-lidarr svc-lidarr -> legacy-services } Base Images: { - "baseimage-alpine:3.20" + "baseimage-alpine:3.21" } "lidarr:nightly" <- Base Images # changelog From 4a16b2e61eaf1baa07e11aef6d09c1ab9810e241 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 12 Dec 2024 20:06:45 +0000 Subject: [PATCH 648/790] Bot Updating Package Versions --- package_versions.txt | 146 ++++++++++++++++++++++--------------------- 1 file changed, 74 insertions(+), 72 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1f2ec878..4a5f859b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -351,19 +351,20 @@ System.Xml.XmlDocument 6.0.3524.45918 System.Xml.XmlSerializer 6.0.3524.45918 dotnet TagLib# 2.2.0.27 dotnet WindowsBase 6.0.3524.45918 dotnet -alpine-baselayout 3.6.5-r0 apk -alpine-baselayout-data 3.6.5-r0 apk -alpine-keys 2.4-r1 apk -alpine-release 3.20.3-r0 apk -aom-libs 3.9.1-r0 apk -apk-tools 2.14.4-r1 apk -bash 5.2.26-r0 apk +acl-libs 2.3.2-r1 apk +alpine-baselayout 3.6.8-r0 apk +alpine-baselayout-data 3.6.8-r0 apk +alpine-keys 2.5-r0 apk +alpine-release 3.21.0-r0 apk +aom-libs 3.11.0-r0 apk +apk-tools 2.14.6-r2 apk +bash 5.2.37-r0 apk brotli-libs 1.1.0-r2 apk -busybox 1.36.1-r29 apk -busybox-binsh 1.36.1-r29 apk -c-ares 1.33.1-r0 apk -ca-certificates 20240705-r0 apk -ca-certificates-bundle 20240705-r0 apk +busybox 1.37.0-r8 apk +busybox-binsh 1.37.0-r8 apk +c-ares 1.34.3-r0 apk +ca-certificates 20241010-r0 apk +ca-certificates-bundle 20241010-r0 apk catatonit 0.2.0-r0 apk chromaprint 1.5.1-r7 apk chromaprint-libs 1.5.1-r7 apk @@ -373,104 +374,105 @@ coreutils-env 9.5-r1 coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk curl 8.11.0-r2 apk -ffmpeg-libavcodec 6.1.1-r8 apk -ffmpeg-libavformat 6.1.1-r8 apk -ffmpeg-libavutil 6.1.1-r8 apk -ffmpeg-libswresample 6.1.1-r8 apk -findutils 4.9.0-r5 apk +ffmpeg-libavcodec 6.1.2-r1 apk +ffmpeg-libavformat 6.1.2-r1 apk +ffmpeg-libavutil 6.1.2-r1 apk +ffmpeg-libswresample 6.1.2-r1 apk +findutils 4.10.0-r0 apk giflib 5.2.2-r0 apk -hwdata-pci 0.382-r0 apk +hwdata-pci 0.390-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk imath 3.1.12-r0 apk jq 1.7.1-r0 apk lame-libs 3.100-r5 apk lcms2 2.16-r0 apk -libSvtAv1Enc 2.0.0-r1 apk -libacl 2.3.2-r0 apk -libattr 2.5.2-r0 apk +libSvtAv1Enc 2.2.1-r0 apk +libattr 2.5.2-r2 apk libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.2-r1 apk +libcrypto3 3.3.2-r4 apk libcurl 8.11.0-r2 apk -libdav1d 1.4.2-r0 apk -libdrm 2.4.120-r0 apk +libdav1d 1.5.0-r0 apk +libdeflate 1.22-r0 apk +libdrm 2.4.123-r1 apk libffi 3.4.6-r0 apk -libgcc 13.2.1_git20240309-r0 apk -libgcrypt 1.10.3-r0 apk -libgomp 13.2.1_git20240309-r0 apk -libgpg-error 1.49-r0 apk +libgcc 14.2.0-r4 apk +libgcrypt 1.10.3-r1 apk +libgomp 14.2.0-r4 apk +libgpg-error 1.51-r0 apk libhwy 1.0.7-r0 apk libidn2 2.3.7-r0 apk libintl 0.22.5-r0 apk -libjpeg-turbo 3.0.3-r0 apk -libjxl 0.10.2-r0 apk +libjpeg-turbo 3.0.4-r0 apk +libjxl 0.10.3-r0 apk libmd 1.1.0-r0 apk -libncursesw 6.4_p20240420-r2 apk +libncursesw 6.5_p20241006-r3 apk libogg 1.3.5-r5 apk -libopenmpt 0.7.7-r0 apk +libopenmpt 0.7.12-r0 apk libpciaccess 0.18.1-r0 apk libpng 1.6.44-r0 apk -libproc2 4.0.4-r0 apk -libpsl 0.21.5-r1 apk +libproc2 4.0.4-r2 apk +libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk -libsharpyuv 1.3.2-r0 apk -libsodium 1.0.19-r0 apk +libsharpyuv 1.4.0-r0 apk +libsodium 1.0.20-r0 apk libsrt 1.5.3-r0 apk -libssh 0.10.6-r0 apk -libssl3 3.3.2-r1 apk -libstdc++ 13.2.1_git20240309-r0 apk +libssh 0.11.1-r0 apk +libssl3 3.3.2-r4 apk +libstdc++ 14.2.0-r4 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk -libva 2.21.0-r0 apk -libvdpau 1.5-r3 apk +libva 2.22.0-r1 apk +libvdpau 1.5-r4 apk libvorbis 1.3.7-r2 apk -libvpx 1.14.1-r0 apk -libwebp 1.3.2-r0 apk -libwebpmux 1.3.2-r0 apk -libx11 1.8.9-r1 apk +libvpx 1.15.0-r0 apk +libwebp 1.4.0-r0 apk +libwebpmux 1.4.0-r0 apk +libx11 1.8.10-r0 apk libxau 1.0.11-r4 apk libxcb 1.16.1-r0 apk libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk -libxml2 2.12.7-r0 apk -libxslt 1.1.39-r1 apk +libxml2 2.13.4-r3 apk +libxslt 1.1.42-r1 apk libzmq 4.3.5-r2 apk -linux-pam 1.6.0-r0 apk +linux-pam 1.6.1-r1 apk mbedtls 3.6.2-r0 apk -mpg123-libs 1.32.8-r0 apk +mpg123-libs 1.32.9-r0 apk mscorlib 6.0.3524.45918 dotnet -musl 1.2.5-r0 apk -musl-utils 1.2.5-r0 apk -ncurses-terminfo-base 6.4_p20240420-r2 apk -netcat-openbsd 1.226-r0 apk +musl 1.2.5-r8 apk +musl-utils 1.2.5-r8 apk +ncurses-terminfo-base 6.5_p20241006-r3 apk +netcat-openbsd 1.226.1.1-r0 apk netstandard 6.0.3524.45918 dotnet -nghttp2-libs 1.62.1-r0 apk +nghttp2-libs 1.64.0-r0 apk numactl 2.0.18-r0 apk onevpl-libs 2023.3.1-r2 apk oniguruma 6.9.9-r0 apk -openexr-libiex 3.1.13-r1 apk -openexr-libilmthread 3.1.13-r1 apk -openexr-libopenexr 3.1.13-r1 apk -opus 1.5.2-r0 apk -procps-ng 4.0.4-r0 apk +openexr-libiex 3.3.2-r0 apk +openexr-libilmthread 3.3.2-r0 apk +openexr-libopenexr 3.3.2-r0 apk +openexr-libopenexrcore 3.3.2-r0 apk +opus 1.5.2-r1 apk +procps-ng 4.0.4-r2 apk rav1e-libs 0.7.1-r0 apk -readline 8.2.10-r0 apk -scanelf 1.3.7-r2 apk -shadow 4.15.1-r0 apk -skalibs 2.14.1.1-r0 apk +readline 8.2.13-r0 apk +scanelf 1.3.8-r1 apk +shadow 4.16.0-r1 apk +skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.45.3-r1 apk -ssl_client 1.36.1-r29 apk -tzdata 2024b-r0 apk -utmps-libs 0.1.2.2-r1 apk -wayland-libs-client 1.22.0-r4 apk -x264-libs 0.164_git20231001-r0 apk +sqlite-libs 3.47.1-r0 apk +ssl_client 1.37.0-r8 apk +tzdata 2024b-r1 apk +utmps-libs 0.1.2.3-r2 apk +wayland-libs-client 1.23.1-r0 apk +x264-libs 0.164.3108-r0 apk x265-libs 3.6-r0 apk xmlstarlet 1.6.1-r2 apk xvidcore 1.3.7-r2 apk -xz-libs 5.6.2-r0 apk -zlib 1.3.1-r1 apk -zstd-libs 1.5.6-r0 apk +xz-libs 5.6.3-r0 apk +zlib 1.3.1-r2 apk +zstd-libs 1.5.6-r1 apk From f297a6d06a6e30e7589ec356da17d0a5cf4a44d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 14 Dec 2024 01:05:02 +0000 Subject: [PATCH 649/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4a5f859b..5c751866 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.2.4483 dotnet (+7 duplicates) +Lidarr 2.8.2.4485 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 9d69091695869af12a3a9f9320fb358177f523d2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 15 Dec 2024 04:08:05 +0000 Subject: [PATCH 650/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5c751866..6781f9cf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.2.4485 dotnet (+7 duplicates) +Lidarr 2.8.2.4490 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From cbea6153818cb7182737e2eaf52692235410835d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 15:02:06 +0000 Subject: [PATCH 651/790] Bot Updating Templated Files --- Jenkinsfile | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 26db6c78..4ffdfef3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -575,7 +575,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -t ${IMAGE}:${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -604,7 +604,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -639,7 +641,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -t ${IMAGE}:amd64-${META_TAG} --platform=linux/amd64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -668,7 +670,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } @@ -696,7 +700,7 @@ pipeline { --label \"org.opencontainers.image.title=Lidarr\" \ --label \"org.opencontainers.image.description=[Lidarr](https://github.com/lidarr/Lidarr) is a music collection manager for Usenet and BitTorrent users. It can monitor multiple RSS feeds for new tracks from your favorite artists and will grab, sort and rename them. It can also be configured to automatically upgrade the quality of files already downloaded when a better quality format becomes available.\" \ --no-cache --pull -f Dockerfile.aarch64 -t ${IMAGE}:arm64v8-${META_TAG} --platform=linux/arm64 \ - --provenance=false --sbom=false --builder=container --load \ + --provenance=true --sbom=true --builder=container --load \ --build-arg ${BUILD_VERSION_ARG}=${EXT_RELEASE} --build-arg VERSION=\"${VERSION_TAG}\" --build-arg BUILD_DATE=${GITHUB_DATE} ." sh '''#! /bin/bash set -e @@ -725,7 +729,9 @@ pipeline { for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & done - wait + for p in $(jobs -p); do + wait "$p" || { echo "job $p failed" >&2; exit 1; } + done fi ''' } From 15efdf0343c2e204f3e9105e11eec3aec4ec1e37 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 15:05:34 +0000 Subject: [PATCH 652/790] Bot Updating Templated Files --- .github/workflows/external_trigger.yml | 33 ++++++++++++++----- .../workflows/package_trigger_scheduler.yml | 27 ++++++++++++--- 2 files changed, 47 insertions(+), 13 deletions(-) diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index 42bad348..ebc19f7a 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -48,13 +48,30 @@ jobs: --header "Accept: application/vnd.oci.image.index.v1+json" \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/manifests/${tag}") - multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") - digest=$(curl -s \ - --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ - --header "Accept: application/vnd.oci.image.manifest.v1+json" \ - --header "Authorization: Bearer ${token}" \ - "https://ghcr.io/v2/${image}/manifests/${multidigest}" \ - | jq -r '.config.digest') + if jq -e '.layers // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # If there's a layer element it's a single-arch manifest so just get that digest + digest=$(jq -r '.config.digest' <<< "${multidigest}") + else + # Otherwise it's multi-arch or has manifest annotations + if jq -e '.manifests[]?.annotations // empty' <<< "${multidigest}" >/dev/null 2>&1; then + # Check for manifest annotations and delete if found + multidigest=$(jq 'del(.manifests[] | select(.annotations))' <<< "${multidigest}") + fi + if [[ $(jq '.manifests | length' <<< "${multidigest}") -gt 1 ]]; then + # If there's still more than one digest, it's multi-arch + multidigest=$(jq -r ".manifests[] | select(.platform.architecture == \"amd64\").digest?" <<< "${multidigest}") + else + # Otherwise it's single arch + multidigest=$(jq -r ".manifests[].digest?" <<< "${multidigest}") + fi + if digest=$(curl -s \ + --header "Accept: application/vnd.docker.distribution.manifest.v2+json" \ + --header "Accept: application/vnd.oci.image.manifest.v1+json" \ + --header "Authorization: Bearer ${token}" \ + "https://ghcr.io/v2/${image}/manifests/${multidigest}"); then + digest=$(jq -r '.config.digest' <<< "${digest}"); + fi + fi image_info=$(curl -sL \ --header "Authorization: Bearer ${token}" \ "https://ghcr.io/v2/${image}/blobs/${digest}") @@ -92,7 +109,7 @@ jobs: else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY - if "${artifacts_found}" == "true" ]]; then + if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi response=$(curl -iX POST \ diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 3f9cc3bb..0e05a7df 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -27,9 +27,18 @@ jobs: fi printf "\n## Evaluating \`%s\`\n\n" ${br} >> $GITHUB_STEP_SUMMARY JENKINS_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/jenkins-vars.yml) - if [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then + if ! curl -sfX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/Jenkinsfile >/dev/null 2>&1; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> No Jenkinsfile found. Branch is either deprecated or is an early dev branch." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [[ "${br}" == $(yq -r '.ls_branch' <<< "${JENKINS_VARS}") ]]; then echo "Branch appears to be live; checking workflow." >> $GITHUB_STEP_SUMMARY - if [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then + README_VARS=$(curl -sX GET https://raw.githubusercontent.com/linuxserver/docker-lidarr/${br}/readme-vars.yml) + if [[ $(yq -r '.project_deprecation_status' <<< "${README_VARS}") == "true" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Branch appears to be deprecated; skipping trigger." >> $GITHUB_STEP_SUMMARY + skipped_branches="${skipped_branches}${br} " + elif [[ $(yq -r '.skip_package_check' <<< "${JENKINS_VARS}") == "true" ]]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Skipping branch ${br} due to \`skip_package_check\` being set in \`jenkins-vars.yml\`." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " @@ -37,7 +46,7 @@ jobs: echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_PACKAGE_TRIGGER\` contains \`lidarr_${br}\`; skipping trigger." >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " - elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/${br}/lastBuild/api/json | jq -r '.building') == "true" ]; then + elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/${br}/lastBuild/api/json | jq -r '.building' 2>/dev/null) == "true" ]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> There already seems to be an active build on Jenkins; skipping package trigger for ${br}" >> $GITHUB_STEP_SUMMARY skipped_branches="${skipped_branches}${br} " @@ -49,6 +58,11 @@ jobs: response=$(curl -iX POST \ https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/${br}/buildWithParameters?PACKAGE_CHECK=true \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} | grep -i location | sed "s|^[L|l]ocation: \(.*\)|\1|") + if [[ -z "${response}" ]]; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Jenkins build could not be triggered. Skipping branch." + continue + fi echo "Jenkins [job queue url](${response%$'\r'})" >> $GITHUB_STEP_SUMMARY echo "Sleeping 10 seconds until job starts" >> $GITHUB_STEP_SUMMARY sleep 10 @@ -56,11 +70,14 @@ jobs: buildurl="${buildurl%$'\r'}" echo "Jenkins job [build url](${buildurl})" >> $GITHUB_STEP_SUMMARY echo "Attempting to change the Jenkins job description" >> $GITHUB_STEP_SUMMARY - curl -iX POST \ + if ! curl -ifX POST \ "${buildurl}submitDescription" \ --user ${{ secrets.JENKINS_USER }}:${{ secrets.JENKINS_TOKEN }} \ --data-urlencode "description=GHA package trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ - --data-urlencode "Submit=Submit" + --data-urlencode "Submit=Submit"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Unable to change the Jenkins job description." + fi sleep 20 fi else From 02fe1b381d2e26d8b5110fa46a54189e973a465b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 15:12:29 +0000 Subject: [PATCH 653/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6781f9cf..0f4d39a0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.2.4490 dotnet (+7 duplicates) +Lidarr 2.8.2.4491 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -360,8 +360,8 @@ aom-libs 3.11.0-r0 apk-tools 2.14.6-r2 apk bash 5.2.37-r0 apk brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r8 apk -busybox-binsh 1.37.0-r8 apk +busybox 1.37.0-r9 apk +busybox-binsh 1.37.0-r9 apk c-ares 1.34.3-r0 apk ca-certificates 20241010-r0 apk ca-certificates-bundle 20241010-r0 apk @@ -373,7 +373,7 @@ coreutils 9.5-r1 coreutils-env 9.5-r1 apk coreutils-fmt 9.5-r1 apk coreutils-sha512sum 9.5-r1 apk -curl 8.11.0-r2 apk +curl 8.11.1-r0 apk ffmpeg-libavcodec 6.1.2-r1 apk ffmpeg-libavformat 6.1.2-r1 apk ffmpeg-libavutil 6.1.2-r1 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.2-r4 apk -libcurl 8.11.0-r2 apk +libcurl 8.11.1-r0 apk libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk libdrm 2.4.123-r1 apk @@ -465,7 +465,7 @@ shadow 4.16.0-r1 skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk sqlite-libs 3.47.1-r0 apk -ssl_client 1.37.0-r8 apk +ssl_client 1.37.0-r9 apk tzdata 2024b-r1 apk utmps-libs 0.1.2.3-r2 apk wayland-libs-client 1.23.1-r0 apk From b8b3bbb75edb9c911ebda91ca2e13ebb22fa1a2b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 16 Dec 2024 19:36:43 +0000 Subject: [PATCH 654/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0f4d39a0..4d4c0935 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.8.2.4491 dotnet (+7 duplicates) +Lidarr 2.9.0.4494 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From cbf747a5ed09859d738a06846cb74c69a0de7e4a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 14:30:05 +0000 Subject: [PATCH 655/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4d4c0935..d73e9cc0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4494 dotnet (+7 duplicates) +Lidarr 2.9.0.4499 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d9b39dff5fbf01013c0b745157e2f3dbcec1bd26 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 15:48:39 +0000 Subject: [PATCH 656/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d73e9cc0..3e2c57a5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4499 dotnet (+7 duplicates) +Lidarr 2.9.0.4501 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 648632aa2ddfc1c108b5813fb35ede10ce39feaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 17:23:06 +0000 Subject: [PATCH 657/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3e2c57a5..763be707 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4501 dotnet (+7 duplicates) +Lidarr 2.9.0.4502 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 81d71a48bc55b1c1e976c1d53b577f57eb8bfbb5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 17:37:36 +0000 Subject: [PATCH 658/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 763be707..d192242f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4502 dotnet (+7 duplicates) +Lidarr 2.9.0.4504 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 67da944764893d435faecaddf9b110309092a67f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 17 Dec 2024 17:41:09 +0000 Subject: [PATCH 659/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d192242f..3f3d779c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.0.0.0 Ical.Net 1.0.0.0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4504 dotnet (+7 duplicates) +Lidarr 2.9.0.4505 dotnet (+7 duplicates) MailKit 3.6.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d3382c39d4b106f55cb03027ad97b9a608bd1986 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 19 Dec 2024 15:03:43 +0000 Subject: [PATCH 660/790] Make checks consistent between init and svc --- root/etc/s6-overlay/s6-rc.d/svc-lidarr/run | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run index 5aaf7b40..81b08eb5 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-lidarr/run @@ -1,14 +1,14 @@ #!/usr/bin/with-contenv bash # shellcheck shell=bash -if [[ -n ${LSIO_NON_ROOT_USER} ]]; then +if [[ -z ${LSIO_NON_ROOT_USER} ]]; then exec \ s6-notifyoncheck -d -n 300 -w 1000 \ - cd /app/lidarr/bin /app/lidarr/bin/Lidarr \ + cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ -nobrowser -data=/config else exec \ s6-notifyoncheck -d -n 300 -w 1000 \ - cd /app/lidarr/bin s6-setuidgid abc /app/lidarr/bin/Lidarr \ + cd /app/lidarr/bin /app/lidarr/bin/Lidarr \ -nobrowser -data=/config fi From 715dcbf8a109422357c6086caa99aa6563fd4ed6 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 19 Dec 2024 15:59:35 +0000 Subject: [PATCH 661/790] Increase CI timeout --- Jenkinsfile | 2 +- jenkins-vars.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 4ffdfef3..3c980b6e 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -32,7 +32,7 @@ pipeline { CI_WEB='true' CI_PORT='8686' CI_SSL='false' - CI_DELAY='60' + CI_DELAY='240' CI_DOCKERENV='' CI_AUTH='' CI_WEBPATH='/system/status' diff --git a/jenkins-vars.yml b/jenkins-vars.yml index 96be5a71..cb6c9808 100644 --- a/jenkins-vars.yml +++ b/jenkins-vars.yml @@ -20,7 +20,7 @@ repo_vars: - CI_WEB='true' - CI_PORT='8686' - CI_SSL='false' - - CI_DELAY='60' + - CI_DELAY='240' - CI_DOCKERENV='' - CI_AUTH='' - CI_WEBPATH='/system/status' From 65795dfca995a9dfcd4810afd0bb33c2e4cd0614 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 21 Dec 2024 14:40:47 +0000 Subject: [PATCH 662/790] Bot Updating Package Versions --- package_versions.txt | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3f3d779c..8857e8bc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,5 +1,5 @@ NAME VERSION TYPE -Bouncy Castle for .NET (netstandard2.0) 1.9.0.1 dotnet +BouncyCastle.NET 2.4.0.33771 dotnet Dapper 2.0.151.35995 dotnet Diacritical 1.0.4.0 dotnet DryIoc 5.4.3.0 dotnet @@ -9,12 +9,12 @@ Equ 2.3.0 FluentMigrator 3.3.2.9 dotnet (+19 duplicates) FluentValidation 9.5.4.0 dotnet ICSharpCode.SharpZipLib 1.4.2.13 dotnet -IPAddressRange 6.0.0.0 dotnet -Ical.Net 1.0.0.0 dotnet +IPAddressRange 6.1.0.0 dotnet +Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4505 dotnet (+7 duplicates) -MailKit 3.6.0.0 dotnet +Lidarr 2.9.0.4508 dotnet (+7 duplicates) +MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet Microsoft.AspNetCore.Authentication 6.0.3524.46214 dotnet @@ -98,7 +98,7 @@ Microsoft.AspNetCore.WebUtilities 6.0.3524.46214 Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet Microsoft.CSharp 6.0.3524.45918 dotnet -Microsoft.Data.SqlClient 2.1.2+2a61e8301e9d21ada2338a9279cf27653e781757 dotnet +Microsoft.Data.SqlClient 2.1.7+730a7d538680463c75dd8dceec5fb27d158abea4 dotnet Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet Microsoft.Extensions.Caching.Memory 6.0.3524.45918 dotnet Microsoft.Extensions.Configuration 6.0.322.12309 dotnet @@ -158,22 +158,22 @@ Microsoft.VisualBasic.Core 11.100.3524.45918 Microsoft.Win32.Primitives 6.0.3524.45918 dotnet Microsoft.Win32.Registry 6.0.3524.45918 dotnet Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 3.6.0.0 dotnet +MimeKit 4.8.0.0 dotnet Mono.Nat 3.0.1 dotnet Mono.Posix.NETStandard 1.0.0.0 dotnet MonoTorrent 2.0.7 dotnet -NLog v5.3.3 5.3.3.2683 dotnet -NLog.Extensions.Logging v5.3.12 5.3.12.562 dotnet -NLog.Layouts.ClefJsonLayout 1.0.0.0 dotnet +NLog v5.3.4 5.3.4.2778 dotnet +NLog.Extensions.Logging v5.3.15 5.3.15.614 dotnet +NLog.Layouts.ClefJsonLayout 1.0.2.0 dotnet NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.0.0.0 dotnet -Npgsql 7.0.8.0 dotnet -Polly 8.4.2.3950 dotnet +NodaTime 3.2.0.0 dotnet +Npgsql 7.0.9.0 dotnet +Polly 8.5.0.4130 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.4.2.3950 dotnet +Polly.Core 8.5.0.4130 dotnet ReusableTasks 2.0.0 dotnet Sentry 3.25.0.0 dotnet -SixLabors.ImageSharp 3.1.5.0 dotnet +SixLabors.ImageSharp 3.1.6.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet @@ -305,7 +305,7 @@ System.Security.Cryptography.Cng 6.0.3524.45918 System.Security.Cryptography.Csp 6.0.3524.45918 dotnet System.Security.Cryptography.Encoding 6.0.3524.45918 dotnet System.Security.Cryptography.OpenSsl 6.0.3524.45918 dotnet -System.Security.Cryptography.Pkcs 6.0.1823.26907 dotnet +System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet System.Security.Cryptography.Primitives 6.0.3524.45918 dotnet System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet System.Security.Cryptography.X509Certificates 6.0.3524.45918 dotnet From 8901ac4b5a7d1390bc262475be41928071939fcc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Dec 2024 12:03:09 +0000 Subject: [PATCH 663/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8857e8bc..7776555c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.0.4508 dotnet (+7 duplicates) +Lidarr 2.9.1.4509 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From c2bfc275ad0df8619d64d436afb3c330b59ac08a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Dec 2024 14:57:17 +0000 Subject: [PATCH 664/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7776555c..ff6f1b16 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.1.4509 dotnet (+7 duplicates) +Lidarr 2.9.1.4510 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From b50fb9a07f5334aec8f47d91262f894ec16188e3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Dec 2024 15:59:00 +0000 Subject: [PATCH 665/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ff6f1b16..88e7fa35 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.1.4510 dotnet (+7 duplicates) +Lidarr 2.9.1.4513 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d160a23938266c6f75e03d049799431691640c67 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 22 Dec 2024 16:44:26 +0000 Subject: [PATCH 666/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 88e7fa35..c99e2610 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.1.4513 dotnet (+7 duplicates) +Lidarr 2.9.1.4514 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 23cae9520b5283a22115fdb2a0ff1e615fac6733 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 28 Dec 2024 14:35:41 +0000 Subject: [PATCH 667/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index c99e2610..d87b194a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.1.4514 dotnet (+7 duplicates) +Lidarr 2.9.1.4517 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -172,7 +172,7 @@ Polly 8.5.0.4130 Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.0.4130 dotnet ReusableTasks 2.0.0 dotnet -Sentry 3.25.0.0 dotnet +Sentry 4.0.2.0 dotnet SixLabors.ImageSharp 3.1.6.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet @@ -475,4 +475,4 @@ xmlstarlet 1.6.1-r2 xvidcore 1.3.7-r2 apk xz-libs 5.6.3-r0 apk zlib 1.3.1-r2 apk -zstd-libs 1.5.6-r1 apk +zstd-libs 1.5.6-r2 apk From 270ff7a519ff73ad17e46d771313093f85a77b86 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Dec 2024 23:33:45 +0000 Subject: [PATCH 668/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d87b194a..8f52778a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.1.4517 dotnet (+7 duplicates) +Lidarr 2.9.2.4518 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 409f92ef9b097d3f1dff14fe3abb448b4209052a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 10:54:43 +0000 Subject: [PATCH 669/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8f52778a..53c641d0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.2.4518 dotnet (+7 duplicates) +Lidarr 2.9.2.4520 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d9018fa691f4efd98657ed2ad72217a4128bef1d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 31 Dec 2024 11:41:03 +0000 Subject: [PATCH 670/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 53c641d0..483db9b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.2.4520 dotnet (+7 duplicates) +Lidarr 2.9.2.4521 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 99db22921bcfb6b868148079da953adb9f494d02 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Jan 2025 12:05:49 +0000 Subject: [PATCH 671/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 483db9b0..d7bfeb44 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.2.4521 dotnet (+7 duplicates) +Lidarr 2.9.3.4526 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -352,8 +352,8 @@ System.Xml.XmlSerializer 6.0.3524.45918 TagLib# 2.2.0.27 dotnet WindowsBase 6.0.3524.45918 dotnet acl-libs 2.3.2-r1 apk -alpine-baselayout 3.6.8-r0 apk -alpine-baselayout-data 3.6.8-r0 apk +alpine-baselayout 3.6.8-r1 apk +alpine-baselayout-data 3.6.8-r1 apk alpine-keys 2.5-r0 apk alpine-release 3.21.0-r0 apk aom-libs 3.11.0-r0 apk @@ -363,8 +363,8 @@ brotli-libs 1.1.0-r2 busybox 1.37.0-r9 apk busybox-binsh 1.37.0-r9 apk c-ares 1.34.3-r0 apk -ca-certificates 20241010-r0 apk -ca-certificates-bundle 20241010-r0 apk +ca-certificates 20241121-r0 apk +ca-certificates-bundle 20241121-r0 apk catatonit 0.2.0-r0 apk chromaprint 1.5.1-r7 apk chromaprint-libs 1.5.1-r7 apk From f2eaf213d1dcf74f694711be344eca49a708c3df Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 5 Jan 2025 12:16:26 +0000 Subject: [PATCH 672/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d7bfeb44..a4141e2c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.3.4526 dotnet (+7 duplicates) +Lidarr 2.9.3.4527 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 3c6983e288e715cd126ba79e091a58890df699f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 12 Jan 2025 13:51:42 +0000 Subject: [PATCH 673/790] Bot Updating Package Versions --- package_versions.txt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index a4141e2c..4f4d658f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.3.4527 dotnet (+7 duplicates) +Lidarr 2.9.4.4529 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -355,7 +355,7 @@ acl-libs 2.3.2-r1 alpine-baselayout 3.6.8-r1 apk alpine-baselayout-data 3.6.8-r1 apk alpine-keys 2.5-r0 apk -alpine-release 3.21.0-r0 apk +alpine-release 3.21.2-r0 apk aom-libs 3.11.0-r0 apk apk-tools 2.14.6-r2 apk bash 5.2.37-r0 apk @@ -363,16 +363,16 @@ brotli-libs 1.1.0-r2 busybox 1.37.0-r9 apk busybox-binsh 1.37.0-r9 apk c-ares 1.34.3-r0 apk -ca-certificates 20241121-r0 apk -ca-certificates-bundle 20241121-r0 apk +ca-certificates 20241121-r1 apk +ca-certificates-bundle 20241121-r1 apk catatonit 0.2.0-r0 apk chromaprint 1.5.1-r7 apk chromaprint-libs 1.5.1-r7 apk cjson 1.7.18-r0 apk -coreutils 9.5-r1 apk -coreutils-env 9.5-r1 apk -coreutils-fmt 9.5-r1 apk -coreutils-sha512sum 9.5-r1 apk +coreutils 9.5-r2 apk +coreutils-env 9.5-r2 apk +coreutils-fmt 9.5-r2 apk +coreutils-sha512sum 9.5-r2 apk curl 8.11.1-r0 apk ffmpeg-libavcodec 6.1.2-r1 apk ffmpeg-libavformat 6.1.2-r1 apk From cda82846757e2c8b6aeaec8cb7a5ef1c95875b2e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Jan 2025 08:43:07 +0000 Subject: [PATCH 674/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 4f4d658f..6f5e52b0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.4.4529 dotnet (+7 duplicates) +Lidarr 2.9.4.4532 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 066ef06b002bc7f4747fff3b0018d911f0dffe47 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 14 Jan 2025 09:56:39 +0000 Subject: [PATCH 675/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6f5e52b0..d53a8f53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.4.4532 dotnet (+7 duplicates) +Lidarr 2.9.4.4535 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 750e53ed85cdbf6cb87a39e3b08277f06791cc1e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Jan 2025 22:42:16 +0000 Subject: [PATCH 676/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d53a8f53..b6d581e3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.4.4535 dotnet (+7 duplicates) +Lidarr 2.9.4.4537 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From a9206ecf75fc2b5c455c13e1ed78b1d08a3c7698 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 16 Jan 2025 23:19:26 +0000 Subject: [PATCH 677/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index b6d581e3..60527c08 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.4.4537 dotnet (+7 duplicates) +Lidarr 2.9.4.4539 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From eb29bf5c73ebabf20bd81a63f72623806a063498 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Jan 2025 15:55:11 +0000 Subject: [PATCH 678/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 60527c08..d295a257 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.4.4539 dotnet (+7 duplicates) +Lidarr 2.9.5.4541 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -360,8 +360,8 @@ aom-libs 3.11.0-r0 apk-tools 2.14.6-r2 apk bash 5.2.37-r0 apk brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r9 apk -busybox-binsh 1.37.0-r9 apk +busybox 1.37.0-r12 apk +busybox-binsh 1.37.0-r12 apk c-ares 1.34.3-r0 apk ca-certificates 20241121-r1 apk ca-certificates-bundle 20241121-r1 apk @@ -465,7 +465,7 @@ shadow 4.16.0-r1 skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk sqlite-libs 3.47.1-r0 apk -ssl_client 1.37.0-r9 apk +ssl_client 1.37.0-r12 apk tzdata 2024b-r1 apk utmps-libs 0.1.2.3-r2 apk wayland-libs-client 1.23.1-r0 apk From 77516674eae19297d8776a21a52d242301a9d6f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Jan 2025 16:10:32 +0000 Subject: [PATCH 679/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d295a257..608d0e03 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4541 dotnet (+7 duplicates) +Lidarr 2.9.5.4542 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From e7668bf9bf27882efb666afb5df5def2891df2be Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 20:25:37 +0000 Subject: [PATCH 680/790] Bot Updating Templated Files --- Jenkinsfile | 33 ++++++++++++++++++++++++++------- 1 file changed, 26 insertions(+), 7 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 3c980b6e..711df45c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,11 +56,21 @@ pipeline { steps{ echo "Running on node: ${NODE_NAME}" sh '''#! /bin/bash - containers=$(docker ps -aq) + echo "Pruning builder" + docker builder prune -f --builder container || : + containers=$(docker ps -q) if [[ -n "${containers}" ]]; then - docker stop ${containers} + BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') + for container in ${containers}; do + if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then + echo "skipping buildx container in docker stop" + else + echo "Stopping container ${container}" + docker stop ${container} + fi + done fi - docker system prune -af --volumes || : ''' + docker system prune -f --volumes || : ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -1152,12 +1162,21 @@ EOF } cleanup { sh '''#! /bin/bash - echo "Performing docker system prune!!" - containers=$(docker ps -aq) + echo "Pruning builder!!" + docker builder prune -f --builder container || : + containers=$(docker ps -q) if [[ -n "${containers}" ]]; then - docker stop ${containers} + BUILDX_CONTAINER_ID=$(docker ps -qf 'name=buildx_buildkit') + for container in ${containers}; do + if [[ "${container}" == "${BUILDX_CONTAINER_ID}" ]]; then + echo "skipping buildx container in docker stop" + else + echo "Stopping container ${container}" + docker stop ${container} + fi + done fi - docker system prune -af --volumes || : + docker system prune -f --volumes || : ''' cleanWs() } From d4163fb9ade1b4633cb4d7f661a3a44a6a5428e9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 20:27:58 +0000 Subject: [PATCH 681/790] Bot Updating Templated Files --- .github/CONTRIBUTING.md | 2 +- .github/ISSUE_TEMPLATE/config.yml | 2 +- .github/workflows/external_trigger.yml | 10 +++++++++- README.md | 4 ++-- 4 files changed, 13 insertions(+), 5 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 52acb78e..8bcb5db8 100755 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -6,7 +6,7 @@ * Read, and fill the Pull Request template * If this is a fix for a typo (in code, documentation, or the README) please file an issue and let us sort it out. We do not need a PR * If the PR is addressing an existing issue include, closes #\<issue number>, in the body of the PR commit message -* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://discord.gg/YWrKVTn) +* If you want to discuss changes, you can also bring it up in [#dev-talk](https://discordapp.com/channels/354974912613449730/757585807061155840) in our [Discord server](https://linuxserver.io/discord) ## Common files diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 193cc21e..7b4014f2 100755 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,7 +1,7 @@ blank_issues_enabled: false contact_links: - name: Discord chat support - url: https://discord.gg/YWrKVTn + url: https://linuxserver.io/discord about: Realtime support / chat with the community and the team. - name: Discourse discussion forum diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index ebc19f7a..fa11af63 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -15,7 +15,10 @@ jobs: SKIP_EXTERNAL_TRIGGER: ${{ vars.SKIP_EXTERNAL_TRIGGER }} run: | printf "# External trigger for docker-lidarr\n\n" >> $GITHUB_STEP_SUMMARY - if grep -q "^lidarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + if grep -q "^lidarr_nightly_" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!NOTE]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`lidarr_nightly_\`; will skip trigger if version matches." >> $GITHUB_STEP_SUMMARY + elif grep -q "^lidarr_nightly" <<< "${SKIP_EXTERNAL_TRIGGER}"; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` contains \`lidarr_nightly\`; skipping trigger." >> $GITHUB_STEP_SUMMARY exit 0 @@ -25,6 +28,11 @@ jobs: printf "\n## Retrieving external version\n\n" >> $GITHUB_STEP_SUMMARY EXT_RELEASE=$(curl -sL "https://lidarr.servarr.com/v1/update/nightly/changes?runtime=netcore%26os=linuxmusl" | jq -r '.[0].version') echo "Type is \`custom_version_command\`" >> $GITHUB_STEP_SUMMARY + if grep -q "^lidarr_nightly_${EXT_RELEASE}" <<< "${SKIP_EXTERNAL_TRIGGER}"; then + echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY + echo "> Github organizational variable \`SKIP_EXTERNAL_TRIGGER\` matches current external release; skipping trigger." >> $GITHUB_STEP_SUMMARY + exit 0 + fi if [ -z "${EXT_RELEASE}" ] || [ "${EXT_RELEASE}" == "null" ]; then echo "> [!WARNING]" >> $GITHUB_STEP_SUMMARY echo "> Can't retrieve external version, exiting" >> $GITHUB_STEP_SUMMARY diff --git a/README.md b/README.md index df8aa123..52d76f87 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ [![linuxserver.io](https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/linuxserver_medium.png)](https://linuxserver.io) [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") -[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://discord.gg/YWrKVTn "realtime support / chat with the community and the team.") +[![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://linuxserver.io/discord "realtime support / chat with the community and the team.") [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") [![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") [![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") @@ -20,7 +20,7 @@ The [LinuxServer.io](https://linuxserver.io) team brings you another container r Find us at: * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! -* [Discord](https://discord.gg/YWrKVTn) - realtime support / chat with the community and the team. +* [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. * [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. From 5c54ebae4a6f797a9151744293757833b74e7f28 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 20:31:31 +0000 Subject: [PATCH 682/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 608d0e03..9e117a3a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4542 dotnet (+7 duplicates) +Lidarr 2.9.5.4546 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From ddfb14285935bcc67d421c8870040930188fccbd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 20:34:38 +0000 Subject: [PATCH 683/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9e117a3a..488f84e8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4546 dotnet (+7 duplicates) +Lidarr 2.9.5.4547 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 3ef57c25e8c3a39d73c33e8cbd9e48eaf582afd0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 28 Jan 2025 21:40:48 +0000 Subject: [PATCH 684/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 488f84e8..3ad58807 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4547 dotnet (+7 duplicates) +Lidarr 2.9.5.4548 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From b92e5d944f6d63e63ae04f8ed46abd294b225551 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Feb 2025 22:17:49 +0000 Subject: [PATCH 685/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3ad58807..f198bb95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4548 dotnet (+7 duplicates) +Lidarr 2.9.5.4549 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 5b950bd3bf3cac958b8412796cc511cb5ec25650 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Feb 2025 22:41:50 +0000 Subject: [PATCH 686/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f198bb95..8c265143 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4549 dotnet (+7 duplicates) +Lidarr 2.9.5.4550 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From bb781110016f11f250cf4d31d2a5b712782114f4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 2 Feb 2025 11:24:23 +0000 Subject: [PATCH 687/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8c265143..f4e5775a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.5.4550 dotnet (+7 duplicates) +Lidarr 2.9.6.4551 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 57ef043b6584b8e45a97440f39ba0ab8b5df3988 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 3 Feb 2025 12:45:50 +0000 Subject: [PATCH 688/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index f4e5775a..dc3ab25b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.9.6.4551 dotnet (+7 duplicates) +Lidarr 2.10.0.4553 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From bd0bd41d39d23274dbde7f86ffd938c4fb15e69c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Feb 2025 23:33:52 +0000 Subject: [PATCH 689/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index dc3ab25b..29dc439e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4553 dotnet (+7 duplicates) +Lidarr 2.10.0.4555 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d17ea5aa90a2a38d445f82324339efd73f6cf2ae Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 8 Feb 2025 01:49:23 +0000 Subject: [PATCH 690/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 29dc439e..1f507f8f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4555 dotnet (+7 duplicates) +Lidarr 2.10.0.4556 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -392,7 +392,7 @@ libattr 2.5.2-r2 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.2-r4 apk +libcrypto3 3.3.2-r5 apk libcurl 8.11.1-r0 apk libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk @@ -420,7 +420,7 @@ libsharpyuv 1.4.0-r0 libsodium 1.0.20-r0 apk libsrt 1.5.3-r0 apk libssh 0.11.1-r0 apk -libssl3 3.3.2-r4 apk +libssl3 3.3.2-r5 apk libstdc++ 14.2.0-r4 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk @@ -464,7 +464,7 @@ scanelf 1.3.8-r1 shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.47.1-r0 apk +sqlite-libs 3.48.0-r0 apk ssl_client 1.37.0-r12 apk tzdata 2024b-r1 apk utmps-libs 0.1.2.3-r2 apk From f1809a449b119be0ee8bcd7717c73f5218d215d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Feb 2025 02:24:07 +0000 Subject: [PATCH 691/790] Bot Updating Templated Files --- Jenkinsfile | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 711df45c..cb63d3a6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,7 +70,9 @@ pipeline { fi done fi - docker system prune -f --volumes || : ''' + docker system prune -f --volumes || : + docker image prune -af || : + ''' script{ env.EXIT_STATUS = '' env.LS_RELEASE = sh( @@ -751,7 +753,8 @@ pipeline { if [[ -n "${containers}" ]]; then docker stop ${containers} fi - docker system prune -af --volumes || : + docker system prune -f --volumes || : + docker image prune -af || : ''' } } @@ -1177,6 +1180,7 @@ EOF done fi docker system prune -f --volumes || : + docker image prune -af || : ''' cleanWs() } From 790d9769cb5263f750d1f5c253497a4842c7c190 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Feb 2025 02:27:56 +0000 Subject: [PATCH 692/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1f507f8f..97c0d283 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -373,7 +373,7 @@ coreutils 9.5-r2 coreutils-env 9.5-r2 apk coreutils-fmt 9.5-r2 apk coreutils-sha512sum 9.5-r2 apk -curl 8.11.1-r0 apk +curl 8.12.0-r0 apk ffmpeg-libavcodec 6.1.2-r1 apk ffmpeg-libavformat 6.1.2-r1 apk ffmpeg-libavutil 6.1.2-r1 apk @@ -392,8 +392,8 @@ libattr 2.5.2-r2 libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libcrypto3 3.3.2-r5 apk -libcurl 8.11.1-r0 apk +libcrypto3 3.3.3-r0 apk +libcurl 8.12.0-r0 apk libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk libdrm 2.4.123-r1 apk @@ -420,7 +420,7 @@ libsharpyuv 1.4.0-r0 libsodium 1.0.20-r0 apk libsrt 1.5.3-r0 apk libssh 0.11.1-r0 apk -libssl3 3.3.2-r5 apk +libssl3 3.3.3-r0 apk libstdc++ 14.2.0-r4 apk libtheora 1.1.1-r18 apk libunistring 1.2-r0 apk From 727596d1346f2fcd0c8e646a8ea02a6e7d94a2a0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 15 Feb 2025 10:19:09 +0000 Subject: [PATCH 693/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 97c0d283..82f6afb0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4556 dotnet (+7 duplicates) +Lidarr 2.10.0.4560 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -443,7 +443,7 @@ linux-pam 1.6.1-r1 mbedtls 3.6.2-r0 apk mpg123-libs 1.32.9-r0 apk mscorlib 6.0.3524.45918 dotnet -musl 1.2.5-r8 apk +musl 1.2.5-r9 apk musl-utils 1.2.5-r8 apk ncurses-terminfo-base 6.5_p20241006-r3 apk netcat-openbsd 1.226.1.1-r0 apk From 509aef9695820c5ecf42c90eb2088d3832528f0f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 10:51:54 +0000 Subject: [PATCH 694/790] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 82f6afb0..e49b4520 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4560 dotnet (+7 duplicates) +Lidarr 2.10.0.4562 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -355,9 +355,9 @@ acl-libs 2.3.2-r1 alpine-baselayout 3.6.8-r1 apk alpine-baselayout-data 3.6.8-r1 apk alpine-keys 2.5-r0 apk -alpine-release 3.21.2-r0 apk +alpine-release 3.21.3-r0 apk aom-libs 3.11.0-r0 apk -apk-tools 2.14.6-r2 apk +apk-tools 2.14.6-r3 apk bash 5.2.37-r0 apk brotli-libs 1.1.0-r2 apk busybox 1.37.0-r12 apk @@ -373,7 +373,7 @@ coreutils 9.5-r2 coreutils-env 9.5-r2 apk coreutils-fmt 9.5-r2 apk coreutils-sha512sum 9.5-r2 apk -curl 8.12.0-r0 apk +curl 8.12.1-r0 apk ffmpeg-libavcodec 6.1.2-r1 apk ffmpeg-libavformat 6.1.2-r1 apk ffmpeg-libavutil 6.1.2-r1 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.3-r0 apk -libcurl 8.12.0-r0 apk +libcurl 8.12.1-r0 apk libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk libdrm 2.4.123-r1 apk @@ -444,7 +444,7 @@ mbedtls 3.6.2-r0 mpg123-libs 1.32.9-r0 apk mscorlib 6.0.3524.45918 dotnet musl 1.2.5-r9 apk -musl-utils 1.2.5-r8 apk +musl-utils 1.2.5-r9 apk ncurses-terminfo-base 6.5_p20241006-r3 apk netcat-openbsd 1.226.1.1-r0 apk netstandard 6.0.3524.45918 dotnet @@ -466,7 +466,7 @@ skalibs-libs 2.14.3.0-r0 soxr 0.1.3-r7 apk sqlite-libs 3.48.0-r0 apk ssl_client 1.37.0-r12 apk -tzdata 2024b-r1 apk +tzdata 2025a-r0 apk utmps-libs 0.1.2.3-r2 apk wayland-libs-client 1.23.1-r0 apk x264-libs 0.164.3108-r0 apk From 15581aa817db98085800c483d961b7fe9344f1c0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Feb 2025 19:41:16 +0000 Subject: [PATCH 695/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e49b4520..0952e668 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4562 dotnet (+7 duplicates) +Lidarr 2.10.0.4566 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From d0079ab0e64d29b8e3faf0f6180f7e046e2bb6fd Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Feb 2025 15:58:03 +0000 Subject: [PATCH 696/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 0952e668..6ae618a3 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4566 dotnet (+7 duplicates) +Lidarr 2.10.0.4567 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From dcc606979b599bf3595c07e2895e2030b0564aed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Feb 2025 16:51:40 +0000 Subject: [PATCH 697/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ae618a3..05dfcfd7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4567 dotnet (+7 duplicates) +Lidarr 2.10.0.4569 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 0e4498e3545f83770dbf9e9f8684d00269fbe5a7 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Feb 2025 15:15:21 +0000 Subject: [PATCH 698/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 05dfcfd7..74d9ff2f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4569 dotnet (+7 duplicates) +Lidarr 2.10.0.4571 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From bf7a560160484b6d15d00a052199669f8ac34834 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 22 Feb 2025 20:11:05 +0000 Subject: [PATCH 699/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 74d9ff2f..891d66c4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4571 dotnet (+7 duplicates) +Lidarr 2.10.0.4574 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 19fa55c77bcf93fc6e06017b1ca1fc9741d97845 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Feb 2025 11:42:05 +0000 Subject: [PATCH 700/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 891d66c4..d15e0233 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.0.4574 dotnet (+7 duplicates) +Lidarr 2.10.1.4576 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 42cc354c09fc8aa4f6e70ea48c7233e1eb1cdb36 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 1 Mar 2025 12:07:54 +0000 Subject: [PATCH 701/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d15e0233..99eedd39 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4576 dotnet (+7 duplicates) +Lidarr 2.10.1.4577 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -397,7 +397,7 @@ libcurl 8.12.1-r0 libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk libdrm 2.4.123-r1 apk -libffi 3.4.6-r0 apk +libffi 3.4.7-r0 apk libgcc 14.2.0-r4 apk libgcrypt 1.10.3-r1 apk libgomp 14.2.0-r4 apk From 24cb44643e72b874f0d5bac297792b8e818927bf Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Mar 2025 19:05:11 +0000 Subject: [PATCH 702/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 99eedd39..defea5b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4577 dotnet (+7 duplicates) +Lidarr 2.10.1.4581 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 3572df6afc450c45c77ad40943c55010bc67dcf4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Mar 2025 19:43:00 +0000 Subject: [PATCH 703/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index defea5b8..bc88253a 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4581 dotnet (+7 duplicates) +Lidarr 2.10.1.4583 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 2d2f76f3991bd9ab2f47dd89cdebcb44526fb3fa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Mar 2025 15:10:39 +0000 Subject: [PATCH 704/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index bc88253a..7eb3d24b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4583 dotnet (+7 duplicates) +Lidarr 2.10.1.4584 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From defc2799d3b6e3341510cdd23899506678c3135c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 6 Mar 2025 19:08:13 +0000 Subject: [PATCH 705/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7eb3d24b..ad07cd53 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4584 dotnet (+7 duplicates) +Lidarr 2.10.1.4586 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 95dceb0a33ceb2864f9a383437a6c975ea37ea3f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 7 Mar 2025 21:59:05 +0000 Subject: [PATCH 706/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ad07cd53..3af89df0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4586 dotnet (+7 duplicates) +Lidarr 2.10.1.4587 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -168,12 +168,12 @@ NLog.Layouts.ClefJsonLayout 1.0.2.0 NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.2.0.0 dotnet Npgsql 7.0.9.0 dotnet -Polly 8.5.0.4130 dotnet +Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.5.0.4130 dotnet +Polly.Core 8.5.2.4319 dotnet ReusableTasks 2.0.0 dotnet Sentry 4.0.2.0 dotnet -SixLabors.ImageSharp 3.1.6.0 dotnet +SixLabors.ImageSharp 3.1.7.0 dotnet SpotifyAPI.Web 1.0.0.0 dotnet Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet @@ -380,7 +380,7 @@ ffmpeg-libavutil 6.1.2-r1 ffmpeg-libswresample 6.1.2-r1 apk findutils 4.10.0-r0 apk giflib 5.2.2-r0 apk -hwdata-pci 0.390-r0 apk +hwdata-pci 0.393-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk imath 3.1.12-r0 apk @@ -436,7 +436,7 @@ libxcb 1.16.1-r0 libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk -libxml2 2.13.4-r3 apk +libxml2 2.13.4-r4 apk libxslt 1.1.42-r1 apk libzmq 4.3.5-r2 apk linux-pam 1.6.1-r1 apk From 2f037fea199cc7b5a0d5c6fdf2c223730733feec Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Mar 2025 02:38:29 +0000 Subject: [PATCH 707/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3af89df0..9186cfb4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -436,7 +436,7 @@ libxcb 1.16.1-r0 libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk -libxml2 2.13.4-r4 apk +libxml2 2.13.4-r5 apk libxslt 1.1.42-r1 apk libzmq 4.3.5-r2 apk linux-pam 1.6.1-r1 apk From cfd1e8ee7a7613c010836ee11930b8d170f416ad Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Mar 2025 09:20:50 +0000 Subject: [PATCH 708/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9186cfb4..e438ccf2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.1.4587 dotnet (+7 duplicates) +Lidarr 2.10.3.4597 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -406,7 +406,7 @@ libhwy 1.0.7-r0 libidn2 2.3.7-r0 apk libintl 0.22.5-r0 apk libjpeg-turbo 3.0.4-r0 apk -libjxl 0.10.3-r0 apk +libjxl 0.10.4-r0 apk libmd 1.1.0-r0 apk libncursesw 6.5_p20241006-r3 apk libogg 1.3.5-r5 apk @@ -437,7 +437,7 @@ libxdmcp 1.1.5-r1 libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk libxml2 2.13.4-r5 apk -libxslt 1.1.42-r1 apk +libxslt 1.1.42-r2 apk libzmq 4.3.5-r2 apk linux-pam 1.6.1-r1 apk mbedtls 3.6.2-r0 apk From fa5f78712df936e296fee1297dc0f5d101e7eca4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 16 Mar 2025 10:15:04 +0000 Subject: [PATCH 709/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e438ccf2..7fdc115d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.3.4597 dotnet (+7 duplicates) +Lidarr 2.10.3.4599 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From f191516741396c869d6f5521cee50cb623eb5129 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Mar 2025 02:40:57 +0000 Subject: [PATCH 710/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7fdc115d..703be863 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -412,7 +412,7 @@ libncursesw 6.5_p20241006-r3 libogg 1.3.5-r5 apk libopenmpt 0.7.12-r0 apk libpciaccess 0.18.1-r0 apk -libpng 1.6.44-r0 apk +libpng 1.6.47-r0 apk libproc2 4.0.4-r2 apk libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk From 84235ff8c046b811416b80bb6b7f87c4c3637ad0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Mar 2025 11:39:25 +0000 Subject: [PATCH 711/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 703be863..4c954be5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.10.3.4599 dotnet (+7 duplicates) +Lidarr 2.11.0.4603 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -373,7 +373,7 @@ coreutils 9.5-r2 coreutils-env 9.5-r2 apk coreutils-fmt 9.5-r2 apk coreutils-sha512sum 9.5-r2 apk -curl 8.12.1-r0 apk +curl 8.12.1-r1 apk ffmpeg-libavcodec 6.1.2-r1 apk ffmpeg-libavformat 6.1.2-r1 apk ffmpeg-libavutil 6.1.2-r1 apk @@ -393,7 +393,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libcrypto3 3.3.3-r0 apk -libcurl 8.12.1-r0 apk +libcurl 8.12.1-r1 apk libdav1d 1.5.0-r0 apk libdeflate 1.22-r0 apk libdrm 2.4.123-r1 apk From 7e843a6e07fcf173890215d38cc85ba23ddda02e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 23 Mar 2025 11:54:20 +0000 Subject: [PATCH 712/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4c954be5..8bd50f19 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.0.4603 dotnet (+7 duplicates) +Lidarr 2.11.0.4604 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -162,12 +162,12 @@ MimeKit 4.8.0.0 Mono.Nat 3.0.1 dotnet Mono.Posix.NETStandard 1.0.0.0 dotnet MonoTorrent 2.0.7 dotnet -NLog v5.3.4 5.3.4.2778 dotnet -NLog.Extensions.Logging v5.3.15 5.3.15.614 dotnet -NLog.Layouts.ClefJsonLayout 1.0.2.0 dotnet +NLog v5.4.0 5.4.0.3182 dotnet +NLog.Extensions.Logging v5.4.0 5.4.0.625 dotnet +NLog.Layouts.ClefJsonLayout 1.0.3.0 dotnet NLog.Targets.Syslog 7.0.0.0 dotnet NodaTime 3.2.0.0 dotnet -Npgsql 7.0.9.0 dotnet +Npgsql 7.0.10.0 dotnet Polly 8.5.2.4319 dotnet Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet Polly.Core 8.5.2.4319 dotnet From 3b25c3ce7d12ff1bcfa5ed9388073a28ebfaaaa8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 25 Mar 2025 19:49:44 +0000 Subject: [PATCH 713/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8bd50f19..e7d0fb95 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.0.4604 dotnet (+7 duplicates) +Lidarr 2.11.0.4605 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 6ea6005ea1572b62816d3240b64d7aeecb12f737 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 27 Mar 2025 18:22:47 +0000 Subject: [PATCH 714/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index e7d0fb95..053cd90e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.0.4605 dotnet (+7 duplicates) +Lidarr 2.11.0.4608 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 78d347910d7f07fd8c74e3458befd420e961b5f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 28 Mar 2025 08:34:07 +0000 Subject: [PATCH 715/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 053cd90e..07879036 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.0.4608 dotnet (+7 duplicates) +Lidarr 2.11.0.4610 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From a0a3afd78b1e25e37d688d7d5de1ce59bbb477c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Mar 2025 07:59:05 +0000 Subject: [PATCH 716/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 07879036..3766ce33 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.0.4610 dotnet (+7 duplicates) +Lidarr 2.11.1.4611 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet @@ -466,7 +466,7 @@ skalibs-libs 2.14.3.0-r0 soxr 0.1.3-r7 apk sqlite-libs 3.48.0-r0 apk ssl_client 1.37.0-r12 apk -tzdata 2025a-r0 apk +tzdata 2025b-r0 apk utmps-libs 0.1.2.3-r2 apk wayland-libs-client 1.23.1-r0 apk x264-libs 0.164.3108-r0 apk From bded883b3a02f55e0afb2052e2603c3943c9a26d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 30 Mar 2025 08:45:38 +0000 Subject: [PATCH 717/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 3766ce33..baa2efb7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -13,7 +13,7 @@ IPAddressRange 6.1.0.0 Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet ImpromptuInterface 7.0.1.0 dotnet Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.1.4611 dotnet (+7 duplicates) +Lidarr 2.11.1.4612 dotnet (+7 duplicates) MailKit 4.8.0.0 dotnet Microsoft.AspNetCore 6.0.3524.46214 dotnet Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet From 799d4d91c3a1f4c73067d67b00d389f459b2237f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 1 Apr 2025 22:46:55 +0000 Subject: [PATCH 718/790] Bot Updating Package Versions --- package_versions.txt | 721 +++++++++++++++---------------------------- 1 file changed, 243 insertions(+), 478 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index baa2efb7..59b05284 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,478 +1,243 @@ -NAME VERSION TYPE -BouncyCastle.NET 2.4.0.33771 dotnet -Dapper 2.0.151.35995 dotnet -Diacritical 1.0.4.0 dotnet -DryIoc 5.4.3.0 dotnet -DryIoc.Microsoft.DependencyInjection net6.0 6.2.0.0 dotnet -Dynamitey 2.0.9.136 dotnet -Equ 2.3.0 dotnet -FluentMigrator 3.3.2.9 dotnet (+19 duplicates) -FluentValidation 9.5.4.0 dotnet -ICSharpCode.SharpZipLib 1.4.2.13 dotnet -IPAddressRange 6.1.0.0 dotnet -Ical.Net 4.3.1+5889b14d90ccd3cd32b54229029dab52495a09b0 dotnet -ImpromptuInterface 7.0.1.0 dotnet -Json.NET 13.0.3.27908 dotnet -Lidarr 2.11.1.4612 dotnet (+7 duplicates) -MailKit 4.8.0.0 dotnet -Microsoft.AspNetCore 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Antiforgery 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authentication 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authentication.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authentication.Cookies 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authentication.Core 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authentication.OAuth 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authorization 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Authorization.Policy 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Components 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Components.Authorization 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Components.Forms 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Components.Server 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Components.Web 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Connections.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.CookiePolicy 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Cors 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Cryptography.Internal 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.3524.46214 dotnet -Microsoft.AspNetCore.DataProtection 6.0.3524.46214 dotnet -Microsoft.AspNetCore.DataProtection.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.DataProtection.Extensions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Diagnostics 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Diagnostics.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Diagnostics.HealthChecks 6.0.3524.46214 dotnet -Microsoft.AspNetCore.HostFiltering 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Hosting 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Hosting.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Hosting.Server.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Html.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Connections 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Connections.Common 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Extensions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Features 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Http.Results 6.0.3524.46214 dotnet -Microsoft.AspNetCore.HttpLogging 6.0.3524.46214 dotnet -Microsoft.AspNetCore.HttpOverrides 6.0.3524.46214 dotnet -Microsoft.AspNetCore.HttpsPolicy 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Identity 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Localization 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Localization.Routing 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Metadata 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.ApiExplorer 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Core 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Cors 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.DataAnnotations 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Json 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Formatters.Xml 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Localization 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.Razor 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.RazorPages 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.TagHelpers 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Mvc.ViewFeatures 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Razor 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Razor.Runtime 6.0.3524.46214 dotnet -Microsoft.AspNetCore.ResponseCaching 6.0.3524.46214 dotnet -Microsoft.AspNetCore.ResponseCaching.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.ResponseCompression 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Rewrite 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Routing 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Routing.Abstractions 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.HttpSys 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.IIS 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.IISIntegration 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.Kestrel 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.Kestrel.Core 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Quic 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 6.0.3524.46214 dotnet -Microsoft.AspNetCore.Session 6.0.3524.46214 dotnet -Microsoft.AspNetCore.SignalR 6.0.3524.46214 dotnet -Microsoft.AspNetCore.SignalR.Common 6.0.3524.46214 dotnet -Microsoft.AspNetCore.SignalR.Core 6.0.3524.46214 dotnet -Microsoft.AspNetCore.SignalR.Protocols.Json 6.0.3524.46214 dotnet -Microsoft.AspNetCore.StaticFiles 6.0.3524.46214 dotnet -Microsoft.AspNetCore.WebSockets 6.0.3524.46214 dotnet -Microsoft.AspNetCore.WebUtilities 6.0.3524.46214 dotnet -Microsoft.Bcl.AsyncInterfaces 6.0.21.52210 dotnet -Microsoft.Bcl.TimeProvider 8.0.23.53103 dotnet -Microsoft.CSharp 6.0.3524.45918 dotnet -Microsoft.Data.SqlClient 2.1.7+730a7d538680463c75dd8dceec5fb27d158abea4 dotnet -Microsoft.Extensions.Caching.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Caching.Memory 6.0.3524.45918 dotnet -Microsoft.Extensions.Configuration 6.0.322.12309 dotnet -Microsoft.Extensions.Configuration.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Binder 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.CommandLine 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.FileExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Ini 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.Json 6.0.21.52210 dotnet -Microsoft.Extensions.Configuration.KeyPerFile 6.0.3524.46214 dotnet -Microsoft.Extensions.Configuration.UserSecrets 6.0.222.6406 dotnet -Microsoft.Extensions.Configuration.Xml 6.0.21.52210 dotnet -Microsoft.Extensions.DependencyInjection 6.0.1022.47605 dotnet -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.22.51805 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks 6.0.3524.46214 dotnet -Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions 6.0.3524.46214 dotnet -Microsoft.Extensions.Features 6.0.3524.46214 dotnet -Microsoft.Extensions.FileProviders.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Composite 6.0.21.52210 dotnet -Microsoft.Extensions.FileProviders.Embedded 6.0.3524.46214 dotnet -Microsoft.Extensions.FileProviders.Physical 6.0.21.52210 dotnet -Microsoft.Extensions.FileSystemGlobbing 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting 6.0.222.6406 dotnet -Microsoft.Extensions.Hosting.Abstractions 6.0.21.52210 dotnet -Microsoft.Extensions.Hosting.WindowsServices 6.0.1823.26907 dotnet -Microsoft.Extensions.Http 6.0.21.52210 dotnet -Microsoft.Extensions.Identity.Core 6.0.3524.46214 dotnet -Microsoft.Extensions.Identity.Stores 6.0.3524.46214 dotnet -Microsoft.Extensions.Localization 6.0.3524.46214 dotnet -Microsoft.Extensions.Localization.Abstractions 6.0.3524.46214 dotnet -Microsoft.Extensions.Logging 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Abstractions 6.0.1823.26907 dotnet -Microsoft.Extensions.Logging.Configuration 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Console 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.Debug 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventLog 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.EventSource 6.0.21.52210 dotnet -Microsoft.Extensions.Logging.TraceSource 6.0.21.52210 dotnet -Microsoft.Extensions.ObjectPool 6.0.3524.46214 dotnet -Microsoft.Extensions.Options 6.0.21.52210 dotnet -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.21.52210 dotnet -Microsoft.Extensions.Options.DataAnnotations 6.0.21.52210 dotnet -Microsoft.Extensions.Primitives 6.0.21.52210 dotnet -Microsoft.Extensions.WebEncoders 6.0.3524.46214 dotnet -Microsoft.Identity.Client 4.21.1.0 dotnet -Microsoft.IdentityModel.JsonWebTokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Logging 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.IdentityModel.Tokens 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -Microsoft.JSInterop 6.0.3524.46214 dotnet -Microsoft.Net.Http.Headers 6.0.3524.46214 dotnet -Microsoft.OpenApi 1.6.14.0 dotnet -Microsoft.VisualBasic 6.0.3524.45918 dotnet -Microsoft.VisualBasic.Core 11.100.3524.45918 dotnet -Microsoft.Win32.Primitives 6.0.3524.45918 dotnet -Microsoft.Win32.Registry 6.0.3524.45918 dotnet -Microsoft.Win32.SystemEvents 6.0.21.52210 dotnet -MimeKit 4.8.0.0 dotnet -Mono.Nat 3.0.1 dotnet -Mono.Posix.NETStandard 1.0.0.0 dotnet -MonoTorrent 2.0.7 dotnet -NLog v5.4.0 5.4.0.3182 dotnet -NLog.Extensions.Logging v5.4.0 5.4.0.625 dotnet -NLog.Layouts.ClefJsonLayout 1.0.3.0 dotnet -NLog.Targets.Syslog 7.0.0.0 dotnet -NodaTime 3.2.0.0 dotnet -Npgsql 7.0.10.0 dotnet -Polly 8.5.2.4319 dotnet -Polly.Contrib.WaitAndRetry 1.1.1.0+7596d2dacf22d88bbd814bc49c28424fb6e921e9 dotnet -Polly.Core 8.5.2.4319 dotnet -ReusableTasks 2.0.0 dotnet -Sentry 4.0.2.0 dotnet -SixLabors.ImageSharp 3.1.7.0 dotnet -SpotifyAPI.Web 1.0.0.0 dotnet -Swashbuckle.AspNetCore.Annotations 6.6.2.401 dotnet -Swashbuckle.AspNetCore.Swagger 6.6.2.401 dotnet -Swashbuckle.AspNetCore.SwaggerGen 6.6.2.401 dotnet -System 6.0.3524.45918 dotnet -System.AppContext 6.0.3524.45918 dotnet -System.Buffers 6.0.3524.45918 dotnet -System.Collections 6.0.3524.45918 dotnet -System.Collections.Concurrent 6.0.3524.45918 dotnet -System.Collections.Immutable 6.0.3524.45918 dotnet -System.Collections.NonGeneric 6.0.3524.45918 dotnet -System.Collections.Specialized 6.0.3524.45918 dotnet -System.ComponentModel 6.0.3524.45918 dotnet -System.ComponentModel.Annotations 6.0.3524.45918 dotnet -System.ComponentModel.DataAnnotations 6.0.3524.45918 dotnet -System.ComponentModel.EventBasedAsync 6.0.3524.45918 dotnet -System.ComponentModel.Primitives 6.0.3524.45918 dotnet -System.ComponentModel.TypeConverter 6.0.3524.45918 dotnet -System.Configuration 6.0.3524.45918 dotnet -System.Configuration.ConfigurationManager 6.0.922.41905 dotnet -System.Console 6.0.3524.45918 dotnet -System.Core 6.0.3524.45918 dotnet -System.Data 6.0.3524.45918 dotnet -System.Data.Common 6.0.3524.45918 dotnet -System.Data.DataSetExtensions 6.0.3524.45918 dotnet -System.Data.SQLite 1.0.115.5 dotnet -System.Data.SqlServerCe 4.0.8876.1 dotnet -System.Diagnostics.Contracts 6.0.3524.45918 dotnet -System.Diagnostics.Debug 6.0.3524.45918 dotnet -System.Diagnostics.DiagnosticSource 6.0.3524.45918 dotnet -System.Diagnostics.EventLog 6.0.21.52210 dotnet -System.Diagnostics.FileVersionInfo 6.0.3524.45918 dotnet -System.Diagnostics.Process 6.0.3524.45918 dotnet -System.Diagnostics.StackTrace 6.0.3524.45918 dotnet -System.Diagnostics.TextWriterTraceListener 6.0.3524.45918 dotnet -System.Diagnostics.Tools 6.0.3524.45918 dotnet -System.Diagnostics.TraceSource 6.0.3524.45918 dotnet -System.Diagnostics.Tracing 6.0.3524.45918 dotnet -System.Drawing 6.0.3524.45918 dotnet -System.Drawing.Common 6.0.21.52210 dotnet -System.Drawing.Primitives 6.0.3524.45918 dotnet -System.Dynamic.Runtime 6.0.3524.45918 dotnet -System.Formats.Asn1 6.0.3524.45918 dotnet -System.Globalization 6.0.3524.45918 dotnet -System.Globalization.Calendars 6.0.3524.45918 dotnet -System.Globalization.Extensions 6.0.3524.45918 dotnet -System.IO 6.0.3524.45918 dotnet -System.IO.Abstractions 17.0.24.38649 dotnet -System.IO.Compression 6.0.3524.45918 dotnet -System.IO.Compression.Brotli 6.0.3524.45918 dotnet -System.IO.Compression.FileSystem 6.0.3524.45918 dotnet -System.IO.Compression.ZipFile 6.0.3524.45918 dotnet -System.IO.FileSystem 6.0.3524.45918 dotnet -System.IO.FileSystem.AccessControl 6.0.3524.45918 dotnet -System.IO.FileSystem.DriveInfo 6.0.3524.45918 dotnet -System.IO.FileSystem.Primitives 6.0.3524.45918 dotnet -System.IO.FileSystem.Watcher 6.0.3524.45918 dotnet -System.IO.IsolatedStorage 6.0.3524.45918 dotnet -System.IO.MemoryMappedFiles 6.0.3524.45918 dotnet -System.IO.Pipelines 6.0.522.21309 dotnet -System.IO.Pipes 6.0.3524.45918 dotnet -System.IO.Pipes.AccessControl 6.0.3524.45918 dotnet -System.IO.UnmanagedMemoryStream 6.0.3524.45918 dotnet -System.IdentityModel.Tokens.Jwt 6.8.0.11012235604.824068adaeb7b158df2b36d8787f689646e715e0 dotnet -System.Linq 6.0.3524.45918 dotnet -System.Linq.Expressions 6.0.3524.45918 dotnet -System.Linq.Parallel 6.0.3524.45918 dotnet -System.Linq.Queryable 6.0.3524.45918 dotnet -System.Memory 6.0.3524.45918 dotnet -System.Net 6.0.3524.45918 dotnet -System.Net.Http 6.0.3524.45918 dotnet -System.Net.Http.Json 6.0.3524.45918 dotnet -System.Net.HttpListener 6.0.3524.45918 dotnet -System.Net.Mail 6.0.3524.45918 dotnet -System.Net.NameResolution 6.0.3524.45918 dotnet -System.Net.NetworkInformation 6.0.3524.45918 dotnet -System.Net.Ping 6.0.3524.45918 dotnet -System.Net.Primitives 6.0.3524.45918 dotnet -System.Net.Quic 6.0.3524.45918 dotnet -System.Net.Requests 6.0.3524.45918 dotnet -System.Net.Security 6.0.3524.45918 dotnet -System.Net.ServicePoint 6.0.3524.45918 dotnet -System.Net.Sockets 6.0.3524.45918 dotnet -System.Net.WebClient 6.0.3524.45918 dotnet -System.Net.WebHeaderCollection 6.0.3524.45918 dotnet -System.Net.WebProxy 6.0.3524.45918 dotnet -System.Net.WebSockets 6.0.3524.45918 dotnet -System.Net.WebSockets.Client 6.0.3524.45918 dotnet -System.Numerics 6.0.3524.45918 dotnet -System.Numerics.Vectors 6.0.3524.45918 dotnet -System.ObjectModel 6.0.3524.45918 dotnet -System.Private.CoreLib 6.0.3524.45918 dotnet -System.Private.DataContractSerialization 6.0.3524.45918 dotnet -System.Private.Uri 6.0.3524.45918 dotnet -System.Private.Xml 6.0.3524.45918 dotnet -System.Private.Xml.Linq 6.0.3524.45918 dotnet -System.Reflection 6.0.3524.45918 dotnet -System.Reflection.DispatchProxy 6.0.3524.45918 dotnet -System.Reflection.Emit 6.0.3524.45918 dotnet -System.Reflection.Emit.ILGeneration 6.0.3524.45918 dotnet -System.Reflection.Emit.Lightweight 6.0.3524.45918 dotnet -System.Reflection.Extensions 6.0.3524.45918 dotnet -System.Reflection.Metadata 6.0.3524.45918 dotnet -System.Reflection.Primitives 6.0.3524.45918 dotnet -System.Reflection.TypeExtensions 6.0.3524.45918 dotnet -System.Resources.Reader 6.0.3524.45918 dotnet -System.Resources.ResourceManager 6.0.3524.45918 dotnet -System.Resources.Writer 6.0.3524.45918 dotnet -System.Runtime 6.0.3524.45918 dotnet -System.Runtime.Caching 4.700.19.56404 dotnet -System.Runtime.CompilerServices.VisualC 6.0.3524.45918 dotnet -System.Runtime.Extensions 6.0.3524.45918 dotnet -System.Runtime.Handles 6.0.3524.45918 dotnet -System.Runtime.InteropServices 6.0.3524.45918 dotnet -System.Runtime.InteropServices.RuntimeInformation 6.0.3524.45918 dotnet -System.Runtime.Intrinsics 6.0.3524.45918 dotnet -System.Runtime.Loader 6.0.3524.45918 dotnet -System.Runtime.Numerics 6.0.3524.45918 dotnet -System.Runtime.Serialization 6.0.3524.45918 dotnet -System.Runtime.Serialization.Formatters 6.0.3524.45918 dotnet -System.Runtime.Serialization.Json 6.0.3524.45918 dotnet -System.Runtime.Serialization.Primitives 6.0.3524.45918 dotnet -System.Runtime.Serialization.Xml 6.0.3524.45918 dotnet -System.Security 6.0.3524.45918 dotnet -System.Security.AccessControl 6.0.3524.45918 dotnet -System.Security.Claims 6.0.3524.45918 dotnet -System.Security.Cryptography.Algorithms 6.0.3524.45918 dotnet -System.Security.Cryptography.Cng 6.0.3524.45918 dotnet -System.Security.Cryptography.Csp 6.0.3524.45918 dotnet -System.Security.Cryptography.Encoding 6.0.3524.45918 dotnet -System.Security.Cryptography.OpenSsl 6.0.3524.45918 dotnet -System.Security.Cryptography.Pkcs 8.0.23.53103 dotnet -System.Security.Cryptography.Primitives 6.0.3524.45918 dotnet -System.Security.Cryptography.ProtectedData 6.0.21.52210 dotnet -System.Security.Cryptography.X509Certificates 6.0.3524.45918 dotnet -System.Security.Cryptography.Xml 6.0.822.36306 dotnet -System.Security.Permissions 6.0.21.52210 dotnet -System.Security.Principal 6.0.3524.45918 dotnet -System.Security.Principal.Windows 6.0.3524.45918 dotnet -System.Security.SecureString 6.0.3524.45918 dotnet -System.ServiceModel.Web 6.0.3524.45918 dotnet -System.ServiceProcess 6.0.3524.45918 dotnet -System.ServiceProcess.ServiceController 6.0.1823.26907 dotnet -System.Text.Encoding 6.0.3524.45918 dotnet -System.Text.Encoding.CodePages 6.0.3524.45918 dotnet -System.Text.Encoding.Extensions 6.0.3524.45918 dotnet -System.Text.Encodings.Web 6.0.3524.45918 dotnet -System.Text.Json 6.0.3524.45918 dotnet -System.Text.RegularExpressions 6.0.3524.45918 dotnet -System.Threading 6.0.3524.45918 dotnet -System.Threading.Channels 6.0.3524.45918 dotnet -System.Threading.Overlapped 6.0.3524.45918 dotnet -System.Threading.Tasks 6.0.3524.45918 dotnet -System.Threading.Tasks.Dataflow 6.0.3524.45918 dotnet -System.Threading.Tasks.Extensions 6.0.3524.45918 dotnet -System.Threading.Tasks.Parallel 6.0.3524.45918 dotnet -System.Threading.Thread 6.0.3524.45918 dotnet -System.Threading.ThreadPool 6.0.3524.45918 dotnet -System.Threading.Timer 6.0.3524.45918 dotnet -System.Transactions 6.0.3524.45918 dotnet -System.Transactions.Local 6.0.3524.45918 dotnet -System.ValueTuple 6.0.3524.45918 dotnet -System.Web 6.0.3524.45918 dotnet -System.Web.HttpUtility 6.0.3524.45918 dotnet -System.Windows 6.0.3524.45918 dotnet -System.Windows.Extensions 6.0.21.52210 dotnet -System.Xml 6.0.3524.45918 dotnet -System.Xml.Linq 6.0.3524.45918 dotnet -System.Xml.ReaderWriter 6.0.3524.45918 dotnet -System.Xml.Serialization 6.0.3524.45918 dotnet -System.Xml.XDocument 6.0.3524.45918 dotnet -System.Xml.XPath 6.0.3524.45918 dotnet -System.Xml.XPath.XDocument 6.0.3524.45918 dotnet -System.Xml.XmlDocument 6.0.3524.45918 dotnet -System.Xml.XmlSerializer 6.0.3524.45918 dotnet -TagLib# 2.2.0.27 dotnet -WindowsBase 6.0.3524.45918 dotnet -acl-libs 2.3.2-r1 apk -alpine-baselayout 3.6.8-r1 apk -alpine-baselayout-data 3.6.8-r1 apk -alpine-keys 2.5-r0 apk -alpine-release 3.21.3-r0 apk -aom-libs 3.11.0-r0 apk -apk-tools 2.14.6-r3 apk -bash 5.2.37-r0 apk -brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r12 apk -busybox-binsh 1.37.0-r12 apk -c-ares 1.34.3-r0 apk -ca-certificates 20241121-r1 apk -ca-certificates-bundle 20241121-r1 apk -catatonit 0.2.0-r0 apk -chromaprint 1.5.1-r7 apk -chromaprint-libs 1.5.1-r7 apk -cjson 1.7.18-r0 apk -coreutils 9.5-r2 apk -coreutils-env 9.5-r2 apk -coreutils-fmt 9.5-r2 apk -coreutils-sha512sum 9.5-r2 apk -curl 8.12.1-r1 apk -ffmpeg-libavcodec 6.1.2-r1 apk -ffmpeg-libavformat 6.1.2-r1 apk -ffmpeg-libavutil 6.1.2-r1 apk -ffmpeg-libswresample 6.1.2-r1 apk -findutils 4.10.0-r0 apk -giflib 5.2.2-r0 apk -hwdata-pci 0.393-r0 apk -icu-data-en 74.2-r0 apk -icu-libs 74.2-r0 apk -imath 3.1.12-r0 apk -jq 1.7.1-r0 apk -lame-libs 3.100-r5 apk -lcms2 2.16-r0 apk -libSvtAv1Enc 2.2.1-r0 apk -libattr 2.5.2-r2 apk -libbluray 1.3.4-r1 apk -libbsd 0.12.2-r0 apk -libbz2 1.0.8-r6 apk -libcrypto3 3.3.3-r0 apk -libcurl 8.12.1-r1 apk -libdav1d 1.5.0-r0 apk -libdeflate 1.22-r0 apk -libdrm 2.4.123-r1 apk -libffi 3.4.7-r0 apk -libgcc 14.2.0-r4 apk -libgcrypt 1.10.3-r1 apk -libgomp 14.2.0-r4 apk -libgpg-error 1.51-r0 apk -libhwy 1.0.7-r0 apk -libidn2 2.3.7-r0 apk -libintl 0.22.5-r0 apk -libjpeg-turbo 3.0.4-r0 apk -libjxl 0.10.4-r0 apk -libmd 1.1.0-r0 apk -libncursesw 6.5_p20241006-r3 apk -libogg 1.3.5-r5 apk -libopenmpt 0.7.12-r0 apk -libpciaccess 0.18.1-r0 apk -libpng 1.6.47-r0 apk -libproc2 4.0.4-r2 apk -libpsl 0.21.5-r3 apk -librist 0.2.10-r1 apk -libsharpyuv 1.4.0-r0 apk -libsodium 1.0.20-r0 apk -libsrt 1.5.3-r0 apk -libssh 0.11.1-r0 apk -libssl3 3.3.3-r0 apk -libstdc++ 14.2.0-r4 apk -libtheora 1.1.1-r18 apk -libunistring 1.2-r0 apk -libva 2.22.0-r1 apk -libvdpau 1.5-r4 apk -libvorbis 1.3.7-r2 apk -libvpx 1.15.0-r0 apk -libwebp 1.4.0-r0 apk -libwebpmux 1.4.0-r0 apk -libx11 1.8.10-r0 apk -libxau 1.0.11-r4 apk -libxcb 1.16.1-r0 apk -libxdmcp 1.1.5-r1 apk -libxext 1.3.6-r2 apk -libxfixes 6.0.1-r4 apk -libxml2 2.13.4-r5 apk -libxslt 1.1.42-r2 apk -libzmq 4.3.5-r2 apk -linux-pam 1.6.1-r1 apk -mbedtls 3.6.2-r0 apk -mpg123-libs 1.32.9-r0 apk -mscorlib 6.0.3524.45918 dotnet -musl 1.2.5-r9 apk -musl-utils 1.2.5-r9 apk -ncurses-terminfo-base 6.5_p20241006-r3 apk -netcat-openbsd 1.226.1.1-r0 apk -netstandard 6.0.3524.45918 dotnet -nghttp2-libs 1.64.0-r0 apk -numactl 2.0.18-r0 apk -onevpl-libs 2023.3.1-r2 apk -oniguruma 6.9.9-r0 apk -openexr-libiex 3.3.2-r0 apk -openexr-libilmthread 3.3.2-r0 apk -openexr-libopenexr 3.3.2-r0 apk -openexr-libopenexrcore 3.3.2-r0 apk -opus 1.5.2-r1 apk -procps-ng 4.0.4-r2 apk -rav1e-libs 0.7.1-r0 apk -readline 8.2.13-r0 apk -scanelf 1.3.8-r1 apk -shadow 4.16.0-r1 apk -skalibs-libs 2.14.3.0-r0 apk -soxr 0.1.3-r7 apk -sqlite-libs 3.48.0-r0 apk -ssl_client 1.37.0-r12 apk -tzdata 2025b-r0 apk -utmps-libs 0.1.2.3-r2 apk -wayland-libs-client 1.23.1-r0 apk -x264-libs 0.164.3108-r0 apk -x265-libs 3.6-r0 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r2 apk -xz-libs 5.6.3-r0 apk -zlib 1.3.1-r2 apk -zstd-libs 1.5.6-r2 apk +NAME VERSION TYPE +BouncyCastle.Cryptography 2.4.0 dotnet (+5 duplicates) +Dapper 2.0.151 dotnet (+5 duplicates) +Diacritical.Net 1.0.4 dotnet (+5 duplicates) +DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) +DryIoc.dll 5.4.3 dotnet (+7 duplicates) +Dynamitey 2.0.9.136 dotnet (+3 duplicates) +Equ 2.3.0 dotnet (+5 duplicates) +FluentValidation 9.5.4 dotnet (+5 duplicates) +IPAddressRange 6.1.0 dotnet (+7 duplicates) +Ical.Net 4.3.1 dotnet (+2 duplicates) +ImpromptuInterface 7.0.1 dotnet (+3 duplicates) +Lidarr 1.0.0 dotnet +Lidarr.Api.V1 1.0.0 dotnet (+2 duplicates) +Lidarr.Common 1.0.0 dotnet (+7 duplicates) +Lidarr.Core 1.0.0 dotnet (+5 duplicates) +Lidarr.Host 1.0.0 dotnet (+1 duplicate) +Lidarr.Http 1.0.0 dotnet (+3 duplicates) +Lidarr.Mono 1.0.0 dotnet +Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) +MailKit 4.8.0 dotnet (+5 duplicates) +Microsoft.AspNetCore.Cryptography.Internal 6.0.35 dotnet (+4 duplicates) +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.35 dotnet (+4 duplicates) +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet (+5 duplicates) +Microsoft.Bcl.TimeProvider 8.0.0 dotnet (+5 duplicates) +Microsoft.Data.SqlClient 2.1.7 dotnet (+5 duplicates) +Microsoft.Extensions.Configuration 6.0.0 dotnet (+1 duplicate) +Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) +Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet (+1 duplicate) +Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Hosting 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Hosting.WindowsServices 6.0.2 dotnet (+7 duplicates) +Microsoft.Extensions.Logging 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Options 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) +Microsoft.Identity.Client 4.21.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Logging 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Tokens 6.8.0 dotnet (+5 duplicates) +Microsoft.OpenApi 1.6.14 dotnet (+2 duplicates) +Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) +MimeKit 4.8.0 dotnet (+5 duplicates) +Mono.Nat 3.0.1 dotnet (+5 duplicates) +Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet +MonoTorrent 2.0.7 dotnet (+5 duplicates) +NLog 5.4.0 dotnet (+7 duplicates) +NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) +NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) +NLog.Targets.Syslog 7.0.0 dotnet (+5 duplicates) +Newtonsoft.Json 13.0.3 dotnet (+7 duplicates) +NodaTime 3.2.0 dotnet (+2 duplicates) +Npgsql 7.0.10 dotnet (+5 duplicates) +Polly 8.5.2 dotnet (+5 duplicates) +Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) +Polly.Core 8.5.2 dotnet (+5 duplicates) +ReusableTasks 2.0.0 dotnet (+5 duplicates) +Sentry 4.0.2 dotnet (+7 duplicates) +Servarr.FluentMigrator 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) +SharpZipLib 1.4.2 dotnet (+7 duplicates) +SixLabors.ImageSharp 3.1.7 dotnet (+5 duplicates) +SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) +Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.SwaggerGen 6.6.2 dotnet (+2 duplicates) +System.Configuration.ConfigurationManager 6.0.1 dotnet (+7 duplicates) +System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet (+7 duplicates) +System.Diagnostics.EventLog 6.0.0 dotnet (+2 duplicates) +System.Drawing.Common 6.0.0 dotnet (+7 duplicates) +System.Formats.Asn1 8.0.1 dotnet (+5 duplicates) +System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) +System.IdentityModel.Tokens.Jwt 6.8.0 dotnet (+5 duplicates) +System.Runtime.Caching 4.7.0 dotnet (+5 duplicates) +System.Security.Cryptography.Pkcs 8.0.0 dotnet (+5 duplicates) +System.Security.Cryptography.ProtectedData 6.0.0 dotnet (+7 duplicates) +System.Security.Permissions 6.0.0 dotnet (+7 duplicates) +System.ServiceProcess.ServiceController 6.0.1 dotnet (+7 duplicates) +System.Text.Json 6.0.10 dotnet (+6 duplicates) +System.Windows.Extensions 6.0.0 dotnet (+7 duplicates) +TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) +acl-libs 2.3.2-r1 apk +alpine-baselayout 3.6.8-r1 apk +alpine-baselayout-data 3.6.8-r1 apk +alpine-keys 2.5-r0 apk +alpine-release 3.21.3-r0 apk +aom-libs 3.11.0-r0 apk +apk-tools 2.14.6-r3 apk +bash 5.2.37-r0 apk +brotli-libs 1.1.0-r2 apk +busybox 1.37.0-r12 apk +busybox-binsh 1.37.0-r12 apk +c-ares 1.34.3-r0 apk +ca-certificates 20241121-r1 apk +ca-certificates-bundle 20241121-r1 apk +catatonit 0.2.0-r0 apk +chromaprint 1.5.1-r7 apk +chromaprint-libs 1.5.1-r7 apk +cjson 1.7.18-r0 apk +coreutils 9.5-r2 apk +coreutils-env 9.5-r2 apk +coreutils-fmt 9.5-r2 apk +coreutils-sha512sum 9.5-r2 apk +curl 8.12.1-r1 apk +ffmpeg-libavcodec 6.1.2-r1 apk +ffmpeg-libavformat 6.1.2-r1 apk +ffmpeg-libavutil 6.1.2-r1 apk +ffmpeg-libswresample 6.1.2-r1 apk +findutils 4.10.0-r0 apk +giflib 5.2.2-r0 apk +hwdata-pci 0.393-r0 apk +icu-data-en 74.2-r0 apk +icu-libs 74.2-r0 apk +imath 3.1.12-r0 apk +jq 1.7.1-r0 apk +lame-libs 3.100-r5 apk +lcms2 2.16-r0 apk +libSvtAv1Enc 2.2.1-r0 apk +libattr 2.5.2-r2 apk +libbluray 1.3.4-r1 apk +libbsd 0.12.2-r0 apk +libbz2 1.0.8-r6 apk +libcrypto3 3.3.3-r0 apk +libcurl 8.12.1-r1 apk +libdav1d 1.5.0-r0 apk +libdeflate 1.22-r0 apk +libdrm 2.4.123-r1 apk +libffi 3.4.7-r0 apk +libgcc 14.2.0-r4 apk +libgcrypt 1.10.3-r1 apk +libgomp 14.2.0-r4 apk +libgpg-error 1.51-r0 apk +libhwy 1.0.7-r0 apk +libidn2 2.3.7-r0 apk +libintl 0.22.5-r0 apk +libjpeg-turbo 3.0.4-r0 apk +libjxl 0.10.4-r0 apk +libmd 1.1.0-r0 apk +libncursesw 6.5_p20241006-r3 apk +libogg 1.3.5-r5 apk +libopenmpt 0.7.12-r0 apk +libpciaccess 0.18.1-r0 apk +libpng 1.6.47-r0 apk +libproc2 4.0.4-r2 apk +libpsl 0.21.5-r3 apk +librist 0.2.10-r1 apk +libsharpyuv 1.4.0-r0 apk +libsodium 1.0.20-r0 apk +libsrt 1.5.3-r0 apk +libssh 0.11.1-r0 apk +libssl3 3.3.3-r0 apk +libstdc++ 14.2.0-r4 apk +libtheora 1.1.1-r18 apk +libunistring 1.2-r0 apk +libva 2.22.0-r1 apk +libvdpau 1.5-r4 apk +libvorbis 1.3.7-r2 apk +libvpx 1.15.0-r0 apk +libwebp 1.4.0-r0 apk +libwebpmux 1.4.0-r0 apk +libx11 1.8.10-r0 apk +libxau 1.0.11-r4 apk +libxcb 1.16.1-r0 apk +libxdmcp 1.1.5-r1 apk +libxext 1.3.6-r2 apk +libxfixes 6.0.1-r4 apk +libxml2 2.13.4-r5 apk +libxslt 1.1.42-r2 apk +libzmq 4.3.5-r2 apk +linux-pam 1.6.1-r1 apk +mbedtls 3.6.2-r0 apk +mpg123-libs 1.32.9-r0 apk +musl 1.2.5-r9 apk +musl-utils 1.2.5-r9 apk +ncurses-terminfo-base 6.5_p20241006-r3 apk +netcat-openbsd 1.226.1.1-r0 apk +nghttp2-libs 1.64.0-r0 apk +numactl 2.0.18-r0 apk +onevpl-libs 2023.3.1-r2 apk +oniguruma 6.9.9-r0 apk +openexr-libiex 3.3.2-r0 apk +openexr-libilmthread 3.3.2-r0 apk +openexr-libopenexr 3.3.2-r0 apk +openexr-libopenexrcore 3.3.2-r0 apk +opus 1.5.2-r1 apk +procps-ng 4.0.4-r2 apk +rav1e-libs 0.7.1-r0 apk +readline 8.2.13-r0 apk +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 6.0.35 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 6.0.35 dotnet +scanelf 1.3.8-r1 apk +shadow 4.16.0-r1 apk +skalibs-libs 2.14.3.0-r0 apk +soxr 0.1.3-r7 apk +sqlite-libs 3.48.0-r0 apk +ssl_client 1.37.0-r12 apk +tzdata 2025b-r0 apk +utmps-libs 0.1.2.3-r2 apk +wayland-libs-client 1.23.1-r0 apk +x264-libs 0.164.3108-r0 apk +x265-libs 3.6-r0 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r2 apk +xz-libs 5.6.3-r0 apk +zlib 1.3.1-r2 apk +zstd-libs 1.5.6-r2 apk From 62c29c5148872868bbc83514ce14bb7befc133ed Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Tue, 8 Apr 2025 13:14:31 +0000 Subject: [PATCH 719/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 59b05284..7bcc9bd2 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -205,7 +205,7 @@ libxml2 2.13.4-r5 libxslt 1.1.42-r2 apk libzmq 4.3.5-r2 apk linux-pam 1.6.1-r1 apk -mbedtls 3.6.2-r0 apk +mbedtls 3.6.3-r0 apk mpg123-libs 1.32.9-r0 apk musl 1.2.5-r9 apk musl-utils 1.2.5-r9 apk @@ -238,6 +238,6 @@ x264-libs 0.164.3108-r0 x265-libs 3.6-r0 apk xmlstarlet 1.6.1-r2 apk xvidcore 1.3.7-r2 apk -xz-libs 5.6.3-r0 apk +xz-libs 5.6.3-r1 apk zlib 1.3.1-r2 apk zstd-libs 1.5.6-r2 apk From 5f69acdb78b7f09a6f63abbfc39b20530f348791 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 13 Apr 2025 07:40:11 +0000 Subject: [PATCH 720/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 7bcc9bd2..fa66bb2e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -127,7 +127,7 @@ bash 5.2.37-r0 brotli-libs 1.1.0-r2 apk busybox 1.37.0-r12 apk busybox-binsh 1.37.0-r12 apk -c-ares 1.34.3-r0 apk +c-ares 1.34.5-r0 apk ca-certificates 20241121-r1 apk ca-certificates-bundle 20241121-r1 apk catatonit 0.2.0-r0 apk @@ -144,7 +144,7 @@ ffmpeg-libavformat 6.1.2-r1 ffmpeg-libavutil 6.1.2-r1 apk ffmpeg-libswresample 6.1.2-r1 apk findutils 4.10.0-r0 apk -giflib 5.2.2-r0 apk +giflib 5.2.2-r1 apk hwdata-pci 0.393-r0 apk icu-data-en 74.2-r0 apk icu-libs 74.2-r0 apk From f14e2e5cbcc898a289ee7c59e4b70038f4c2703e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 16 Apr 2025 02:48:33 +0000 Subject: [PATCH 721/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fa66bb2e..1fdda88f 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -229,7 +229,7 @@ scanelf 1.3.8-r1 shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.48.0-r0 apk +sqlite-libs 3.48.0-r1 apk ssl_client 1.37.0-r12 apk tzdata 2025b-r0 apk utmps-libs 0.1.2.3-r2 apk From b0d7b0d6795537eb75a8f73434a5ff46dd616ab5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 28 Apr 2025 12:37:33 +0000 Subject: [PATCH 722/790] Bot Updating Package Versions --- package_versions.txt | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1fdda88f..fc3fd75d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -28,29 +28,29 @@ Microsoft.Extensions.Configuration 6.0.0 Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+6 duplicates) Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+6 duplicates) Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+7 duplicates) Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet (+2 duplicates) Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet (+1 duplicate) Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet (+2 duplicates) Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet (+2 duplicates) Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Hosting 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Hosting 6.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+4 duplicates) Microsoft.Extensions.Hosting.WindowsServices 6.0.2 dotnet (+7 duplicates) -Microsoft.Extensions.Logging 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging 6.0.0 dotnet (+7 duplicates) Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Options 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Options 6.0.0 dotnet (+4 duplicates) +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+4 duplicates) Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) Microsoft.Identity.Client 4.21.1 dotnet (+5 duplicates) Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet (+5 duplicates) From 06f2e1ea26dedcad7ddb6336fe4db3f708261d9b Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 May 2025 02:54:00 +0000 Subject: [PATCH 723/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index fc3fd75d..61f14678 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -229,7 +229,7 @@ scanelf 1.3.8-r1 shadow 4.16.0-r1 apk skalibs-libs 2.14.3.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.48.0-r1 apk +sqlite-libs 3.48.0-r2 apk ssl_client 1.37.0-r12 apk tzdata 2025b-r0 apk utmps-libs 0.1.2.3-r2 apk From 2e4de6eacdc5449cd4854eb77c25577462ac08f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 14 May 2025 02:51:29 +0000 Subject: [PATCH 724/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 61f14678..232d3fd9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -201,7 +201,7 @@ libxcb 1.16.1-r0 libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk -libxml2 2.13.4-r5 apk +libxml2 2.13.4-r6 apk libxslt 1.1.42-r2 apk libzmq 4.3.5-r2 apk linux-pam 1.6.1-r1 apk From 38971f9cb4d0b09adb0a86d923e2da293d23a90c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 21 May 2025 02:54:50 +0000 Subject: [PATCH 725/790] Bot Updating Templated Files --- readme-vars.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/readme-vars.yml b/readme-vars.yml index fc01e563..2e7cab83 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -68,6 +68,7 @@ init_diagram: | init-lidarr-config -> init-config-end init-config -> init-crontab-config init-mods-end -> init-custom-files + init-adduser -> init-device-perms base -> init-envfile init-config -> init-lidarr-config base -> init-migrations @@ -75,6 +76,7 @@ init_diagram: | init-mods-package-install -> init-mods-end init-mods -> init-mods-package-install init-adduser -> init-os-end + init-device-perms -> init-os-end init-envfile -> init-os-end init-custom-files -> init-services init-services -> svc-cron From 9ef6f469569ce95eb37a5e7d994f30e4975e06f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Jun 2025 13:06:07 +0000 Subject: [PATCH 726/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 232d3fd9..d559aab9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -7,7 +7,7 @@ DryIoc.dll 5.4.3 Dynamitey 2.0.9.136 dotnet (+3 duplicates) Equ 2.3.0 dotnet (+5 duplicates) FluentValidation 9.5.4 dotnet (+5 duplicates) -IPAddressRange 6.1.0 dotnet (+7 duplicates) +IPAddressRange 6.2.0 dotnet (+7 duplicates) Ical.Net 4.3.1 dotnet (+2 duplicates) ImpromptuInterface 7.0.1 dotnet (+3 duplicates) Lidarr 1.0.0 dotnet @@ -96,7 +96,7 @@ Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) SharpZipLib 1.4.2 dotnet (+7 duplicates) -SixLabors.ImageSharp 3.1.7 dotnet (+5 duplicates) +SixLabors.ImageSharp 3.1.9 dotnet (+5 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) From 7f3f95283688e465f73d87dcbecf2952bea4caaa Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 9 Jun 2025 21:43:39 +0000 Subject: [PATCH 727/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cb63d3a6..5f69b5fb 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -780,7 +780,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:latest \ + ghcr.io/anchore/syft:v1.26.1 \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" From 14575082c22f445cbd4ddceaa61cd67472bedd9b Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Sat, 5 Jul 2025 15:10:24 +0100 Subject: [PATCH 728/790] Rebase to 3.22 --- .editorconfig | 0 .github/CONTRIBUTING.md | 0 .github/FUNDING.yml | 0 .github/ISSUE_TEMPLATE/config.yml | 0 .github/ISSUE_TEMPLATE/issue.bug.yml | 0 .github/ISSUE_TEMPLATE/issue.feature.yml | 0 .github/workflows/call_issue_pr_tracker.yml | 3 +++ .github/workflows/call_issues_cron.yml | 3 +++ .github/workflows/external_trigger.yml | 15 +++++++++------ .github/workflows/external_trigger_scheduler.yml | 3 +++ .github/workflows/greetings.yml | 6 ++++++ .github/workflows/package_trigger_scheduler.yml | 3 +++ .github/workflows/permissions.yml | 0 Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- Jenkinsfile | 7 ++++++- LICENSE | 0 README.md | 9 ++++----- readme-vars.yml | 10 ++-------- root/donate.txt | 0 20 files changed, 41 insertions(+), 22 deletions(-) mode change 100755 => 100644 .editorconfig mode change 100755 => 100644 .github/CONTRIBUTING.md mode change 100755 => 100644 .github/FUNDING.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/config.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.bug.yml mode change 100755 => 100644 .github/ISSUE_TEMPLATE/issue.feature.yml mode change 100755 => 100644 .github/workflows/call_issue_pr_tracker.yml mode change 100755 => 100644 .github/workflows/call_issues_cron.yml mode change 100755 => 100644 .github/workflows/greetings.yml mode change 100755 => 100644 .github/workflows/permissions.yml mode change 100755 => 100644 LICENSE mode change 100755 => 100644 root/donate.txt diff --git a/.editorconfig b/.editorconfig old mode 100755 new mode 100644 diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md old mode 100755 new mode 100644 diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.bug.yml b/.github/ISSUE_TEMPLATE/issue.bug.yml old mode 100755 new mode 100644 diff --git a/.github/ISSUE_TEMPLATE/issue.feature.yml b/.github/ISSUE_TEMPLATE/issue.feature.yml old mode 100755 new mode 100644 diff --git a/.github/workflows/call_issue_pr_tracker.yml b/.github/workflows/call_issue_pr_tracker.yml old mode 100755 new mode 100644 index 2c307843..d07cf121 --- a/.github/workflows/call_issue_pr_tracker.yml +++ b/.github/workflows/call_issue_pr_tracker.yml @@ -8,6 +8,9 @@ on: pull_request_review: types: [submitted,edited,dismissed] +permissions: + contents: read + jobs: manage-project: permissions: diff --git a/.github/workflows/call_issues_cron.yml b/.github/workflows/call_issues_cron.yml old mode 100755 new mode 100644 index 99d5bd8a..fce74570 --- a/.github/workflows/call_issues_cron.yml +++ b/.github/workflows/call_issues_cron.yml @@ -4,6 +4,9 @@ on: - cron: '48 20 * * *' workflow_dispatch: +permissions: + contents: read + jobs: stale: permissions: diff --git a/.github/workflows/external_trigger.yml b/.github/workflows/external_trigger.yml index fa11af63..6437ea84 100644 --- a/.github/workflows/external_trigger.yml +++ b/.github/workflows/external_trigger.yml @@ -3,6 +3,9 @@ name: External Trigger Main on: workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-nightly: runs-on: ubuntu-latest @@ -43,8 +46,8 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} exit 1 fi - EXT_RELEASE=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') - echo "External version: \`${EXT_RELEASE}\`" >> $GITHUB_STEP_SUMMARY + EXT_RELEASE_SANITIZED=$(echo ${EXT_RELEASE} | sed 's/[~,%@+;:/]//g') + echo "Sanitized external version: \`${EXT_RELEASE_SANITIZED}\`" >> $GITHUB_STEP_SUMMARY echo "Retrieving last pushed version" >> $GITHUB_STEP_SUMMARY image="linuxserver/lidarr" tag="nightly" @@ -100,8 +103,8 @@ jobs: exit 1 fi echo "Last pushed version: \`${IMAGE_VERSION}\`" >> $GITHUB_STEP_SUMMARY - if [ "${EXT_RELEASE}" == "${IMAGE_VERSION}" ]; then - echo "Version \`${EXT_RELEASE}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY + if [ "${EXT_RELEASE_SANITIZED}" == "${IMAGE_VERSION}" ]; then + echo "Sanitized version \`${EXT_RELEASE_SANITIZED}\` already pushed, exiting" >> $GITHUB_STEP_SUMMARY exit 0 elif [ $(curl -s https://ci.linuxserver.io/job/Docker-Pipeline-Builders/job/docker-lidarr/job/nightly/lastBuild/api/json | jq -r '.building') == "true" ]; then echo "New version \`${EXT_RELEASE}\` found; but there already seems to be an active build on Jenkins; exiting" >> $GITHUB_STEP_SUMMARY @@ -116,7 +119,7 @@ jobs: "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} else printf "\n## Trigger new build\n\n" >> $GITHUB_STEP_SUMMARY - echo "New version \`${EXT_RELEASE}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY + echo "New sanitized version \`${EXT_RELEASE_SANITIZED}\` found; old version was \`${IMAGE_VERSION}\`. Triggering new build" >> $GITHUB_STEP_SUMMARY if [[ "${artifacts_found}" == "true" ]]; then echo "All artifacts seem to be uploaded." >> $GITHUB_STEP_SUMMARY fi @@ -136,7 +139,7 @@ jobs: --data-urlencode "description=GHA external trigger https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}" \ --data-urlencode "Submit=Submit" echo "**** Notifying Discord ****" - TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE}" + TRIGGER_REASON="A version change was detected for lidarr tag nightly. Old version:${IMAGE_VERSION} New version:${EXT_RELEASE_SANITIZED}" curl -X POST -H "Content-Type: application/json" --data '{"avatar_url": "https://cdn.discordapp.com/avatars/354986384542662657/df91181b3f1cf0ef1592fbe18e0962d7.png","embeds": [{"color": 9802903, "description": "**Build Triggered** \n**Reason:** '"${TRIGGER_REASON}"' \n**Build URL:** '"${buildurl}display/redirect"' \n"}], "username": "Github Actions"}' ${{ secrets.DISCORD_WEBHOOK }} diff --git a/.github/workflows/external_trigger_scheduler.yml b/.github/workflows/external_trigger_scheduler.yml index 2a813d9b..5980d552 100644 --- a/.github/workflows/external_trigger_scheduler.yml +++ b/.github/workflows/external_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '30 * * * *' workflow_dispatch: +permissions: + contents: read + jobs: external-trigger-scheduler: runs-on: ubuntu-latest diff --git a/.github/workflows/greetings.yml b/.github/workflows/greetings.yml old mode 100755 new mode 100644 index 72a89b15..9526c04d --- a/.github/workflows/greetings.yml +++ b/.github/workflows/greetings.yml @@ -2,8 +2,14 @@ name: Greetings on: [pull_request_target, issues] +permissions: + contents: read + jobs: greeting: + permissions: + issues: write + pull-requests: write runs-on: ubuntu-latest steps: - uses: actions/first-interaction@v1 diff --git a/.github/workflows/package_trigger_scheduler.yml b/.github/workflows/package_trigger_scheduler.yml index 0e05a7df..9fc77766 100644 --- a/.github/workflows/package_trigger_scheduler.yml +++ b/.github/workflows/package_trigger_scheduler.yml @@ -5,6 +5,9 @@ on: - cron: '12 1 * * 3' workflow_dispatch: +permissions: + contents: read + jobs: package-trigger-scheduler: runs-on: ubuntu-latest diff --git a/.github/workflows/permissions.yml b/.github/workflows/permissions.yml old mode 100755 new mode 100644 diff --git a/Dockerfile b/Dockerfile index 3cbbeb81..daa7fa8e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.21 +FROM ghcr.io/linuxserver/baseimage-alpine:3.22 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index dccf8b4e..2b4e5340 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.21 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.22 # set version label ARG BUILD_DATE diff --git a/Jenkinsfile b/Jenkinsfile index 5f69b5fb..d619078b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -94,7 +94,11 @@ pipeline { env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DOCKERHUB_IMAGE + '/tags/' env.PULL_REQUEST = env.CHANGE_ID env.TEMPLATED_FILES = 'Jenkinsfile README.md LICENSE .editorconfig ./.github/CONTRIBUTING.md ./.github/FUNDING.yml ./.github/ISSUE_TEMPLATE/config.yml ./.github/ISSUE_TEMPLATE/issue.bug.yml ./.github/ISSUE_TEMPLATE/issue.feature.yml ./.github/PULL_REQUEST_TEMPLATE.md ./.github/workflows/external_trigger_scheduler.yml ./.github/workflows/greetings.yml ./.github/workflows/package_trigger_scheduler.yml ./.github/workflows/call_issue_pr_tracker.yml ./.github/workflows/call_issues_cron.yml ./.github/workflows/permissions.yml ./.github/workflows/external_trigger.yml ./root/donate.txt' + if ( env.SYFT_IMAGE_TAG == null ) { + env.SYFT_IMAGE_TAG = 'latest' + } } + echo "Using syft image tag ${SYFT_IMAGE_TAG}" sh '''#! /bin/bash echo "The default github branch detected as ${GH_DEFAULT_BRANCH}" ''' script{ @@ -780,7 +784,7 @@ pipeline { docker run --rm \ -v /var/run/docker.sock:/var/run/docker.sock:ro \ -v ${TEMPDIR}:/tmp \ - ghcr.io/anchore/syft:v1.26.1 \ + ghcr.io/anchore/syft:${SYFT_IMAGE_TAG} \ ${LOCAL_CONTAINER} -o table=/tmp/package_versions.txt NEW_PACKAGE_TAG=$(md5sum ${TEMPDIR}/package_versions.txt | cut -c1-8 ) echo "Package tag sha from current packages in buit container is ${NEW_PACKAGE_TAG} comparing to old ${PACKAGE_TAG} from github" @@ -890,6 +894,7 @@ pipeline { -e WEB_AUTH=\"${CI_AUTH}\" \ -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ + -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ -t ghcr.io/linuxserver/ci:latest \ python3 test_build.py''' } diff --git a/LICENSE b/LICENSE old mode 100755 new mode 100644 diff --git a/README.md b/README.md index 52d76f87..2ba2d9d1 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,6 @@ [![Blog](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Blog)](https://blog.linuxserver.io "all the things you can do with our containers including How-To guides, opinions and much more!") [![Discord](https://img.shields.io/discord/354974912613449730.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Discord&logo=discord)](https://linuxserver.io/discord "realtime support / chat with the community and the team.") [![Discourse](https://img.shields.io/discourse/https/discourse.linuxserver.io/topics.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&logo=discourse)](https://discourse.linuxserver.io "post on our community forum.") -[![Fleet](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=Fleet)](https://fleet.linuxserver.io "an online web interface which displays all of our maintained images.") [![GitHub](https://img.shields.io/static/v1.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=linuxserver.io&message=GitHub&logo=github)](https://github.com/linuxserver "view the source for all of our repositories.") [![Open Collective](https://img.shields.io/opencollective/all/linuxserver.svg?color=94398d&labelColor=555555&logoColor=ffffff&style=for-the-badge&label=Supporters&logo=open%20collective)](https://opencollective.com/linuxserver "please consider helping us by either donating or contributing to our budget") @@ -22,7 +21,6 @@ Find us at: * [Blog](https://blog.linuxserver.io) - all the things you can do with our containers including How-To guides, opinions and much more! * [Discord](https://linuxserver.io/discord) - realtime support / chat with the community and the team. * [Discourse](https://discourse.linuxserver.io) - post on our community forum. -* [Fleet](https://fleet.linuxserver.io) - an online web interface which displays all of our maintained images. * [GitHub](https://github.com/linuxserver) - view the source for all of our repositories. * [Open Collective](https://opencollective.com/linuxserver) - please consider helping us by either donating or contributing to our budget @@ -55,7 +53,6 @@ The architectures supported by this image are: | :----: | :----: | ---- | | x86-64 | ✅ | amd64-\<version tag\> | | arm64 | ✅ | arm64v8-\<version tag\> | -| armhf | ❌ | | ## Version Tags @@ -77,11 +74,12 @@ Another item to keep in mind, is that within Lidarr itself, you should then map ### Media folders -We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. +We have set `/music` and `/downloads` as optional paths, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. -The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. +>[!TIP] +>The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. ## Read-Only Operation @@ -313,6 +311,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **05.07.25:** - Rebase to Alpine 3.22. * **12.12.24:** - Rebase to Alpine 3.21. * **25.05.24:** - Rebase to Alpine 3.20. * **20.03.24:** - Rebase to Alpine 3.19. diff --git a/readme-vars.yml b/readme-vars.yml index 2e7cab83..cca8c477 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -39,14 +39,7 @@ app_setup_block: | Special Note: Following our current folder structure will result in an inability to hardlink from your downloads to your Music folder because they are on separate volumes. To support hardlinking, simply ensure that the Music and downloads data are on a single volume. For example, if you have /mnt/storage/Music and /mnt/storage/downloads/completed/Music, you would want something like /mnt/storage:/media for your volume. Then you can hardlink from /media/downloads/completed to /media/Music. Another item to keep in mind, is that within Lidarr itself, you should then map your download client folder to your Lidarr folder: Settings -> Download Client -> advanced -> remote path mappings. I input the host of my download client (matches the download client defined) remote path is /downloads/Music (relative to the internal container path) and local path is /media/downloads/completed/Music, assuming you have folders to separate your downloaded data types. - - ### Media folders - - We have set `/music` and `/downloads` as ***optional paths***, this is because it is the easiest way to get started. While easy to use, it has some drawbacks. Mainly losing the ability to hardlink (TL;DR a way for a file to exist in multiple places on the same file system while only consuming one file worth of space), or atomic move (TL;DR instant file moves, rather than copy+delete) files while processing content. - - Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. - - The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. +readme_media: true # init diagram init_diagram: | "lidarr:nightly": { @@ -90,6 +83,7 @@ init_diagram: | "lidarr:nightly" <- Base Images # changelog changelogs: + - {date: "05.07.25:", desc: "Rebase to Alpine 3.22."} - {date: "12.12.24:", desc: "Rebase to Alpine 3.21."} - {date: "25.05.24:", desc: "Rebase to Alpine 3.20."} - {date: "20.03.24:", desc: "Rebase to Alpine 3.19."} diff --git a/root/donate.txt b/root/donate.txt old mode 100755 new mode 100644 From cbeaadbe727e3ff2c28b65d43e44bc89d12fe00a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Jul 2025 15:40:29 +0000 Subject: [PATCH 729/790] Bot Updating Templated Files --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index cca8c477..de812a4c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -78,7 +78,7 @@ init_diagram: | svc-lidarr -> legacy-services } Base Images: { - "baseimage-alpine:3.21" + "baseimage-alpine:3.22" } "lidarr:nightly" <- Base Images # changelog From c8d065a2e73da50d391fb13ebf34d0b50f15971c Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 5 Jul 2025 15:44:26 +0000 Subject: [PATCH 730/790] Bot Updating Package Versions --- package_versions.txt | 563 ++++++++++++++++++++++++------------------- 1 file changed, 320 insertions(+), 243 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d559aab9..b11f60f8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,243 +1,320 @@ -NAME VERSION TYPE -BouncyCastle.Cryptography 2.4.0 dotnet (+5 duplicates) -Dapper 2.0.151 dotnet (+5 duplicates) -Diacritical.Net 1.0.4 dotnet (+5 duplicates) -DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) -DryIoc.dll 5.4.3 dotnet (+7 duplicates) -Dynamitey 2.0.9.136 dotnet (+3 duplicates) -Equ 2.3.0 dotnet (+5 duplicates) -FluentValidation 9.5.4 dotnet (+5 duplicates) -IPAddressRange 6.2.0 dotnet (+7 duplicates) -Ical.Net 4.3.1 dotnet (+2 duplicates) -ImpromptuInterface 7.0.1 dotnet (+3 duplicates) -Lidarr 1.0.0 dotnet -Lidarr.Api.V1 1.0.0 dotnet (+2 duplicates) -Lidarr.Common 1.0.0 dotnet (+7 duplicates) -Lidarr.Core 1.0.0 dotnet (+5 duplicates) -Lidarr.Host 1.0.0 dotnet (+1 duplicate) -Lidarr.Http 1.0.0 dotnet (+3 duplicates) -Lidarr.Mono 1.0.0 dotnet -Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) -MailKit 4.8.0 dotnet (+5 duplicates) -Microsoft.AspNetCore.Cryptography.Internal 6.0.35 dotnet (+4 duplicates) -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.35 dotnet (+4 duplicates) -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet (+5 duplicates) -Microsoft.Bcl.TimeProvider 8.0.0 dotnet (+5 duplicates) -Microsoft.Data.SqlClient 2.1.7 dotnet (+5 duplicates) -Microsoft.Extensions.Configuration 6.0.0 dotnet (+1 duplicate) -Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) -Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet (+1 duplicate) -Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Hosting 6.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Hosting.WindowsServices 6.0.2 dotnet (+7 duplicates) -Microsoft.Extensions.Logging 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Options 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) -Microsoft.Identity.Client 4.21.1 dotnet (+5 duplicates) -Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Logging 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Tokens 6.8.0 dotnet (+5 duplicates) -Microsoft.OpenApi 1.6.14 dotnet (+2 duplicates) -Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) -MimeKit 4.8.0 dotnet (+5 duplicates) -Mono.Nat 3.0.1 dotnet (+5 duplicates) -Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet -MonoTorrent 2.0.7 dotnet (+5 duplicates) -NLog 5.4.0 dotnet (+7 duplicates) -NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) -NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) -NLog.Targets.Syslog 7.0.0 dotnet (+5 duplicates) -Newtonsoft.Json 13.0.3 dotnet (+7 duplicates) -NodaTime 3.2.0 dotnet (+2 duplicates) -Npgsql 7.0.10 dotnet (+5 duplicates) -Polly 8.5.2 dotnet (+5 duplicates) -Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) -Polly.Core 8.5.2 dotnet (+5 duplicates) -ReusableTasks 2.0.0 dotnet (+5 duplicates) -Sentry 4.0.2 dotnet (+7 duplicates) -Servarr.FluentMigrator 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) -SharpZipLib 1.4.2 dotnet (+7 duplicates) -SixLabors.ImageSharp 3.1.9 dotnet (+5 duplicates) -SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) -Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) -Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) -Swashbuckle.AspNetCore.SwaggerGen 6.6.2 dotnet (+2 duplicates) -System.Configuration.ConfigurationManager 6.0.1 dotnet (+7 duplicates) -System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet (+7 duplicates) -System.Diagnostics.EventLog 6.0.0 dotnet (+2 duplicates) -System.Drawing.Common 6.0.0 dotnet (+7 duplicates) -System.Formats.Asn1 8.0.1 dotnet (+5 duplicates) -System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) -System.IdentityModel.Tokens.Jwt 6.8.0 dotnet (+5 duplicates) -System.Runtime.Caching 4.7.0 dotnet (+5 duplicates) -System.Security.Cryptography.Pkcs 8.0.0 dotnet (+5 duplicates) -System.Security.Cryptography.ProtectedData 6.0.0 dotnet (+7 duplicates) -System.Security.Permissions 6.0.0 dotnet (+7 duplicates) -System.ServiceProcess.ServiceController 6.0.1 dotnet (+7 duplicates) -System.Text.Json 6.0.10 dotnet (+6 duplicates) -System.Windows.Extensions 6.0.0 dotnet (+7 duplicates) -TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) -acl-libs 2.3.2-r1 apk -alpine-baselayout 3.6.8-r1 apk -alpine-baselayout-data 3.6.8-r1 apk -alpine-keys 2.5-r0 apk -alpine-release 3.21.3-r0 apk -aom-libs 3.11.0-r0 apk -apk-tools 2.14.6-r3 apk -bash 5.2.37-r0 apk -brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r12 apk -busybox-binsh 1.37.0-r12 apk -c-ares 1.34.5-r0 apk -ca-certificates 20241121-r1 apk -ca-certificates-bundle 20241121-r1 apk -catatonit 0.2.0-r0 apk -chromaprint 1.5.1-r7 apk -chromaprint-libs 1.5.1-r7 apk -cjson 1.7.18-r0 apk -coreutils 9.5-r2 apk -coreutils-env 9.5-r2 apk -coreutils-fmt 9.5-r2 apk -coreutils-sha512sum 9.5-r2 apk -curl 8.12.1-r1 apk -ffmpeg-libavcodec 6.1.2-r1 apk -ffmpeg-libavformat 6.1.2-r1 apk -ffmpeg-libavutil 6.1.2-r1 apk -ffmpeg-libswresample 6.1.2-r1 apk -findutils 4.10.0-r0 apk -giflib 5.2.2-r1 apk -hwdata-pci 0.393-r0 apk -icu-data-en 74.2-r0 apk -icu-libs 74.2-r0 apk -imath 3.1.12-r0 apk -jq 1.7.1-r0 apk -lame-libs 3.100-r5 apk -lcms2 2.16-r0 apk -libSvtAv1Enc 2.2.1-r0 apk -libattr 2.5.2-r2 apk -libbluray 1.3.4-r1 apk -libbsd 0.12.2-r0 apk -libbz2 1.0.8-r6 apk -libcrypto3 3.3.3-r0 apk -libcurl 8.12.1-r1 apk -libdav1d 1.5.0-r0 apk -libdeflate 1.22-r0 apk -libdrm 2.4.123-r1 apk -libffi 3.4.7-r0 apk -libgcc 14.2.0-r4 apk -libgcrypt 1.10.3-r1 apk -libgomp 14.2.0-r4 apk -libgpg-error 1.51-r0 apk -libhwy 1.0.7-r0 apk -libidn2 2.3.7-r0 apk -libintl 0.22.5-r0 apk -libjpeg-turbo 3.0.4-r0 apk -libjxl 0.10.4-r0 apk -libmd 1.1.0-r0 apk -libncursesw 6.5_p20241006-r3 apk -libogg 1.3.5-r5 apk -libopenmpt 0.7.12-r0 apk -libpciaccess 0.18.1-r0 apk -libpng 1.6.47-r0 apk -libproc2 4.0.4-r2 apk -libpsl 0.21.5-r3 apk -librist 0.2.10-r1 apk -libsharpyuv 1.4.0-r0 apk -libsodium 1.0.20-r0 apk -libsrt 1.5.3-r0 apk -libssh 0.11.1-r0 apk -libssl3 3.3.3-r0 apk -libstdc++ 14.2.0-r4 apk -libtheora 1.1.1-r18 apk -libunistring 1.2-r0 apk -libva 2.22.0-r1 apk -libvdpau 1.5-r4 apk -libvorbis 1.3.7-r2 apk -libvpx 1.15.0-r0 apk -libwebp 1.4.0-r0 apk -libwebpmux 1.4.0-r0 apk -libx11 1.8.10-r0 apk -libxau 1.0.11-r4 apk -libxcb 1.16.1-r0 apk -libxdmcp 1.1.5-r1 apk -libxext 1.3.6-r2 apk -libxfixes 6.0.1-r4 apk -libxml2 2.13.4-r6 apk -libxslt 1.1.42-r2 apk -libzmq 4.3.5-r2 apk -linux-pam 1.6.1-r1 apk -mbedtls 3.6.3-r0 apk -mpg123-libs 1.32.9-r0 apk -musl 1.2.5-r9 apk -musl-utils 1.2.5-r9 apk -ncurses-terminfo-base 6.5_p20241006-r3 apk -netcat-openbsd 1.226.1.1-r0 apk -nghttp2-libs 1.64.0-r0 apk -numactl 2.0.18-r0 apk -onevpl-libs 2023.3.1-r2 apk -oniguruma 6.9.9-r0 apk -openexr-libiex 3.3.2-r0 apk -openexr-libilmthread 3.3.2-r0 apk -openexr-libopenexr 3.3.2-r0 apk -openexr-libopenexrcore 3.3.2-r0 apk -opus 1.5.2-r1 apk -procps-ng 4.0.4-r2 apk -rav1e-libs 0.7.1-r0 apk -readline 8.2.13-r0 apk -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 6.0.35 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 6.0.35 dotnet -scanelf 1.3.8-r1 apk -shadow 4.16.0-r1 apk -skalibs-libs 2.14.3.0-r0 apk -soxr 0.1.3-r7 apk -sqlite-libs 3.48.0-r2 apk -ssl_client 1.37.0-r12 apk -tzdata 2025b-r0 apk -utmps-libs 0.1.2.3-r2 apk -wayland-libs-client 1.23.1-r0 apk -x264-libs 0.164.3108-r0 apk -x265-libs 3.6-r0 apk -xmlstarlet 1.6.1-r2 apk -xvidcore 1.3.7-r2 apk -xz-libs 5.6.3-r1 apk -zlib 1.3.1-r2 apk -zstd-libs 1.5.6-r2 apk +NAME VERSION TYPE +BouncyCastle.Cryptography 2.4.0 dotnet (+5 duplicates) +Dapper 2.0.151 dotnet (+5 duplicates) +Diacritical.Net 1.0.4 dotnet (+5 duplicates) +DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) +DryIoc.dll 5.4.3 dotnet (+7 duplicates) +Dynamitey 2.0.9.136 dotnet (+3 duplicates) +Equ 2.3.0 dotnet (+5 duplicates) +FluentValidation 9.5.4 dotnet (+5 duplicates) +IPAddressRange 6.2.0 dotnet (+7 duplicates) +Ical.Net 4.3.1 dotnet (+2 duplicates) +ImpromptuInterface 7.0.1 dotnet (+3 duplicates) +Lidarr 1.0.0 dotnet +Lidarr.Api.V1 1.0.0 dotnet (+2 duplicates) +Lidarr.Common 1.0.0 dotnet (+7 duplicates) +Lidarr.Core 1.0.0 dotnet (+5 duplicates) +Lidarr.Host 1.0.0 dotnet (+1 duplicate) +Lidarr.Http 1.0.0 dotnet (+3 duplicates) +Lidarr.Mono 1.0.0 dotnet +Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) +MailKit 4.8.0 dotnet (+5 duplicates) +Microsoft.AspNetCore.Cryptography.Internal 6.0.35 dotnet (+4 duplicates) +Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.35 dotnet (+4 duplicates) +Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet (+5 duplicates) +Microsoft.Bcl.TimeProvider 8.0.0 dotnet (+5 duplicates) +Microsoft.Data.SqlClient 2.1.7 dotnet (+5 duplicates) +Microsoft.Extensions.Configuration 6.0.0 dotnet (+1 duplicate) +Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) +Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet (+1 duplicate) +Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Hosting 6.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+4 duplicates) +Microsoft.Extensions.Hosting.WindowsServices 6.0.2 dotnet (+7 duplicates) +Microsoft.Extensions.Logging 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet (+2 duplicates) +Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+7 duplicates) +Microsoft.Extensions.Options 6.0.0 dotnet (+4 duplicates) +Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+4 duplicates) +Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) +Microsoft.Identity.Client 4.21.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Logging 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Tokens 6.8.0 dotnet (+5 duplicates) +Microsoft.OpenApi 1.6.14 dotnet (+2 duplicates) +Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) +MimeKit 4.8.0 dotnet (+5 duplicates) +Mono.Nat 3.0.1 dotnet (+5 duplicates) +Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet +MonoTorrent 2.0.7 dotnet (+5 duplicates) +NLog 5.4.0 dotnet (+7 duplicates) +NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) +NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) +NLog.Targets.Syslog 7.0.0 dotnet (+5 duplicates) +Newtonsoft.Json 13.0.3 dotnet (+7 duplicates) +NodaTime 3.2.0 dotnet (+2 duplicates) +Npgsql 7.0.10 dotnet (+5 duplicates) +Polly 8.5.2 dotnet (+5 duplicates) +Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) +Polly.Core 8.5.2 dotnet (+5 duplicates) +ReusableTasks 2.0.0 dotnet (+5 duplicates) +Sentry 4.0.2 dotnet (+7 duplicates) +Servarr.FluentMigrator 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) +Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) +SharpZipLib 1.4.2 dotnet (+7 duplicates) +SixLabors.ImageSharp 3.1.9 dotnet (+5 duplicates) +SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) +Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.SwaggerGen 6.6.2 dotnet (+2 duplicates) +System.Configuration.ConfigurationManager 6.0.1 dotnet (+7 duplicates) +System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet (+7 duplicates) +System.Diagnostics.EventLog 6.0.0 dotnet (+2 duplicates) +System.Drawing.Common 6.0.0 dotnet (+7 duplicates) +System.Formats.Asn1 8.0.1 dotnet (+5 duplicates) +System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) +System.IdentityModel.Tokens.Jwt 6.8.0 dotnet (+5 duplicates) +System.Runtime.Caching 4.7.0 dotnet (+5 duplicates) +System.Security.Cryptography.Pkcs 8.0.0 dotnet (+5 duplicates) +System.Security.Cryptography.ProtectedData 6.0.0 dotnet (+7 duplicates) +System.Security.Permissions 6.0.0 dotnet (+7 duplicates) +System.ServiceProcess.ServiceController 6.0.1 dotnet (+7 duplicates) +System.Text.Json 6.0.10 dotnet (+6 duplicates) +System.Windows.Extensions 6.0.0 dotnet (+7 duplicates) +TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) +acl-libs 2.3.2-r1 apk +alpine-baselayout 3.7.0-r0 apk +alpine-baselayout-data 3.7.0-r0 apk +alpine-keys 2.5-r0 apk +alpine-release 3.22.0-r0 apk +anstream 0.6.5 rust-crate +anstyle 1.0.4 rust-crate +anstyle-parse 0.2.3 rust-crate +anstyle-query 1.0.2 rust-crate +anyhow 1.0.79 rust-crate +aom-libs 3.12.1-r0 apk +apk-tools 2.14.9-r2 apk +arg_enum_proc_macro 0.3.4 rust-crate +arrayvec 0.7.4 rust-crate +av-metrics 0.9.1 rust-crate +av1-grain 0.2.3 rust-crate +bash 5.2.37-r0 apk +bitflags 2.4.1 rust-crate +bitstream-io 2.2.0 rust-crate +brotli-libs 1.1.0-r2 apk +busybox 1.37.0-r18 apk +busybox-binsh 1.37.0-r18 apk +c-ares 1.34.5-r0 apk +ca-certificates 20241121-r2 apk +ca-certificates-bundle 20241121-r2 apk +catatonit 0.2.1-r0 apk +cfg-if 1.0.0 rust-crate +chromaprint 1.5.1-r8 apk +chromaprint-libs 1.5.1-r8 apk +cjson 1.7.18-r1 apk +clap 4.4.14 rust-crate +clap_builder 4.4.14 rust-crate +clap_complete 4.4.6 rust-crate +clap_derive 4.4.7 rust-crate +clap_lex 0.6.0 rust-crate +colorchoice 1.0.0 rust-crate +console 0.15.8 rust-crate +coreutils 9.7-r1 apk +coreutils-env 9.7-r1 apk +coreutils-fmt 9.7-r1 apk +coreutils-sha512sum 9.7-r1 apk +crossbeam 0.8.4 rust-crate +crossbeam-channel 0.5.11 rust-crate +crossbeam-deque 0.8.5 rust-crate +crossbeam-epoch 0.9.18 rust-crate +crossbeam-queue 0.3.11 rust-crate +crossbeam-utils 0.8.19 rust-crate +curl 8.14.1-r1 apk +either 1.9.0 rust-crate +errno 0.3.8 rust-crate +fern 0.6.2 rust-crate +ffmpeg-libavcodec 6.1.2-r2 apk +ffmpeg-libavformat 6.1.2-r2 apk +ffmpeg-libavutil 6.1.2-r2 apk +ffmpeg-libswresample 6.1.2-r2 apk +fftw-double-libs 3.3.10-r6 apk +findutils 4.10.0-r0 apk +getrandom 0.2.12 rust-crate +giflib 5.2.2-r1 apk +heck 0.4.1 rust-crate +hwdata-pci 0.395-r0 apk +icu-data-en 76.1-r0 apk +icu-libs 76.1-r0 apk +imath 3.1.12-r0 apk +interpolate_name 0.2.4 rust-crate +itertools 0.10.5 rust-crate +itertools 0.12.0 rust-crate +ivf 0.1.3 rust-crate +jq 1.8.0-r0 apk +lab 0.11.0 rust-crate +lame-libs 3.100-r5 apk +lazy_static 1.4.0 rust-crate +lcms2 2.16-r0 apk +libSvtAv1Enc 2.3.0-r0 apk +libapk2 2.14.9-r2 apk +libattr 2.5.2-r2 apk +libbluray 1.3.4-r1 apk +libbsd 0.12.2-r0 apk +libbz2 1.0.8-r6 apk +libc 0.2.155 rust-crate +libcrypto3 3.5.1-r0 apk +libcurl 8.14.1-r1 apk +libdav1d 1.5.1-r0 apk +libdeflate 1.23-r0 apk +libdrm 2.4.124-r0 apk +libffi 3.4.8-r0 apk +libgcc 14.2.0-r6 apk +libgomp 14.2.0-r6 apk +libhwy 1.0.7-r1 apk +libidn2 2.3.7-r0 apk +libintl 0.24.1-r0 apk +libjpeg-turbo 3.1.0-r0 apk +libjxl 0.10.3-r2 apk +libmd 1.1.0-r0 apk +libncursesw 6.5_p20250503-r0 apk +libogg 1.3.5-r5 apk +libopenmpt 0.7.13-r0 apk +libpciaccess 0.18.1-r0 apk +libpng 1.6.47-r0 apk +libproc2 4.0.4-r3 apk +libpsl 0.21.5-r3 apk +librist 0.2.10-r1 apk +libsharpyuv 1.5.0-r0 apk +libsodium 1.0.20-r0 apk +libsrt 1.5.3-r1 apk +libssh 0.11.2-r0 apk +libssl3 3.5.1-r0 apk +libstdc++ 14.2.0-r6 apk +libtheora 1.1.1-r18 apk +libunistring 1.3-r0 apk +libva 2.22.0-r1 apk +libvdpau 1.5-r4 apk +libvorbis 1.3.7-r2 apk +libvpx 1.15.0-r0 apk +libwebp 1.5.0-r0 apk +libwebpmux 1.5.0-r0 apk +libx11 1.8.11-r0 apk +libxau 1.0.12-r0 apk +libxcb 1.17.0-r0 apk +libxdmcp 1.1.5-r1 apk +libxext 1.3.6-r2 apk +libxfixes 6.0.1-r4 apk +libxml2 2.13.8-r0 apk +libxslt 1.1.43-r3 apk +libzmq 4.3.5-r2 apk +linux-pam 1.7.0-r4 apk +linux-raw-sys 0.4.12 rust-crate +log 0.4.20 rust-crate +maybe-rayon 0.1.1 rust-crate +mbedtls 3.6.3.1-r0 apk +memchr 2.7.1 rust-crate +minimal-lexical 0.2.1 rust-crate +mpg123-libs 1.32.10-r0 apk +musl 1.2.5-r10 apk +musl-utils 1.2.5-r10 apk +ncurses-terminfo-base 6.5_p20250503-r0 apk +netcat-openbsd 1.229.1-r0 apk +new_debug_unreachable 1.0.4 rust-crate +nghttp2-libs 1.65.0-r0 apk +nom 7.1.3 rust-crate +noop_proc_macro 0.3.0 rust-crate +num-bigint 0.4.4 rust-crate +num-derive 0.4.1 rust-crate +num-integer 0.1.45 rust-crate +num-rational 0.4.1 rust-crate +num-traits 0.2.17 rust-crate +numactl 2.0.18-r0 apk +once_cell 1.19.0 rust-crate +onevpl-libs 2023.3.1-r2 apk +oniguruma 6.9.10-r0 apk +openexr-libiex 3.3.2-r0 apk +openexr-libilmthread 3.3.2-r0 apk +openexr-libopenexr 3.3.2-r0 apk +openexr-libopenexrcore 3.3.2-r0 apk +opus 1.5.2-r1 apk +paste 1.0.14 rust-crate +ppv-lite86 0.2.17 rust-crate +proc-macro2 1.0.76 rust-crate +procps-ng 4.0.4-r3 apk +profiling 1.0.13 rust-crate +profiling-procmacros 1.0.13 rust-crate +quote 1.0.35 rust-crate +rand 0.8.5 rust-crate +rand_chacha 0.3.1 rust-crate +rand_core 0.6.4 rust-crate +rav1e 0.7.1 rust-crate +rav1e-libs 0.7.1-r0 apk +rayon 1.8.0 rust-crate +rayon-core 1.12.0 rust-crate +readline 8.2.13-r1 apk +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 6.0.35 dotnet +runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 6.0.35 dotnet +rustix 0.38.28 rust-crate +scan_fmt 0.2.6 rust-crate +scanelf 1.3.8-r1 apk +shadow 4.17.3-r0 apk +signal-hook 0.3.17 rust-crate +signal-hook-registry 1.4.1 rust-crate +simd_helpers 0.1.0 rust-crate +skalibs-libs 2.14.4.0-r0 apk +soxr 0.1.3-r7 apk +sqlite-libs 3.49.2-r0 apk +ssl_client 1.37.0-r18 apk +syn 2.0.48 rust-crate +terminal_size 0.3.0 rust-crate +thiserror 1.0.56 rust-crate +thiserror-impl 1.0.56 rust-crate +tzdata 2025b-r0 apk +unicode-ident 1.0.12 rust-crate +unicode-width 0.1.11 rust-crate +utf8parse 0.2.1 rust-crate +utmps-libs 0.1.3.1-r0 apk +v_frame 0.3.7 rust-crate +wayland-libs-client 1.23.1-r3 apk +x264-libs 0.164.3108-r0 apk +x265-libs 3.6-r0 apk +xmlstarlet 1.6.1-r2 apk +xvidcore 1.3.7-r2 apk +xz-libs 5.8.1-r0 apk +y4m 0.8.0 rust-crate +zlib 1.3.1-r2 apk +zstd-libs 1.5.7-r0 apk From aec19b3098debeff4922c7b310667ff488b1c87a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 14 Jul 2025 01:40:19 +0000 Subject: [PATCH 731/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b11f60f8..e24ca111 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -177,8 +177,8 @@ getrandom 0.2.12 giflib 5.2.2-r1 apk heck 0.4.1 rust-crate hwdata-pci 0.395-r0 apk -icu-data-en 76.1-r0 apk -icu-libs 76.1-r0 apk +icu-data-en 76.1-r1 apk +icu-libs 76.1-r1 apk imath 3.1.12-r0 apk interpolate_name 0.2.4 rust-crate itertools 0.10.5 rust-crate From 546b037d2c3168c5f1b5eae91700fb4b8244e840 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 23 Jul 2025 03:11:05 +0000 Subject: [PATCH 732/790] Bot Updating Package Versions --- package_versions.txt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e24ca111..8206a198 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -120,7 +120,7 @@ acl-libs 2.3.2-r1 alpine-baselayout 3.7.0-r0 apk alpine-baselayout-data 3.7.0-r0 apk alpine-keys 2.5-r0 apk -alpine-release 3.22.0-r0 apk +alpine-release 3.22.1-r0 apk anstream 0.6.5 rust-crate anstyle 1.0.4 rust-crate anstyle-parse 0.2.3 rust-crate @@ -139,8 +139,8 @@ brotli-libs 1.1.0-r2 busybox 1.37.0-r18 apk busybox-binsh 1.37.0-r18 apk c-ares 1.34.5-r0 apk -ca-certificates 20241121-r2 apk -ca-certificates-bundle 20241121-r2 apk +ca-certificates 20250619-r0 apk +ca-certificates-bundle 20250619-r0 apk catatonit 0.2.1-r0 apk cfg-if 1.0.0 rust-crate chromaprint 1.5.1-r8 apk @@ -212,7 +212,7 @@ libjxl 0.10.3-r2 libmd 1.1.0-r0 apk libncursesw 6.5_p20250503-r0 apk libogg 1.3.5-r5 apk -libopenmpt 0.7.13-r0 apk +libopenmpt 0.7.15-r0 apk libpciaccess 0.18.1-r0 apk libpng 1.6.47-r0 apk libproc2 4.0.4-r3 apk @@ -245,7 +245,7 @@ linux-pam 1.7.0-r4 linux-raw-sys 0.4.12 rust-crate log 0.4.20 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls 3.6.3.1-r0 apk +mbedtls 3.6.4-r0 apk memchr 2.7.1 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.32.10-r0 apk @@ -297,7 +297,7 @@ signal-hook-registry 1.4.1 simd_helpers 0.1.0 rust-crate skalibs-libs 2.14.4.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.49.2-r0 apk +sqlite-libs 3.49.2-r1 apk ssl_client 1.37.0-r18 apk syn 2.0.48 rust-crate terminal_size 0.3.0 rust-crate From 5d8da5892147be21eaa4122b14240fa8f203e028 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 31 Jul 2025 22:51:02 +0000 Subject: [PATCH 733/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 8206a198..07e936b4 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -96,7 +96,7 @@ Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) SharpZipLib 1.4.2 dotnet (+7 duplicates) -SixLabors.ImageSharp 3.1.9 dotnet (+5 duplicates) +SixLabors.ImageSharp 3.1.11 dotnet (+5 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) From 0a3acd9b2f823b2ec2a0a94c54bbf60807e0f531 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 Aug 2025 03:18:03 +0000 Subject: [PATCH 734/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 07e936b4..0a9760df 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -136,8 +136,8 @@ bash 5.2.37-r0 bitflags 2.4.1 rust-crate bitstream-io 2.2.0 rust-crate brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r18 apk -busybox-binsh 1.37.0-r18 apk +busybox 1.37.0-r19 apk +busybox-binsh 1.37.0-r19 apk c-ares 1.34.5-r0 apk ca-certificates 20250619-r0 apk ca-certificates-bundle 20250619-r0 apk @@ -298,7 +298,7 @@ simd_helpers 0.1.0 skalibs-libs 2.14.4.0-r0 apk soxr 0.1.3-r7 apk sqlite-libs 3.49.2-r1 apk -ssl_client 1.37.0-r18 apk +ssl_client 1.37.0-r19 apk syn 2.0.48 rust-crate terminal_size 0.3.0 rust-crate thiserror 1.0.56 rust-crate From b517ad3eb23f4b4cf38d450cb75ecd22ac71d1e4 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 Aug 2025 02:50:12 +0000 Subject: [PATCH 735/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 0a9760df..1146a9e6 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -196,7 +196,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.155 rust-crate -libcrypto3 3.5.1-r0 apk +libcrypto3 3.5.2-r0 apk libcurl 8.14.1-r1 apk libdav1d 1.5.1-r0 apk libdeflate 1.23-r0 apk @@ -222,7 +222,7 @@ libsharpyuv 1.5.0-r0 libsodium 1.0.20-r0 apk libsrt 1.5.3-r1 apk libssh 0.11.2-r0 apk -libssl3 3.5.1-r0 apk +libssl3 3.5.2-r0 apk libstdc++ 14.2.0-r6 apk libtheora 1.1.1-r18 apk libunistring 1.3-r0 apk From 512208852f2255afd77bacbb9db7ae2527c77b33 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 7 Sep 2025 13:52:23 +0000 Subject: [PATCH 736/790] Bot Updating Package Versions --- package_versions.txt | 28 +++++++++++++++++++--------- 1 file changed, 19 insertions(+), 9 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1146a9e6..fcddf1f1 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,4 +1,6 @@ NAME VERSION TYPE +Azure.Core 1.38.0 dotnet (+5 duplicates) +Azure.Identity 1.11.4 dotnet (+5 duplicates) BouncyCastle.Cryptography 2.4.0 dotnet (+5 duplicates) Dapper 2.0.151 dotnet (+5 duplicates) Diacritical.Net 1.0.4 dotnet (+5 duplicates) @@ -23,7 +25,7 @@ Microsoft.AspNetCore.Cryptography.Internal 6.0.35 Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.35 dotnet (+4 duplicates) Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet (+5 duplicates) Microsoft.Bcl.TimeProvider 8.0.0 dotnet (+5 duplicates) -Microsoft.Data.SqlClient 2.1.7 dotnet (+5 duplicates) +Microsoft.Data.SqlClient 5.2.3 dotnet (+5 duplicates) Microsoft.Extensions.Configuration 6.0.0 dotnet (+1 duplicate) Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) @@ -52,18 +54,22 @@ Microsoft.Extensions.Logging.EventSource 6.0.0 Microsoft.Extensions.Options 6.0.0 dotnet (+4 duplicates) Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+4 duplicates) Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) -Microsoft.Identity.Client 4.21.1 dotnet (+5 duplicates) -Microsoft.IdentityModel.JsonWebTokens 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Logging 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.8.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Tokens 6.8.0 dotnet (+5 duplicates) +Microsoft.Identity.Client 4.61.3 dotnet (+5 duplicates) +Microsoft.Identity.Client.Extensions.Msal 4.61.3 dotnet (+5 duplicates) +Microsoft.IdentityModel.Abstractions 6.35.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.JsonWebTokens 6.35.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Logging 6.35.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols 6.35.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Tokens 6.35.0 dotnet (+5 duplicates) Microsoft.OpenApi 1.6.14 dotnet (+2 duplicates) +Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) MimeKit 4.8.0 dotnet (+5 duplicates) Mono.Nat 3.0.1 dotnet (+5 duplicates) Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 2.0.7 dotnet (+5 duplicates) +NETStandard.Library 1.6.1 dotnet (+2 duplicates) NLog 5.4.0 dotnet (+7 duplicates) NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) @@ -101,14 +107,18 @@ SpotifyAPI.Web 5.1.1 Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) Swashbuckle.AspNetCore.SwaggerGen 6.6.2 dotnet (+2 duplicates) +System.ClientModel 1.0.0 dotnet (+5 duplicates) System.Configuration.ConfigurationManager 6.0.1 dotnet (+7 duplicates) System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet (+7 duplicates) +System.Diagnostics.DiagnosticSource 6.0.1 dotnet (+4 duplicates) System.Diagnostics.EventLog 6.0.0 dotnet (+2 duplicates) System.Drawing.Common 6.0.0 dotnet (+7 duplicates) System.Formats.Asn1 8.0.1 dotnet (+5 duplicates) System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) -System.IdentityModel.Tokens.Jwt 6.8.0 dotnet (+5 duplicates) -System.Runtime.Caching 4.7.0 dotnet (+5 duplicates) +System.IdentityModel.Tokens.Jwt 6.35.0 dotnet (+5 duplicates) +System.Memory.Data 1.0.2 dotnet (+5 duplicates) +System.Net.Http 4.3.0 dotnet (+2 duplicates) +System.Runtime.Caching 6.0.0 dotnet (+5 duplicates) System.Security.Cryptography.Pkcs 8.0.0 dotnet (+5 duplicates) System.Security.Cryptography.ProtectedData 6.0.0 dotnet (+7 duplicates) System.Security.Permissions 6.0.0 dotnet (+7 duplicates) From ff44a537b414c3db260335a98e95c07fe6cae146 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 13 Sep 2025 21:08:47 +0000 Subject: [PATCH 737/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index fcddf1f1..b1d3cacc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,7 @@ anstyle-parse 0.2.3 anstyle-query 1.0.2 rust-crate anyhow 1.0.79 rust-crate aom-libs 3.12.1-r0 apk -apk-tools 2.14.9-r2 apk +apk-tools 2.14.9-r3 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.4 rust-crate av-metrics 0.9.1 rust-crate @@ -200,7 +200,7 @@ lame-libs 3.100-r5 lazy_static 1.4.0 rust-crate lcms2 2.16-r0 apk libSvtAv1Enc 2.3.0-r0 apk -libapk2 2.14.9-r2 apk +libapk2 2.14.9-r3 apk libattr 2.5.2-r2 apk libbluray 1.3.4-r1 apk libbsd 0.12.2-r0 apk From 26584e8e63ab32a3553e236397ac726744266eb6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Sep 2025 02:42:51 +0000 Subject: [PATCH 738/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b1d3cacc..2cbde459 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -131,7 +131,7 @@ alpine-baselayout 3.7.0-r0 alpine-baselayout-data 3.7.0-r0 apk alpine-keys 2.5-r0 apk alpine-release 3.22.1-r0 apk -anstream 0.6.5 rust-crate +anstream 0.6.8 rust-crate anstyle 1.0.4 rust-crate anstyle-parse 0.2.3 rust-crate anstyle-query 1.0.2 rust-crate @@ -292,7 +292,7 @@ rand 0.8.5 rand_chacha 0.3.1 rust-crate rand_core 0.6.4 rust-crate rav1e 0.7.1 rust-crate -rav1e-libs 0.7.1-r0 apk +rav1e-libs 0.7.1-r1 apk rayon 1.8.0 rust-crate rayon-core 1.12.0 rust-crate readline 8.2.13-r1 apk From 047cd9e5f30adbfb64e419927026d6d5d700f837 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 26 Sep 2025 15:23:32 +0000 Subject: [PATCH 739/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2cbde459..692335b8 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -206,7 +206,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.155 rust-crate -libcrypto3 3.5.2-r0 apk +libcrypto3 3.5.3-r1 apk libcurl 8.14.1-r1 apk libdav1d 1.5.1-r0 apk libdeflate 1.23-r0 apk @@ -232,7 +232,7 @@ libsharpyuv 1.5.0-r0 libsodium 1.0.20-r0 apk libsrt 1.5.3-r1 apk libssh 0.11.2-r0 apk -libssl3 3.5.2-r0 apk +libssl3 3.5.3-r1 apk libstdc++ 14.2.0-r6 apk libtheora 1.1.1-r18 apk libunistring 1.3-r0 apk From 3c6ba713c9b426569b96ee43573facec3b80c8f3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Oct 2025 02:52:41 +0000 Subject: [PATCH 740/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 692335b8..bfd0cb50 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -168,7 +168,7 @@ coreutils-env 9.7-r1 coreutils-fmt 9.7-r1 apk coreutils-sha512sum 9.7-r1 apk crossbeam 0.8.4 rust-crate -crossbeam-channel 0.5.11 rust-crate +crossbeam-channel 0.5.14 rust-crate crossbeam-deque 0.8.5 rust-crate crossbeam-epoch 0.9.18 rust-crate crossbeam-queue 0.3.11 rust-crate @@ -206,7 +206,7 @@ libbluray 1.3.4-r1 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.155 rust-crate -libcrypto3 3.5.3-r1 apk +libcrypto3 3.5.4-r0 apk libcurl 8.14.1-r1 apk libdav1d 1.5.1-r0 apk libdeflate 1.23-r0 apk @@ -232,7 +232,7 @@ libsharpyuv 1.5.0-r0 libsodium 1.0.20-r0 apk libsrt 1.5.3-r1 apk libssh 0.11.2-r0 apk -libssl3 3.5.3-r1 apk +libssl3 3.5.4-r0 apk libstdc++ 14.2.0-r6 apk libtheora 1.1.1-r18 apk libunistring 1.3-r0 apk @@ -292,7 +292,7 @@ rand 0.8.5 rand_chacha 0.3.1 rust-crate rand_core 0.6.4 rust-crate rav1e 0.7.1 rust-crate -rav1e-libs 0.7.1-r1 apk +rav1e-libs 0.7.1-r2 apk rayon 1.8.0 rust-crate rayon-core 1.12.0 rust-crate readline 8.2.13-r1 apk From 9c993088cea346a2099f389bc157f0703815d31e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 3 Oct 2025 02:04:40 +0000 Subject: [PATCH 741/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index bfd0cb50..51e7536d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -66,9 +66,9 @@ Microsoft.OpenApi 1.6.14 Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) MimeKit 4.8.0 dotnet (+5 duplicates) -Mono.Nat 3.0.1 dotnet (+5 duplicates) +Mono.Nat 3.0.0 dotnet (+5 duplicates) Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet -MonoTorrent 2.0.7 dotnet (+5 duplicates) +MonoTorrent 3.0.2 dotnet (+5 duplicates) NETStandard.Library 1.6.1 dotnet (+2 duplicates) NLog 5.4.0 dotnet (+7 duplicates) NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) @@ -80,7 +80,7 @@ Npgsql 7.0.10 Polly 8.5.2 dotnet (+5 duplicates) Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) Polly.Core 8.5.2 dotnet (+5 duplicates) -ReusableTasks 2.0.0 dotnet (+5 duplicates) +ReusableTasks 4.0.0 dotnet (+5 duplicates) Sentry 4.0.2 dotnet (+7 duplicates) Servarr.FluentMigrator 3.3.2.9 dotnet (+5 duplicates) Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet (+5 duplicates) From 59dac73f1eff0187c88dea9a5f8648dca320251f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 4 Oct 2025 20:24:32 +0000 Subject: [PATCH 742/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 51e7536d..3b598875 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -149,8 +149,8 @@ brotli-libs 1.1.0-r2 busybox 1.37.0-r19 apk busybox-binsh 1.37.0-r19 apk c-ares 1.34.5-r0 apk -ca-certificates 20250619-r0 apk -ca-certificates-bundle 20250619-r0 apk +ca-certificates 20250911-r0 apk +ca-certificates-bundle 20250911-r0 apk catatonit 0.2.1-r0 apk cfg-if 1.0.0 rust-crate chromaprint 1.5.1-r8 apk @@ -173,7 +173,7 @@ crossbeam-deque 0.8.5 crossbeam-epoch 0.9.18 rust-crate crossbeam-queue 0.3.11 rust-crate crossbeam-utils 0.8.19 rust-crate -curl 8.14.1-r1 apk +curl 8.14.1-r2 apk either 1.9.0 rust-crate errno 0.3.8 rust-crate fern 0.6.2 rust-crate @@ -207,7 +207,7 @@ libbsd 0.12.2-r0 libbz2 1.0.8-r6 apk libc 0.2.155 rust-crate libcrypto3 3.5.4-r0 apk -libcurl 8.14.1-r1 apk +libcurl 8.14.1-r2 apk libdav1d 1.5.1-r0 apk libdeflate 1.23-r0 apk libdrm 2.4.124-r0 apk From 7d6a6f400228538a3baf5bbd06a73b42a4af38d8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Oct 2025 02:46:29 +0000 Subject: [PATCH 743/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 3b598875..beaa6202 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -130,7 +130,7 @@ acl-libs 2.3.2-r1 alpine-baselayout 3.7.0-r0 apk alpine-baselayout-data 3.7.0-r0 apk alpine-keys 2.5-r0 apk -alpine-release 3.22.1-r0 apk +alpine-release 3.22.2-r0 apk anstream 0.6.8 rust-crate anstyle 1.0.4 rust-crate anstyle-parse 0.2.3 rust-crate @@ -248,7 +248,7 @@ libxcb 1.17.0-r0 libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.1-r4 apk -libxml2 2.13.8-r0 apk +libxml2 2.13.9-r0 apk libxslt 1.1.43-r3 apk libzmq 4.3.5-r2 apk linux-pam 1.7.0-r4 apk From 66dcd816ffde1d7147ea0235a6a395713e24e754 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Oct 2025 03:23:33 +0000 Subject: [PATCH 744/790] Bot Updating Package Versions --- package_versions.txt | 202 ++++++++++++++++++++++--------------------- 1 file changed, 105 insertions(+), 97 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index beaa6202..cf479a27 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,17 +1,23 @@ NAME VERSION TYPE -Azure.Core 1.38.0 dotnet (+5 duplicates) -Azure.Identity 1.11.4 dotnet (+5 duplicates) -BouncyCastle.Cryptography 2.4.0 dotnet (+5 duplicates) -Dapper 2.0.151 dotnet (+5 duplicates) +Azure.Core 1.47.1 dotnet (+5 duplicates) +Azure.Identity 1.14.2 dotnet (+5 duplicates) +BouncyCastle.Cryptography 2.6.1 dotnet (+5 duplicates) +Dapper 2.1.66 dotnet (+5 duplicates) Diacritical.Net 1.0.4 dotnet (+5 duplicates) DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) DryIoc.dll 5.4.3 dotnet (+7 duplicates) -Dynamitey 2.0.9.136 dotnet (+3 duplicates) +Dynamitey 3.0.3 dotnet (+3 duplicates) Equ 2.3.0 dotnet (+5 duplicates) +FluentMigrator 6.2.0 dotnet (+5 duplicates) +FluentMigrator.Abstractions 6.2.0 dotnet (+5 duplicates) +FluentMigrator.Extensions.Postgres 6.2.0 dotnet (+5 duplicates) +FluentMigrator.Runner.Core 6.2.0 dotnet (+5 duplicates) +FluentMigrator.Runner.Postgres 6.2.0 dotnet (+5 duplicates) +FluentMigrator.Runner.SQLite 6.2.0 dotnet (+5 duplicates) FluentValidation 9.5.4 dotnet (+5 duplicates) IPAddressRange 6.2.0 dotnet (+7 duplicates) Ical.Net 4.3.1 dotnet (+2 duplicates) -ImpromptuInterface 7.0.1 dotnet (+3 duplicates) +ImpromptuInterface 8.0.6 dotnet (+3 duplicates) Lidarr 1.0.0 dotnet Lidarr.Api.V1 1.0.0 dotnet (+2 duplicates) Lidarr.Common 1.0.0 dotnet (+7 duplicates) @@ -20,111 +26,106 @@ Lidarr.Host 1.0.0 Lidarr.Http 1.0.0 dotnet (+3 duplicates) Lidarr.Mono 1.0.0 dotnet Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) -MailKit 4.8.0 dotnet (+5 duplicates) -Microsoft.AspNetCore.Cryptography.Internal 6.0.35 dotnet (+4 duplicates) -Microsoft.AspNetCore.Cryptography.KeyDerivation 6.0.35 dotnet (+4 duplicates) -Microsoft.Bcl.AsyncInterfaces 6.0.0 dotnet (+5 duplicates) -Microsoft.Bcl.TimeProvider 8.0.0 dotnet (+5 duplicates) -Microsoft.Data.SqlClient 5.2.3 dotnet (+5 duplicates) -Microsoft.Extensions.Configuration 6.0.0 dotnet (+1 duplicate) -Microsoft.Extensions.Configuration 6.0.1 dotnet (+4 duplicates) -Microsoft.Extensions.Configuration.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.Binder 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Configuration.CommandLine 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.EnvironmentVariables 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.FileExtensions 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.Json 6.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.Configuration.UserSecrets 6.0.1 dotnet (+6 duplicates) -Microsoft.Extensions.DependencyInjection 6.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.DependencyInjection.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.DependencyInjection.Abstractions 7.0.0 dotnet (+1 duplicate) -Microsoft.Extensions.FileProviders.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.FileProviders.Physical 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.FileSystemGlobbing 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Hosting 6.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Hosting.Abstractions 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Hosting.WindowsServices 6.0.2 dotnet (+7 duplicates) -Microsoft.Extensions.Logging 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Abstractions 6.0.0 dotnet (+2 duplicates) -Microsoft.Extensions.Logging.Configuration 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Console 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Debug 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventLog 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventSource 6.0.0 dotnet (+7 duplicates) -Microsoft.Extensions.Options 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Options.ConfigurationExtensions 6.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Primitives 6.0.0 dotnet (+2 duplicates) -Microsoft.Identity.Client 4.61.3 dotnet (+5 duplicates) -Microsoft.Identity.Client.Extensions.Msal 4.61.3 dotnet (+5 duplicates) -Microsoft.IdentityModel.Abstractions 6.35.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.JsonWebTokens 6.35.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Logging 6.35.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols 6.35.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Protocols.OpenIdConnect 6.35.0 dotnet (+5 duplicates) -Microsoft.IdentityModel.Tokens 6.35.0 dotnet (+5 duplicates) -Microsoft.OpenApi 1.6.14 dotnet (+2 duplicates) +MailKit 4.14.0 dotnet (+5 duplicates) +Microsoft.AspNetCore.Cryptography.Internal 8.0.20 dotnet (+5 duplicates) +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.20 dotnet (+5 duplicates) +Microsoft.Bcl.AsyncInterfaces 8.0.0 dotnet (+5 duplicates) +Microsoft.Bcl.Cryptography 8.0.0 dotnet (+5 duplicates) +Microsoft.Data.SqlClient 6.1.1 dotnet (+5 duplicates) +Microsoft.Extensions.Caching.Abstractions 8.0.0 dotnet (+4 duplicates) +Microsoft.Extensions.Caching.Memory 8.0.1 dotnet (+5 duplicates) +Microsoft.Extensions.Configuration 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.Abstractions 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.Binder 8.0.2 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.CommandLine 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.EnvironmentVariables 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.FileExtensions 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.Json 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Configuration.UserSecrets 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.DependencyInjection.Abstractions 8.0.2 dotnet (+6 duplicates) +Microsoft.Extensions.Diagnostics 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.FileProviders.Abstractions 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.FileProviders.Physical 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.FileSystemGlobbing 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Hosting 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Hosting.Abstractions 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Hosting.WindowsServices 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Abstractions 8.0.2 dotnet (+1 duplicate) +Microsoft.Extensions.Logging.Abstractions 8.0.3 dotnet (+5 duplicates) +Microsoft.Extensions.Logging.Configuration 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Console 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Debug 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventLog 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.EventSource 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Options 8.0.2 dotnet (+6 duplicates) +Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.Primitives 8.0.0 dotnet (+6 duplicates) +Microsoft.Identity.Client 4.73.1 dotnet (+5 duplicates) +Microsoft.Identity.Client.Extensions.Msal 4.73.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.Abstractions 7.7.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.JsonWebTokens 7.7.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.Logging 7.7.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols 7.7.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1 dotnet (+5 duplicates) +Microsoft.IdentityModel.Tokens 7.7.1 dotnet (+5 duplicates) +Microsoft.OpenApi 1.6.25 dotnet (+2 duplicates) Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) -Microsoft.Win32.SystemEvents 6.0.0 dotnet (+7 duplicates) -MimeKit 4.8.0 dotnet (+5 duplicates) +Microsoft.Win32.Registry 5.0.0 dotnet (+5 duplicates) +Microsoft.Win32.SystemEvents 8.0.0 dotnet (+5 duplicates) +MimeKit 4.14.0 dotnet (+5 duplicates) Mono.Nat 3.0.0 dotnet (+5 duplicates) Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 3.0.2 dotnet (+5 duplicates) -NETStandard.Library 1.6.1 dotnet (+2 duplicates) NLog 5.4.0 dotnet (+7 duplicates) NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) -NLog.Layouts.ClefJsonLayout 1.0.3 dotnet (+7 duplicates) +NLog.Layouts.ClefJsonLayout 1.0.4 dotnet (+7 duplicates) NLog.Targets.Syslog 7.0.0 dotnet (+5 duplicates) -Newtonsoft.Json 13.0.3 dotnet (+7 duplicates) +Newtonsoft.Json 13.0.4 dotnet (+7 duplicates) NodaTime 3.2.0 dotnet (+2 duplicates) -Npgsql 7.0.10 dotnet (+5 duplicates) -Polly 8.5.2 dotnet (+5 duplicates) +Npgsql 9.0.3 dotnet (+5 duplicates) +Polly 8.6.4 dotnet (+5 duplicates) Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) -Polly.Core 8.5.2 dotnet (+5 duplicates) +Polly.Core 8.6.4 dotnet (+5 duplicates) ReusableTasks 4.0.0 dotnet (+5 duplicates) Sentry 4.0.2 dotnet (+7 duplicates) -Servarr.FluentMigrator 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Abstractions 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.Oracle 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.Postgres 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Extensions.SqlServer 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Core 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Db2 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Firebird 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Hana 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.MySql 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Oracle 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Postgres 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.Redshift 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SQLite 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlAnywhere 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlServer 3.3.2.9 dotnet (+5 duplicates) -Servarr.FluentMigrator.Runner.SqlServerCe 3.3.2.9 dotnet (+5 duplicates) SharpZipLib 1.4.2 dotnet (+7 duplicates) SixLabors.ImageSharp 3.1.11 dotnet (+5 duplicates) +SourceGear.sqlite3 3.50.4.2 dotnet (+7 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) -Swashbuckle.AspNetCore.Annotations 6.6.2 dotnet (+2 duplicates) -Swashbuckle.AspNetCore.Swagger 6.6.2 dotnet (+2 duplicates) -Swashbuckle.AspNetCore.SwaggerGen 6.6.2 dotnet (+2 duplicates) -System.ClientModel 1.0.0 dotnet (+5 duplicates) -System.Configuration.ConfigurationManager 6.0.1 dotnet (+7 duplicates) -System.Data.SQLite.Core.Servarr 1.0.115.5-18 dotnet (+7 duplicates) +Swashbuckle.AspNetCore.Annotations 9.0.6 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.Swagger 9.0.6 dotnet (+2 duplicates) +Swashbuckle.AspNetCore.SwaggerGen 9.0.6 dotnet (+2 duplicates) +System.ClientModel 1.5.1 dotnet (+5 duplicates) +System.ComponentModel 4.3.0 dotnet (+2 duplicates) +System.ComponentModel.Annotations 5.0.0 dotnet (+4 duplicates) +System.Configuration.ConfigurationManager 8.0.1 dotnet (+7 duplicates) +System.Data.SQLite 2.0.2 dotnet (+7 duplicates) System.Diagnostics.DiagnosticSource 6.0.1 dotnet (+4 duplicates) -System.Diagnostics.EventLog 6.0.0 dotnet (+2 duplicates) -System.Drawing.Common 6.0.0 dotnet (+7 duplicates) -System.Formats.Asn1 8.0.1 dotnet (+5 duplicates) +System.Diagnostics.EventLog 8.0.1 dotnet (+6 duplicates) +System.Drawing.Common 8.0.20 dotnet (+5 duplicates) +System.Formats.Asn1 8.0.1 dotnet (+4 duplicates) +System.IO 4.3.0 dotnet (+5 duplicates) System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) -System.IdentityModel.Tokens.Jwt 6.35.0 dotnet (+5 duplicates) -System.Memory.Data 1.0.2 dotnet (+5 duplicates) -System.Net.Http 4.3.0 dotnet (+2 duplicates) -System.Runtime.Caching 6.0.0 dotnet (+5 duplicates) -System.Security.Cryptography.Pkcs 8.0.0 dotnet (+5 duplicates) -System.Security.Cryptography.ProtectedData 6.0.0 dotnet (+7 duplicates) -System.Security.Permissions 6.0.0 dotnet (+7 duplicates) -System.ServiceProcess.ServiceController 6.0.1 dotnet (+7 duplicates) -System.Text.Json 6.0.10 dotnet (+6 duplicates) -System.Windows.Extensions 6.0.0 dotnet (+7 duplicates) +System.IdentityModel.Tokens.Jwt 7.7.1 dotnet (+5 duplicates) +System.Memory.Data 8.0.1 dotnet (+5 duplicates) +System.Private.Uri 4.3.0 dotnet (+5 duplicates) +System.Reflection 4.3.0 dotnet (+5 duplicates) +System.Reflection.Primitives 4.3.0 dotnet (+5 duplicates) +System.Runtime 4.3.0 dotnet (+5 duplicates) +System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet (+4 duplicates) +System.Runtime.Loader 4.3.0 dotnet (+5 duplicates) +System.Security.AccessControl 5.0.0 dotnet (+5 duplicates) +System.Security.Cryptography.Pkcs 8.0.1 dotnet (+4 duplicates) +System.Security.Cryptography.ProtectedData 8.0.0 dotnet (+7 duplicates) +System.Security.Principal.Windows 5.0.0 dotnet (+5 duplicates) +System.ServiceProcess.ServiceController 8.0.1 dotnet (+7 duplicates) +System.Text.Encoding 4.3.0 dotnet (+5 duplicates) +System.Text.Encoding.CodePages 8.0.0 dotnet +System.Text.Json 8.0.6 dotnet (+7 duplicates) +System.Threading.Tasks 4.3.0 dotnet (+5 duplicates) TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) acl-libs 2.3.2-r1 apk alpine-baselayout 3.7.0-r0 apk @@ -296,8 +297,15 @@ rav1e-libs 0.7.1-r2 rayon 1.8.0 rust-crate rayon-core 1.12.0 rust-crate readline 8.2.13-r1 apk -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 6.0.35 dotnet -runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 6.0.35 dotnet +runtime.any.System.IO 4.3.0 dotnet (+5 duplicates) +runtime.any.System.Reflection 4.3.0 dotnet (+5 duplicates) +runtime.any.System.Reflection.Primitives 4.3.0 dotnet (+5 duplicates) +runtime.any.System.Runtime 4.3.0 dotnet (+5 duplicates) +runtime.any.System.Text.Encoding 4.3.0 dotnet (+5 duplicates) +runtime.any.System.Threading.Tasks 4.3.0 dotnet (+5 duplicates) +runtime.unix.System.Private.Uri 4.3.0 dotnet (+5 duplicates) +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+4 duplicates) +runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+7 duplicates) rustix 0.38.28 rust-crate scan_fmt 0.2.6 rust-crate scanelf 1.3.8-r1 apk From 096675d2d433fd6e19afa81d14a358bbd5d15a24 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 19 Oct 2025 04:53:47 +0000 Subject: [PATCH 745/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cf479a27..5bacbfc5 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -256,7 +256,7 @@ linux-pam 1.7.0-r4 linux-raw-sys 0.4.12 rust-crate log 0.4.20 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls 3.6.4-r0 apk +mbedtls 3.6.5-r0 apk memchr 2.7.1 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.32.10-r0 apk From 5a28b47438528c106199e69d61279d6bbbf64df0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Oct 2025 02:49:55 +0000 Subject: [PATCH 746/790] Bot Updating Templated Files --- Jenkinsfile | 108 +++++++++++++++++++++++++++++++++++----------------- 1 file changed, 73 insertions(+), 35 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index d619078b..7a750282 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -208,6 +208,7 @@ pipeline { env.META_TAG = 'nightly-' + env.EXT_RELEASE_CLEAN + '-ls' + env.LS_TAG_NUMBER env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'latest' } } } @@ -233,6 +234,7 @@ pipeline { env.EXT_RELEASE_TAG = 'nightly-version-' + env.EXT_RELEASE_CLEAN env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.DEV_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -258,6 +260,7 @@ pipeline { env.CODE_URL = 'https://github.com/' + env.LS_USER + '/' + env.LS_REPO + '/pull/' + env.PULL_REQUEST env.DOCKERHUB_LINK = 'https://hub.docker.com/r/' + env.PR_DOCKERHUB_IMAGE + '/tags/' env.BUILDCACHE = 'docker.io/lsiodev/buildcache,registry.gitlab.com/linuxserver.io/docker-jenkins-builder/lsiodev-buildcache,ghcr.io/linuxserver/lsiodev-buildcache,quay.io/linuxserver.io/lsiodev-buildcache' + env.CITEST_IMAGETAG = 'develop' } } } @@ -280,7 +283,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3.20 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ @@ -615,13 +618,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -681,13 +687,16 @@ pipeline { echo $GITHUB_TOKEN | docker login ghcr.io -u LinuxServer-CI --password-stdin echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin + if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -741,12 +750,14 @@ pipeline { echo $GITLAB_TOKEN | docker login registry.gitlab.com -u LinuxServer.io --password-stdin echo $QUAYPASS | docker login quay.io -u $QUAYUSER --password-stdin if [[ "${PACKAGE_CHECK}" != "true" ]]; then + declare -A pids IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do docker push ${i}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} & + pids[$!]="$i" done - for p in $(jobs -p); do - wait "$p" || { echo "job $p failed" >&2; exit 1; } + for p in "${!pids[@]}"; do + wait "$p" || { [[ "${pids[$p]}" != *"quay.io"* ]] && exit 1; } done fi ''' @@ -871,7 +882,7 @@ pipeline { CI_DOCKERENV="LSIO_FIRST_PARTY=true" fi fi - docker pull ghcr.io/linuxserver/ci:latest + docker pull ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} if [ "${MULTIARCH}" == "true" ]; then docker pull ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} --platform=arm64 docker tag ghcr.io/linuxserver/lsiodev-buildcache:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} ${IMAGE}:arm64v8-${META_TAG} @@ -895,7 +906,7 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ - -t ghcr.io/linuxserver/ci:latest \ + -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } } @@ -921,9 +932,11 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${META_TAG} -t ${PUSHIMAGE}:nightly -t ${PUSHIMAGE}:${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${PUSHIMAGE}:${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${PUSHIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' @@ -948,20 +961,27 @@ pipeline { CACHEIMAGE=${i} fi done - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-nightly -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-nightly -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${META_TAG} -t ${MANIFESTIMAGE}:amd64-nightly -t ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${META_TAG} -t ${MANIFESTIMAGE}:arm64v8-nightly -t ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} - docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:amd64-${SEMVER} ${CACHEIMAGE}:amd64-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } + docker buildx imagetools create --prefer-index=false -t ${MANIFESTIMAGE}:arm64v8-${SEMVER} ${CACHEIMAGE}:arm64v8-${COMMIT_SHA}-${BUILD_NUMBER} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly - 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} + docker buildx imagetools create -t ${MANIFESTIMAGE}:nightly ${MANIFESTIMAGE}:amd64-nightly ${MANIFESTIMAGE}:arm64v8-nightly || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${META_TAG} ${MANIFESTIMAGE}:amd64-${META_TAG} ${MANIFESTIMAGE}:arm64v8-${META_TAG} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } + docker buildx imagetools create -t ${MANIFESTIMAGE}:${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:amd64-${EXT_RELEASE_TAG} ${MANIFESTIMAGE}:arm64v8-${EXT_RELEASE_TAG} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } if [ -n "${SEMVER}" ]; then - docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} + docker buildx imagetools create -t ${MANIFESTIMAGE}:${SEMVER} ${MANIFESTIMAGE}:amd64-${SEMVER} ${MANIFESTIMAGE}:arm64v8-${SEMVER} || \ + { if [[ "${MANIFESTIMAGE}" != "${QUAYIMAGE}" ]]; then exit 1; fi; } fi done ''' @@ -979,23 +999,41 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { - echo "Pushing New tag for current commit ${META_TAG}" - sh '''curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ - -d '{"tag":"'${META_TAG}'",\ - "object": "'${COMMIT_SHA}'",\ - "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ - "type": "commit",\ - "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' ''' - echo "Pushing New release for Tag" sh '''#! /bin/bash + echo "Auto-generating release notes" + if [ "$(git tag --points-at HEAD)" != "" ]; then + echo "Existing tag points to current commit, suggesting no new LS changes" + AUTO_RELEASE_NOTES="No changes" + else + AUTO_RELEASE_NOTES=$(curl -fsL -H "Authorization: token ${GITHUB_TOKEN}" -H "Accept: application/vnd.github+json" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases/generate-notes \ + -d '{"tag_name":"'${META_TAG}'",\ + "target_commitish": "nightly"}' \ + | jq -r '.body' | sed 's|## What.s Changed||') + fi + echo "Pushing New tag for current commit ${META_TAG}" + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/git/tags \ + -d '{"tag":"'${META_TAG}'",\ + "object": "'${COMMIT_SHA}'",\ + "message": "Tagging Release '${EXT_RELEASE_CLEAN}'-ls'${LS_TAG_NUMBER}' to nightly",\ + "type": "commit",\ + "tagger": {"name": "LinuxServer-CI","email": "ci@linuxserver.io","date": "'${GITHUB_DATE}'"}}' + echo "Pushing New release for Tag" echo "Updating to ${EXT_RELEASE_CLEAN}" > releasebody.json - echo '{"tag_name":"'${META_TAG}'",\ - "target_commitish": "nightly",\ - "name": "'${META_TAG}'",\ - "body": "**CI Report:**\\n\\n'${CI_URL:-N/A}'\\n\\n**LinuxServer Changes:**\\n\\n'${LS_RELEASE_NOTES}'\\n\\n**Remote Changes:**\\n\\n' > start - printf '","draft": false,"prerelease": true}' >> releasebody.json - paste -d'\\0' start releasebody.json > releasebody.json.done - curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done''' + jq -n \ + --arg tag_name "$META_TAG" \ + --arg target_commitish "nightly" \ + --arg ci_url "${CI_URL:-N/A}" \ + --arg ls_notes "$AUTO_RELEASE_NOTES" \ + --arg remote_notes "$(cat releasebody.json)" \ + '{ + "tag_name": $tag_name, + "target_commitish": $target_commitish, + "name": $tag_name, + "body": ("**CI Report:**\\n\\n" + $ci_url + "\\n\\n**LinuxServer Changes:**\\n\\n" + $ls_notes + "\\n\\n**Remote Changes:**\\n\\n" + $remote_notes), + "draft": false, + "prerelease": true }' > releasebody.json.done + curl -H "Authorization: token ${GITHUB_TOKEN}" -X POST https://api.github.com/repos/${LS_USER}/${LS_REPO}/releases -d @releasebody.json.done + ''' } } // Add protection to the release branch From 2ea1a4a50cc0605bbca2421986efd487b4c7b398 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Oct 2025 02:55:27 +0000 Subject: [PATCH 747/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 5bacbfc5..1aa86073 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -156,7 +156,7 @@ catatonit 0.2.1-r0 cfg-if 1.0.0 rust-crate chromaprint 1.5.1-r8 apk chromaprint-libs 1.5.1-r8 apk -cjson 1.7.18-r1 apk +cjson 1.7.19-r0 apk clap 4.4.14 rust-crate clap_builder 4.4.14 rust-crate clap_complete 4.4.6 rust-crate From cd479ed9c4bb6fe9ebd148318b70d649f9d70e5a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 19 Nov 2025 02:51:22 +0000 Subject: [PATCH 748/790] Bot Updating Templated Files --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 7a750282..2e5244c7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -906,6 +906,8 @@ pipeline { -e WEB_PATH=\"${CI_WEBPATH}\" \ -e NODE_NAME=\"${NODE_NAME}\" \ -e SYFT_IMAGE_TAG=\"${CI_SYFT_IMAGE_TAG:-${SYFT_IMAGE_TAG}}\" \ + -e COMMIT_SHA=\"${COMMIT_SHA}\" \ + -e BUILD_NUMBER=\"${BUILD_NUMBER}\" \ -t ghcr.io/linuxserver/ci:${CITEST_IMAGETAG} \ python3 test_build.py''' } From 11f47ecb00f09b3d9a61c792573fad5e8f28a4a9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 26 Nov 2025 02:55:16 +0000 Subject: [PATCH 749/790] Bot Updating Package Versions --- package_versions.txt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 1aa86073..cb513682 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -147,8 +147,8 @@ bash 5.2.37-r0 bitflags 2.4.1 rust-crate bitstream-io 2.2.0 rust-crate brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r19 apk -busybox-binsh 1.37.0-r19 apk +busybox 1.37.0-r20 apk +busybox-binsh 1.37.0-r20 apk c-ares 1.34.5-r0 apk ca-certificates 20250911-r0 apk ca-certificates-bundle 20250911-r0 apk @@ -195,7 +195,7 @@ interpolate_name 0.2.4 itertools 0.10.5 rust-crate itertools 0.12.0 rust-crate ivf 0.1.3 rust-crate -jq 1.8.0-r0 apk +jq 1.8.1-r0 apk lab 0.11.0 rust-crate lame-libs 3.100-r5 apk lazy_static 1.4.0 rust-crate @@ -316,7 +316,7 @@ simd_helpers 0.1.0 skalibs-libs 2.14.4.0-r0 apk soxr 0.1.3-r7 apk sqlite-libs 3.49.2-r1 apk -ssl_client 1.37.0-r19 apk +ssl_client 1.37.0-r20 apk syn 2.0.48 rust-crate terminal_size 0.3.0 rust-crate thiserror 1.0.56 rust-crate From 18bb0f598c07b777e6ddece22d54e45ca3cf8d4e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 Dec 2025 02:57:04 +0000 Subject: [PATCH 750/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index cb513682..9ee56264 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -225,7 +225,7 @@ libncursesw 6.5_p20250503-r0 libogg 1.3.5-r5 apk libopenmpt 0.7.15-r0 apk libpciaccess 0.18.1-r0 apk -libpng 1.6.47-r0 apk +libpng 1.6.51-r0 apk libproc2 4.0.4-r3 apk libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk From 27551a2a91dfd6d7cc477678bda97b9e4179db06 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 10 Dec 2025 03:01:58 +0000 Subject: [PATCH 751/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9ee56264..9ccdd457 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -225,7 +225,7 @@ libncursesw 6.5_p20250503-r0 libogg 1.3.5-r5 apk libopenmpt 0.7.15-r0 apk libpciaccess 0.18.1-r0 apk -libpng 1.6.51-r0 apk +libpng 1.6.53-r0 apk libproc2 4.0.4-r3 apk libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk From f5d3143052f341b5d6635a58973da3b2201b7491 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 15 Dec 2025 16:51:57 +0000 Subject: [PATCH 752/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 9ccdd457..6ad08eed 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -149,7 +149,7 @@ bitstream-io 2.2.0 brotli-libs 1.1.0-r2 apk busybox 1.37.0-r20 apk busybox-binsh 1.37.0-r20 apk -c-ares 1.34.5-r0 apk +c-ares 1.34.6-r0 apk ca-certificates 20250911-r0 apk ca-certificates-bundle 20250911-r0 apk catatonit 0.2.1-r0 apk @@ -321,7 +321,7 @@ syn 2.0.48 terminal_size 0.3.0 rust-crate thiserror 1.0.56 rust-crate thiserror-impl 1.0.56 rust-crate -tzdata 2025b-r0 apk +tzdata 2025c-r0 apk unicode-ident 1.0.12 rust-crate unicode-width 0.1.11 rust-crate utf8parse 0.2.1 rust-crate From ed263e5c0923d29076b0d62ac0d8c11bfaade7f9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 7 Jan 2026 03:08:13 +0000 Subject: [PATCH 753/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 6ad08eed..25dd4ca9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -230,7 +230,7 @@ libproc2 4.0.4-r3 libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk libsharpyuv 1.5.0-r0 apk -libsodium 1.0.20-r0 apk +libsodium 1.0.20-r1 apk libsrt 1.5.3-r1 apk libssh 0.11.2-r0 apk libssl3 3.5.4-r0 apk From 23a95bcf23ba9d5765d59d7deaaa478033bf31da Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Thu, 15 Jan 2026 09:17:39 +0000 Subject: [PATCH 754/790] Rebase to 3.23 --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- README.md | 1 + readme-vars.yml | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index daa7fa8e..8ce9f397 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.22 +FROM ghcr.io/linuxserver/baseimage-alpine:3.23 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 2b4e5340..9a55404e 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.22 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23 # set version label ARG BUILD_DATE diff --git a/README.md b/README.md index 2ba2d9d1..fba58b59 100644 --- a/README.md +++ b/README.md @@ -311,6 +311,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **15.01.26:** - Rebase to Alpine 3.23. * **05.07.25:** - Rebase to Alpine 3.22. * **12.12.24:** - Rebase to Alpine 3.21. * **25.05.24:** - Rebase to Alpine 3.20. diff --git a/readme-vars.yml b/readme-vars.yml index de812a4c..8151294c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -83,6 +83,7 @@ init_diagram: | "lidarr:nightly" <- Base Images # changelog changelogs: + - {date: "15.01.26:", desc: "Rebase to Alpine 3.23."} - {date: "05.07.25:", desc: "Rebase to Alpine 3.22."} - {date: "12.12.24:", desc: "Rebase to Alpine 3.21."} - {date: "25.05.24:", desc: "Rebase to Alpine 3.20."} From 7f9c3a7335e6a39ffb2226e8f9315491686f6751 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Jan 2026 17:07:31 +0000 Subject: [PATCH 755/790] Bot Updating Templated Files --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 8151294c..b547d90c 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -78,7 +78,7 @@ init_diagram: | svc-lidarr -> legacy-services } Base Images: { - "baseimage-alpine:3.22" + "baseimage-alpine:3.23" } "lidarr:nightly" <- Base Images # changelog From 11997b2ef8a6f47b1562302f42dabc020cf947d0 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 16 Jan 2026 17:11:18 +0000 Subject: [PATCH 756/790] Bot Updating Package Versions --- package_versions.txt | 299 ++++++++++++++++++++++--------------------- 1 file changed, 151 insertions(+), 148 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 25dd4ca9..d05a2ec0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -128,175 +128,174 @@ System.Text.Json 8.0.6 System.Threading.Tasks 4.3.0 dotnet (+5 duplicates) TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) acl-libs 2.3.2-r1 apk -alpine-baselayout 3.7.0-r0 apk -alpine-baselayout-data 3.7.0-r0 apk -alpine-keys 2.5-r0 apk -alpine-release 3.22.2-r0 apk -anstream 0.6.8 rust-crate -anstyle 1.0.4 rust-crate -anstyle-parse 0.2.3 rust-crate -anstyle-query 1.0.2 rust-crate -anyhow 1.0.79 rust-crate -aom-libs 3.12.1-r0 apk -apk-tools 2.14.9-r3 apk +aligned 0.4.2 rust-crate +aligned-vec 0.6.4 rust-crate +alpine-baselayout 3.7.1-r8 apk +alpine-baselayout-data 3.7.1-r8 apk +alpine-keys 2.6-r0 apk +alpine-release 3.23.2-r0 apk +anstream 0.6.19 rust-crate +anstyle 1.0.11 rust-crate +anstyle-parse 0.2.7 rust-crate +anstyle-query 1.1.3 rust-crate +anyhow 1.0.98 rust-crate +aom-libs 3.13.1-r0 apk +apk-tools 3.0.3-r1 apk arg_enum_proc_macro 0.3.4 rust-crate -arrayvec 0.7.4 rust-crate +arrayvec 0.7.6 rust-crate +as-slice 0.2.1 rust-crate av-metrics 0.9.1 rust-crate -av1-grain 0.2.3 rust-crate -bash 5.2.37-r0 apk -bitflags 2.4.1 rust-crate -bitstream-io 2.2.0 rust-crate -brotli-libs 1.1.0-r2 apk -busybox 1.37.0-r20 apk -busybox-binsh 1.37.0-r20 apk +av-scenechange 0.14.1 rust-crate +av1-grain 0.2.4 rust-crate +bash 5.3.3-r1 apk +bitflags 2.9.1 rust-crate +bitstream-io 4.2.0 rust-crate +brotli-libs 1.2.0-r0 apk +busybox 1.37.0-r30 apk +busybox-binsh 1.37.0-r30 apk c-ares 1.34.6-r0 apk -ca-certificates 20250911-r0 apk -ca-certificates-bundle 20250911-r0 apk +ca-certificates 20251003-r0 apk +ca-certificates-bundle 20251003-r0 apk catatonit 0.2.1-r0 apk -cfg-if 1.0.0 rust-crate -chromaprint 1.5.1-r8 apk -chromaprint-libs 1.5.1-r8 apk -cjson 1.7.19-r0 apk -clap 4.4.14 rust-crate -clap_builder 4.4.14 rust-crate -clap_complete 4.4.6 rust-crate -clap_derive 4.4.7 rust-crate -clap_lex 0.6.0 rust-crate -colorchoice 1.0.0 rust-crate -console 0.15.8 rust-crate -coreutils 9.7-r1 apk -coreutils-env 9.7-r1 apk -coreutils-fmt 9.7-r1 apk -coreutils-sha512sum 9.7-r1 apk +cfg-if 1.0.1 rust-crate +chromaprint 1.6.0-r0 apk +chromaprint-libs 1.6.0-r0 apk +cjson 1.7.19-r1 apk +clap 4.5.40 rust-crate +clap_builder 4.5.40 rust-crate +clap_complete 4.5.54 rust-crate +clap_lex 0.7.5 rust-crate +colorchoice 1.0.4 rust-crate +console 0.15.11 rust-crate +core2 0.4.0 rust-crate +coreutils 9.8-r1 apk +coreutils-env 9.8-r1 apk +coreutils-fmt 9.8-r1 apk +coreutils-sha512sum 9.8-r1 apk crossbeam 0.8.4 rust-crate -crossbeam-channel 0.5.14 rust-crate -crossbeam-deque 0.8.5 rust-crate +crossbeam-channel 0.5.15 rust-crate +crossbeam-deque 0.8.6 rust-crate crossbeam-epoch 0.9.18 rust-crate -crossbeam-queue 0.3.11 rust-crate -crossbeam-utils 0.8.19 rust-crate -curl 8.14.1-r2 apk -either 1.9.0 rust-crate -errno 0.3.8 rust-crate -fern 0.6.2 rust-crate -ffmpeg-libavcodec 6.1.2-r2 apk -ffmpeg-libavformat 6.1.2-r2 apk -ffmpeg-libavutil 6.1.2-r2 apk -ffmpeg-libswresample 6.1.2-r2 apk -fftw-double-libs 3.3.10-r6 apk +crossbeam-queue 0.3.12 rust-crate +crossbeam-utils 0.8.21 rust-crate +curl 8.17.0-r1 apk +either 1.15.0 rust-crate +equator 0.4.2 rust-crate +errno 0.3.12 rust-crate +fern 0.7.1 rust-crate +ffmpeg-libavcodec 8.0.1-r1 apk +ffmpeg-libavformat 8.0.1-r1 apk +ffmpeg-libavutil 8.0.1-r1 apk +ffmpeg-libswresample 8.0.1-r1 apk +fftw-double-libs 3.3.10-r7 apk findutils 4.10.0-r0 apk -getrandom 0.2.12 rust-crate -giflib 5.2.2-r1 apk -heck 0.4.1 rust-crate -hwdata-pci 0.395-r0 apk +getrandom 0.3.3 rust-crate +glslang-libs 1.4.321.0-r0 apk +hwdata-pci 0.401-r0 apk icu-data-en 76.1-r1 apk icu-libs 76.1-r1 apk -imath 3.1.12-r0 apk interpolate_name 0.2.4 rust-crate +is_terminal_polyfill 1.70.1 rust-crate itertools 0.10.5 rust-crate -itertools 0.12.0 rust-crate -ivf 0.1.3 rust-crate +itertools 0.14.0 rust-crate +ivf 0.1.4 rust-crate jq 1.8.1-r0 apk lab 0.11.0 rust-crate lame-libs 3.100-r5 apk -lazy_static 1.4.0 rust-crate -lcms2 2.16-r0 apk -libSvtAv1Enc 2.3.0-r0 apk -libapk2 2.14.9-r3 apk +lcms2 2.17-r0 apk +libSvtAv1Enc 3.1.2-r0 apk +libapk 3.0.3-r1 apk libattr 2.5.2-r2 apk -libbluray 1.3.4-r1 apk +libbluray 1.4.0-r0 apk libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk -libc 0.2.155 rust-crate +libc 0.2.172 rust-crate libcrypto3 3.5.4-r0 apk -libcurl 8.14.1-r2 apk -libdav1d 1.5.1-r0 apk -libdeflate 1.23-r0 apk -libdrm 2.4.124-r0 apk -libffi 3.4.8-r0 apk -libgcc 14.2.0-r6 apk -libgomp 14.2.0-r6 apk -libhwy 1.0.7-r1 apk -libidn2 2.3.7-r0 apk -libintl 0.24.1-r0 apk -libjpeg-turbo 3.1.0-r0 apk -libjxl 0.10.3-r2 apk +libcurl 8.17.0-r1 apk +libdav1d 1.5.2-r0 apk +libdrm 2.4.131-r0 apk +libffi 3.5.2-r0 apk +libgcc 15.2.0-r2 apk +libgomp 15.2.0-r2 apk +libhwy 1.3.0-r0 apk +libidn2 2.3.8-r0 apk +libintl 0.24.1-r1 apk +libjxl 0.11.1-r3 apk libmd 1.1.0-r0 apk -libncursesw 6.5_p20250503-r0 apk -libogg 1.3.5-r5 apk -libopenmpt 0.7.15-r0 apk -libpciaccess 0.18.1-r0 apk -libpng 1.6.53-r0 apk -libproc2 4.0.4-r3 apk +libncursesw 6.5_p20251123-r0 apk +libogg 1.3.6-r0 apk +libopenmpt 0.8.3-r0 apk +libpciaccess 0.18.1-r1 apk +libproc2 4.0.5-r0 apk libpsl 0.21.5-r3 apk librist 0.2.10-r1 apk -libsharpyuv 1.5.0-r0 apk +libsharpyuv 1.6.0-r0 apk libsodium 1.0.20-r1 apk libsrt 1.5.3-r1 apk -libssh 0.11.2-r0 apk +libssh 0.11.3-r0 apk libssl3 3.5.4-r0 apk -libstdc++ 14.2.0-r6 apk -libtheora 1.1.1-r18 apk -libunistring 1.3-r0 apk +libstdc++ 15.2.0-r2 apk +libtheora 1.2.0-r0 apk +libudfread 1.2.0-r0 apk +libunistring 1.4.1-r0 apk libva 2.22.0-r1 apk libvdpau 1.5-r4 apk libvorbis 1.3.7-r2 apk -libvpx 1.15.0-r0 apk -libwebp 1.5.0-r0 apk -libwebpmux 1.5.0-r0 apk -libx11 1.8.11-r0 apk +libvpl 2.15.0-r1 apk +libvpx 1.15.2-r0 apk +libwebp 1.6.0-r0 apk +libwebpmux 1.6.0-r0 apk +libx11 1.8.12-r1 apk libxau 1.0.12-r0 apk -libxcb 1.17.0-r0 apk +libxcb 1.17.0-r1 apk libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk -libxfixes 6.0.1-r4 apk +libxfixes 6.0.2-r0 apk libxml2 2.13.9-r0 apk libxslt 1.1.43-r3 apk libzmq 4.3.5-r2 apk -linux-pam 1.7.0-r4 apk -linux-raw-sys 0.4.12 rust-crate -log 0.4.20 rust-crate +linux-pam 1.7.1-r2 apk +linux-raw-sys 0.9.4 rust-crate +log 0.4.27 rust-crate maybe-rayon 0.1.1 rust-crate mbedtls 3.6.5-r0 apk -memchr 2.7.1 rust-crate +memchr 2.7.5 rust-crate minimal-lexical 0.2.1 rust-crate -mpg123-libs 1.32.10-r0 apk -musl 1.2.5-r10 apk -musl-utils 1.2.5-r10 apk -ncurses-terminfo-base 6.5_p20250503-r0 apk -netcat-openbsd 1.229.1-r0 apk -new_debug_unreachable 1.0.4 rust-crate -nghttp2-libs 1.65.0-r0 apk +mpg123-libs 1.33.3-r0 apk +musl 1.2.5-r21 apk +musl-utils 1.2.5-r21 apk +ncurses-terminfo-base 6.5_p20251123-r0 apk +netcat-openbsd 1.234.1-r0 apk +new_debug_unreachable 1.0.6 rust-crate +nghttp2-libs 1.68.0-r0 apk +nghttp3 1.13.1-r0 apk nom 7.1.3 rust-crate +nom 8.0.0 rust-crate noop_proc_macro 0.3.0 rust-crate -num-bigint 0.4.4 rust-crate -num-derive 0.4.1 rust-crate -num-integer 0.1.45 rust-crate -num-rational 0.4.1 rust-crate -num-traits 0.2.17 rust-crate +num-bigint 0.4.6 rust-crate +num-derive 0.4.2 rust-crate +num-integer 0.1.46 rust-crate +num-rational 0.4.2 rust-crate +num-traits 0.2.19 rust-crate numactl 2.0.18-r0 apk -once_cell 1.19.0 rust-crate -onevpl-libs 2023.3.1-r2 apk +once_cell 1.21.3 rust-crate oniguruma 6.9.10-r0 apk -openexr-libiex 3.3.2-r0 apk -openexr-libilmthread 3.3.2-r0 apk -openexr-libopenexr 3.3.2-r0 apk -openexr-libopenexrcore 3.3.2-r0 apk opus 1.5.2-r1 apk -paste 1.0.14 rust-crate -ppv-lite86 0.2.17 rust-crate -proc-macro2 1.0.76 rust-crate -procps-ng 4.0.4-r3 apk -profiling 1.0.13 rust-crate -profiling-procmacros 1.0.13 rust-crate -quote 1.0.35 rust-crate -rand 0.8.5 rust-crate -rand_chacha 0.3.1 rust-crate -rand_core 0.6.4 rust-crate -rav1e 0.7.1 rust-crate -rav1e-libs 0.7.1-r2 apk -rayon 1.8.0 rust-crate -rayon-core 1.12.0 rust-crate -readline 8.2.13-r1 apk +paste 1.0.15 rust-crate +pastey 0.1.0 rust-crate +ppv-lite86 0.2.21 rust-crate +proc-macro2 1.0.95 rust-crate +procps-ng 4.0.5-r0 apk +profiling 1.0.16 rust-crate +quote 1.0.40 rust-crate +rand 0.9.1 rust-crate +rand_chacha 0.9.0 rust-crate +rand_core 0.9.3 rust-crate +rav1e 0.8.1 rust-crate +rav1e-libs 0.8.1-r0 apk +rayon 1.10.0 rust-crate +rayon-core 1.12.1 rust-crate +readline 8.3.1-r0 apk runtime.any.System.IO 4.3.0 dotnet (+5 duplicates) runtime.any.System.Reflection 4.3.0 dotnet (+5 duplicates) runtime.any.System.Reflection.Primitives 4.3.0 dotnet (+5 duplicates) @@ -306,33 +305,37 @@ runtime.any.System.Threading.Tasks 4.3.0 runtime.unix.System.Private.Uri 4.3.0 dotnet (+5 duplicates) runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+4 duplicates) runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+7 duplicates) -rustix 0.38.28 rust-crate +rustix 1.0.7 rust-crate scan_fmt 0.2.6 rust-crate -scanelf 1.3.8-r1 apk -shadow 4.17.3-r0 apk -signal-hook 0.3.17 rust-crate -signal-hook-registry 1.4.1 rust-crate +scanelf 1.3.8-r2 apk +shaderc 2025.3-r0 apk +shadow 4.18.0-r0 apk +signal-hook 0.3.18 rust-crate +signal-hook-registry 1.4.5 rust-crate simd_helpers 0.1.0 rust-crate skalibs-libs 2.14.4.0-r0 apk soxr 0.1.3-r7 apk -sqlite-libs 3.49.2-r1 apk -ssl_client 1.37.0-r20 apk -syn 2.0.48 rust-crate -terminal_size 0.3.0 rust-crate -thiserror 1.0.56 rust-crate -thiserror-impl 1.0.56 rust-crate +spirv-tools 1.4.321.0-r1 apk +sqlite-libs 3.51.2-r0 apk +ssl_client 1.37.0-r30 apk +stable_deref_trait 1.2.0 rust-crate +syn 2.0.102 rust-crate +terminal_size 0.4.2 rust-crate +thiserror 1.0.69 rust-crate +thiserror 2.0.12 rust-crate tzdata 2025c-r0 apk -unicode-ident 1.0.12 rust-crate -unicode-width 0.1.11 rust-crate -utf8parse 0.2.1 rust-crate +unicode-ident 1.0.18 rust-crate +unicode-width 0.2.1 rust-crate +utf8parse 0.2.2 rust-crate utmps-libs 0.1.3.1-r0 apk -v_frame 0.3.7 rust-crate -wayland-libs-client 1.23.1-r3 apk -x264-libs 0.164.3108-r0 apk -x265-libs 3.6-r0 apk +v_frame 0.3.9 rust-crate +wayland-libs-client 1.24.0-r0 apk +x264-libs 0.164.3108-r1 apk +x265-libs 4.1-r0 apk xmlstarlet 1.6.1-r2 apk xvidcore 1.3.7-r2 apk -xz-libs 5.8.1-r0 apk +xz-libs 5.8.2-r0 apk y4m 0.8.0 rust-crate +zerocopy 0.8.25 rust-crate zlib 1.3.1-r2 apk -zstd-libs 1.5.7-r0 apk +zstd-libs 1.5.7-r2 apk From b3daa629e7f998d498a473a0a282838bf803e0c6 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 18 Jan 2026 19:51:32 +0000 Subject: [PATCH 757/790] Bot Updating Package Versions --- package_versions.txt | 50 ++++++++++++++++++++++---------------------- 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index d05a2ec0..cabda868 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -5,7 +5,7 @@ BouncyCastle.Cryptography 2.6.1 Dapper 2.1.66 dotnet (+5 duplicates) Diacritical.Net 1.0.4 dotnet (+5 duplicates) DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) -DryIoc.dll 5.4.3 dotnet (+7 duplicates) +DryIoc.dll 5.4.3 dotnet (+4 duplicates) Dynamitey 3.0.3 dotnet (+3 duplicates) Equ 2.3.0 dotnet (+5 duplicates) FluentMigrator 6.2.0 dotnet (+5 duplicates) @@ -15,12 +15,12 @@ FluentMigrator.Runner.Core 6.2.0 FluentMigrator.Runner.Postgres 6.2.0 dotnet (+5 duplicates) FluentMigrator.Runner.SQLite 6.2.0 dotnet (+5 duplicates) FluentValidation 9.5.4 dotnet (+5 duplicates) -IPAddressRange 6.2.0 dotnet (+7 duplicates) +IPAddressRange 6.2.0 dotnet (+4 duplicates) Ical.Net 4.3.1 dotnet (+2 duplicates) ImpromptuInterface 8.0.6 dotnet (+3 duplicates) Lidarr 1.0.0 dotnet Lidarr.Api.V1 1.0.0 dotnet (+2 duplicates) -Lidarr.Common 1.0.0 dotnet (+7 duplicates) +Lidarr.Common 1.0.0 dotnet (+6 duplicates) Lidarr.Core 1.0.0 dotnet (+5 duplicates) Lidarr.Host 1.0.0 dotnet (+1 duplicate) Lidarr.Http 1.0.0 dotnet (+3 duplicates) @@ -48,7 +48,7 @@ Microsoft.Extensions.Diagnostics 8.0.1 Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 dotnet (+6 duplicates) Microsoft.Extensions.FileProviders.Abstractions 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.FileProviders.Physical 8.0.0 dotnet (+6 duplicates) -Microsoft.Extensions.FileSystemGlobbing 8.0.0 dotnet (+6 duplicates) +Microsoft.Extensions.FileSystemGlobbing 8.0.0 dotnet (+3 duplicates) Microsoft.Extensions.Hosting 8.0.1 dotnet (+7 duplicates) Microsoft.Extensions.Hosting.Abstractions 8.0.1 dotnet (+7 duplicates) Microsoft.Extensions.Hosting.WindowsServices 8.0.1 dotnet (+7 duplicates) @@ -73,7 +73,7 @@ Microsoft.IdentityModel.Protocols.OpenIdConnect 7.7.1 Microsoft.IdentityModel.Tokens 7.7.1 dotnet (+5 duplicates) Microsoft.OpenApi 1.6.25 dotnet (+2 duplicates) Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) -Microsoft.Win32.Registry 5.0.0 dotnet (+5 duplicates) +Microsoft.Win32.Registry 5.0.0 dotnet (+2 duplicates) Microsoft.Win32.SystemEvents 8.0.0 dotnet (+5 duplicates) MimeKit 4.14.0 dotnet (+5 duplicates) Mono.Nat 3.0.0 dotnet (+5 duplicates) @@ -90,8 +90,8 @@ Polly 8.6.4 Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) Polly.Core 8.6.4 dotnet (+5 duplicates) ReusableTasks 4.0.0 dotnet (+5 duplicates) -Sentry 4.0.2 dotnet (+7 duplicates) -SharpZipLib 1.4.2 dotnet (+7 duplicates) +Sentry 4.0.2 dotnet (+4 duplicates) +SharpZipLib 1.4.2 dotnet (+4 duplicates) SixLabors.ImageSharp 3.1.11 dotnet (+5 duplicates) SourceGear.sqlite3 3.50.4.2 dotnet (+7 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) @@ -102,30 +102,30 @@ System.ClientModel 1.5.1 System.ComponentModel 4.3.0 dotnet (+2 duplicates) System.ComponentModel.Annotations 5.0.0 dotnet (+4 duplicates) System.Configuration.ConfigurationManager 8.0.1 dotnet (+7 duplicates) -System.Data.SQLite 2.0.2 dotnet (+7 duplicates) +System.Data.SQLite 2.0.2 dotnet (+4 duplicates) System.Diagnostics.DiagnosticSource 6.0.1 dotnet (+4 duplicates) System.Diagnostics.EventLog 8.0.1 dotnet (+6 duplicates) System.Drawing.Common 8.0.20 dotnet (+5 duplicates) System.Formats.Asn1 8.0.1 dotnet (+4 duplicates) -System.IO 4.3.0 dotnet (+5 duplicates) +System.IO 4.3.0 dotnet (+3 duplicates) System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) System.IdentityModel.Tokens.Jwt 7.7.1 dotnet (+5 duplicates) System.Memory.Data 8.0.1 dotnet (+5 duplicates) -System.Private.Uri 4.3.0 dotnet (+5 duplicates) -System.Reflection 4.3.0 dotnet (+5 duplicates) -System.Reflection.Primitives 4.3.0 dotnet (+5 duplicates) -System.Runtime 4.3.0 dotnet (+5 duplicates) +System.Private.Uri 4.3.0 dotnet (+3 duplicates) +System.Reflection 4.3.0 dotnet (+3 duplicates) +System.Reflection.Primitives 4.3.0 dotnet (+3 duplicates) +System.Runtime 4.3.0 dotnet (+3 duplicates) System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet (+4 duplicates) -System.Runtime.Loader 4.3.0 dotnet (+5 duplicates) -System.Security.AccessControl 5.0.0 dotnet (+5 duplicates) +System.Runtime.Loader 4.3.0 dotnet (+3 duplicates) +System.Security.AccessControl 5.0.0 dotnet (+2 duplicates) System.Security.Cryptography.Pkcs 8.0.1 dotnet (+4 duplicates) System.Security.Cryptography.ProtectedData 8.0.0 dotnet (+7 duplicates) -System.Security.Principal.Windows 5.0.0 dotnet (+5 duplicates) +System.Security.Principal.Windows 5.0.0 dotnet (+2 duplicates) System.ServiceProcess.ServiceController 8.0.1 dotnet (+7 duplicates) -System.Text.Encoding 4.3.0 dotnet (+5 duplicates) +System.Text.Encoding 4.3.0 dotnet (+3 duplicates) System.Text.Encoding.CodePages 8.0.0 dotnet System.Text.Json 8.0.6 dotnet (+7 duplicates) -System.Threading.Tasks 4.3.0 dotnet (+5 duplicates) +System.Threading.Tasks 4.3.0 dotnet (+3 duplicates) TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) acl-libs 2.3.2-r1 apk aligned 0.4.2 rust-crate @@ -296,13 +296,13 @@ rav1e-libs 0.8.1-r0 rayon 1.10.0 rust-crate rayon-core 1.12.1 rust-crate readline 8.3.1-r0 apk -runtime.any.System.IO 4.3.0 dotnet (+5 duplicates) -runtime.any.System.Reflection 4.3.0 dotnet (+5 duplicates) -runtime.any.System.Reflection.Primitives 4.3.0 dotnet (+5 duplicates) -runtime.any.System.Runtime 4.3.0 dotnet (+5 duplicates) -runtime.any.System.Text.Encoding 4.3.0 dotnet (+5 duplicates) -runtime.any.System.Threading.Tasks 4.3.0 dotnet (+5 duplicates) -runtime.unix.System.Private.Uri 4.3.0 dotnet (+5 duplicates) +runtime.any.System.IO 4.3.0 dotnet (+2 duplicates) +runtime.any.System.Reflection 4.3.0 dotnet (+2 duplicates) +runtime.any.System.Reflection.Primitives 4.3.0 dotnet (+2 duplicates) +runtime.any.System.Runtime 4.3.0 dotnet (+3 duplicates) +runtime.any.System.Text.Encoding 4.3.0 dotnet (+2 duplicates) +runtime.any.System.Threading.Tasks 4.3.0 dotnet (+2 duplicates) +runtime.unix.System.Private.Uri 4.3.0 dotnet (+3 duplicates) runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+4 duplicates) runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+7 duplicates) rustix 1.0.7 rust-crate From 3d7d4c4fe1ffd8fec55b98623d609fc0615117d3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 28 Jan 2026 03:17:00 +0000 Subject: [PATCH 758/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index cabda868..b21489ef 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -210,7 +210,7 @@ libbluray 1.4.0-r0 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.172 rust-crate -libcrypto3 3.5.4-r0 apk +libcrypto3 3.5.5-r0 apk libcurl 8.17.0-r1 apk libdav1d 1.5.2-r0 apk libdrm 2.4.131-r0 apk @@ -233,7 +233,7 @@ libsharpyuv 1.6.0-r0 libsodium 1.0.20-r1 apk libsrt 1.5.3-r1 apk libssh 0.11.3-r0 apk -libssl3 3.5.4-r0 apk +libssl3 3.5.5-r0 apk libstdc++ 15.2.0-r2 apk libtheora 1.2.0-r0 apk libudfread 1.2.0-r0 apk From 37866bbd169fbd389cd5f40bc93159cda317976f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Feb 2026 03:42:42 +0000 Subject: [PATCH 759/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index b21489ef..f39e48b7 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -133,7 +133,7 @@ aligned-vec 0.6.4 alpine-baselayout 3.7.1-r8 apk alpine-baselayout-data 3.7.1-r8 apk alpine-keys 2.6-r0 apk -alpine-release 3.23.2-r0 apk +alpine-release 3.23.3-r0 apk anstream 0.6.19 rust-crate anstyle 1.0.11 rust-crate anstyle-parse 0.2.7 rust-crate @@ -242,7 +242,7 @@ libva 2.22.0-r1 libvdpau 1.5-r4 apk libvorbis 1.3.7-r2 apk libvpl 2.15.0-r1 apk -libvpx 1.15.2-r0 apk +libvpx 1.15.2-r1 apk libwebp 1.6.0-r0 apk libwebpmux 1.6.0-r0 apk libx11 1.8.12-r1 apk From e19a2756ec850b1a66474a1cf9dcfdd901167729 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Feb 2026 04:05:42 +0000 Subject: [PATCH 760/790] Bot Updating Templated Files --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 2e5244c7..b37950a0 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -283,7 +283,7 @@ pipeline { -v ${WORKSPACE}:/mnt \ -e AWS_ACCESS_KEY_ID=\"${S3_KEY}\" \ -e AWS_SECRET_ACCESS_KEY=\"${S3_SECRET}\" \ - ghcr.io/linuxserver/baseimage-alpine:3 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ + ghcr.io/linuxserver/baseimage-alpine:3.23 s6-envdir -fn -- /var/run/s6/container_environment /bin/bash -c "\ apk add --no-cache python3 && \ python3 -m venv /lsiopy && \ pip install --no-cache-dir -U pip && \ From 10f7e76f8762f5e4f97ef34043a1f6c37989aafc Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Feb 2026 04:07:56 +0000 Subject: [PATCH 761/790] Bot Updating Templated Files --- README.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index fba58b59..9b83d09c 100644 --- a/README.md +++ b/README.md @@ -78,8 +78,11 @@ We have set `/music` and `/downloads` as optional paths, this is because it is t Use the optional paths if you don't understand, or don't want hardlinks/atomic moves. ->[!TIP] ->The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. +<details> +<summary>Well planned paths</summary> + +The folks over at servarr.com wrote a good [write-up](https://wiki.servarr.com/docker-guide#consistent-and-well-planned-paths) on how to get started with this. +</details> ## Read-Only Operation @@ -94,7 +97,7 @@ This image can be run with a non-root user. For details please [read the docs](h To help you get started creating a container from this image you can either use docker-compose or the docker cli. >[!NOTE] ->Unless a parameter is flaged as 'optional', it is *mandatory* and a value must be provided. +>Unless a parameter is flagged as 'optional', it is *mandatory* and a value must be provided. ### docker-compose (recommended, [click here for more info](https://docs.linuxserver.io/general/docker-compose)) From 39977ea316ed42af1703a27900898f3b0b7371a1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Feb 2026 04:11:47 +0000 Subject: [PATCH 762/790] Bot Updating Package Versions --- package_versions.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index f39e48b7..e03f2147 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -139,8 +139,8 @@ anstyle 1.0.11 anstyle-parse 0.2.7 rust-crate anstyle-query 1.1.3 rust-crate anyhow 1.0.98 rust-crate -aom-libs 3.13.1-r0 apk -apk-tools 3.0.3-r1 apk +aom-libs 3.13.1-r1 apk +apk-tools 3.0.4-r0 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.6 rust-crate as-slice 0.2.1 rust-crate @@ -204,7 +204,7 @@ lab 0.11.0 lame-libs 3.100-r5 apk lcms2 2.17-r0 apk libSvtAv1Enc 3.1.2-r0 apk -libapk 3.0.3-r1 apk +libapk 3.0.4-r0 apk libattr 2.5.2-r2 apk libbluray 1.4.0-r0 apk libbsd 0.12.2-r0 apk From f825afb394ec47cdd73ae87e2a8bdb068bdd1705 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 4 Mar 2026 03:36:50 +0000 Subject: [PATCH 763/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e03f2147..6b2f805c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -140,7 +140,7 @@ anstyle-parse 0.2.7 anstyle-query 1.1.3 rust-crate anyhow 1.0.98 rust-crate aom-libs 3.13.1-r1 apk -apk-tools 3.0.4-r0 apk +apk-tools 3.0.5-r0 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.6 rust-crate as-slice 0.2.1 rust-crate @@ -204,7 +204,7 @@ lab 0.11.0 lame-libs 3.100-r5 apk lcms2 2.17-r0 apk libSvtAv1Enc 3.1.2-r0 apk -libapk 3.0.4-r0 apk +libapk 3.0.5-r0 apk libattr 2.5.2-r2 apk libbluray 1.4.0-r0 apk libbsd 0.12.2-r0 apk From bfc5c30061689eb361fe9f524b9af6b2873c0195 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 11 Mar 2026 03:37:08 +0000 Subject: [PATCH 764/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 6b2f805c..ff446290 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -323,7 +323,7 @@ syn 2.0.102 terminal_size 0.4.2 rust-crate thiserror 1.0.69 rust-crate thiserror 2.0.12 rust-crate -tzdata 2025c-r0 apk +tzdata 2026a-r0 apk unicode-ident 1.0.18 rust-crate unicode-width 0.2.1 rust-crate utf8parse 0.2.2 rust-crate @@ -337,5 +337,5 @@ xvidcore 1.3.7-r2 xz-libs 5.8.2-r0 apk y4m 0.8.0 rust-crate zerocopy 0.8.25 rust-crate -zlib 1.3.1-r2 apk +zlib 1.3.2-r0 apk zstd-libs 1.5.7-r2 apk From 390f57fee2259c67c68a8aadf6d58631885b3d27 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 29 Mar 2026 03:47:25 +0000 Subject: [PATCH 765/790] Bot Updating Package Versions --- package_versions.txt | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index ff446290..335ff269 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,7 +1,7 @@ NAME VERSION TYPE Azure.Core 1.47.1 dotnet (+5 duplicates) Azure.Identity 1.14.2 dotnet (+5 duplicates) -BouncyCastle.Cryptography 2.6.1 dotnet (+5 duplicates) +BouncyCastle.Cryptography 2.6.2 dotnet (+5 duplicates) Dapper 2.1.66 dotnet (+5 duplicates) Diacritical.Net 1.0.4 dotnet (+5 duplicates) DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) @@ -26,7 +26,7 @@ Lidarr.Host 1.0.0 Lidarr.Http 1.0.0 dotnet (+3 duplicates) Lidarr.Mono 1.0.0 dotnet Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) -MailKit 4.14.0 dotnet (+5 duplicates) +MailKit 4.15.1 dotnet (+5 duplicates) Microsoft.AspNetCore.Cryptography.Internal 8.0.20 dotnet (+5 duplicates) Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.20 dotnet (+5 duplicates) Microsoft.Bcl.AsyncInterfaces 8.0.0 dotnet (+5 duplicates) @@ -75,7 +75,7 @@ Microsoft.OpenApi 1.6.25 Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) Microsoft.Win32.Registry 5.0.0 dotnet (+2 duplicates) Microsoft.Win32.SystemEvents 8.0.0 dotnet (+5 duplicates) -MimeKit 4.14.0 dotnet (+5 duplicates) +MimeKit 4.15.1 dotnet (+5 duplicates) Mono.Nat 3.0.0 dotnet (+5 duplicates) Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 3.0.2 dotnet (+5 duplicates) @@ -92,7 +92,7 @@ Polly.Core 8.6.4 ReusableTasks 4.0.0 dotnet (+5 duplicates) Sentry 4.0.2 dotnet (+4 duplicates) SharpZipLib 1.4.2 dotnet (+4 duplicates) -SixLabors.ImageSharp 3.1.11 dotnet (+5 duplicates) +SixLabors.ImageSharp 3.1.12 dotnet (+5 duplicates) SourceGear.sqlite3 3.50.4.2 dotnet (+7 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) Swashbuckle.AspNetCore.Annotations 9.0.6 dotnet (+2 duplicates) @@ -130,8 +130,8 @@ TagLibSharp-Lidarr 2.2.0.27 acl-libs 2.3.2-r1 apk aligned 0.4.2 rust-crate aligned-vec 0.6.4 rust-crate -alpine-baselayout 3.7.1-r8 apk -alpine-baselayout-data 3.7.1-r8 apk +alpine-baselayout 3.7.2-r0 apk +alpine-baselayout-data 3.7.2-r0 apk alpine-keys 2.6-r0 apk alpine-release 3.23.3-r0 apk anstream 0.6.19 rust-crate @@ -224,7 +224,7 @@ libjxl 0.11.1-r3 libmd 1.1.0-r0 apk libncursesw 6.5_p20251123-r0 apk libogg 1.3.6-r0 apk -libopenmpt 0.8.3-r0 apk +libopenmpt 0.8.6-r0 apk libpciaccess 0.18.1-r1 apk libproc2 4.0.5-r0 apk libpsl 0.21.5-r3 apk From 2c74808cc03dd0523f3378be47ee286aff0e0321 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Apr 2026 04:09:58 +0000 Subject: [PATCH 766/790] Bot Updating Templated Files --- Jenkinsfile | 172 ++++++++++++++++++++++++++-------------------------- 1 file changed, 85 insertions(+), 87 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index b37950a0..7a0b9264 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -75,6 +75,7 @@ pipeline { ''' script{ env.EXIT_STATUS = '' + env.CI_TEST_ATTEMPTED = '' env.LS_RELEASE = sh( script: '''docker run --rm quay.io/skopeo/stable:v1 inspect docker://ghcr.io/${LS_USER}/${CONTAINER_NAME}:nightly 2>/dev/null | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() @@ -871,6 +872,7 @@ pipeline { script{ env.CI_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/index.html' env.CI_JSON_URL = 'https://ci-tests.linuxserver.io/' + env.IMAGE + '/' + env.META_TAG + '/report.json' + env.CI_TEST_ATTEMPTED = 'true' } sh '''#! /bin/bash set -e @@ -1073,98 +1075,13 @@ EOF ) ''' } } - // If this is a Pull request send the CI link as a comment on it - stage('Pull Request Comment') { - when { - not {environment name: 'CHANGE_ID', value: ''} - environment name: 'EXIT_STATUS', value: '' - } - steps { - sh '''#! /bin/bash - # Function to retrieve JSON data from URL - get_json() { - local url="$1" - local response=$(curl -s "$url") - if [ $? -ne 0 ]; then - echo "Failed to retrieve JSON data from $url" - return 1 - fi - local json=$(echo "$response" | jq .) - if [ $? -ne 0 ]; then - echo "Failed to parse JSON data from $url" - return 1 - fi - echo "$json" - } - - build_table() { - local data="$1" - - # Get the keys in the JSON data - local keys=$(echo "$data" | jq -r 'to_entries | map(.key) | .[]') - - # Check if keys are empty - if [ -z "$keys" ]; then - echo "JSON report data does not contain any keys or the report does not exist." - return 1 - fi - - # Build table header - local header="| Tag | Passed |\\n| --- | --- |\\n" - - # Loop through the JSON data to build the table rows - local rows="" - for build in $keys; do - local status=$(echo "$data" | jq -r ".[\\"$build\\"].test_success") - if [ "$status" = "true" ]; then - status="✅" - else - status="❌" - fi - local row="| "$build" | "$status" |\\n" - rows="${rows}${row}" - done - - local table="${header}${rows}" - local escaped_table=$(echo "$table" | sed 's/\"/\\\\"/g') - echo "$escaped_table" - } - - if [[ "${CI}" = "true" ]]; then - # Retrieve JSON data from URL - data=$(get_json "$CI_JSON_URL") - # Create table from JSON data - table=$(build_table "$data") - echo -e "$table" - - curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" - else - curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ - -H "Accept: application/vnd.github.v3+json" \ - "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" - fi - ''' - - } - } } /* ###################### - Send status to Discord + Comment on PR and Send status to Discord ###################### */ post { always { - sh '''#!/bin/bash - rm -rf /config/.ssh/id_sign - rm -rf /config/.ssh/id_sign.pub - git config --global --unset gpg.format - git config --global --unset user.signingkey - git config --global --unset commit.gpgsign - ''' - script{ + script { env.JOB_DATE = sh( script: '''date '+%Y-%m-%dT%H:%M:%S%:z' ''', returnStdout: true).trim() @@ -1207,6 +1124,87 @@ EOF "username": "Jenkins"}' ${BUILDS_DISCORD} ''' } } + script { + if (env.GITHUBIMAGE =~ /lspipepr/){ + if (env.CI_TEST_ATTEMPTED == "true"){ + sh '''#! /bin/bash + # Function to retrieve JSON data from URL + get_json() { + local url="$1" + local response=$(curl -s "$url") + if [ $? -ne 0 ]; then + echo "Failed to retrieve JSON data from $url" + return 1 + fi + local json=$(echo "$response" | jq .) + if [ $? -ne 0 ]; then + echo "Failed to parse JSON data from $url" + return 1 + fi + echo "$json" + } + + build_table() { + local data="$1" + + # Get the keys in the JSON data + local keys=$(echo "$data" | jq -r 'to_entries | map(.key) | .[]') + + # Check if keys are empty + if [ -z "$keys" ]; then + echo "JSON report data does not contain any keys or the report does not exist." + return 1 + fi + + # Build table header + local header="| Tag | Passed |\\n| --- | --- |\\n" + + # Loop through the JSON data to build the table rows + local rows="" + for build in $keys; do + local status=$(echo "$data" | jq -r ".[\\"$build\\"].test_success") + if [ "$status" = "true" ]; then + status="✅" + else + status="❌" + fi + local row="| "$build" | "$status" |\\n" + rows="${rows}${row}" + done + + local table="${header}${rows}" + local escaped_table=$(echo "$table" | sed 's/\"/\\\\"/g') + echo "$escaped_table" + } + + if [[ "${CI}" = "true" ]]; then + # Retrieve JSON data from URL + data=$(get_json "$CI_JSON_URL") + # Create table from JSON data + table=$(build_table "$data") + echo -e "$table" + + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" + else + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" + fi + ''' + } + } + } + sh '''#!/bin/bash + rm -rf /config/.ssh/id_sign + rm -rf /config/.ssh/id_sign.pub + git config --global --unset gpg.format + git config --global --unset user.signingkey + git config --global --unset commit.gpgsign + ''' } cleanup { sh '''#! /bin/bash From f084d03c66f5b4fa3ccb7610ccec26feb98436ba Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 8 Apr 2026 04:13:40 +0000 Subject: [PATCH 767/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 335ff269..418ab94c 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -258,7 +258,7 @@ linux-pam 1.7.1-r2 linux-raw-sys 0.9.4 rust-crate log 0.4.27 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls 3.6.5-r0 apk +mbedtls 3.6.6-r0 apk memchr 2.7.5 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.33.3-r0 apk From 52acfadb26952b9942b04a765b0a1ffd0b92c0c1 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Apr 2026 04:19:54 +0000 Subject: [PATCH 768/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 418ab94c..89124cdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -210,7 +210,7 @@ libbluray 1.4.0-r0 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.172 rust-crate -libcrypto3 3.5.5-r0 apk +libcrypto3 3.5.6-r0 apk libcurl 8.17.0-r1 apk libdav1d 1.5.2-r0 apk libdrm 2.4.131-r0 apk @@ -232,8 +232,8 @@ librist 0.2.10-r1 libsharpyuv 1.6.0-r0 apk libsodium 1.0.20-r1 apk libsrt 1.5.3-r1 apk -libssh 0.11.3-r0 apk -libssl3 3.5.5-r0 apk +libssh 0.11.4-r0 apk +libssl3 3.5.6-r0 apk libstdc++ 15.2.0-r2 apk libtheora 1.2.0-r0 apk libudfread 1.2.0-r0 apk @@ -262,8 +262,8 @@ mbedtls 3.6.6-r0 memchr 2.7.5 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.33.3-r0 apk -musl 1.2.5-r21 apk -musl-utils 1.2.5-r21 apk +musl 1.2.5-r23 apk +musl-utils 1.2.5-r23 apk ncurses-terminfo-base 6.5_p20251123-r0 apk netcat-openbsd 1.234.1-r0 apk new_debug_unreachable 1.0.6 rust-crate From c55f5269aea357eb4325cecc179502b3e8947184 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Apr 2026 04:20:06 +0000 Subject: [PATCH 769/790] Bot Updating Package Versions --- package_versions.txt | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 89124cdf..870b78b9 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -133,14 +133,14 @@ aligned-vec 0.6.4 alpine-baselayout 3.7.2-r0 apk alpine-baselayout-data 3.7.2-r0 apk alpine-keys 2.6-r0 apk -alpine-release 3.23.3-r0 apk +alpine-release 3.23.4-r0 apk anstream 0.6.19 rust-crate anstyle 1.0.11 rust-crate anstyle-parse 0.2.7 rust-crate anstyle-query 1.1.3 rust-crate anyhow 1.0.98 rust-crate aom-libs 3.13.1-r1 apk -apk-tools 3.0.5-r0 apk +apk-tools 3.0.6-r0 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.6 rust-crate as-slice 0.2.1 rust-crate @@ -154,8 +154,8 @@ brotli-libs 1.2.0-r0 busybox 1.37.0-r30 apk busybox-binsh 1.37.0-r30 apk c-ares 1.34.6-r0 apk -ca-certificates 20251003-r0 apk -ca-certificates-bundle 20251003-r0 apk +ca-certificates 20260413-r0 apk +ca-certificates-bundle 20260413-r0 apk catatonit 0.2.1-r0 apk cfg-if 1.0.1 rust-crate chromaprint 1.6.0-r0 apk @@ -204,7 +204,7 @@ lab 0.11.0 lame-libs 3.100-r5 apk lcms2 2.17-r0 apk libSvtAv1Enc 3.1.2-r0 apk -libapk 3.0.5-r0 apk +libapk 3.0.6-r0 apk libattr 2.5.2-r2 apk libbluray 1.4.0-r0 apk libbsd 0.12.2-r0 apk From b56149d54c6004f5e4b409011fcef5478606838e Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Apr 2026 04:42:02 +0000 Subject: [PATCH 770/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 870b78b9..4af85b4e 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -202,7 +202,7 @@ ivf 0.1.4 jq 1.8.1-r0 apk lab 0.11.0 rust-crate lame-libs 3.100-r5 apk -lcms2 2.17-r0 apk +lcms2 2.19-r0 apk libSvtAv1Enc 3.1.2-r0 apk libapk 3.0.6-r0 apk libattr 2.5.2-r2 apk @@ -334,7 +334,7 @@ x264-libs 0.164.3108-r1 x265-libs 4.1-r0 apk xmlstarlet 1.6.1-r2 apk xvidcore 1.3.7-r2 apk -xz-libs 5.8.2-r0 apk +xz-libs 5.8.3-r0 apk y4m 0.8.0 rust-crate zerocopy 0.8.25 rust-crate zlib 1.3.2-r0 apk From fd3521900f2f1eaad05b9fe71fa7d52f22b16674 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 6 May 2026 04:46:30 +0000 Subject: [PATCH 771/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 4af85b4e..747afddc 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -267,7 +267,7 @@ musl-utils 1.2.5-r23 ncurses-terminfo-base 6.5_p20251123-r0 apk netcat-openbsd 1.234.1-r0 apk new_debug_unreachable 1.0.6 rust-crate -nghttp2-libs 1.68.0-r0 apk +nghttp2-libs 1.69.0-r0 apk nghttp3 1.13.1-r0 apk nom 7.1.3 rust-crate nom 8.0.0 rust-crate @@ -323,7 +323,7 @@ syn 2.0.102 terminal_size 0.4.2 rust-crate thiserror 1.0.69 rust-crate thiserror 2.0.12 rust-crate -tzdata 2026a-r0 apk +tzdata 2026b-r0 apk unicode-ident 1.0.18 rust-crate unicode-width 0.2.1 rust-crate utf8parse 0.2.2 rust-crate From e3cfacd2cd9ee6062127f4cb4b98174d3fc88fd2 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 May 2026 05:17:37 +0000 Subject: [PATCH 772/790] Bot Updating Templated Files --- Jenkinsfile | 26 ++++++++++++++++++++++---- 1 file changed, 22 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 7a0b9264..08fd8ae4 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -76,6 +76,7 @@ pipeline { script{ env.EXIT_STATUS = '' env.CI_TEST_ATTEMPTED = '' + env.PUSH_ATTEMPTED = '' env.LS_RELEASE = sh( script: '''docker run --rm quay.io/skopeo/stable:v1 inspect docker://ghcr.io/${LS_USER}/${CONTAINER_NAME}:nightly 2>/dev/null | jq -r '.Labels.build_version' | awk '{print $3}' | grep '\\-ls' || : ''', returnStdout: true).trim() @@ -925,6 +926,9 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + script{ + env.PUSH_ATTEMPTED = 'true' + } retry_backoff(5,5) { sh '''#! /bin/bash set -e @@ -954,11 +958,18 @@ pipeline { environment name: 'EXIT_STATUS', value: '' } steps { + script{ + env.PUSH_ATTEMPTED = 'true' + } retry_backoff(5,5) { sh '''#! /bin/bash set -e for MANIFESTIMAGE in "${IMAGE}" "${GITLABIMAGE}" "${GITHUBIMAGE}" "${QUAYIMAGE}"; do - [[ ${MANIFESTIMAGE%%/*} =~ \\. ]] && MANIFESTIMAGEPLUS="${MANIFESTIMAGE}" || MANIFESTIMAGEPLUS="docker.io/${MANIFESTIMAGE}" + if [[ "${MANIFESTIMAGE%%/*}" =~ \\. ]]; then + MANIFESTIMAGEPLUS="${MANIFESTIMAGE}" + else + MANIFESTIMAGEPLUS="docker.io/${MANIFESTIMAGE}" + fi IFS=',' read -ra CACHE <<< "$BUILDCACHE" for i in "${CACHE[@]}"; do if [[ "${MANIFESTIMAGEPLUS}" == "$(cut -d "/" -f1 <<< ${i})"* ]]; then @@ -1126,7 +1137,7 @@ EOF } script { if (env.GITHUBIMAGE =~ /lspipepr/){ - if (env.CI_TEST_ATTEMPTED == "true"){ + if (env.CI_TEST_ATTEMPTED == "true" || env.PUSH_ATTEMPTED == "true"){ sh '''#! /bin/bash # Function to retrieve JSON data from URL get_json() { @@ -1187,14 +1198,21 @@ EOF curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here are the test results for this PR: \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" + -d "{\\"body\\": \\"I am a bot, here are the test results for this PR for commit ${COMMIT_SHA:0:7} : \\n${CI_URL}\\n${SHELLCHECK_URL}\\n${table}\\"}" else curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ -H "Accept: application/vnd.github.v3+json" \ "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ - -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR: \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" + -d "{\\"body\\": \\"I am a bot, here is the pushed image/manifest for this PR for commit ${COMMIT_SHA:0:7} : \\n\\n\\`${GITHUBIMAGE}:${META_TAG}\\`\\"}" fi ''' + } else { + sh '''#! /bin/bash + curl -X POST -H "Authorization: token $GITHUB_TOKEN" \ + -H "Accept: application/vnd.github.v3+json" \ + "https://api.github.com/repos/$LS_USER/$LS_REPO/issues/$PULL_REQUEST/comments" \ + -d "{\\"body\\": \\"I am a bot, the build for PR commit ${COMMIT_SHA:0:7} failed and as a result no CI test was attempted and no images were pushed.\\"}" + ''' } } } From db1d2e3ea3526a6f738fbd1e78de8724805b53f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 20 May 2026 05:22:53 +0000 Subject: [PATCH 773/790] Bot Updating Package Versions --- package_versions.txt | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 747afddc..2894a333 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -178,7 +178,7 @@ crossbeam-deque 0.8.6 crossbeam-epoch 0.9.18 rust-crate crossbeam-queue 0.3.12 rust-crate crossbeam-utils 0.8.21 rust-crate -curl 8.17.0-r1 apk +curl 8.19.0-r0 apk either 1.15.0 rust-crate equator 0.4.2 rust-crate errno 0.3.12 rust-crate @@ -211,7 +211,7 @@ libbsd 0.12.2-r0 libbz2 1.0.8-r6 apk libc 0.2.172 rust-crate libcrypto3 3.5.6-r0 apk -libcurl 8.17.0-r1 apk +libcurl 8.19.0-r0 apk libdav1d 1.5.2-r0 apk libdrm 2.4.131-r0 apk libffi 3.5.2-r0 apk @@ -268,7 +268,6 @@ ncurses-terminfo-base 6.5_p20251123-r0 netcat-openbsd 1.234.1-r0 apk new_debug_unreachable 1.0.6 rust-crate nghttp2-libs 1.69.0-r0 apk -nghttp3 1.13.1-r0 apk nom 7.1.3 rust-crate nom 8.0.0 rust-crate noop_proc_macro 0.3.0 rust-crate From 558a48449d56b54e26d970512e7fc08453b1cb9f Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Mon, 25 May 2026 10:38:51 +0000 Subject: [PATCH 774/790] Bot Updating Package Versions --- package_versions.txt | 74 +++++++++++++++++++++----------------------- 1 file changed, 36 insertions(+), 38 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 2894a333..18d47bdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -1,8 +1,8 @@ NAME VERSION TYPE -Azure.Core 1.47.1 dotnet (+5 duplicates) -Azure.Identity 1.14.2 dotnet (+5 duplicates) +Azure.Core 1.50.0 dotnet (+5 duplicates) +Azure.Identity 1.17.1 dotnet (+5 duplicates) BouncyCastle.Cryptography 2.6.2 dotnet (+5 duplicates) -Dapper 2.1.66 dotnet (+5 duplicates) +Dapper 2.1.79 dotnet (+5 duplicates) Diacritical.Net 1.0.4 dotnet (+5 duplicates) DryIoc.Microsoft.DependencyInjection 6.2.0 dotnet (+1 duplicate) DryIoc.dll 5.4.3 dotnet (+4 duplicates) @@ -15,7 +15,7 @@ FluentMigrator.Runner.Core 6.2.0 FluentMigrator.Runner.Postgres 6.2.0 dotnet (+5 duplicates) FluentMigrator.Runner.SQLite 6.2.0 dotnet (+5 duplicates) FluentValidation 9.5.4 dotnet (+5 duplicates) -IPAddressRange 6.2.0 dotnet (+4 duplicates) +IPAddressRange 6.3.0 dotnet (+4 duplicates) Ical.Net 4.3.1 dotnet (+2 duplicates) ImpromptuInterface 8.0.6 dotnet (+3 duplicates) Lidarr 1.0.0 dotnet @@ -26,14 +26,13 @@ Lidarr.Host 1.0.0 Lidarr.Http 1.0.0 dotnet (+3 duplicates) Lidarr.Mono 1.0.0 dotnet Lidarr.SignalR 1.0.0 dotnet (+4 duplicates) -MailKit 4.15.1 dotnet (+5 duplicates) -Microsoft.AspNetCore.Cryptography.Internal 8.0.20 dotnet (+5 duplicates) -Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.20 dotnet (+5 duplicates) +MailKit 4.16.0 dotnet (+5 duplicates) +Microsoft.AspNetCore.Cryptography.Internal 8.0.27 dotnet (+4 duplicates) +Microsoft.AspNetCore.Cryptography.KeyDerivation 8.0.27 dotnet (+4 duplicates) Microsoft.Bcl.AsyncInterfaces 8.0.0 dotnet (+5 duplicates) -Microsoft.Bcl.Cryptography 8.0.0 dotnet (+5 duplicates) -Microsoft.Data.SqlClient 6.1.1 dotnet (+5 duplicates) +Microsoft.Data.SqlClient 6.1.5 dotnet (+5 duplicates) Microsoft.Extensions.Caching.Abstractions 8.0.0 dotnet (+4 duplicates) -Microsoft.Extensions.Caching.Memory 8.0.1 dotnet (+5 duplicates) +Microsoft.Extensions.Caching.Memory 8.0.1 dotnet (+4 duplicates) Microsoft.Extensions.Configuration 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.Configuration.Abstractions 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.Configuration.Binder 8.0.2 dotnet (+6 duplicates) @@ -49,23 +48,23 @@ Microsoft.Extensions.Diagnostics.Abstractions 8.0.1 Microsoft.Extensions.FileProviders.Abstractions 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.FileProviders.Physical 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.FileSystemGlobbing 8.0.0 dotnet (+3 duplicates) -Microsoft.Extensions.Hosting 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Hosting.Abstractions 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Hosting 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Hosting.Abstractions 8.0.1 dotnet (+6 duplicates) Microsoft.Extensions.Hosting.WindowsServices 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Logging 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging 8.0.1 dotnet (+6 duplicates) Microsoft.Extensions.Logging.Abstractions 8.0.2 dotnet (+1 duplicate) -Microsoft.Extensions.Logging.Abstractions 8.0.3 dotnet (+5 duplicates) -Microsoft.Extensions.Logging.Configuration 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Console 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.Debug 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventLog 8.0.1 dotnet (+7 duplicates) -Microsoft.Extensions.Logging.EventSource 8.0.1 dotnet (+7 duplicates) +Microsoft.Extensions.Logging.Abstractions 8.0.3 dotnet (+4 duplicates) +Microsoft.Extensions.Logging.Configuration 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Logging.Console 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Logging.Debug 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Logging.EventLog 8.0.1 dotnet (+6 duplicates) +Microsoft.Extensions.Logging.EventSource 8.0.1 dotnet (+6 duplicates) Microsoft.Extensions.Options 8.0.2 dotnet (+6 duplicates) Microsoft.Extensions.Options.ConfigurationExtensions 8.0.0 dotnet (+6 duplicates) Microsoft.Extensions.Primitives 8.0.0 dotnet (+6 duplicates) -Microsoft.Identity.Client 4.73.1 dotnet (+5 duplicates) -Microsoft.Identity.Client.Extensions.Msal 4.73.1 dotnet (+5 duplicates) -Microsoft.IdentityModel.Abstractions 7.7.1 dotnet (+5 duplicates) +Microsoft.Identity.Client 4.80.0 dotnet (+5 duplicates) +Microsoft.Identity.Client.Extensions.Msal 4.78.0 dotnet (+5 duplicates) +Microsoft.IdentityModel.Abstractions 8.14.0 dotnet (+5 duplicates) Microsoft.IdentityModel.JsonWebTokens 7.7.1 dotnet (+5 duplicates) Microsoft.IdentityModel.Logging 7.7.1 dotnet (+5 duplicates) Microsoft.IdentityModel.Protocols 7.7.1 dotnet (+5 duplicates) @@ -75,37 +74,37 @@ Microsoft.OpenApi 1.6.25 Microsoft.SqlServer.Server 1.0.0 dotnet (+5 duplicates) Microsoft.Win32.Registry 5.0.0 dotnet (+2 duplicates) Microsoft.Win32.SystemEvents 8.0.0 dotnet (+5 duplicates) -MimeKit 4.15.1 dotnet (+5 duplicates) +MimeKit 4.16.0 dotnet (+5 duplicates) Mono.Nat 3.0.0 dotnet (+5 duplicates) Mono.Posix.NETStandard 5.20.1.34-servarr20 dotnet MonoTorrent 3.0.2 dotnet (+5 duplicates) -NLog 5.4.0 dotnet (+7 duplicates) -NLog.Extensions.Logging 5.4.0 dotnet (+5 duplicates) -NLog.Layouts.ClefJsonLayout 1.0.4 dotnet (+7 duplicates) +NLog 5.5.1 dotnet (+7 duplicates) +NLog.Extensions.Logging 5.5.0 dotnet (+5 duplicates) +NLog.Layouts.ClefJsonLayout 1.0.5 dotnet (+7 duplicates) NLog.Targets.Syslog 7.0.0 dotnet (+5 duplicates) Newtonsoft.Json 13.0.4 dotnet (+7 duplicates) NodaTime 3.2.0 dotnet (+2 duplicates) -Npgsql 9.0.3 dotnet (+5 duplicates) -Polly 8.6.4 dotnet (+5 duplicates) +Npgsql 9.0.5 dotnet (+5 duplicates) +Polly 8.6.6 dotnet (+5 duplicates) Polly.Contrib.WaitAndRetry 1.1.1 dotnet (+5 duplicates) -Polly.Core 8.6.4 dotnet (+5 duplicates) +Polly.Core 8.6.6 dotnet (+5 duplicates) ReusableTasks 4.0.0 dotnet (+5 duplicates) Sentry 4.0.2 dotnet (+4 duplicates) SharpZipLib 1.4.2 dotnet (+4 duplicates) SixLabors.ImageSharp 3.1.12 dotnet (+5 duplicates) -SourceGear.sqlite3 3.50.4.2 dotnet (+7 duplicates) +SourceGear.sqlite3 3.50.4.5 dotnet (+7 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) Swashbuckle.AspNetCore.Annotations 9.0.6 dotnet (+2 duplicates) Swashbuckle.AspNetCore.Swagger 9.0.6 dotnet (+2 duplicates) Swashbuckle.AspNetCore.SwaggerGen 9.0.6 dotnet (+2 duplicates) -System.ClientModel 1.5.1 dotnet (+5 duplicates) +System.ClientModel 1.8.0 dotnet (+5 duplicates) System.ComponentModel 4.3.0 dotnet (+2 duplicates) System.ComponentModel.Annotations 5.0.0 dotnet (+4 duplicates) System.Configuration.ConfigurationManager 8.0.1 dotnet (+7 duplicates) -System.Data.SQLite 2.0.2 dotnet (+4 duplicates) -System.Diagnostics.DiagnosticSource 6.0.1 dotnet (+4 duplicates) +System.Data.SQLite 2.0.3 dotnet (+4 duplicates) +System.Diagnostics.DiagnosticSource 8.0.1 dotnet (+4 duplicates) System.Diagnostics.EventLog 8.0.1 dotnet (+6 duplicates) -System.Drawing.Common 8.0.20 dotnet (+5 duplicates) +System.Drawing.Common 8.0.27 dotnet (+5 duplicates) System.Formats.Asn1 8.0.1 dotnet (+4 duplicates) System.IO 4.3.0 dotnet (+3 duplicates) System.IO.Abstractions 17.0.24 dotnet (+7 duplicates) @@ -115,7 +114,6 @@ System.Private.Uri 4.3.0 System.Reflection 4.3.0 dotnet (+3 duplicates) System.Reflection.Primitives 4.3.0 dotnet (+3 duplicates) System.Runtime 4.3.0 dotnet (+3 duplicates) -System.Runtime.CompilerServices.Unsafe 6.0.0 dotnet (+4 duplicates) System.Runtime.Loader 4.3.0 dotnet (+3 duplicates) System.Security.AccessControl 5.0.0 dotnet (+2 duplicates) System.Security.Cryptography.Pkcs 8.0.1 dotnet (+4 duplicates) @@ -124,7 +122,7 @@ System.Security.Principal.Windows 5.0.0 System.ServiceProcess.ServiceController 8.0.1 dotnet (+7 duplicates) System.Text.Encoding 4.3.0 dotnet (+3 duplicates) System.Text.Encoding.CodePages 8.0.0 dotnet -System.Text.Json 8.0.6 dotnet (+7 duplicates) +System.Text.Json 8.0.6 dotnet (+5 duplicates) System.Threading.Tasks 4.3.0 dotnet (+3 duplicates) TagLibSharp-Lidarr 2.2.0.27 dotnet (+5 duplicates) acl-libs 2.3.2-r1 apk @@ -302,8 +300,8 @@ runtime.any.System.Runtime 4.3.0 runtime.any.System.Text.Encoding 4.3.0 dotnet (+2 duplicates) runtime.any.System.Threading.Tasks 4.3.0 dotnet (+2 duplicates) runtime.unix.System.Private.Uri 4.3.0 dotnet (+3 duplicates) -runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+4 duplicates) -runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.12 dotnet (+7 duplicates) +runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.27 dotnet (+4 duplicates) +runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.27 dotnet (+7 duplicates) rustix 1.0.7 rust-crate scan_fmt 0.2.6 rust-crate scanelf 1.3.8-r2 apk From fe243805f5ef8245e949d837a13a81694c5c5524 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sun, 31 May 2026 00:01:03 +0000 Subject: [PATCH 775/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 18d47bdf..eeb2ac72 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -137,7 +137,7 @@ anstyle 1.0.11 anstyle-parse 0.2.7 rust-crate anstyle-query 1.1.3 rust-crate anyhow 1.0.98 rust-crate -aom-libs 3.13.1-r1 apk +aom-libs 3.14.1-r0 apk apk-tools 3.0.6-r0 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.6 rust-crate From 9b5545abe9df5cf20ea3e77cc0842c0887d6ea01 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 3 Jun 2026 06:19:48 +0000 Subject: [PATCH 776/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index eeb2ac72..89945b06 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -249,7 +249,7 @@ libxcb 1.17.0-r1 libxdmcp 1.1.5-r1 apk libxext 1.3.6-r2 apk libxfixes 6.0.2-r0 apk -libxml2 2.13.9-r0 apk +libxml2 2.13.9-r1 apk libxslt 1.1.43-r3 apk libzmq 4.3.5-r2 apk linux-pam 1.7.1-r2 apk From 434aff1b58009223a4ea644558e07c19f7a09034 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 17 Jun 2026 06:29:57 +0000 Subject: [PATCH 777/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 89945b06..502ccbdf 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -208,7 +208,7 @@ libbluray 1.4.0-r0 libbsd 0.12.2-r0 apk libbz2 1.0.8-r6 apk libc 0.2.172 rust-crate -libcrypto3 3.5.6-r0 apk +libcrypto3 3.5.7-r0 apk libcurl 8.19.0-r0 apk libdav1d 1.5.2-r0 apk libdrm 2.4.131-r0 apk @@ -231,7 +231,7 @@ libsharpyuv 1.6.0-r0 libsodium 1.0.20-r1 apk libsrt 1.5.3-r1 apk libssh 0.11.4-r0 apk -libssl3 3.5.6-r0 apk +libssl3 3.5.7-r0 apk libstdc++ 15.2.0-r2 apk libtheora 1.2.0-r0 apk libudfread 1.2.0-r0 apk From 76e525585b280fb7b5e0f8e3299163f390e5e8f8 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 24 Jun 2026 05:14:41 +0000 Subject: [PATCH 778/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 502ccbdf..372e4980 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -152,8 +152,8 @@ brotli-libs 1.2.0-r0 busybox 1.37.0-r30 apk busybox-binsh 1.37.0-r30 apk c-ares 1.34.6-r0 apk -ca-certificates 20260413-r0 apk -ca-certificates-bundle 20260413-r0 apk +ca-certificates 20260611-r0 apk +ca-certificates-bundle 20260611-r0 apk catatonit 0.2.1-r0 apk cfg-if 1.0.1 rust-crate chromaprint 1.6.0-r0 apk From 2c3c8e38db5203a1a8a979b745e84ba262ae695d Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 1 Jul 2026 05:57:26 +0000 Subject: [PATCH 779/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 372e4980..52f9d522 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -131,7 +131,7 @@ aligned-vec 0.6.4 alpine-baselayout 3.7.2-r0 apk alpine-baselayout-data 3.7.2-r0 apk alpine-keys 2.6-r0 apk -alpine-release 3.23.4-r0 apk +alpine-release 3.23.5-r0 apk anstream 0.6.19 rust-crate anstyle 1.0.11 rust-crate anstyle-parse 0.2.7 rust-crate From d41a02a6fd326102ab43a96cb5bb9ec9169fabf0 Mon Sep 17 00:00:00 2001 From: thespad <spad@linuxserver.io> Date: Sat, 4 Jul 2026 14:49:12 +0000 Subject: [PATCH 780/790] Rebase to Alpine 3.24 --- Dockerfile | 2 +- Dockerfile.aarch64 | 2 +- readme-vars.yml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 8ce9f397..1d07e3d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:3.23 +FROM ghcr.io/linuxserver/baseimage-alpine:3.24 # set version label ARG BUILD_DATE diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 9a55404e..68533cea 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -1,6 +1,6 @@ # syntax=docker/dockerfile:1 -FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.23 +FROM ghcr.io/linuxserver/baseimage-alpine:arm64v8-3.24 # set version label ARG BUILD_DATE diff --git a/readme-vars.yml b/readme-vars.yml index b547d90c..03326f7e 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -83,6 +83,7 @@ init_diagram: | "lidarr:nightly" <- Base Images # changelog changelogs: + - {date: "04.07.26:", desc: "Rebase to Alpine 3.24."} - {date: "15.01.26:", desc: "Rebase to Alpine 3.23."} - {date: "05.07.25:", desc: "Rebase to Alpine 3.22."} - {date: "12.12.24:", desc: "Rebase to Alpine 3.21."} From a3d1045bde6122de105f4512a94a95c6b548b620 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Jul 2026 08:28:02 +0000 Subject: [PATCH 781/790] Bot Updating Templated Files --- readme-vars.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme-vars.yml b/readme-vars.yml index 03326f7e..d69a3813 100644 --- a/readme-vars.yml +++ b/readme-vars.yml @@ -78,7 +78,7 @@ init_diagram: | svc-lidarr -> legacy-services } Base Images: { - "baseimage-alpine:3.23" + "baseimage-alpine:3.24" } "lidarr:nightly" <- Base Images # changelog From ea61c2cad3fed082127e332dd134096fff6c5418 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Jul 2026 08:30:17 +0000 Subject: [PATCH 782/790] Bot Updating Templated Files --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index 9b83d09c..0425a3ae 100644 --- a/README.md +++ b/README.md @@ -314,6 +314,7 @@ Once registered you can define the dockerfile to use with `-f Dockerfile.aarch64 ## Versions +* **04.07.26:** - Rebase to Alpine 3.24. * **15.01.26:** - Rebase to Alpine 3.23. * **05.07.25:** - Rebase to Alpine 3.22. * **12.12.24:** - Rebase to Alpine 3.21. From 975fe75d803947c5ebdd3c4c02daa21978b80846 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Thu, 9 Jul 2026 08:34:31 +0000 Subject: [PATCH 783/790] Bot Updating Package Versions --- package_versions.txt | 132 +++++++++++++++++++++---------------------- 1 file changed, 66 insertions(+), 66 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index 52f9d522..9dfffaa0 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -128,10 +128,10 @@ TagLibSharp-Lidarr 2.2.0.27 acl-libs 2.3.2-r1 apk aligned 0.4.2 rust-crate aligned-vec 0.6.4 rust-crate -alpine-baselayout 3.7.2-r0 apk -alpine-baselayout-data 3.7.2-r0 apk +alpine-baselayout 3.7.2-r1 apk +alpine-baselayout-data 3.7.2-r1 apk alpine-keys 2.6-r0 apk -alpine-release 3.23.5-r0 apk +alpine-release 3.24.1-r0 apk anstream 0.6.19 rust-crate anstyle 1.0.11 rust-crate anstyle-parse 0.2.7 rust-crate @@ -145,12 +145,12 @@ as-slice 0.2.1 av-metrics 0.9.1 rust-crate av-scenechange 0.14.1 rust-crate av1-grain 0.2.4 rust-crate -bash 5.3.3-r1 apk +bash 5.3.9-r1 apk bitflags 2.9.1 rust-crate bitstream-io 4.2.0 rust-crate -brotli-libs 1.2.0-r0 apk -busybox 1.37.0-r30 apk -busybox-binsh 1.37.0-r30 apk +brotli-libs 1.2.0-r1 apk +busybox 1.37.0-r31 apk +busybox-binsh 1.37.0-r31 apk c-ares 1.34.6-r0 apk ca-certificates 20260611-r0 apk ca-certificates-bundle 20260611-r0 apk @@ -166,32 +166,31 @@ clap_lex 0.7.5 colorchoice 1.0.4 rust-crate console 0.15.11 rust-crate core2 0.4.0 rust-crate -coreutils 9.8-r1 apk -coreutils-env 9.8-r1 apk -coreutils-fmt 9.8-r1 apk -coreutils-sha512sum 9.8-r1 apk +coreutils 9.11-r0 apk +coreutils-env 9.11-r0 apk +coreutils-fmt 9.11-r0 apk +coreutils-sha512sum 9.11-r0 apk crossbeam 0.8.4 rust-crate crossbeam-channel 0.5.15 rust-crate crossbeam-deque 0.8.6 rust-crate crossbeam-epoch 0.9.18 rust-crate crossbeam-queue 0.3.12 rust-crate crossbeam-utils 0.8.21 rust-crate -curl 8.19.0-r0 apk +curl 8.21.0-r0 apk either 1.15.0 rust-crate equator 0.4.2 rust-crate errno 0.3.12 rust-crate fern 0.7.1 rust-crate -ffmpeg-libavcodec 8.0.1-r1 apk -ffmpeg-libavformat 8.0.1-r1 apk -ffmpeg-libavutil 8.0.1-r1 apk -ffmpeg-libswresample 8.0.1-r1 apk -fftw-double-libs 3.3.10-r7 apk -findutils 4.10.0-r0 apk +ffmpeg-libavcodec 8.1.2-r0 apk +ffmpeg-libavformat 8.1.2-r0 apk +ffmpeg-libavutil 8.1.2-r0 apk +ffmpeg-libswresample 8.1.2-r0 apk +fftw-double-libs 3.3.11-r0 apk +findutils 4.10.0-r1 apk getrandom 0.3.3 rust-crate -glslang-libs 1.4.321.0-r0 apk -hwdata-pci 0.401-r0 apk -icu-data-en 76.1-r1 apk -icu-libs 76.1-r1 apk +hwdata-pci 0.408-r0 apk +icu-data-en 78.1-r0 apk +icu-libs 78.1-r0 apk interpolate_name 0.2.4 rust-crate is_terminal_polyfill 1.70.1 rust-crate itertools 0.10.5 rust-crate @@ -201,7 +200,7 @@ jq 1.8.1-r0 lab 0.11.0 rust-crate lame-libs 3.100-r5 apk lcms2 2.19-r0 apk -libSvtAv1Enc 3.1.2-r0 apk +libSvtAv1Enc 4.1.0-r0 apk libapk 3.0.6-r0 apk libattr 2.5.2-r2 apk libbluray 1.4.0-r0 apk @@ -209,60 +208,63 @@ libbsd 0.12.2-r0 libbz2 1.0.8-r6 apk libc 0.2.172 rust-crate libcrypto3 3.5.7-r0 apk -libcurl 8.19.0-r0 apk -libdav1d 1.5.2-r0 apk -libdrm 2.4.131-r0 apk -libffi 3.5.2-r0 apk -libgcc 15.2.0-r2 apk -libgomp 15.2.0-r2 apk +libcurl 8.21.0-r0 apk +libdav1d 1.5.3-r0 apk +libdrm 2.4.134-r0 apk +libdvdcss 1.4.3-r0 apk +libdvdnav 6.1.1-r1 apk +libdvdread 6.1.3-r2 apk +libffi 3.5.2-r1 apk +libgcc 15.2.0-r5 apk +libgomp 15.2.0-r5 apk libhwy 1.3.0-r0 apk libidn2 2.3.8-r0 apk -libintl 0.24.1-r1 apk -libjxl 0.11.1-r3 apk -libmd 1.1.0-r0 apk -libncursesw 6.5_p20251123-r0 apk +libintl 1.0-r0 apk +libjxl 0.11.2-r1 apk +libmd 1.2.0-r0 apk +libncursesw 6.6_p20260516-r0 apk libogg 1.3.6-r0 apk -libopenmpt 0.8.6-r0 apk -libpciaccess 0.18.1-r1 apk -libproc2 4.0.5-r0 apk +libopenmpt 0.8.7-r0 apk +libpciaccess 0.19-r0 apk +libproc2 4.0.6-r0 apk libpsl 0.21.5-r3 apk -librist 0.2.10-r1 apk +librist 0.2.15-r0 apk libsharpyuv 1.6.0-r0 apk -libsodium 1.0.20-r1 apk +libsodium 1.0.22-r0 apk libsrt 1.5.3-r1 apk -libssh 0.11.4-r0 apk +libssh 0.12.0-r0 apk libssl3 3.5.7-r0 apk -libstdc++ 15.2.0-r2 apk -libtheora 1.2.0-r0 apk -libudfread 1.2.0-r0 apk -libunistring 1.4.1-r0 apk -libva 2.22.0-r1 apk +libstdc++ 15.2.0-r5 apk +libtheora 1.2.0-r1 apk +libudfread 1.2.0-r1 apk +libunistring 1.4.2-r0 apk +libva 2.23.0-r0 apk libvdpau 1.5-r4 apk libvorbis 1.3.7-r2 apk libvpl 2.15.0-r1 apk libvpx 1.15.2-r1 apk libwebp 1.6.0-r0 apk libwebpmux 1.6.0-r0 apk -libx11 1.8.12-r1 apk +libx11 1.8.13-r0 apk libxau 1.0.12-r0 apk -libxcb 1.17.0-r1 apk +libxcb 1.17.0-r2 apk libxdmcp 1.1.5-r1 apk -libxext 1.3.6-r2 apk +libxext 1.3.7-r0 apk libxfixes 6.0.2-r0 apk -libxml2 2.13.9-r1 apk +libxml2 2.13.9-r2 apk libxslt 1.1.43-r3 apk libzmq 4.3.5-r2 apk linux-pam 1.7.1-r2 apk linux-raw-sys 0.9.4 rust-crate log 0.4.27 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls 3.6.6-r0 apk +mbedtls3 3.6.6-r0 apk memchr 2.7.5 rust-crate minimal-lexical 0.2.1 rust-crate -mpg123-libs 1.33.3-r0 apk -musl 1.2.5-r23 apk -musl-utils 1.2.5-r23 apk -ncurses-terminfo-base 6.5_p20251123-r0 apk +mpg123-libs 1.33.5-r0 apk +musl 1.2.6-r2 apk +musl-utils 1.2.6-r2 apk +ncurses-terminfo-base 6.6_p20260516-r0 apk netcat-openbsd 1.234.1-r0 apk new_debug_unreachable 1.0.6 rust-crate nghttp2-libs 1.69.0-r0 apk @@ -274,15 +276,15 @@ num-derive 0.4.2 num-integer 0.1.46 rust-crate num-rational 0.4.2 rust-crate num-traits 0.2.19 rust-crate -numactl 2.0.18-r0 apk +numactl 2.0.19-r0 apk once_cell 1.21.3 rust-crate oniguruma 6.9.10-r0 apk -opus 1.5.2-r1 apk +opus 1.6.1-r0 apk paste 1.0.15 rust-crate pastey 0.1.0 rust-crate ppv-lite86 0.2.21 rust-crate proc-macro2 1.0.95 rust-crate -procps-ng 4.0.5-r0 apk +procps-ng 4.0.6-r0 apk profiling 1.0.16 rust-crate quote 1.0.40 rust-crate rand 0.9.1 rust-crate @@ -292,7 +294,7 @@ rav1e 0.8.1 rav1e-libs 0.8.1-r0 apk rayon 1.10.0 rust-crate rayon-core 1.12.1 rust-crate -readline 8.3.1-r0 apk +readline 8.3.3-r1 apk runtime.any.System.IO 4.3.0 dotnet (+2 duplicates) runtime.any.System.Reflection 4.3.0 dotnet (+2 duplicates) runtime.any.System.Reflection.Primitives 4.3.0 dotnet (+2 duplicates) @@ -304,17 +306,15 @@ runtimepack.Microsoft.AspNetCore.App.Runtime.linux-musl-x64 8.0.27 runtimepack.Microsoft.NETCore.App.Runtime.linux-musl-x64 8.0.27 dotnet (+7 duplicates) rustix 1.0.7 rust-crate scan_fmt 0.2.6 rust-crate -scanelf 1.3.8-r2 apk -shaderc 2025.3-r0 apk -shadow 4.18.0-r0 apk +scanelf 1.3.9-r1 apk +shadow 4.18.0-r1 apk signal-hook 0.3.18 rust-crate signal-hook-registry 1.4.5 rust-crate simd_helpers 0.1.0 rust-crate -skalibs-libs 2.14.4.0-r0 apk +skalibs-libs 2.15.0.0-r0 apk soxr 0.1.3-r7 apk -spirv-tools 1.4.321.0-r1 apk -sqlite-libs 3.51.2-r0 apk -ssl_client 1.37.0-r30 apk +sqlite-libs 3.53.2-r0 apk +ssl_client 1.37.0-r31 apk stable_deref_trait 1.2.0 rust-crate syn 2.0.102 rust-crate terminal_size 0.4.2 rust-crate @@ -324,9 +324,9 @@ tzdata 2026b-r0 unicode-ident 1.0.18 rust-crate unicode-width 0.2.1 rust-crate utf8parse 0.2.2 rust-crate -utmps-libs 0.1.3.1-r0 apk +utmps-libs 0.1.3.3-r0 apk v_frame 0.3.9 rust-crate -wayland-libs-client 1.24.0-r0 apk +wayland-libs-client 1.25.0-r0 apk x264-libs 0.164.3108-r1 apk x265-libs 4.1-r0 apk xmlstarlet 1.6.1-r2 apk From cac8b7ae5ca4c20e5833257dd2909b2d73824458 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Sat, 11 Jul 2026 21:23:14 +0000 Subject: [PATCH 784/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 9dfffaa0..70b6c8af 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -151,7 +151,7 @@ bitstream-io 4.2.0 brotli-libs 1.2.0-r1 apk busybox 1.37.0-r31 apk busybox-binsh 1.37.0-r31 apk -c-ares 1.34.6-r0 apk +c-ares 1.34.8-r0 apk ca-certificates 20260611-r0 apk ca-certificates-bundle 20260611-r0 apk catatonit 0.2.1-r0 apk From 90fdcf22c36ee5630d00623b2d183f04ef550003 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 15 Jul 2026 04:19:25 +0000 Subject: [PATCH 785/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 70b6c8af..ba35f810 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -320,7 +320,7 @@ syn 2.0.102 terminal_size 0.4.2 rust-crate thiserror 1.0.69 rust-crate thiserror 2.0.12 rust-crate -tzdata 2026b-r0 apk +tzdata 2026c-r0 apk unicode-ident 1.0.18 rust-crate unicode-width 0.2.1 rust-crate utf8parse 0.2.2 rust-crate From 803df20243f3cb86056cca2f21946461c73f63c5 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 22 Jul 2026 04:35:51 +0000 Subject: [PATCH 786/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index ba35f810..7e790cee 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -258,7 +258,7 @@ linux-pam 1.7.1-r2 linux-raw-sys 0.9.4 rust-crate log 0.4.27 rust-crate maybe-rayon 0.1.1 rust-crate -mbedtls3 3.6.6-r0 apk +mbedtls3 3.6.7-r0 apk memchr 2.7.5 rust-crate minimal-lexical 0.2.1 rust-crate mpg123-libs 1.33.5-r0 apk From 8d45ab0a027d9edde4ef24583e22cac22f6cafc3 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 29 Jul 2026 04:32:41 +0000 Subject: [PATCH 787/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index 7e790cee..e0a9f23b 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -232,7 +232,7 @@ librist 0.2.15-r0 libsharpyuv 1.6.0-r0 apk libsodium 1.0.22-r0 apk libsrt 1.5.3-r1 apk -libssh 0.12.0-r0 apk +libssh 0.12.1-r0 apk libssl3 3.5.7-r0 apk libstdc++ 15.2.0-r5 apk libtheora 1.2.0-r1 apk From c8ade896e09320fec9b24b6bf3bd28a3e7c4e4d9 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 5 Aug 2026 04:31:02 +0000 Subject: [PATCH 788/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index e0a9f23b..d010210d 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -138,7 +138,7 @@ anstyle-parse 0.2.7 anstyle-query 1.1.3 rust-crate anyhow 1.0.98 rust-crate aom-libs 3.14.1-r0 apk -apk-tools 3.0.6-r0 apk +apk-tools 3.0.7-r0 apk arg_enum_proc_macro 0.3.4 rust-crate arrayvec 0.7.6 rust-crate as-slice 0.2.1 rust-crate @@ -201,7 +201,7 @@ lab 0.11.0 lame-libs 3.100-r5 apk lcms2 2.19-r0 apk libSvtAv1Enc 4.1.0-r0 apk -libapk 3.0.6-r0 apk +libapk 3.0.7-r0 apk libattr 2.5.2-r2 apk libbluray 1.4.0-r0 apk libbsd 0.12.2-r0 apk From 01984a43c74049806bae7cb0146dd0e29ae69407 Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Wed, 12 Aug 2026 03:32:22 +0000 Subject: [PATCH 789/790] Bot Updating Package Versions --- package_versions.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package_versions.txt b/package_versions.txt index d010210d..adf19218 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -232,7 +232,7 @@ librist 0.2.15-r0 libsharpyuv 1.6.0-r0 apk libsodium 1.0.22-r0 apk libsrt 1.5.3-r1 apk -libssh 0.12.1-r0 apk +libssh 0.12.2-r0 apk libssl3 3.5.7-r0 apk libstdc++ 15.2.0-r5 apk libtheora 1.2.0-r1 apk From 0043dfe49e83e4ba88eb3007c72c4b59c6adcb3a Mon Sep 17 00:00:00 2001 From: LinuxServer-CI <ci@linuxserver.io> Date: Fri, 14 Aug 2026 15:27:42 +0000 Subject: [PATCH 790/790] Bot Updating Package Versions --- package_versions.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package_versions.txt b/package_versions.txt index adf19218..ef798045 100755 --- a/package_versions.txt +++ b/package_versions.txt @@ -92,7 +92,7 @@ ReusableTasks 4.0.0 Sentry 4.0.2 dotnet (+4 duplicates) SharpZipLib 1.4.2 dotnet (+4 duplicates) SixLabors.ImageSharp 3.1.12 dotnet (+5 duplicates) -SourceGear.sqlite3 3.50.4.5 dotnet (+7 duplicates) +SourceGear.sqlite3 3.53.4 dotnet (+7 duplicates) SpotifyAPI.Web 5.1.1 dotnet (+5 duplicates) Swashbuckle.AspNetCore.Annotations 9.0.6 dotnet (+2 duplicates) Swashbuckle.AspNetCore.Swagger 9.0.6 dotnet (+2 duplicates) @@ -101,7 +101,7 @@ System.ClientModel 1.8.0 System.ComponentModel 4.3.0 dotnet (+2 duplicates) System.ComponentModel.Annotations 5.0.0 dotnet (+4 duplicates) System.Configuration.ConfigurationManager 8.0.1 dotnet (+7 duplicates) -System.Data.SQLite 2.0.3 dotnet (+4 duplicates) +System.Data.SQLite 2.0.4 dotnet (+4 duplicates) System.Diagnostics.DiagnosticSource 8.0.1 dotnet (+4 duplicates) System.Diagnostics.EventLog 8.0.1 dotnet (+6 duplicates) System.Drawing.Common 8.0.27 dotnet (+5 duplicates)